Version Description
WPGlobus Version 2 supports WordPress 5.
=
Download this release
Release Info
Developer | tivnet |
Plugin | WPGlobus – Multilingual Everything! |
Version | 2.0.0 |
Comparing to | |
See all releases |
Code changes from version 1.9.30 to 2.0.0
- flags/big/es.png +0 -0
- includes/builders/assets/wpglobus-admin-builder-49.js +38 -2
- includes/builders/assets/wpglobus-admin-builder-49.min.js +1 -1
- includes/builders/class-wpglobus-builder.php +7 -4
- includes/builders/class-wpglobus-builders.php +245 -23
- includes/builders/gutenberg/assets/js/wpglobus-gutenberg.js +7 -6
- includes/builders/gutenberg/assets/js/wpglobus-gutenberg.min.js +1 -1
- includes/builders/gutenberg/class-wpglobus-gutenberg.php +14 -2
- includes/builders/yoast_seo/class-wpglobus-yoast_seo-update-post.php +244 -0
- includes/builders/yoast_seo/class-wpglobus-yoast_seo.php +119 -0
- includes/class-wpglobus-filters.php +110 -18
- includes/class-wpglobus.php +59 -30
- includes/options/templates/compatibility.php +38 -12
- includes/wpglobus-controller.php +10 -0
- languages/wpglobus-ar.po +27 -23
- languages/wpglobus-be.po +27 -23
- languages/wpglobus-bg_BG.po +27 -23
- languages/wpglobus-de_CH.po +27 -23
- languages/wpglobus-de_DE.po +27 -23
- languages/wpglobus-el.po +27 -23
- languages/wpglobus-en_AU.po +27 -23
- languages/wpglobus-en_CA.po +27 -23
- languages/wpglobus-en_GB.po +27 -23
- languages/wpglobus-en_NZ.po +27 -23
- languages/wpglobus-en_US.po +27 -23
- languages/wpglobus-en_ZA.po +27 -23
- languages/wpglobus-es_AR.po +27 -23
- languages/wpglobus-es_CL.po +27 -23
- languages/wpglobus-es_CO.po +27 -23
- languages/wpglobus-es_CR.po +27 -23
- languages/wpglobus-es_ES.po +27 -23
- languages/wpglobus-es_GT.po +27 -23
- languages/wpglobus-es_MX.po +27 -23
- languages/wpglobus-es_PE.po +27 -23
- languages/wpglobus-es_PR.po +27 -23
- languages/wpglobus-es_VE.po +27 -23
- languages/wpglobus-et.po +27 -23
- languages/wpglobus-fr_BE.po +27 -23
- languages/wpglobus-fr_CA.po +27 -23
- languages/wpglobus-fr_FR.po +27 -23
- languages/wpglobus-id_ID.po +27 -23
- languages/wpglobus-ko_KR.po +27 -23
- languages/wpglobus-pl_PL.po +27 -23
- languages/wpglobus-pt_BR.po +27 -23
- languages/wpglobus-pt_PT.po +27 -23
- languages/wpglobus-ro_RO.po +27 -23
- languages/wpglobus-ru_RU.mo +0 -0
- languages/wpglobus-ru_RU.po +27 -23
- languages/wpglobus-sv_SE.po +27 -23
- languages/wpglobus-tr_TR.po +27 -23
- languages/wpglobus-uk.po +27 -23
- languages/wpglobus.pot +29 -25
- readme.txt +14 -7
- vendor/composer/ClassLoader.php +1 -1
- wpglobus.php +2 -2
flags/big/es.png
ADDED
Binary file
|
includes/builders/assets/wpglobus-admin-builder-49.js
CHANGED
@@ -145,7 +145,11 @@ jQuery(document).ready(function ($) {
|
|
145 |
locationPathname: '/wp-admin/post.php',
|
146 |
init: function() {
|
147 |
//api.setCookie();
|
148 |
-
|
|
|
|
|
|
|
|
|
149 |
},
|
150 |
_info: function() {
|
151 |
var lang = undefined;
|
@@ -218,12 +222,44 @@ jQuery(document).ready(function ($) {
|
|
218 |
window.history.pushState({path:newurl},'',newurl);
|
219 |
}
|
220 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
221 |
start: function() {
|
222 |
/**
|
223 |
*
|
224 |
*/
|
225 |
api.setLocationSearch();
|
226 |
-
|
227 |
/**
|
228 |
*
|
229 |
*/
|
145 |
locationPathname: '/wp-admin/post.php',
|
146 |
init: function() {
|
147 |
//api.setCookie();
|
148 |
+
if ('taxonomy-edit' === WPGlobusAdmin.page) {
|
149 |
+
api.taxonomyEdit();
|
150 |
+
} else {
|
151 |
+
api.start();
|
152 |
+
}
|
153 |
},
|
154 |
_info: function() {
|
155 |
var lang = undefined;
|
222 |
window.history.pushState({path:newurl},'',newurl);
|
223 |
}
|
224 |
},
|
225 |
+
taxonomyEdit: function() {
|
226 |
+
|
227 |
+
$('.wpglobus-taxonomy-tabs').insertAfter('#ajax-response');
|
228 |
+
|
229 |
+
/**
|
230 |
+
* Make class wrap as tabs container.
|
231 |
+
* Tabs on.
|
232 |
+
*/
|
233 |
+
$('.wrap').tabs();
|
234 |
+
|
235 |
+
$(WPGlobusAdmin.data.multilingualSlug.title).insertAfter('.term-slug-wrap th label');
|
236 |
+
|
237 |
+
if ( WPGlobusAdmin.currentTab !== WPGlobusAdmin.data.default_language ) {
|
238 |
+
$('.wpglobus-tax-edit-tab').removeClass('ui-tabs-active ui-state-active');
|
239 |
+
$('#wpglobus-link-tab-'+WPGlobusAdmin.currentTab).addClass('ui-tabs-active ui-state-active');
|
240 |
+
}
|
241 |
+
|
242 |
+
$(document).on('click', '.wpglobus-tax-edit-tab a', function(event) {
|
243 |
+
event.preventDefault();
|
244 |
+
var _href = $(this).data('href');
|
245 |
+
location.href = _href;
|
246 |
+
});
|
247 |
+
|
248 |
+
api.setMultilingualFields();
|
249 |
+
|
250 |
+
/**
|
251 |
+
* Init Yoast tinymce editor for description.
|
252 |
+
*/
|
253 |
+
$(document).on( 'tinymce-editor-init', function( event, editor ) {
|
254 |
+
$( '#' + editor.getContainer().id ).find('iframe').addClass(WPGlobusAdmin.builder.translatableClass).css({'width':''});
|
255 |
+
});
|
256 |
+
},
|
257 |
start: function() {
|
258 |
/**
|
259 |
*
|
260 |
*/
|
261 |
api.setLocationSearch();
|
262 |
+
|
263 |
/**
|
264 |
*
|
265 |
*/
|
includes/builders/assets/wpglobus-admin-builder-49.min.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
var WPGlobusCore;!function(l){var s;s=WPGlobusCore={strpos:function(a,e
|
1 |
+
var WPGlobusCore;!function(l){var s;s=WPGlobusCore={strpos:function(a,t,e){var o=(a=""+a).indexOf(t,e);return 0<=o&&o},TextFilter:function(a,t,e){if(void 0===a||""===a)return a;var o,n,l=[],i=!1;t=""==t?"en":t,e=void 0===e||""==e?"RETURN_IN_DEFAULT_LANGUAGE":e,l[0]=[],l[0].start=WPGlobusCoreData.locale_tag_start.replace("%s",t),l[0].end=WPGlobusCoreData.locale_tag_end,l[1]=[],l[1].start="\x3c!--:"+t+"--\x3e",l[1].end="\x3c!--:--\x3e",l[2]=[],l[2].start="[:"+t+"]",l[2].end="[:";for(var u=0;u<3;u++)if(!1!==(o=s.strpos(a,l[u].start))){o+=l[u].start.length,a=!1===(n=s.strpos(a,l[u].end,o))?a.substr(o):a.substr(o,n-o),i=!0;break}return i||("RETURN_EMPTY"==e?(t!=WPGlobusCoreData.default_language||/(\{:|\[:|<!--:)[a-z]{2}/.test(a))&&(a=""):t==WPGlobusCoreData.default_language?/(\{:|\[:|<!--:)[a-z]{2}/.test(a)&&(a=""):a=s.TextFilter(a,WPGlobusCoreData.default_language)),a},addLocaleMarks:function(a,t){return WPGlobusCoreData.locale_tag_start.replace("%s",t)+a+WPGlobusCoreData.locale_tag_end},getTranslations:function(e){var o,n={};return l.each(WPGlobusCoreData.enabled_languages,function(a,t){o=t==WPGlobusCoreData.default_language?"RETURN_IN_DEFAULT_LANGUAGE":"RETURN_EMPTY",n[t]=s.TextFilter(e,t,o)}),n},getString:function(a,t,e){if(void 0===a)return a;void 0===t&&(t=""),void 0===e&&(e=WPGlobusCoreData.language),(a=s.getTranslations(a))[e]=t;var o="";return l.each(a,function(a,t){""!=t&&a!=WPGlobusCoreData.default_language&&(o+=s.addLocaleMarks(t,a))}),""!=a[WPGlobusCoreData.default_language]&&(o=""==o?a[WPGlobusCoreData.default_language]:s.addLocaleMarks(a[WPGlobusCoreData.default_language],WPGlobusCoreData.default_language)+o),o}}}(jQuery),jQuery(document).ready(function(i){"use strict";if("undefined"!=typeof WPGlobusAdmin){var t={languageSelectorBoxDelta:0,locationPathname:"/wp-admin/post.php",init:function(){"taxonomy-edit"===WPGlobusAdmin.page?t.taxonomyEdit():t.start()},_info:function(){var a=void 0;0<i("#language").length&&(a=i("#language").val()),console.log("Current language from hidden (#language) : ",a),a=void 0,0<i("#wpglobus-language").length&&(a=i("#wpglobus-language").val()),console.log("Current language from hidden (#wpglobus-language) : ",a),a=void 0,0<i('input[name="wpglobus-language"]').length&&(a=i('input[name="wpglobus-language"]').val()),console.log('Current language from hidden (input[name="wpglobus-language"]) : ',a),a=void 0,0<i('input[name="wpglobus_language"]').length&&(a=i('input[name="wpglobus_language"]').val()),console.log('Current language from hidden (input[name="wpglobus_language"]) : ',a),console.log("Builder : ",WPGlobusAdmin.builder);var t=i("#content").val();""==t?console.log("Editor content (#content) : (empty)"):console.log(t)},checkCookie:function(){if(-1!=window.location.search.indexOf("language="))return!1;if("post.php"==WPGlobusAdmin.page){var a=wpCookies.get(WPGlobusAdmin.builder.languageCookie);if(null!==a&&history.pushState){var t=(a=a.split("+"))[0];if(void 0!==a[1]&&a[1]+0==WPGlobusAdmin.$_get.post){var e=window.location.protocol+"//"+window.location.host+window.location.pathname+window.location.search+"&language="+t;return window.history.pushState({path:e},"",e),t}}}return!1},setCookie:function(){var a=t.checkCookie();a||void 0===(a=WPGlobusAdmin.$_get.language)&&(a=WPGlobusAdmin.data.default_language),wpCookies.set(WPGlobusAdmin.builder.languageCookie,a+"+"+WPGlobusAdmin.$_get.post,31536e3,t.locationPathname)},setLocationSearch:function(){if(history.pushState&&-1==window.location.search.indexOf("language=")&&WPGlobusAdmin.data.default_language!=WPGlobusAdmin.currentTab){var a=window.location.protocol+"//"+window.location.host+window.location.pathname+window.location.search+"&language="+WPGlobusAdmin.currentTab;window.history.pushState({path:a},"",a)}},taxonomyEdit:function(){i(".wpglobus-taxonomy-tabs").insertAfter("#ajax-response"),i(".wrap").tabs(),i(WPGlobusAdmin.data.multilingualSlug.title).insertAfter(".term-slug-wrap th label"),WPGlobusAdmin.currentTab!==WPGlobusAdmin.data.default_language&&(i(".wpglobus-tax-edit-tab").removeClass("ui-tabs-active ui-state-active"),i("#wpglobus-link-tab-"+WPGlobusAdmin.currentTab).addClass("ui-tabs-active ui-state-active")),i(document).on("click",".wpglobus-tax-edit-tab a",function(a){a.preventDefault();var t=i(this).data("href");location.href=t}),t.setMultilingualFields(),i(document).on("tinymce-editor-init",function(a,t){i("#"+t.getContainer().id).find("iframe").addClass(WPGlobusAdmin.builder.translatableClass).css({width:""})})},start:function(){t.setLocationSearch();var e="#postdivrich",o=!0,a="#post-body-content";!1===WPGlobusAdmin.data.support.editor&&(o=!(e="#titlediv")),!1===WPGlobusAdmin.data.support.title&&(o=!1),i(a).prepend(i(".wpglobus-post-body-tabs-list")),i.each(WPGlobusAdmin.tabs,function(a,t){"default"===t?(i(e).wrap('<div id="tab-default"></div>'),o&&i(i("#titlediv")).insertBefore(e)):(i(e+"-"+t).wrap('<div id="tab-'+t+'"></div>'),o&&i(i("#titlediv-"+t)).insertBefore(e+"-"+t))}),i(a).addClass("wpglobus-post-body-tabs"),t.setMultilingualFields()},ajaxPrefilter:function(){i.ajaxPrefilter(function(a,t,e){})},setMultilingualFields:function(){i.each(WPGlobusAdmin.builder.multilingualFields,function(a,t){var e,o="name",n=document.getElementsByName(t);if(0==n.length&&(o="id",n=document.getElementById(t)),null!==n){if("id"==o)e=i("#"+t);else{var l=n[0].nodeName;l=l.toLowerCase(),e=i(l+'[name="'+t+'"]')}e.addClass(WPGlobusAdmin.builder.translatableClass)}})}};WPGlobusAdmin=i.extend({},WPGlobusAdmin,t),WPGlobusAdmin.init()}});
|
includes/builders/class-wpglobus-builder.php
CHANGED
@@ -66,7 +66,7 @@ if ( ! class_exists( 'WPGlobus_Builder' ) ) :
|
|
66 |
add_filter( 'admin_body_class', array( $this, 'filter__add_admin_body_class' ) );
|
67 |
|
68 |
/**
|
69 |
-
* Add builder label to admin bar.
|
70 |
*
|
71 |
* @since 1.9.27
|
72 |
*/
|
@@ -440,14 +440,17 @@ if ( ! class_exists( 'WPGlobus_Builder' ) ) :
|
|
440 |
|
441 |
global $pagenow;
|
442 |
|
443 |
-
if ( ! in_array( $pagenow, array( 'post.php', 'post-new.php' ), true ) ) {
|
444 |
return;
|
445 |
}
|
446 |
|
447 |
-
$_builder_label =
|
448 |
if ( class_exists( 'WPGlobus_Builders' ) ) {
|
449 |
$_builder = WPGlobus_Builders::get_addon( $this->id );
|
450 |
-
|
|
|
|
|
|
|
451 |
$_builder_label .= $_builder['plugin_name'];
|
452 |
} else {
|
453 |
$_builder_label .= $this->id;
|
66 |
add_filter( 'admin_body_class', array( $this, 'filter__add_admin_body_class' ) );
|
67 |
|
68 |
/**
|
69 |
+
* Add builder/add-on label to admin bar.
|
70 |
*
|
71 |
* @since 1.9.27
|
72 |
*/
|
440 |
|
441 |
global $pagenow;
|
442 |
|
443 |
+
if ( ! in_array( $pagenow, array( 'post.php', 'post-new.php', 'term.php' ), true ) ) {
|
444 |
return;
|
445 |
}
|
446 |
|
447 |
+
$_builder_label = esc_html__( 'Builder', 'wpglobus' ) . ': ';
|
448 |
if ( class_exists( 'WPGlobus_Builders' ) ) {
|
449 |
$_builder = WPGlobus_Builders::get_addon( $this->id );
|
450 |
+
|
451 |
+
if ( ! empty( $_builder['admin_bar_label'] ) ) {
|
452 |
+
$_builder_label = $_builder['admin_bar_label'] . ': ';
|
453 |
+
}
|
454 |
$_builder_label .= $_builder['plugin_name'];
|
455 |
} else {
|
456 |
$_builder_label .= $this->id;
|
includes/builders/class-wpglobus-builders.php
CHANGED
@@ -73,6 +73,7 @@ if ( ! class_exists( 'WPGlobus_Builders' ) ) :
|
|
73 |
self::$add_on['yoast_seo'] = array(
|
74 |
'id' => 'yoast_seo',
|
75 |
'role' => 'builder',
|
|
|
76 |
'supported_min_version' => '7.7',
|
77 |
'const' => 'WPSEO_VERSION',
|
78 |
'plugin_name' => 'Yoast SEO',
|
@@ -81,21 +82,17 @@ if ( ! class_exists( 'WPGlobus_Builders' ) ) :
|
|
81 |
'stage' => 'production',
|
82 |
);
|
83 |
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
'stage' => 'beta',
|
96 |
-
);
|
97 |
-
|
98 |
-
}
|
99 |
|
100 |
/**
|
101 |
* self::$add_on['wp-subtitle'] = array(
|
@@ -157,6 +154,7 @@ if ( ! class_exists( 'WPGlobus_Builders' ) ) :
|
|
157 |
|
158 |
self::$attrs = array(
|
159 |
'id' => false,
|
|
|
160 |
'version' => '',
|
161 |
'class' => '',
|
162 |
'post_type' => '',
|
@@ -631,7 +629,90 @@ if ( ! class_exists( 'WPGlobus_Builders' ) ) :
|
|
631 |
$message = '';
|
632 |
|
633 |
/** @global string $pagenow */
|
634 |
-
global $pagenow;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
635 |
|
636 |
if ( defined( 'GUTENBERG_VERSION' ) ) {
|
637 |
|
@@ -777,13 +858,88 @@ if ( ! class_exists( 'WPGlobus_Builders' ) ) :
|
|
777 |
*/
|
778 |
protected static function get_3rd_party_status_for_gutenberg( $load_gutenberg ) {
|
779 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
780 |
if ( function_exists( 'classic_editor_settings' ) ) {
|
781 |
/**
|
782 |
-
* @see https://wordpress.org/plugins/classic-editor
|
783 |
*/
|
784 |
-
|
785 |
-
|
|
|
|
|
786 |
$load_gutenberg = false;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
787 |
}
|
788 |
}
|
789 |
|
@@ -824,9 +980,9 @@ if ( ! class_exists( 'WPGlobus_Builders' ) ) :
|
|
824 |
/** @global string $pagenow */
|
825 |
global $pagenow;
|
826 |
|
827 |
-
|
828 |
|
829 |
-
|
830 |
|
831 |
$post_type = '';
|
832 |
if ( ! empty( $_GET['post'] ) ) { // phpcs:ignore WordPress.CSRF.NonceVerification
|
@@ -868,6 +1024,67 @@ if ( ! class_exists( 'WPGlobus_Builders' ) ) :
|
|
868 |
|
869 |
return $attrs;
|
870 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
871 |
}
|
872 |
}
|
873 |
|
@@ -892,9 +1109,14 @@ if ( ! class_exists( 'WPGlobus_Builders' ) ) :
|
|
892 |
}
|
893 |
|
894 |
if ( empty( $_attrs['post_id'] ) ) {
|
895 |
-
if ( isset( $_GET['post'] ) ) { // phpcs:ignore WordPress.CSRF.NonceVerification
|
|
|
|
|
|
|
|
|
|
|
896 |
$_attrs['post_id'] = sanitize_text_field( $_GET['post'] );
|
897 |
-
} elseif ( isset( $_REQUEST['post_ID'] ) ) { // phpcs:ignore WordPress.CSRF.NonceVerification
|
898 |
$_attrs['post_id'] = sanitize_text_field( $_REQUEST['post_ID'] );
|
899 |
// } else {
|
900 |
// @todo Check additional ways to get post ID.
|
73 |
self::$add_on['yoast_seo'] = array(
|
74 |
'id' => 'yoast_seo',
|
75 |
'role' => 'builder',
|
76 |
+
'admin_bar_label' => 'Add-on',
|
77 |
'supported_min_version' => '7.7',
|
78 |
'const' => 'WPSEO_VERSION',
|
79 |
'plugin_name' => 'Yoast SEO',
|
82 |
'stage' => 'production',
|
83 |
);
|
84 |
|
85 |
+
self::$add_on['woocommerce'] = array(
|
86 |
+
'id' => 'woocommerce',
|
87 |
+
'role' => 'add-on',
|
88 |
+
'config_file' => 'woocommerce.json',
|
89 |
+
'supported_min_version' => '3.5.1',
|
90 |
+
'const' => 'WC_PLUGIN_FILE',
|
91 |
+
'plugin_name' => 'WooCommerce',
|
92 |
+
'plugin_uri' => 'https://woocommerce.com',
|
93 |
+
'path' => 'woocommerce/woocommerce.php',
|
94 |
+
'stage' => 'production',
|
95 |
+
);
|
|
|
|
|
|
|
|
|
96 |
|
97 |
/**
|
98 |
* self::$add_on['wp-subtitle'] = array(
|
154 |
|
155 |
self::$attrs = array(
|
156 |
'id' => false,
|
157 |
+
'context' => 'add-on',
|
158 |
'version' => '',
|
159 |
'class' => '',
|
160 |
'post_type' => '',
|
629 |
$message = '';
|
630 |
|
631 |
/** @global string $pagenow */
|
632 |
+
global $pagenow, $wp_version;
|
633 |
+
|
634 |
+
if ( version_compare( $wp_version, '4.9.99', '>' ) ) {
|
635 |
+
|
636 |
+
$context = 'core';
|
637 |
+
|
638 |
+
/**
|
639 |
+
* @since 2.0
|
640 |
+
*/
|
641 |
+
if ( 'post-new.php' === $pagenow ) {
|
642 |
+
|
643 |
+
/**
|
644 |
+
* Load specific language switcher for this page.
|
645 |
+
*
|
646 |
+
* @see get_switcher_box() in wpglobus\includes\builders\gutenberg\class-wpglobus-gutenberg.php
|
647 |
+
*/
|
648 |
+
//if ( ! isset( $_GET['classic-editor'] ) ) { // phpcs:ignore WordPress.CSRF.NonceVerification
|
649 |
+
// Start Gutenberg support if classic editor was not requested.
|
650 |
+
//$load_gutenberg = true;
|
651 |
+
//}
|
652 |
+
|
653 |
+
$load_gutenberg = true;
|
654 |
+
|
655 |
+
$load_gutenberg = self::get_3rd_party_status_for_gutenberg( $load_gutenberg );
|
656 |
+
|
657 |
+
} elseif ( 'index.php' === $pagenow ) {
|
658 |
+
|
659 |
+
/**
|
660 |
+
* When Update button was clicked.
|
661 |
+
*/
|
662 |
+
if ( ! is_admin() ) {
|
663 |
+
/**
|
664 |
+
* Gutenberg updates post as from front.
|
665 |
+
*
|
666 |
+
* @see $_SERVER['REQUEST_URI']
|
667 |
+
*/
|
668 |
+
//$actions = array( 'edit' );
|
669 |
+
// @todo check 'wp/v2/' in wp.api.versionString (JS).
|
670 |
+
|
671 |
+
// /wp-json/wp/v2/posts/
|
672 |
+
// /wp-json/wp/v2/pages/
|
673 |
+
// @todo check /wp-json/wp/v2/taxonomies?context=edit
|
674 |
+
if ( false !== strpos( $_SERVER['REQUEST_URI'], 'wp/v2/posts' )
|
675 |
+
|| false !== strpos( $_SERVER['REQUEST_URI'], 'wp/v2/pages' ) ) {
|
676 |
+
$load_gutenberg = true;
|
677 |
+
}
|
678 |
+
}
|
679 |
+
} elseif ( 'post.php' === $pagenow ) {
|
680 |
+
|
681 |
+
$load_gutenberg = true;
|
682 |
+
|
683 |
+
$post_type = '';
|
684 |
+
if ( ! empty( $_GET['post'] ) ) { // phpcs:ignore WordPress.CSRF.NonceVerification
|
685 |
+
$post_type = self::get_post_type( $_GET['post'] ); // phpcs:ignore WordPress.CSRF.NonceVerification
|
686 |
+
}
|
687 |
+
|
688 |
+
if ( ! in_array( $post_type, array( 'post', 'page' ), true ) ) {
|
689 |
+
$load_gutenberg = false;
|
690 |
+
}
|
691 |
+
|
692 |
+
$load_gutenberg = self::get_3rd_party_status_for_gutenberg( $load_gutenberg );
|
693 |
+
|
694 |
+
}
|
695 |
+
|
696 |
+
$_attrs = array(
|
697 |
+
'id' => 'gutenberg',
|
698 |
+
'version' => $wp_version,
|
699 |
+
'class' => 'WPGlobus_Gutenberg',
|
700 |
+
'builder_page' => false,
|
701 |
+
'pagenow' => $pagenow,
|
702 |
+
'post_type' => empty( $post_type ) ? '' : $post_type,
|
703 |
+
'message' => $message,
|
704 |
+
'context' => $context,
|
705 |
+
);
|
706 |
+
|
707 |
+
if ( $load_gutenberg ) {
|
708 |
+
$_attrs['builder_page'] = true;
|
709 |
+
}
|
710 |
+
|
711 |
+
$attrs = self::get_attrs( $_attrs );
|
712 |
+
|
713 |
+
return $attrs;
|
714 |
+
|
715 |
+
}
|
716 |
|
717 |
if ( defined( 'GUTENBERG_VERSION' ) ) {
|
718 |
|
858 |
*/
|
859 |
protected static function get_3rd_party_status_for_gutenberg( $load_gutenberg ) {
|
860 |
|
861 |
+
if ( defined( 'WC_PLUGIN_FILE' ) ) {
|
862 |
+
/**
|
863 |
+
* Woocommerce.
|
864 |
+
*/
|
865 |
+
$post_type = '';
|
866 |
+
if ( ! empty( $_GET['post'] ) ) { // phpcs:ignore WordPress.CSRF.NonceVerification
|
867 |
+
$post_type = self::get_post_type( $_GET['post'] ); // phpcs:ignore WordPress.CSRF.NonceVerification
|
868 |
+
}
|
869 |
+
|
870 |
+
if ( empty( $post_type ) && ! empty( $_GET['post_type'] ) ) { // phpcs:ignore WordPress.CSRF.NonceVerification
|
871 |
+
$post_type = $_GET['post_type']; // phpcs:ignore WordPress.CSRF.NonceVerification
|
872 |
+
}
|
873 |
+
|
874 |
+
if ( 'product' === $post_type ) {
|
875 |
+
$load_gutenberg = false;
|
876 |
+
}
|
877 |
+
}
|
878 |
+
|
879 |
if ( function_exists( 'classic_editor_settings' ) ) {
|
880 |
/**
|
881 |
+
* @see ver.0.5 https://wordpress.org/plugins/classic-editor/#developers
|
882 |
*/
|
883 |
+
if ( isset( $_GET['classic-editor'] ) ) { // phpcs:ignore WordPress.CSRF.NonceVerification
|
884 |
+
/**
|
885 |
+
* Option 'Use the Block editor by default and include optional links back to the Classic editor' was selected.
|
886 |
+
*/
|
887 |
$load_gutenberg = false;
|
888 |
+
} else {
|
889 |
+
$classic_editor_replace = get_option( 'classic-editor-replace' );
|
890 |
+
if ( empty( $classic_editor_replace ) || 'replace' === $classic_editor_replace ) {
|
891 |
+
$load_gutenberg = false;
|
892 |
+
}
|
893 |
+
}
|
894 |
+
}
|
895 |
+
|
896 |
+
if ( class_exists( 'Classic_Editor' ) ) {
|
897 |
+
/** @global string $wp_version */
|
898 |
+
global $wp_version;
|
899 |
+
|
900 |
+
if ( version_compare( $wp_version, '4.9.99', '>' ) ) { // phpcs:ignore Generic.CodeAnalysis.EmptyStatement
|
901 |
+
// continue
|
902 |
+
} else {
|
903 |
+
/**
|
904 |
+
* Incorrect work with WP 4.9
|
905 |
+
*
|
906 |
+
* @see https://wordpress.org/support/topic/does-nor-work-anymore-since-v-1-0/
|
907 |
+
*/
|
908 |
+
return $load_gutenberg;
|
909 |
+
}
|
910 |
+
|
911 |
+
/**
|
912 |
+
* ver.1.0 https://wordpress.org/plugins/classic-editor/
|
913 |
+
*/
|
914 |
+
if ( isset( $_GET['classic-editor'] ) ) { // phpcs:ignore WordPress.CSRF.NonceVerification
|
915 |
+
$load_gutenberg = false;
|
916 |
+
} elseif ( isset( $_GET['classic-editor__forget'] ) ) { // phpcs:ignore WordPress.CSRF.NonceVerification
|
917 |
+
$load_gutenberg = true;
|
918 |
+
} else {
|
919 |
+
$post_id = isset( $_GET['post'] ) ? (int) $_GET['post'] : 0; // phpcs:ignore WordPress.CSRF.NonceVerification
|
920 |
+
|
921 |
+
if ( 0 !== $post_id ) {
|
922 |
+
$classic_editor_remember = get_post_meta( $post_id, 'classic-editor-remember', true );
|
923 |
+
if ( 'classic-editor' === $classic_editor_remember ) {
|
924 |
+
$load_gutenberg = false;
|
925 |
+
|
926 |
+
return $load_gutenberg;
|
927 |
+
} elseif ( 'block-editor' === $classic_editor_remember ) {
|
928 |
+
$load_gutenberg = true;
|
929 |
+
|
930 |
+
return $load_gutenberg;
|
931 |
+
}
|
932 |
+
}
|
933 |
+
|
934 |
+
$classic_editor_replace = get_option( 'classic-editor-replace' );
|
935 |
+
if ( empty( $classic_editor_replace ) || 'classic' === $classic_editor_replace ) {
|
936 |
+
$load_gutenberg = false;
|
937 |
+
} elseif ( 'block' === $classic_editor_replace ) {
|
938 |
+
$load_gutenberg = true;
|
939 |
+
} else {
|
940 |
+
$load_gutenberg = false;
|
941 |
+
|
942 |
+
}
|
943 |
}
|
944 |
}
|
945 |
|
980 |
/** @global string $pagenow */
|
981 |
global $pagenow;
|
982 |
|
983 |
+
$wpseo_titles = get_option( 'wpseo_titles' );
|
984 |
|
985 |
+
if ( 'post.php' === $pagenow ) {
|
986 |
|
987 |
$post_type = '';
|
988 |
if ( ! empty( $_GET['post'] ) ) { // phpcs:ignore WordPress.CSRF.NonceVerification
|
1024 |
|
1025 |
return $attrs;
|
1026 |
|
1027 |
+
} elseif ( 'term.php' === $pagenow ) {
|
1028 |
+
|
1029 |
+
$tax = empty( $_GET['taxonomy'] ) ? false : sanitize_text_field( wp_unslash( $_GET['taxonomy'] ) ); // phpcs:ignore WordPress.CSRF.NonceVerification
|
1030 |
+
|
1031 |
+
if ( $tax ) {
|
1032 |
+
|
1033 |
+
$_attrs = array(
|
1034 |
+
'id' => 'yoast_seo',
|
1035 |
+
'version' => WPSEO_VERSION,
|
1036 |
+
'class' => 'WPGlobus_Yoast_SEO',
|
1037 |
+
'builder_page' => false,
|
1038 |
+
'post_type' => '',
|
1039 |
+
'taxonomy' => $tax,
|
1040 |
+
);
|
1041 |
+
|
1042 |
+
self::$admin_attrs = array(
|
1043 |
+
'multilingualFields' => array( 'name', 'description_ifr' ),
|
1044 |
+
'translatableClass' => 'wpglobus-translatable',
|
1045 |
+
);
|
1046 |
+
|
1047 |
+
if ( isset( $wpseo_titles[ 'display-metabox-tax-' . $tax ] ) && 0 === (int) $wpseo_titles[ 'display-metabox-tax-' . $tax ] ) {
|
1048 |
+
$_attrs['builder_page'] = false;
|
1049 |
+
} else {
|
1050 |
+
$_attrs['builder_page'] = true;
|
1051 |
+
}
|
1052 |
+
|
1053 |
+
$attrs = self::get_attrs( $_attrs );
|
1054 |
+
|
1055 |
+
return $attrs;
|
1056 |
+
}
|
1057 |
+
} elseif ( 'edit-tags.php' === $pagenow ) {
|
1058 |
+
/**
|
1059 |
+
* Case when Update button was clicked on term.php page .
|
1060 |
+
*/
|
1061 |
+
// phpcs:ignore WordPress.CSRF.NonceVerification
|
1062 |
+
$tax = empty( $_POST['taxonomy'] ) ? false : sanitize_text_field( wp_unslash( $_POST['taxonomy'] ) );
|
1063 |
+
|
1064 |
+
if ( $tax ) {
|
1065 |
+
|
1066 |
+
$_attrs = array(
|
1067 |
+
'id' => 'yoast_seo',
|
1068 |
+
'version' => WPSEO_VERSION,
|
1069 |
+
'class' => 'WPGlobus_Yoast_SEO',
|
1070 |
+
'builder_page' => false,
|
1071 |
+
'post_type' => '',
|
1072 |
+
'taxonomy' => $tax,
|
1073 |
+
);
|
1074 |
+
|
1075 |
+
self::$admin_attrs = array(
|
1076 |
+
'multilingualFields' => array( 'name', 'description_ifr' ),
|
1077 |
+
'translatableClass' => 'wpglobus-translatable',
|
1078 |
+
);
|
1079 |
+
|
1080 |
+
if ( isset( $_POST['action'] ) && 'editedtag' === $_POST['action'] ) { // phpcs:ignore WordPress.CSRF.NonceVerification
|
1081 |
+
$_attrs['builder_page'] = true;
|
1082 |
+
}
|
1083 |
+
|
1084 |
+
$attrs = self::get_attrs( $_attrs );
|
1085 |
+
|
1086 |
+
return $attrs;
|
1087 |
+
}
|
1088 |
}
|
1089 |
}
|
1090 |
|
1109 |
}
|
1110 |
|
1111 |
if ( empty( $_attrs['post_id'] ) ) {
|
1112 |
+
if ( isset( $_GET['post'] ) && is_string( $_GET['post'] ) ) { // phpcs:ignore WordPress.CSRF.NonceVerification
|
1113 |
+
/**
|
1114 |
+
* With bulk action (trash, untrash) we get $_GET['post'] as array.
|
1115 |
+
*
|
1116 |
+
* @since WPGlobus 2.0 we are working with single post only.
|
1117 |
+
*/
|
1118 |
$_attrs['post_id'] = sanitize_text_field( $_GET['post'] );
|
1119 |
+
} elseif ( isset( $_REQUEST['post_ID'] ) && is_string( $_REQUEST['post_ID'] ) ) { // phpcs:ignore WordPress.CSRF.NonceVerification
|
1120 |
$_attrs['post_id'] = sanitize_text_field( $_REQUEST['post_ID'] );
|
1121 |
// } else {
|
1122 |
// @todo Check additional ways to get post ID.
|
includes/builders/gutenberg/assets/js/wpglobus-gutenberg.js
CHANGED
@@ -42,13 +42,14 @@ jQuery(document).ready(function ($) {
|
|
42 |
formHandler: function() {
|
43 |
|
44 |
var val = $('.metabox-base-form #referredby').attr('value');
|
45 |
-
if(
|
46 |
-
|
47 |
-
|
48 |
-
|
|
|
|
|
|
|
49 |
}
|
50 |
-
|
51 |
-
$('.metabox-base-form #referredby').attr('value', val);
|
52 |
|
53 |
val = $('input[name="_wp_original_http_referer"]').attr('value');
|
54 |
if ( 'undefined' !== typeof val ) {
|
42 |
formHandler: function() {
|
43 |
|
44 |
var val = $('.metabox-base-form #referredby').attr('value');
|
45 |
+
if ( 'undefined' !== typeof val ) {
|
46 |
+
if( val.indexOf('language=en') == -1 ) {
|
47 |
+
val = val+'&language='+WPGlobusGutenberg.language;
|
48 |
+
} else {
|
49 |
+
val = val.replace('language=en', 'language='+WPGlobusGutenberg.language);
|
50 |
+
}
|
51 |
+
$('.metabox-base-form #referredby').attr('value', val);
|
52 |
}
|
|
|
|
|
53 |
|
54 |
val = $('input[name="_wp_original_http_referer"]').attr('value');
|
55 |
if ( 'undefined' !== typeof val ) {
|
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 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()});
|
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");void 0!==e&&(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
@@ -247,7 +247,7 @@ class WPGlobus_Gutenberg extends WPGlobus_Builder {
|
|
247 |
public function on__enqueue_scripts() {
|
248 |
|
249 |
/** @global string $pagenow */
|
250 |
-
global $pagenow;
|
251 |
|
252 |
if ( ! in_array( $pagenow, array( 'post.php', 'post-new.php' ), true ) ) {
|
253 |
return;
|
@@ -263,6 +263,17 @@ class WPGlobus_Gutenberg extends WPGlobus_Builder {
|
|
263 |
$i18n = array();
|
264 |
$i18n['reload'] = esc_html__( 'Page is being reloaded. Please wait...', 'wpglobus' );
|
265 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
266 |
/**
|
267 |
* Check for Yoast SEO.
|
268 |
*/
|
@@ -284,7 +295,8 @@ class WPGlobus_Gutenberg extends WPGlobus_Builder {
|
|
284 |
'WPGlobusGutenberg',
|
285 |
array(
|
286 |
'version' => WPGLOBUS_VERSION,
|
287 |
-
'versionGutenberg' =>
|
|
|
288 |
'tabs' => $tabs,
|
289 |
'language' => $this->language,
|
290 |
'pagenow' => $pagenow,
|
247 |
public function on__enqueue_scripts() {
|
248 |
|
249 |
/** @global string $pagenow */
|
250 |
+
global $pagenow, $wp_version;
|
251 |
|
252 |
if ( ! in_array( $pagenow, array( 'post.php', 'post-new.php' ), true ) ) {
|
253 |
return;
|
263 |
$i18n = array();
|
264 |
$i18n['reload'] = esc_html__( 'Page is being reloaded. Please wait...', 'wpglobus' );
|
265 |
|
266 |
+
/**
|
267 |
+
* We have Gutenberg in core since WP 5.0.
|
268 |
+
* @since 2.0
|
269 |
+
*/
|
270 |
+
$version_gutenberg = '';
|
271 |
+
if ( version_compare( $wp_version, '4.9.99', '>' ) ) {
|
272 |
+
$version_gutenberg = $wp_version;
|
273 |
+
} else if ( defined('GUTENBERG_VERSION') ) {
|
274 |
+
$version_gutenberg = GUTENBERG_VERSION;
|
275 |
+
}
|
276 |
+
|
277 |
/**
|
278 |
* Check for Yoast SEO.
|
279 |
*/
|
295 |
'WPGlobusGutenberg',
|
296 |
array(
|
297 |
'version' => WPGLOBUS_VERSION,
|
298 |
+
'versionGutenberg' => $version_gutenberg,
|
299 |
+
'context' => WPGlobus::Config()->builder->get('context'),
|
300 |
'tabs' => $tabs,
|
301 |
'language' => $this->language,
|
302 |
'pagenow' => $pagenow,
|
includes/builders/yoast_seo/class-wpglobus-yoast_seo-update-post.php
ADDED
@@ -0,0 +1,244 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* File: class-wpglobus-yoast_seo-update-post.php
|
4 |
+
*
|
5 |
+
* @package WPGlobus\Builders\Yoast_SEO
|
6 |
+
* @author Alex Gor(alexgff)
|
7 |
+
*/
|
8 |
+
|
9 |
+
/**
|
10 |
+
* Class WPGlobus_yoast_seo_Update_Post.
|
11 |
+
*/
|
12 |
+
|
13 |
+
if ( ! class_exists( 'WPGlobus_yoast_seo_Update_Post' ) ) :
|
14 |
+
|
15 |
+
// phpcs:ignore PEAR.NamingConventions
|
16 |
+
class WPGlobus_yoast_seo_Update_Post {
|
17 |
+
|
18 |
+
/**
|
19 |
+
* Current taxonomy.
|
20 |
+
*/
|
21 |
+
protected $taxonomy = '';
|
22 |
+
|
23 |
+
/**
|
24 |
+
* WP_Term object.
|
25 |
+
*/
|
26 |
+
protected $tag;
|
27 |
+
|
28 |
+
/**
|
29 |
+
* Constructor.
|
30 |
+
*/
|
31 |
+
public function __construct() {
|
32 |
+
|
33 |
+
|
34 |
+
global $pagenow;
|
35 |
+
|
36 |
+
if ( 'edit-tags.php' == $pagenow && $_POST['action'] == 'editedtag' ) {
|
37 |
+
/**
|
38 |
+
* Update button was clicked.
|
39 |
+
*/
|
40 |
+
$this->build_ml_description();
|
41 |
+
}
|
42 |
+
|
43 |
+
/**
|
44 |
+
* @see_file wpglobus\includes\class-wpglobus.php
|
45 |
+
*/
|
46 |
+
remove_action( 'wp_insert_post_data', array( 'WPGlobus', 'on_save_post_data' ), 10 );
|
47 |
+
|
48 |
+
/**
|
49 |
+
* @todo incorrect the saving post in extra languages with priority = 10
|
50 |
+
*/
|
51 |
+
add_filter( 'wp_insert_post_data', array( $this, 'filter__wp_insert_post_data' ), 100, 2 );
|
52 |
+
|
53 |
+
$this->taxonomy = WPGlobus::Config()->builder->get('taxonomy');
|
54 |
+
|
55 |
+
if ( $this->taxonomy ) {
|
56 |
+
|
57 |
+
add_filter( 'wp_update_term_data', array( $this, 'filter__update_term_data' ), 10, 4 );
|
58 |
+
|
59 |
+
}
|
60 |
+
}
|
61 |
+
|
62 |
+
/**
|
63 |
+
* Build multilingual description.
|
64 |
+
* We don't have filter for description like filter for name @see 'wp_update_term_data' in wp-includes\taxonomy.php
|
65 |
+
*/
|
66 |
+
public function build_ml_description() {
|
67 |
+
|
68 |
+
global $wpdb;
|
69 |
+
|
70 |
+
$current_language = WPGlobus::Config()->builder->get_language();
|
71 |
+
|
72 |
+
$tag_ID = (int) $_POST['tag_ID'];
|
73 |
+
$taxonomy = $_POST['taxonomy'];
|
74 |
+
|
75 |
+
$this->tag = get_term( $tag_ID, $taxonomy );
|
76 |
+
|
77 |
+
if ( is_wp_error($this->tag) ) {
|
78 |
+
|
79 |
+
$terms = $wpdb->get_results( $wpdb->prepare( "SELECT t.*, tt.* FROM $wpdb->terms AS t INNER JOIN $wpdb->term_taxonomy AS tt ON t.term_id = tt.term_id WHERE t.term_id = %d", $tag_ID) );
|
80 |
+
if ( ! empty($terms[0]) && is_object($terms[0]) ) {
|
81 |
+
$this->tag = $terms[0];
|
82 |
+
}
|
83 |
+
|
84 |
+
}
|
85 |
+
|
86 |
+
if ( is_wp_error($this->tag) ) {
|
87 |
+
/**
|
88 |
+
* @todo Investigate.
|
89 |
+
*/
|
90 |
+
return;
|
91 |
+
}
|
92 |
+
|
93 |
+
$new_desc = array();
|
94 |
+
|
95 |
+
foreach ( WPGlobus::Config()->enabled_languages as $lang ) :
|
96 |
+
|
97 |
+
if ( $lang === $current_language ) {
|
98 |
+
|
99 |
+
$text = trim( $_POST['description'] );
|
100 |
+
if ( ! empty( $text ) ) {
|
101 |
+
$new_desc[ $lang ] = $text;
|
102 |
+
}
|
103 |
+
|
104 |
+
} else {
|
105 |
+
|
106 |
+
$text = WPGlobus_Core::text_filter( $this->tag->description, $lang, WPGlobus::RETURN_EMPTY );
|
107 |
+
if ( ! empty( $text ) ) {
|
108 |
+
$new_desc[ $lang ] = $text;
|
109 |
+
}
|
110 |
+
|
111 |
+
}
|
112 |
+
|
113 |
+
endforeach;
|
114 |
+
|
115 |
+
$_POST['description'] = WPGlobus_Utils::build_multilingual_string( $new_desc );
|
116 |
+
|
117 |
+
}
|
118 |
+
|
119 |
+
/**
|
120 |
+
* Filters term data before it is updated in the database.
|
121 |
+
*
|
122 |
+
* @param array $data Term data to be updated.
|
123 |
+
* @param int $term_id Term ID.
|
124 |
+
* @param string $taxonomy Taxonomy slug.
|
125 |
+
* @param array $args Arguments passed to wp_update_term().
|
126 |
+
*/
|
127 |
+
public function filter__update_term_data( $data, $term_id, $taxonomy, $args ) {
|
128 |
+
|
129 |
+
if ( is_wp_error($this->tag) ) {
|
130 |
+
/**
|
131 |
+
* @todo Investigate.
|
132 |
+
* may be to use $args.
|
133 |
+
*/
|
134 |
+
return $data;
|
135 |
+
}
|
136 |
+
|
137 |
+
if ( WPGlobus::Config()->builder && ! WPGlobus::Config()->builder->is_builder_page() ) {
|
138 |
+
return $data;
|
139 |
+
}
|
140 |
+
|
141 |
+
$current_language = WPGlobus::Config()->builder->get_language();
|
142 |
+
|
143 |
+
$new_name = array();
|
144 |
+
|
145 |
+
foreach ( WPGlobus::Config()->enabled_languages as $lang ) :
|
146 |
+
|
147 |
+
if ( $lang === $current_language ) {
|
148 |
+
|
149 |
+
$text = trim( $data['name'] );
|
150 |
+
if ( ! empty( $text ) ) {
|
151 |
+
$new_name[ $lang ] = $text;
|
152 |
+
}
|
153 |
+
|
154 |
+
} else {
|
155 |
+
|
156 |
+
$text = WPGlobus_Core::text_filter( $this->tag->name, $lang, WPGlobus::RETURN_EMPTY );
|
157 |
+
if ( ! empty( $text ) ) {
|
158 |
+
$new_name[ $lang ] = $text;
|
159 |
+
}
|
160 |
+
|
161 |
+
}
|
162 |
+
|
163 |
+
endforeach;
|
164 |
+
|
165 |
+
$data['name'] = WPGlobus_Utils::build_multilingual_string( $new_name );
|
166 |
+
|
167 |
+
return $data;
|
168 |
+
|
169 |
+
}
|
170 |
+
|
171 |
+
/**
|
172 |
+
* Callback for 'wp_insert_post_data'.
|
173 |
+
*
|
174 |
+
* @param array $data
|
175 |
+
* @param array $postarr
|
176 |
+
*
|
177 |
+
* @return array mixed
|
178 |
+
*/
|
179 |
+
public function filter__wp_insert_post_data( $data, $postarr ) {
|
180 |
+
|
181 |
+
global $wpdb;
|
182 |
+
$_post = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM $wpdb->posts WHERE ID = %d AND post_type = %s LIMIT 1", $postarr['ID'], $postarr['post_type'] ) );
|
183 |
+
|
184 |
+
$fields = array();
|
185 |
+
if ( isset( $postarr['post_title'] ) ) {
|
186 |
+
$fields['post_title'] = $postarr['post_title'];
|
187 |
+
}
|
188 |
+
|
189 |
+
if ( isset( $postarr['post_content'] ) ) {
|
190 |
+
$fields['post_content'] = $postarr['post_content'];
|
191 |
+
}
|
192 |
+
|
193 |
+
if ( isset( $postarr['post_excerpt'] ) ) {
|
194 |
+
$fields['post_excerpt'] = $postarr['post_excerpt'];
|
195 |
+
}
|
196 |
+
|
197 |
+
$builder_language = WPGlobus::Config()->builder->get_language();
|
198 |
+
|
199 |
+
if ( empty( $builder_language ) ) {
|
200 |
+
|
201 |
+
if ( empty( $postarr[ WPGlobus::get_language_meta_key() ] ) ) {
|
202 |
+
$builder_language = WPGlobus::Config()->default_language;
|
203 |
+
} else {
|
204 |
+
$builder_language = $postarr[ WPGlobus::get_language_meta_key() ];
|
205 |
+
}
|
206 |
+
}
|
207 |
+
|
208 |
+
foreach ( $fields as $field => $value ) {
|
209 |
+
|
210 |
+
$tr = array();
|
211 |
+
|
212 |
+
foreach ( WPGlobus::Config()->enabled_languages as $lang ) :
|
213 |
+
|
214 |
+
if ( $lang === $builder_language ) {
|
215 |
+
|
216 |
+
$text = $value;
|
217 |
+
if ( WPGlobus_Core::has_translations( $value ) ) {
|
218 |
+
$text = WPGlobus_Core::text_filter( $value, $lang, WPGlobus::RETURN_EMPTY );
|
219 |
+
}
|
220 |
+
if ( ! empty( $text ) ) {
|
221 |
+
$tr[ $lang ] = $text;
|
222 |
+
}
|
223 |
+
} else {
|
224 |
+
if ( isset( $_post->$field ) ) {
|
225 |
+
$text = WPGlobus_Core::text_filter( $_post->$field, $lang, WPGlobus::RETURN_EMPTY );
|
226 |
+
if ( ! empty( $text ) ) {
|
227 |
+
$tr[ $lang ] = $text;
|
228 |
+
}
|
229 |
+
}
|
230 |
+
}
|
231 |
+
|
232 |
+
endforeach;
|
233 |
+
|
234 |
+
$data[ $field ] = WPGlobus_Utils::build_multilingual_string( $tr );
|
235 |
+
|
236 |
+
}
|
237 |
+
|
238 |
+
return $data;
|
239 |
+
|
240 |
+
}
|
241 |
+
|
242 |
+
}
|
243 |
+
|
244 |
+
endif;
|
includes/builders/yoast_seo/class-wpglobus-yoast_seo.php
CHANGED
@@ -14,11 +14,130 @@ if ( ! class_exists( 'WPGlobus_Yoast_SEO' ) ) :
|
|
14 |
*/
|
15 |
class WPGlobus_Yoast_SEO extends WPGlobus_Builder {
|
16 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
/**
|
18 |
* Constructor.
|
19 |
*/
|
20 |
public function __construct() {
|
|
|
|
|
|
|
|
|
|
|
21 |
parent::__construct( 'yoast_seo' );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
22 |
}
|
23 |
|
24 |
}
|
14 |
*/
|
15 |
class WPGlobus_Yoast_SEO extends WPGlobus_Builder {
|
16 |
|
17 |
+
/**
|
18 |
+
* Current taxonomy.
|
19 |
+
*/
|
20 |
+
protected $taxonomy = '';
|
21 |
+
|
22 |
+
protected $wpseo_taxonomy_option_name = '';
|
23 |
+
|
24 |
/**
|
25 |
* Constructor.
|
26 |
*/
|
27 |
public function __construct() {
|
28 |
+
|
29 |
+
/**
|
30 |
+
* @see 'WPSEO_PREMIUM_FILE' for premium add-on.
|
31 |
+
*/
|
32 |
+
|
33 |
parent::__construct( 'yoast_seo' );
|
34 |
+
|
35 |
+
$this->taxonomy = WPGlobus::Config()->builder->get('taxonomy');
|
36 |
+
|
37 |
+
if ( $this->taxonomy ) {
|
38 |
+
|
39 |
+
add_action( "{$this->taxonomy}_pre_edit_form", array( $this, 'on__pre_edit_form' ), 10, 2 );
|
40 |
+
|
41 |
+
add_action( "{$this->taxonomy}_term_edit_form_top", array( $this, 'on__edit_form' ), 10, 2 );
|
42 |
+
|
43 |
+
if ( class_exists('WPSEO_Taxonomy_Meta') ) {
|
44 |
+
$wpseo_taxonomy_meta = WPSEO_Taxonomy_Meta::get_instance();
|
45 |
+
$this->wpseo_taxonomy_option_name = $wpseo_taxonomy_meta::$name;
|
46 |
+
} else {
|
47 |
+
$this->wpseo_taxonomy_option_name = 'wpseo_taxonomy_meta';
|
48 |
+
}
|
49 |
+
|
50 |
+
add_filter( "option_{$this->wpseo_taxonomy_option_name}", array( $this, 'filter__wpseo_taxonomy_meta' ), 5, 2 );
|
51 |
+
|
52 |
+
/**
|
53 |
+
* @see wordpress-seo\inc\class-wpseo-replace-vars.php
|
54 |
+
*/
|
55 |
+
add_filter( 'wpseo_replacements', array( $this, 'filter__wpseo_replacements' ), 5, 2 );
|
56 |
+
|
57 |
+
}
|
58 |
+
|
59 |
+
}
|
60 |
+
|
61 |
+
/**
|
62 |
+
* Customization of the replacements before they are applied.
|
63 |
+
*
|
64 |
+
* @api array $replacements The replacements.
|
65 |
+
*
|
66 |
+
* @param array $args The object some of the replacement values might come from,
|
67 |
+
* could be a post, taxonomy or term.
|
68 |
+
*/
|
69 |
+
public function filter__wpseo_replacements( $replacements, $args ) {
|
70 |
+
|
71 |
+
if ( ! is_array($replacements) || empty($replacements) ) {
|
72 |
+
return $replacements;
|
73 |
+
}
|
74 |
+
|
75 |
+
$key = key($replacements);
|
76 |
+
|
77 |
+
if ( WPGlobus_Core::has_translations( $replacements[$key] ) ) {
|
78 |
+
$replacements[$key] = WPGlobus_Core::text_filter( $replacements[$key], WPGlobus::Config()->builder->get_language(), WPGlobus::RETURN_EMPTY );
|
79 |
+
}
|
80 |
+
|
81 |
+
return $replacements;
|
82 |
+
}
|
83 |
+
|
84 |
+
/**
|
85 |
+
* Filters the value of a 'wpseo_taxonomy_meta' option.
|
86 |
+
*
|
87 |
+
* @param mixed $option_value Value of the option. If stored serialized, it will be
|
88 |
+
* unserialized prior to being returned.
|
89 |
+
* @param string $option_name Option name.
|
90 |
+
*/
|
91 |
+
public function filter__wpseo_taxonomy_meta( $option_value, $option_name ) {
|
92 |
+
|
93 |
+
if ( empty( $option_value[$this->taxonomy] ) ) {
|
94 |
+
return $option_value;
|
95 |
+
}
|
96 |
+
|
97 |
+
$_enabled_keys = array('wpseo_title', 'wpseo_desc', 'wpseo_focuskw');
|
98 |
+
|
99 |
+
$language = WPGlobus::Config()->builder->get_language();
|
100 |
+
|
101 |
+
foreach( $option_value[$this->taxonomy] as $tag_ID=>$values ) {
|
102 |
+
foreach($values as $_key=>$_value) {
|
103 |
+
if ( in_array($_key, $_enabled_keys) ) {
|
104 |
+
if ( WPGlobus_Core::has_translations($_value) ) {
|
105 |
+
$option_value[$this->taxonomy][$tag_ID][$_key] = WPGlobus_Core::text_filter($_value, $language, WPGlobus::RETURN_EMPTY);
|
106 |
+
} else {
|
107 |
+
if ( $language != WPGlobus::Config()->default_language ) {
|
108 |
+
$option_value[$this->taxonomy][$tag_ID][$_key] = '';
|
109 |
+
}
|
110 |
+
}
|
111 |
+
}
|
112 |
+
}
|
113 |
+
}
|
114 |
+
|
115 |
+
return $option_value;
|
116 |
+
}
|
117 |
+
|
118 |
+
/**
|
119 |
+
* Fires before the Edit Term form for all taxonomies.
|
120 |
+
*
|
121 |
+
* @param object $tag Current taxonomy term object.
|
122 |
+
* @param string $taxonomy Current $taxonomy slug.
|
123 |
+
*/
|
124 |
+
public function on__pre_edit_form( $tag, $taxonomy ) {
|
125 |
+
|
126 |
+
$language = WPGlobus::Config()->builder->get_language();
|
127 |
+
$tag->description = WPGlobus_Core::text_filter( $tag->description, $language, WPGlobus::RETURN_EMPTY );
|
128 |
+
$tag->name = WPGlobus_Core::text_filter( $tag->name, $language, WPGlobus::RETURN_EMPTY );
|
129 |
+
|
130 |
+
}
|
131 |
+
|
132 |
+
/**
|
133 |
+
* Fires at the beginning of the Edit Term form. Add language field to taxonomy edit form.
|
134 |
+
*
|
135 |
+
* @param object $tag Current taxonomy term object.
|
136 |
+
* @param string $taxonomy Current $taxonomy slug.
|
137 |
+
*/
|
138 |
+
public function on__edit_form( $tag, $taxonomy ) {
|
139 |
+
echo '<input type="hidden" name="'.WPGlobus::get_language_meta_key().'" value="'.WPGlobus::Config()->builder->get_language().'">';
|
140 |
+
|
141 |
}
|
142 |
|
143 |
}
|
includes/class-wpglobus-filters.php
CHANGED
@@ -98,7 +98,7 @@ class WPGlobus_Filters {
|
|
98 |
*
|
99 |
* @return array
|
100 |
*/
|
101 |
-
public static function filter__get_terms(
|
102 |
|
103 |
/**
|
104 |
* @todo Example of a "stopper" filter
|
@@ -184,7 +184,7 @@ class WPGlobus_Filters {
|
|
184 |
if (
|
185 |
is_admin() &&
|
186 |
WPGlobus_WP::is_pagenow( 'post.php' ) &&
|
187 |
-
( ! empty( $_POST['save'] ) || ! empty( $_POST['publish'] ) ) //
|
188 |
) {
|
189 |
return $terms;
|
190 |
}
|
@@ -194,7 +194,7 @@ class WPGlobus_Filters {
|
|
194 |
*
|
195 |
* @see we check post.php page instead of edit.php because redirect
|
196 |
*/
|
197 |
-
if ( is_admin() && WPGlobus_WP::is_pagenow( 'post.php' ) && isset( $_GET['action'] ) && ( 'trash' === $_GET['action'] || 'untrash' === $_GET['action'] ) //
|
198 |
) {
|
199 |
return $terms;
|
200 |
}
|
@@ -202,7 +202,7 @@ class WPGlobus_Filters {
|
|
202 |
/**
|
203 |
* Don't filter term names bulk trash and untrash posts
|
204 |
*/
|
205 |
-
if ( is_admin() && WPGlobus_WP::is_pagenow( 'edit.php' ) && isset( $_GET['action'] ) && ( 'trash' === $_GET['action'] || 'untrash' === $_GET['action'] ) //
|
206 |
) {
|
207 |
return $terms;
|
208 |
}
|
@@ -239,7 +239,7 @@ class WPGlobus_Filters {
|
|
239 |
*/
|
240 |
if ( WPGlobus_WP::is_http_post_action( 'heartbeat' ) &&
|
241 |
WPGlobus_WP::is_pagenow( 'admin-ajax.php' ) &&
|
242 |
-
! empty( $_POST['data']['wp_autosave'] ) //
|
243 |
) {
|
244 |
return $terms;
|
245 |
}
|
@@ -248,7 +248,7 @@ class WPGlobus_Filters {
|
|
248 |
* Don't filter term name at time generate checklist categories in metabox
|
249 |
*/
|
250 |
if (
|
251 |
-
empty( $_POST ) && //
|
252 |
is_admin() &&
|
253 |
WPGlobus_WP::is_pagenow( 'post.php' ) &&
|
254 |
WPGlobus_WP::is_function_in_backtrace( 'wp_terms_checklist' )
|
@@ -321,7 +321,7 @@ class WPGlobus_Filters {
|
|
321 |
*/
|
322 |
public static function filter__get_term( $term ) {
|
323 |
|
324 |
-
if ( WPGlobus_WP::is_http_post_action( 'inline-save-tax' ) ) {
|
325 |
/**
|
326 |
* Don't filter ajax action 'inline-save-tax' from edit-tags.php page.
|
327 |
* See quick_edit() in includes/js/wpglobus.admin.js
|
@@ -375,7 +375,11 @@ class WPGlobus_Filters {
|
|
375 |
*
|
376 |
* @return string
|
377 |
*/
|
378 |
-
public static function filter__pre_insert_term(
|
|
|
|
|
|
|
|
|
379 |
|
380 |
$multilingual_term = esc_sql( $term );
|
381 |
if ( WPGlobus::Config()->language !== WPGlobus::Config()->default_language ) {
|
@@ -383,6 +387,7 @@ class WPGlobus_Filters {
|
|
383 |
}
|
384 |
|
385 |
global $wpdb;
|
|
|
386 |
$data = $wpdb->get_results( "SELECT * FROM $wpdb->terms AS terms WHERE terms.name LIKE '%{$multilingual_term}%'" );
|
387 |
|
388 |
if ( count( $data ) > 0 ) {
|
@@ -632,7 +637,7 @@ class WPGlobus_Filters {
|
|
632 |
$content_ext = '';
|
633 |
|
634 |
foreach ( WPGlobus::Config()->enabled_languages as $language ) {
|
635 |
-
if (
|
636 |
|
637 |
$post_title_ext .= WPGlobus::add_locale_marks( $data['wp_autosave']['post_title'], $language );
|
638 |
$content_ext .= WPGlobus::add_locale_marks( $data['wp_autosave']['content'], $language );
|
@@ -687,7 +692,8 @@ class WPGlobus_Filters {
|
|
687 |
$response['wp_autosave'] = array(
|
688 |
'success' => true,
|
689 |
'message' => sprintf(
|
690 |
-
__( 'Draft saved at %s.' ), date_i18n( $draft_saved_date_format )
|
|
|
691 |
);
|
692 |
}
|
693 |
}
|
@@ -792,7 +798,7 @@ class WPGlobus_Filters {
|
|
792 |
}
|
793 |
|
794 |
$text = wp_strip_all_tags( $text );
|
795 |
-
if ( 'characters' == _x( 'words', 'word count: words or characters?' ) && preg_match( '/^utf\-?8$/i', get_option( 'blog_charset' ) ) ) {
|
796 |
$text = trim( preg_replace( "/[\n\r\t ]+/", ' ', $text ), ' ' );
|
797 |
preg_match_all( '/./u', $text, $words_array );
|
798 |
$words_array = array_slice( $words_array[0], 0, $num_words + 1 );
|
@@ -853,16 +859,17 @@ class WPGlobus_Filters {
|
|
853 |
* @since 1.2.1
|
854 |
*/
|
855 |
public static function set_multilingual_meta_keys() {
|
856 |
-
|
857 |
/**
|
858 |
* Add Alternative Text meta value for media.
|
859 |
* We need to use only one meta because Title, Caption and Description was stored in wp_posts table.
|
860 |
-
*
|
861 |
-
*
|
|
|
862 |
* @since 1.9.11
|
863 |
*/
|
864 |
self::$multilingual_meta_keys['_wp_attachment_image_alt'] = true;
|
865 |
-
|
866 |
self::$multilingual_meta_keys = apply_filters(
|
867 |
'wpglobus_multilingual_meta_keys', self::$multilingual_meta_keys
|
868 |
);
|
@@ -919,7 +926,7 @@ class WPGlobus_Filters {
|
|
919 |
/**
|
920 |
* @todo Refactor this. Write a `filter__array` method.
|
921 |
*/
|
922 |
-
$_meta_array = unserialize( $meta_value );
|
923 |
foreach ( $_meta_array as &$_value ) {
|
924 |
if ( is_array( $_value ) ) {
|
925 |
foreach ( $_value as &$_deep_value ) {
|
@@ -999,6 +1006,11 @@ class WPGlobus_Filters {
|
|
999 |
* @since 1.6.6
|
1000 |
*
|
1001 |
* @scope front
|
|
|
|
|
|
|
|
|
|
|
1002 |
*/
|
1003 |
public static function filter__front_styles( $css, $css_editor ) {
|
1004 |
if ( ! empty( $css_editor ) ) {
|
@@ -1043,7 +1055,7 @@ class WPGlobus_Filters {
|
|
1043 |
*/
|
1044 |
public static function filter__oembed_request_post_id( $post_id, $url ) {
|
1045 |
$language = WPGlobus_Utils::extract_language_from_url( $url );
|
1046 |
-
if (
|
1047 |
WPGlobus::Config()->setLanguageForOembed( $language );
|
1048 |
}
|
1049 |
|
@@ -1134,7 +1146,13 @@ class WPGlobus_Filters {
|
|
1134 |
* @return string
|
1135 |
* @since 1.9.8
|
1136 |
*/
|
1137 |
-
public static function filter__embed_oembed_html(
|
|
|
|
|
|
|
|
|
|
|
|
|
1138 |
|
1139 |
if ( ! is_string( $cache ) ) {
|
1140 |
/**
|
@@ -1157,4 +1175,78 @@ class WPGlobus_Filters {
|
|
1157 |
return $cache;
|
1158 |
}
|
1159 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1160 |
}
|
98 |
*
|
99 |
* @return array
|
100 |
*/
|
101 |
+
public static function filter__get_terms( array $terms ) {
|
102 |
|
103 |
/**
|
104 |
* @todo Example of a "stopper" filter
|
184 |
if (
|
185 |
is_admin() &&
|
186 |
WPGlobus_WP::is_pagenow( 'post.php' ) &&
|
187 |
+
( ! empty( $_POST['save'] ) || ! empty( $_POST['publish'] ) ) // phpcs:ignore WordPress.CSRF.NonceVerification
|
188 |
) {
|
189 |
return $terms;
|
190 |
}
|
194 |
*
|
195 |
* @see we check post.php page instead of edit.php because redirect
|
196 |
*/
|
197 |
+
if ( is_admin() && WPGlobus_WP::is_pagenow( 'post.php' ) && isset( $_GET['action'] ) && ( 'trash' === $_GET['action'] || 'untrash' === $_GET['action'] ) // phpcs:ignore WordPress.CSRF.NonceVerification
|
198 |
) {
|
199 |
return $terms;
|
200 |
}
|
202 |
/**
|
203 |
* Don't filter term names bulk trash and untrash posts
|
204 |
*/
|
205 |
+
if ( is_admin() && WPGlobus_WP::is_pagenow( 'edit.php' ) && isset( $_GET['action'] ) && ( 'trash' === $_GET['action'] || 'untrash' === $_GET['action'] ) // phpcs:ignore WordPress.CSRF.NonceVerification
|
206 |
) {
|
207 |
return $terms;
|
208 |
}
|
239 |
*/
|
240 |
if ( WPGlobus_WP::is_http_post_action( 'heartbeat' ) &&
|
241 |
WPGlobus_WP::is_pagenow( 'admin-ajax.php' ) &&
|
242 |
+
! empty( $_POST['data']['wp_autosave'] ) // phpcs:ignore WordPress.CSRF
|
243 |
) {
|
244 |
return $terms;
|
245 |
}
|
248 |
* Don't filter term name at time generate checklist categories in metabox
|
249 |
*/
|
250 |
if (
|
251 |
+
empty( $_POST ) && // phpcs:ignore WordPress.CSRF
|
252 |
is_admin() &&
|
253 |
WPGlobus_WP::is_pagenow( 'post.php' ) &&
|
254 |
WPGlobus_WP::is_function_in_backtrace( 'wp_terms_checklist' )
|
321 |
*/
|
322 |
public static function filter__get_term( $term ) {
|
323 |
|
324 |
+
if ( WPGlobus_WP::is_http_post_action( 'inline-save-tax' ) ) { // phpcs:ignore Generic
|
325 |
/**
|
326 |
* Don't filter ajax action 'inline-save-tax' from edit-tags.php page.
|
327 |
* See quick_edit() in includes/js/wpglobus.admin.js
|
375 |
*
|
376 |
* @return string
|
377 |
*/
|
378 |
+
public static function filter__pre_insert_term(
|
379 |
+
$term,
|
380 |
+
/** @noinspection PhpUnusedParameterInspection */
|
381 |
+
$taxonomy
|
382 |
+
) {
|
383 |
|
384 |
$multilingual_term = esc_sql( $term );
|
385 |
if ( WPGlobus::Config()->language !== WPGlobus::Config()->default_language ) {
|
387 |
}
|
388 |
|
389 |
global $wpdb;
|
390 |
+
// phpcs:ignore WordPress.WP.PreparedSQL
|
391 |
$data = $wpdb->get_results( "SELECT * FROM $wpdb->terms AS terms WHERE terms.name LIKE '%{$multilingual_term}%'" );
|
392 |
|
393 |
if ( count( $data ) > 0 ) {
|
637 |
$content_ext = '';
|
638 |
|
639 |
foreach ( WPGlobus::Config()->enabled_languages as $language ) {
|
640 |
+
if ( WPGlobus::Config()->default_language === $language ) {
|
641 |
|
642 |
$post_title_ext .= WPGlobus::add_locale_marks( $data['wp_autosave']['post_title'], $language );
|
643 |
$content_ext .= WPGlobus::add_locale_marks( $data['wp_autosave']['content'], $language );
|
692 |
$response['wp_autosave'] = array(
|
693 |
'success' => true,
|
694 |
'message' => sprintf(
|
695 |
+
__( 'Draft saved at %s.' ), date_i18n( $draft_saved_date_format )
|
696 |
+
),
|
697 |
);
|
698 |
}
|
699 |
}
|
798 |
}
|
799 |
|
800 |
$text = wp_strip_all_tags( $text );
|
801 |
+
if ( 'characters' == _x( 'words', 'word count: words or characters?' ) && preg_match( '/^utf\-?8$/i', get_option( 'blog_charset' ) ) ) {//phpcs:ignore WordPress.PHP.StrictComparisons
|
802 |
$text = trim( preg_replace( "/[\n\r\t ]+/", ' ', $text ), ' ' );
|
803 |
preg_match_all( '/./u', $text, $words_array );
|
804 |
$words_array = array_slice( $words_array[0], 0, $num_words + 1 );
|
859 |
* @since 1.2.1
|
860 |
*/
|
861 |
public static function set_multilingual_meta_keys() {
|
862 |
+
|
863 |
/**
|
864 |
* Add Alternative Text meta value for media.
|
865 |
* We need to use only one meta because Title, Caption and Description was stored in wp_posts table.
|
866 |
+
*
|
867 |
+
* @todo may be to use another class to store keys for $multilingual_meta_keys in future version.
|
868 |
+
*
|
869 |
* @since 1.9.11
|
870 |
*/
|
871 |
self::$multilingual_meta_keys['_wp_attachment_image_alt'] = true;
|
872 |
+
|
873 |
self::$multilingual_meta_keys = apply_filters(
|
874 |
'wpglobus_multilingual_meta_keys', self::$multilingual_meta_keys
|
875 |
);
|
926 |
/**
|
927 |
* @todo Refactor this. Write a `filter__array` method.
|
928 |
*/
|
929 |
+
$_meta_array = unserialize( $meta_value ); //phpcs:ignore WordPress.PHP.DiscouragedPHPFunctions
|
930 |
foreach ( $_meta_array as &$_value ) {
|
931 |
if ( is_array( $_value ) ) {
|
932 |
foreach ( $_value as &$_deep_value ) {
|
1006 |
* @since 1.6.6
|
1007 |
*
|
1008 |
* @scope front
|
1009 |
+
*
|
1010 |
+
* @param string $css
|
1011 |
+
* @param string $css_editor
|
1012 |
+
*
|
1013 |
+
* @return string
|
1014 |
*/
|
1015 |
public static function filter__front_styles( $css, $css_editor ) {
|
1016 |
if ( ! empty( $css_editor ) ) {
|
1055 |
*/
|
1056 |
public static function filter__oembed_request_post_id( $post_id, $url ) {
|
1057 |
$language = WPGlobus_Utils::extract_language_from_url( $url );
|
1058 |
+
if ( WPGlobus::Config()->default_language !== $language ) {
|
1059 |
WPGlobus::Config()->setLanguageForOembed( $language );
|
1060 |
}
|
1061 |
|
1146 |
* @return string
|
1147 |
* @since 1.9.8
|
1148 |
*/
|
1149 |
+
public static function filter__embed_oembed_html(
|
1150 |
+
$cache, $url,
|
1151 |
+
/** @noinspection PhpUnusedParameterInspection */
|
1152 |
+
$attr,
|
1153 |
+
/** @noinspection PhpUnusedParameterInspection */
|
1154 |
+
$post_ID
|
1155 |
+
) {
|
1156 |
|
1157 |
if ( ! is_string( $cache ) ) {
|
1158 |
/**
|
1175 |
return $cache;
|
1176 |
}
|
1177 |
|
1178 |
+
/**
|
1179 |
+
* Filters a 'wpseo_taxonomy_meta' option before its value is updated.
|
1180 |
+
*
|
1181 |
+
* @since 2.0
|
1182 |
+
*
|
1183 |
+
* @param mixed $new_value The new, unserialized option value.
|
1184 |
+
* @param mixed $old_value The old option value.
|
1185 |
+
* @param string $option Option name.
|
1186 |
+
*
|
1187 |
+
* @return mixed
|
1188 |
+
*/
|
1189 |
+
public static function filter__pre_update_wpseo_taxonomy_meta(
|
1190 |
+
$new_value,
|
1191 |
+
/** @noinspection PhpUnusedParameterInspection */
|
1192 |
+
$old_value,
|
1193 |
+
/** @noinspection PhpUnusedParameterInspection */
|
1194 |
+
$option
|
1195 |
+
) {
|
1196 |
+
|
1197 |
+
global $pagenow;
|
1198 |
+
|
1199 |
+
if ( 'edit-tags.php' === $pagenow && 'editedtag' === $_POST['action'] ) { // phpcs:ignore WordPress.CSRF.NonceVerification
|
1200 |
+
/**
|
1201 |
+
* Update button was clicked on term.php page.
|
1202 |
+
*/
|
1203 |
+
$current_language = WPGlobus::Config()->builder->get_language();
|
1204 |
+
$taxonomy = WPGlobus::Config()->builder->get( 'taxonomy' );
|
1205 |
+
$tag_ID = (int) $_POST['tag_ID'];
|
1206 |
+
|
1207 |
+
$_enabled_keys = array( 'wpseo_title', 'wpseo_desc', 'wpseo_focuskw' );
|
1208 |
+
|
1209 |
+
/**
|
1210 |
+
* Get option.
|
1211 |
+
*/
|
1212 |
+
global $wpdb;
|
1213 |
+
$query = "SELECT option_value FROM $wpdb->options WHERE option_name = 'wpseo_taxonomy_meta'";
|
1214 |
+
$result = $wpdb->get_col( $query ); // phpcs:ignore WordPress.WP.PreparedSQL
|
1215 |
+
$option_values = maybe_unserialize( $result[0] );
|
1216 |
+
|
1217 |
+
foreach ( $_enabled_keys as $field ) {
|
1218 |
+
|
1219 |
+
$new = array();
|
1220 |
+
|
1221 |
+
foreach ( WPGlobus::Config()->enabled_languages as $lang ) :
|
1222 |
+
|
1223 |
+
if ( $lang === $current_language ) {
|
1224 |
+
|
1225 |
+
if ( empty( $new_value[ $taxonomy ][ $tag_ID ][ $field ] ) ) {//phpcs:ignore Generic.CodeAnalysis
|
1226 |
+
//$text = '';
|
1227 |
+
} else {
|
1228 |
+
$new[ $lang ] = $new_value[ $taxonomy ][ $tag_ID ][ $field ];
|
1229 |
+
}
|
1230 |
+
} else {
|
1231 |
+
|
1232 |
+
if ( ! empty( $option_values[ $taxonomy ][ $tag_ID ][ $field ] ) ) {
|
1233 |
+
|
1234 |
+
$_text = WPGlobus_Core::text_filter( $option_values[ $taxonomy ][ $tag_ID ][ $field ], $lang, WPGlobus::RETURN_EMPTY );
|
1235 |
+
if ( ! empty( $_text ) ) {
|
1236 |
+
$new[ $lang ] = $_text;
|
1237 |
+
}
|
1238 |
+
}
|
1239 |
+
}
|
1240 |
+
|
1241 |
+
endforeach;
|
1242 |
+
|
1243 |
+
$new_value[ $taxonomy ][ $tag_ID ][ $field ] = WPGlobus_Utils::build_multilingual_string( $new );
|
1244 |
+
|
1245 |
+
} // endforeach
|
1246 |
+
}
|
1247 |
+
|
1248 |
+
return $new_value;
|
1249 |
+
|
1250 |
+
}
|
1251 |
+
|
1252 |
}
|
includes/class-wpglobus.php
CHANGED
@@ -348,12 +348,6 @@ class WPGlobus {
|
|
348 |
|
349 |
$id = self::Config()->builder->get_id();
|
350 |
|
351 |
-
if ( 'yoast_seo' === $id ) {
|
352 |
-
/**
|
353 |
-
* @todo Temporarily using 'js_composer' instead of 'yoast_seo'.
|
354 |
-
*/
|
355 |
-
$id = 'js_composer';
|
356 |
-
}
|
357 |
$_file = dirname( __FILE__ ) . '/builders/' . $id . '/class-wpglobus-' . $id . '-update-post.php';
|
358 |
if ( file_exists( $_file ) ) {
|
359 |
/** @noinspection PhpIncludeInspection */
|
@@ -429,6 +423,24 @@ class WPGlobus {
|
|
429 |
|
430 |
global $pagenow;
|
431 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
432 |
/**
|
433 |
* @since 1.9.17
|
434 |
*/
|
@@ -457,10 +469,21 @@ class WPGlobus {
|
|
457 |
'on_admin_scripts',
|
458 |
) );
|
459 |
|
460 |
-
|
461 |
-
|
462 |
-
|
463 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
464 |
|
465 |
add_action( 'admin_footer', array(
|
466 |
$this,
|
@@ -501,24 +524,6 @@ class WPGlobus {
|
|
501 |
}
|
502 |
}
|
503 |
|
504 |
-
if ( in_array( $pagenow, array( 'edit-tags.php', 'term.php' ), true ) ) {
|
505 |
-
/**
|
506 |
-
* Need to get taxonomy to use the correct filter.
|
507 |
-
*/
|
508 |
-
$taxonomy_slug = WPGlobus_Utils::safe_get( 'taxonomy' );
|
509 |
-
if ( $taxonomy_slug ) {
|
510 |
-
add_action( "{$taxonomy_slug}_pre_edit_form",
|
511 |
-
array( $this, 'on_add_language_tabs_edit_taxonomy' ),
|
512 |
-
10, 2
|
513 |
-
);
|
514 |
-
|
515 |
-
add_action( "{$taxonomy_slug}_edit_form",
|
516 |
-
array( $this, 'on_add_taxonomy_form_wrapper' ),
|
517 |
-
10, 2
|
518 |
-
);
|
519 |
-
}
|
520 |
-
}
|
521 |
-
|
522 |
if ( self::Config()->toggle == 'on' || ! $this->user_can( 'wpglobus_toggle' ) ) {
|
523 |
|
524 |
/**
|
@@ -1867,14 +1872,25 @@ class WPGlobus {
|
|
1867 |
wp_enqueue_script( 'wpglobus-admin' );
|
1868 |
|
1869 |
$current_tab = $config->default_language;
|
|
|
1870 |
if ( 'post.php' == $page_action ) {
|
|
|
1871 |
if ( isset( $_GET['post'] ) ) { // phpcs:ignore WordPress.CSRF.NonceVerification
|
1872 |
$_current_tab = get_post_meta( $_GET['post'], self::Config()->builder->get_language_meta_key(), 'true' ); // phpcs:ignore WordPress.CSRF.NonceVerification
|
1873 |
if ( $_current_tab ) {
|
1874 |
$current_tab = $_current_tab;
|
1875 |
}
|
1876 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1877 |
}
|
|
|
1878 |
} else {
|
1879 |
|
1880 |
wp_register_script(
|
@@ -3490,12 +3506,25 @@ class WPGlobus {
|
|
3490 |
foreach ( self::Config()->open_languages as $language ) {
|
3491 |
$return =
|
3492 |
$language == self::Config()->default_language ? self::RETURN_IN_DEFAULT_LANGUAGE : self::RETURN_EMPTY;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3493 |
?>
|
3494 |
-
<li id="wpglobus-link-tab-<?php echo esc_attr( $language ); ?>" class=""
|
3495 |
data-language="<?php echo esc_attr( $language ); ?>"
|
3496 |
data-name="<?php echo esc_attr( WPGlobus_Core::text_filter( $object->name, $language, $return ) ); ?>"
|
3497 |
data-description="<?php echo esc_attr( WPGlobus_Core::text_filter( $object->description, $language, $return ) ); ?>">
|
3498 |
-
<a
|
|
|
|
|
3499 |
</li>
|
3500 |
<?php
|
3501 |
}
|
348 |
|
349 |
$id = self::Config()->builder->get_id();
|
350 |
|
|
|
|
|
|
|
|
|
|
|
|
|
351 |
$_file = dirname( __FILE__ ) . '/builders/' . $id . '/class-wpglobus-' . $id . '-update-post.php';
|
352 |
if ( file_exists( $_file ) ) {
|
353 |
/** @noinspection PhpIncludeInspection */
|
423 |
|
424 |
global $pagenow;
|
425 |
|
426 |
+
if ( in_array( $pagenow, array( 'edit-tags.php', 'term.php' ), true ) ) {
|
427 |
+
/**
|
428 |
+
* Need to get taxonomy to use the correct filter.
|
429 |
+
*/
|
430 |
+
$taxonomy_slug = WPGlobus_Utils::safe_get( 'taxonomy' );
|
431 |
+
if ( $taxonomy_slug ) {
|
432 |
+
add_action( "{$taxonomy_slug}_pre_edit_form",
|
433 |
+
array( $this, 'on_add_language_tabs_edit_taxonomy' ),
|
434 |
+
10, 2
|
435 |
+
);
|
436 |
+
|
437 |
+
add_action( "{$taxonomy_slug}_edit_form",
|
438 |
+
array( $this, 'on_add_taxonomy_form_wrapper' ),
|
439 |
+
10, 2
|
440 |
+
);
|
441 |
+
}
|
442 |
+
}
|
443 |
+
|
444 |
/**
|
445 |
* @since 1.9.17
|
446 |
*/
|
469 |
'on_admin_scripts',
|
470 |
) );
|
471 |
|
472 |
+
if ( 'core' === self::Config()->builder->get( 'context' ) && self::Config()->builder->is_builder_page() ) {
|
473 |
+
/**
|
474 |
+
* @since 2.0.0
|
475 |
+
*/
|
476 |
+
add_action( 'block_editor_meta_box_hidden_fields', array(
|
477 |
+
$this,
|
478 |
+
'on_add_title_fields',
|
479 |
+
) );
|
480 |
+
} else {
|
481 |
+
|
482 |
+
add_action( 'edit_form_after_title', array(
|
483 |
+
$this,
|
484 |
+
'on_add_title_fields',
|
485 |
+
) );
|
486 |
+
}
|
487 |
|
488 |
add_action( 'admin_footer', array(
|
489 |
$this,
|
524 |
}
|
525 |
}
|
526 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
527 |
if ( self::Config()->toggle == 'on' || ! $this->user_can( 'wpglobus_toggle' ) ) {
|
528 |
|
529 |
/**
|
1872 |
wp_enqueue_script( 'wpglobus-admin' );
|
1873 |
|
1874 |
$current_tab = $config->default_language;
|
1875 |
+
|
1876 |
if ( 'post.php' == $page_action ) {
|
1877 |
+
|
1878 |
if ( isset( $_GET['post'] ) ) { // phpcs:ignore WordPress.CSRF.NonceVerification
|
1879 |
$_current_tab = get_post_meta( $_GET['post'], self::Config()->builder->get_language_meta_key(), 'true' ); // phpcs:ignore WordPress.CSRF.NonceVerification
|
1880 |
if ( $_current_tab ) {
|
1881 |
$current_tab = $_current_tab;
|
1882 |
}
|
1883 |
}
|
1884 |
+
|
1885 |
+
} else if ( 'taxonomy-edit' == $page_action ) {
|
1886 |
+
|
1887 |
+
$_current_tab = isset($_GET['language']) ? $_GET['language'] : false;
|
1888 |
+
if ( $_current_tab ) {
|
1889 |
+
$current_tab = $_current_tab;
|
1890 |
+
}
|
1891 |
+
|
1892 |
}
|
1893 |
+
|
1894 |
} else {
|
1895 |
|
1896 |
wp_register_script(
|
3506 |
foreach ( self::Config()->open_languages as $language ) {
|
3507 |
$return =
|
3508 |
$language == self::Config()->default_language ? self::RETURN_IN_DEFAULT_LANGUAGE : self::RETURN_EMPTY;
|
3509 |
+
|
3510 |
+
$_href = '';
|
3511 |
+
$_onclick = '';
|
3512 |
+
if ( self::Config()->builder->get('taxonomy') && self::Config()->builder->is_builder_page() ) {
|
3513 |
+
$get = $_GET;
|
3514 |
+
unset( $get['language'] );
|
3515 |
+
$get['language'] = $language;
|
3516 |
+
$_href = admin_url( add_query_arg( $get, 'term.php' ) );
|
3517 |
+
$_onclick = 'onclick="return false;"';
|
3518 |
+
}
|
3519 |
+
|
3520 |
?>
|
3521 |
+
<li id="wpglobus-link-tab-<?php echo esc_attr( $language ); ?>" class="wpglobus-tax-edit-tab"
|
3522 |
data-language="<?php echo esc_attr( $language ); ?>"
|
3523 |
data-name="<?php echo esc_attr( WPGlobus_Core::text_filter( $object->name, $language, $return ) ); ?>"
|
3524 |
data-description="<?php echo esc_attr( WPGlobus_Core::text_filter( $object->description, $language, $return ) ); ?>">
|
3525 |
+
<a data-language="<?php echo esc_attr( $language ); ?>"
|
3526 |
+
data-href="<?php echo $_href; ?>" <?php echo $_onclick; ?>
|
3527 |
+
href="#taxonomy-tab-<?php echo esc_attr( $language ); ?>"><?php echo esc_html( self::Config()->en_language_name[ $language ] ); ?></a>
|
3528 |
</li>
|
3529 |
<?php
|
3530 |
}
|
includes/options/templates/compatibility.php
CHANGED
@@ -19,6 +19,21 @@ if ( ! function_exists( 'is_plugin_active' ) ) {
|
|
19 |
|
20 |
$add_ons = WPGlobus_Builders::get_addons();
|
21 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
22 |
$compatibility = '<h3>' . esc_html__( 'List of supported add-ons', 'wpglobus' ) . ':</h3>';
|
23 |
|
24 |
$compatibility .= '<table id="wpglobus-options-compatibility">';
|
@@ -33,25 +48,36 @@ $compatibility .= '</tr>';
|
|
33 |
$compatibility .= '</thead>';
|
34 |
|
35 |
$compatibility .= '<tbody>';
|
36 |
-
foreach ( $add_ons as $add_on ) {
|
37 |
-
|
38 |
$_version = '';
|
39 |
$_status = '';
|
40 |
-
|
41 |
-
if (
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
42 |
|
43 |
-
|
44 |
-
|
45 |
|
46 |
-
|
47 |
-
|
|
|
|
|
|
|
48 |
} else {
|
49 |
-
$_status = esc_html__( '
|
50 |
}
|
51 |
-
|
52 |
-
$_status = esc_html__( 'Not installed', 'wpglobus' );
|
53 |
}
|
54 |
-
|
55 |
$_stage = '';
|
56 |
if ( empty( $add_on['stage'] ) ) {
|
57 |
$_stage = 'production';
|
19 |
|
20 |
$add_ons = WPGlobus_Builders::get_addons();
|
21 |
|
22 |
+
if ( ! empty( $add_ons['gutenberg'] ) ) {
|
23 |
+
|
24 |
+
/**
|
25 |
+
* We have Gutenberg in core since WP 5.0.
|
26 |
+
* @since 2.0
|
27 |
+
*/
|
28 |
+
global $wp_version;
|
29 |
+
if ( version_compare( $wp_version, '4.9.99', '>' ) ) {
|
30 |
+
$add_ons['gutenberg']['context'] = 'core';
|
31 |
+
} else {
|
32 |
+
$add_ons['gutenberg']['context'] = '';
|
33 |
+
}
|
34 |
+
|
35 |
+
}
|
36 |
+
|
37 |
$compatibility = '<h3>' . esc_html__( 'List of supported add-ons', 'wpglobus' ) . ':</h3>';
|
38 |
|
39 |
$compatibility .= '<table id="wpglobus-options-compatibility">';
|
48 |
$compatibility .= '</thead>';
|
49 |
|
50 |
$compatibility .= '<tbody>';
|
51 |
+
foreach ( $add_ons as $id=>$add_on ) {
|
52 |
+
|
53 |
$_version = '';
|
54 |
$_status = '';
|
55 |
+
|
56 |
+
if ( 'gutenberg' == $id && 'core' == $add_on['context'] ) {
|
57 |
+
|
58 |
+
$_version = $wp_version;
|
59 |
+
$_status = esc_html__( 'In core', 'wpglobus' );
|
60 |
+
$add_on['supported_min_version'] = '';
|
61 |
+
|
62 |
+
} else {
|
63 |
+
|
64 |
+
$_file = WP_PLUGIN_DIR . '/' . $add_on['path'];
|
65 |
+
if ( file_exists( $_file ) ) {
|
66 |
|
67 |
+
$_fd = get_file_data( $_file, array( 'version' => 'Version' ) );
|
68 |
+
$_version = $_fd['version'];
|
69 |
|
70 |
+
if ( is_plugin_active( $add_on['path'] ) ) {
|
71 |
+
$_status = esc_html__( 'Active', 'wpglobus' );
|
72 |
+
} else {
|
73 |
+
$_status = esc_html__( 'Installed, inactive', 'wpglobus' );
|
74 |
+
}
|
75 |
} else {
|
76 |
+
$_status = esc_html__( 'Not installed', 'wpglobus' );
|
77 |
}
|
78 |
+
|
|
|
79 |
}
|
80 |
+
|
81 |
$_stage = '';
|
82 |
if ( empty( $add_on['stage'] ) ) {
|
83 |
$_stage = 'production';
|
includes/wpglobus-controller.php
CHANGED
@@ -402,6 +402,16 @@ if ( defined( 'AIOSEOP_VERSION' ) ) {
|
|
402 |
}
|
403 |
}
|
404 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
405 |
if ( class_exists( 'Whistles_Load' ) ) {
|
406 |
/**
|
407 |
* Translate "Whistles"
|
402 |
}
|
403 |
}
|
404 |
|
405 |
+
/**
|
406 |
+
* Yoast SEO filters.
|
407 |
+
* @since 2.0
|
408 |
+
*/
|
409 |
+
if ( defined( 'WPSEO_VERSION' ) ) {
|
410 |
+
if ( is_admin() ) {
|
411 |
+
add_filter( "pre_update_option_wpseo_taxonomy_meta", array( 'WPGlobus_Filters', 'filter__pre_update_wpseo_taxonomy_meta' ), 5, 3 );
|
412 |
+
}
|
413 |
+
}
|
414 |
+
|
415 |
if ( class_exists( 'Whistles_Load' ) ) {
|
416 |
/**
|
417 |
* Translate "Whistles"
|
languages/wpglobus-ar.po
CHANGED
@@ -288,8 +288,8 @@ 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:
|
293 |
msgid "WPGlobus"
|
294 |
msgstr "WPGlobus"
|
295 |
|
@@ -808,7 +808,7 @@ msgid "To translate permalinks, please activate the module Slug."
|
|
808 |
msgstr ""
|
809 |
|
810 |
#: includes/builders/class-wpglobus-builder.php:358,
|
811 |
-
#: includes/class-wpglobus.php:
|
812 |
msgid "Save draft before using extra language."
|
813 |
msgstr ""
|
814 |
|
@@ -816,7 +816,7 @@ msgstr ""
|
|
816 |
msgid "Builder"
|
817 |
msgstr ""
|
818 |
|
819 |
-
#: includes/builders/class-wpglobus-builder.php:
|
820 |
msgid "Сompatibility Settings"
|
821 |
msgstr ""
|
822 |
|
@@ -879,46 +879,46 @@ msgid "Selector type"
|
|
879 |
msgstr ""
|
880 |
|
881 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
882 |
-
#: includes/class-wpglobus.php:
|
883 |
msgid "OFF"
|
884 |
msgstr ""
|
885 |
|
886 |
-
#: includes/class-wpglobus.php:
|
887 |
msgid "Turn on"
|
888 |
msgstr ""
|
889 |
|
890 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
891 |
-
#: includes/class-wpglobus.php:
|
892 |
msgid "ON"
|
893 |
msgstr ""
|
894 |
|
895 |
-
#: includes/class-wpglobus.php:
|
896 |
msgid "Turn off"
|
897 |
msgstr ""
|
898 |
|
899 |
-
#: includes/class-wpglobus.php:
|
900 |
msgid "You cannot disable the main language."
|
901 |
msgstr ""
|
902 |
|
903 |
-
#: includes/class-wpglobus.php:
|
904 |
msgid "*) Available after the menu is saved."
|
905 |
msgstr ""
|
906 |
|
907 |
-
#: includes/class-wpglobus.php:
|
908 |
msgid "Need a multilingual slug?"
|
909 |
msgstr ""
|
910 |
|
911 |
-
#: includes/class-wpglobus.php:
|
912 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
913 |
msgstr ""
|
914 |
|
915 |
-
#: includes/class-wpglobus.php:
|
916 |
msgid ""
|
917 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
918 |
"default option."
|
919 |
msgstr ""
|
920 |
|
921 |
-
#: includes/class-wpglobus.php:
|
922 |
msgid "Add"
|
923 |
msgstr "إضافة"
|
924 |
|
@@ -1282,39 +1282,43 @@ msgstr ""
|
|
1282 |
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1283 |
msgstr ""
|
1284 |
|
1285 |
-
#: includes/options/templates/compatibility.php:
|
1286 |
msgid "List of supported add-ons"
|
1287 |
msgstr ""
|
1288 |
|
1289 |
-
#: includes/options/templates/compatibility.php:
|
1290 |
msgid "Add-on"
|
1291 |
msgstr ""
|
1292 |
|
1293 |
-
#: includes/options/templates/compatibility.php:
|
1294 |
msgid "Current version"
|
1295 |
msgstr ""
|
1296 |
|
1297 |
-
#: includes/options/templates/compatibility.php:
|
1298 |
msgid "Supported minimum version"
|
1299 |
msgstr ""
|
1300 |
|
1301 |
-
#: includes/options/templates/compatibility.php:
|
1302 |
msgid "Stage"
|
1303 |
msgstr ""
|
1304 |
|
1305 |
-
#: includes/options/templates/compatibility.php:
|
1306 |
msgid "Status"
|
1307 |
msgstr ""
|
1308 |
|
1309 |
-
#: includes/options/templates/compatibility.php:
|
|
|
|
|
|
|
|
|
1310 |
msgid "Active"
|
1311 |
msgstr ""
|
1312 |
|
1313 |
-
#: includes/options/templates/compatibility.php:
|
1314 |
msgid "Installed, inactive"
|
1315 |
msgstr ""
|
1316 |
|
1317 |
-
#: includes/options/templates/compatibility.php:
|
1318 |
msgid "Not installed"
|
1319 |
msgstr ""
|
1320 |
|
288 |
msgstr ""
|
289 |
|
290 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
291 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:316,
|
292 |
+
#: includes/class-wpglobus.php:1325, wpglobus.php:12, wpglobus.php:18
|
293 |
msgid "WPGlobus"
|
294 |
msgstr "WPGlobus"
|
295 |
|
808 |
msgstr ""
|
809 |
|
810 |
#: includes/builders/class-wpglobus-builder.php:358,
|
811 |
+
#: includes/class-wpglobus.php:3561
|
812 |
msgid "Save draft before using extra language."
|
813 |
msgstr ""
|
814 |
|
816 |
msgid "Builder"
|
817 |
msgstr ""
|
818 |
|
819 |
+
#: includes/builders/class-wpglobus-builder.php:465
|
820 |
msgid "Сompatibility Settings"
|
821 |
msgstr ""
|
822 |
|
879 |
msgstr ""
|
880 |
|
881 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
882 |
+
#: includes/class-wpglobus.php:1299
|
883 |
msgid "OFF"
|
884 |
msgstr ""
|
885 |
|
886 |
+
#: includes/class-wpglobus.php:1300
|
887 |
msgid "Turn on"
|
888 |
msgstr ""
|
889 |
|
890 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
891 |
+
#: includes/class-wpglobus.php:1304
|
892 |
msgid "ON"
|
893 |
msgstr ""
|
894 |
|
895 |
+
#: includes/class-wpglobus.php:1305
|
896 |
msgid "Turn off"
|
897 |
msgstr ""
|
898 |
|
899 |
+
#: includes/class-wpglobus.php:1488
|
900 |
msgid "You cannot disable the main language."
|
901 |
msgstr ""
|
902 |
|
903 |
+
#: includes/class-wpglobus.php:1689
|
904 |
msgid "*) Available after the menu is saved."
|
905 |
msgstr ""
|
906 |
|
907 |
+
#: includes/class-wpglobus.php:1706
|
908 |
msgid "Need a multilingual slug?"
|
909 |
msgstr ""
|
910 |
|
911 |
+
#: includes/class-wpglobus.php:3994
|
912 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
913 |
msgstr ""
|
914 |
|
915 |
+
#: includes/class-wpglobus.php:3996
|
916 |
msgid ""
|
917 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
918 |
"default option."
|
919 |
msgstr ""
|
920 |
|
921 |
+
#: includes/class-wpglobus.php:4142
|
922 |
msgid "Add"
|
923 |
msgstr "إضافة"
|
924 |
|
1282 |
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1283 |
msgstr ""
|
1284 |
|
1285 |
+
#: includes/options/templates/compatibility.php:37
|
1286 |
msgid "List of supported add-ons"
|
1287 |
msgstr ""
|
1288 |
|
1289 |
+
#: includes/options/templates/compatibility.php:42
|
1290 |
msgid "Add-on"
|
1291 |
msgstr ""
|
1292 |
|
1293 |
+
#: includes/options/templates/compatibility.php:43
|
1294 |
msgid "Current version"
|
1295 |
msgstr ""
|
1296 |
|
1297 |
+
#: includes/options/templates/compatibility.php:44
|
1298 |
msgid "Supported minimum version"
|
1299 |
msgstr ""
|
1300 |
|
1301 |
+
#: includes/options/templates/compatibility.php:45
|
1302 |
msgid "Stage"
|
1303 |
msgstr ""
|
1304 |
|
1305 |
+
#: includes/options/templates/compatibility.php:46
|
1306 |
msgid "Status"
|
1307 |
msgstr ""
|
1308 |
|
1309 |
+
#: includes/options/templates/compatibility.php:59
|
1310 |
+
msgid "In core"
|
1311 |
+
msgstr ""
|
1312 |
+
|
1313 |
+
#: includes/options/templates/compatibility.php:71
|
1314 |
msgid "Active"
|
1315 |
msgstr ""
|
1316 |
|
1317 |
+
#: includes/options/templates/compatibility.php:73
|
1318 |
msgid "Installed, inactive"
|
1319 |
msgstr ""
|
1320 |
|
1321 |
+
#: includes/options/templates/compatibility.php:76
|
1322 |
msgid "Not installed"
|
1323 |
msgstr ""
|
1324 |
|
languages/wpglobus-be.po
CHANGED
@@ -313,8 +313,8 @@ 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:
|
318 |
msgid "WPGlobus"
|
319 |
msgstr "WPGlobus"
|
320 |
|
@@ -859,7 +859,7 @@ msgid "To translate permalinks, please activate the module Slug."
|
|
859 |
msgstr ""
|
860 |
|
861 |
#: includes/builders/class-wpglobus-builder.php:358,
|
862 |
-
#: includes/class-wpglobus.php:
|
863 |
msgid "Save draft before using extra language."
|
864 |
msgstr ""
|
865 |
|
@@ -867,7 +867,7 @@ msgstr ""
|
|
867 |
msgid "Builder"
|
868 |
msgstr ""
|
869 |
|
870 |
-
#: includes/builders/class-wpglobus-builder.php:
|
871 |
msgid "Сompatibility Settings"
|
872 |
msgstr ""
|
873 |
|
@@ -930,42 +930,42 @@ msgid "Selector type"
|
|
930 |
msgstr "Способ выбора языка"
|
931 |
|
932 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
933 |
-
#: includes/class-wpglobus.php:
|
934 |
msgid "OFF"
|
935 |
msgstr ""
|
936 |
|
937 |
-
#: includes/class-wpglobus.php:
|
938 |
msgid "Turn on"
|
939 |
msgstr ""
|
940 |
|
941 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
942 |
-
#: includes/class-wpglobus.php:
|
943 |
msgid "ON"
|
944 |
msgstr ""
|
945 |
|
946 |
-
#: includes/class-wpglobus.php:
|
947 |
msgid "Turn off"
|
948 |
msgstr ""
|
949 |
|
950 |
-
#: includes/class-wpglobus.php:
|
951 |
msgid "You cannot disable the main language."
|
952 |
msgstr "Нельзя отключить основной язык."
|
953 |
|
954 |
-
#: includes/class-wpglobus.php:
|
955 |
msgid "*) Available after the menu is saved."
|
956 |
msgstr "*) Доступно после сохранения меню."
|
957 |
|
958 |
-
#: includes/class-wpglobus.php:
|
959 |
msgid "Need a multilingual slug?"
|
960 |
msgstr "Нужен мультиязычный ярлык?"
|
961 |
|
962 |
-
#: includes/class-wpglobus.php:
|
963 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
964 |
msgstr ""
|
965 |
"Чтобы использовать плагин WPGlobus, необходимо включить ЧПУ - постоянные "
|
966 |
"ссылки."
|
967 |
|
968 |
-
#: includes/class-wpglobus.php:
|
969 |
msgid ""
|
970 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
971 |
"default option."
|
@@ -973,7 +973,7 @@ msgstr ""
|
|
973 |
"Пожалуйста, перейдите в меню Настройки > Постоянные ссылки и поменяйте "
|
974 |
"структуру ссылок в разделе \"Общие настройки\"."
|
975 |
|
976 |
-
#: includes/class-wpglobus.php:
|
977 |
msgid "Add"
|
978 |
msgstr "Добавить"
|
979 |
|
@@ -1338,39 +1338,43 @@ msgstr ""
|
|
1338 |
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1339 |
msgstr ""
|
1340 |
|
1341 |
-
#: includes/options/templates/compatibility.php:
|
1342 |
msgid "List of supported add-ons"
|
1343 |
msgstr ""
|
1344 |
|
1345 |
-
#: includes/options/templates/compatibility.php:
|
1346 |
msgid "Add-on"
|
1347 |
msgstr ""
|
1348 |
|
1349 |
-
#: includes/options/templates/compatibility.php:
|
1350 |
msgid "Current version"
|
1351 |
msgstr ""
|
1352 |
|
1353 |
-
#: includes/options/templates/compatibility.php:
|
1354 |
msgid "Supported minimum version"
|
1355 |
msgstr ""
|
1356 |
|
1357 |
-
#: includes/options/templates/compatibility.php:
|
1358 |
msgid "Stage"
|
1359 |
msgstr ""
|
1360 |
|
1361 |
-
#: includes/options/templates/compatibility.php:
|
1362 |
msgid "Status"
|
1363 |
msgstr ""
|
1364 |
|
1365 |
-
#: includes/options/templates/compatibility.php:
|
|
|
|
|
|
|
|
|
1366 |
msgid "Active"
|
1367 |
msgstr ""
|
1368 |
|
1369 |
-
#: includes/options/templates/compatibility.php:
|
1370 |
msgid "Installed, inactive"
|
1371 |
msgstr ""
|
1372 |
|
1373 |
-
#: includes/options/templates/compatibility.php:
|
1374 |
msgid "Not installed"
|
1375 |
msgstr ""
|
1376 |
|
313 |
msgstr "Сохранить и перезагрузить"
|
314 |
|
315 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
316 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:316,
|
317 |
+
#: includes/class-wpglobus.php:1325, wpglobus.php:12, wpglobus.php:18
|
318 |
msgid "WPGlobus"
|
319 |
msgstr "WPGlobus"
|
320 |
|
859 |
msgstr ""
|
860 |
|
861 |
#: includes/builders/class-wpglobus-builder.php:358,
|
862 |
+
#: includes/class-wpglobus.php:3561
|
863 |
msgid "Save draft before using extra language."
|
864 |
msgstr ""
|
865 |
|
867 |
msgid "Builder"
|
868 |
msgstr ""
|
869 |
|
870 |
+
#: includes/builders/class-wpglobus-builder.php:465
|
871 |
msgid "Сompatibility Settings"
|
872 |
msgstr ""
|
873 |
|
930 |
msgstr "Способ выбора языка"
|
931 |
|
932 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
933 |
+
#: includes/class-wpglobus.php:1299
|
934 |
msgid "OFF"
|
935 |
msgstr ""
|
936 |
|
937 |
+
#: includes/class-wpglobus.php:1300
|
938 |
msgid "Turn on"
|
939 |
msgstr ""
|
940 |
|
941 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
942 |
+
#: includes/class-wpglobus.php:1304
|
943 |
msgid "ON"
|
944 |
msgstr ""
|
945 |
|
946 |
+
#: includes/class-wpglobus.php:1305
|
947 |
msgid "Turn off"
|
948 |
msgstr ""
|
949 |
|
950 |
+
#: includes/class-wpglobus.php:1488
|
951 |
msgid "You cannot disable the main language."
|
952 |
msgstr "Нельзя отключить основной язык."
|
953 |
|
954 |
+
#: includes/class-wpglobus.php:1689
|
955 |
msgid "*) Available after the menu is saved."
|
956 |
msgstr "*) Доступно после сохранения меню."
|
957 |
|
958 |
+
#: includes/class-wpglobus.php:1706
|
959 |
msgid "Need a multilingual slug?"
|
960 |
msgstr "Нужен мультиязычный ярлык?"
|
961 |
|
962 |
+
#: includes/class-wpglobus.php:3994
|
963 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
964 |
msgstr ""
|
965 |
"Чтобы использовать плагин WPGlobus, необходимо включить ЧПУ - постоянные "
|
966 |
"ссылки."
|
967 |
|
968 |
+
#: includes/class-wpglobus.php:3996
|
969 |
msgid ""
|
970 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
971 |
"default option."
|
973 |
"Пожалуйста, перейдите в меню Настройки > Постоянные ссылки и поменяйте "
|
974 |
"структуру ссылок в разделе \"Общие настройки\"."
|
975 |
|
976 |
+
#: includes/class-wpglobus.php:4142
|
977 |
msgid "Add"
|
978 |
msgstr "Добавить"
|
979 |
|
1338 |
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1339 |
msgstr ""
|
1340 |
|
1341 |
+
#: includes/options/templates/compatibility.php:37
|
1342 |
msgid "List of supported add-ons"
|
1343 |
msgstr ""
|
1344 |
|
1345 |
+
#: includes/options/templates/compatibility.php:42
|
1346 |
msgid "Add-on"
|
1347 |
msgstr ""
|
1348 |
|
1349 |
+
#: includes/options/templates/compatibility.php:43
|
1350 |
msgid "Current version"
|
1351 |
msgstr ""
|
1352 |
|
1353 |
+
#: includes/options/templates/compatibility.php:44
|
1354 |
msgid "Supported minimum version"
|
1355 |
msgstr ""
|
1356 |
|
1357 |
+
#: includes/options/templates/compatibility.php:45
|
1358 |
msgid "Stage"
|
1359 |
msgstr ""
|
1360 |
|
1361 |
+
#: includes/options/templates/compatibility.php:46
|
1362 |
msgid "Status"
|
1363 |
msgstr ""
|
1364 |
|
1365 |
+
#: includes/options/templates/compatibility.php:59
|
1366 |
+
msgid "In core"
|
1367 |
+
msgstr ""
|
1368 |
+
|
1369 |
+
#: includes/options/templates/compatibility.php:71
|
1370 |
msgid "Active"
|
1371 |
msgstr ""
|
1372 |
|
1373 |
+
#: includes/options/templates/compatibility.php:73
|
1374 |
msgid "Installed, inactive"
|
1375 |
msgstr ""
|
1376 |
|
1377 |
+
#: includes/options/templates/compatibility.php:76
|
1378 |
msgid "Not installed"
|
1379 |
msgstr ""
|
1380 |
|
languages/wpglobus-bg_BG.po
CHANGED
@@ -264,8 +264,8 @@ 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:
|
269 |
msgid "WPGlobus"
|
270 |
msgstr ""
|
271 |
|
@@ -784,7 +784,7 @@ msgid "To translate permalinks, please activate the module Slug."
|
|
784 |
msgstr ""
|
785 |
|
786 |
#: includes/builders/class-wpglobus-builder.php:358,
|
787 |
-
#: includes/class-wpglobus.php:
|
788 |
msgid "Save draft before using extra language."
|
789 |
msgstr ""
|
790 |
|
@@ -792,7 +792,7 @@ msgstr ""
|
|
792 |
msgid "Builder"
|
793 |
msgstr ""
|
794 |
|
795 |
-
#: includes/builders/class-wpglobus-builder.php:
|
796 |
msgid "Сompatibility Settings"
|
797 |
msgstr ""
|
798 |
|
@@ -855,46 +855,46 @@ msgid "Selector type"
|
|
855 |
msgstr ""
|
856 |
|
857 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
858 |
-
#: includes/class-wpglobus.php:
|
859 |
msgid "OFF"
|
860 |
msgstr ""
|
861 |
|
862 |
-
#: includes/class-wpglobus.php:
|
863 |
msgid "Turn on"
|
864 |
msgstr ""
|
865 |
|
866 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
867 |
-
#: includes/class-wpglobus.php:
|
868 |
msgid "ON"
|
869 |
msgstr ""
|
870 |
|
871 |
-
#: includes/class-wpglobus.php:
|
872 |
msgid "Turn off"
|
873 |
msgstr ""
|
874 |
|
875 |
-
#: includes/class-wpglobus.php:
|
876 |
msgid "You cannot disable the main language."
|
877 |
msgstr ""
|
878 |
|
879 |
-
#: includes/class-wpglobus.php:
|
880 |
msgid "*) Available after the menu is saved."
|
881 |
msgstr ""
|
882 |
|
883 |
-
#: includes/class-wpglobus.php:
|
884 |
msgid "Need a multilingual slug?"
|
885 |
msgstr ""
|
886 |
|
887 |
-
#: includes/class-wpglobus.php:
|
888 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
889 |
msgstr ""
|
890 |
|
891 |
-
#: includes/class-wpglobus.php:
|
892 |
msgid ""
|
893 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
894 |
"default option."
|
895 |
msgstr ""
|
896 |
|
897 |
-
#: includes/class-wpglobus.php:
|
898 |
msgid "Add"
|
899 |
msgstr ""
|
900 |
|
@@ -1258,39 +1258,43 @@ msgstr ""
|
|
1258 |
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1259 |
msgstr ""
|
1260 |
|
1261 |
-
#: includes/options/templates/compatibility.php:
|
1262 |
msgid "List of supported add-ons"
|
1263 |
msgstr ""
|
1264 |
|
1265 |
-
#: includes/options/templates/compatibility.php:
|
1266 |
msgid "Add-on"
|
1267 |
msgstr ""
|
1268 |
|
1269 |
-
#: includes/options/templates/compatibility.php:
|
1270 |
msgid "Current version"
|
1271 |
msgstr ""
|
1272 |
|
1273 |
-
#: includes/options/templates/compatibility.php:
|
1274 |
msgid "Supported minimum version"
|
1275 |
msgstr ""
|
1276 |
|
1277 |
-
#: includes/options/templates/compatibility.php:
|
1278 |
msgid "Stage"
|
1279 |
msgstr ""
|
1280 |
|
1281 |
-
#: includes/options/templates/compatibility.php:
|
1282 |
msgid "Status"
|
1283 |
msgstr ""
|
1284 |
|
1285 |
-
#: includes/options/templates/compatibility.php:
|
|
|
|
|
|
|
|
|
1286 |
msgid "Active"
|
1287 |
msgstr ""
|
1288 |
|
1289 |
-
#: includes/options/templates/compatibility.php:
|
1290 |
msgid "Installed, inactive"
|
1291 |
msgstr ""
|
1292 |
|
1293 |
-
#: includes/options/templates/compatibility.php:
|
1294 |
msgid "Not installed"
|
1295 |
msgstr ""
|
1296 |
|
264 |
msgstr ""
|
265 |
|
266 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
267 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:316,
|
268 |
+
#: includes/class-wpglobus.php:1325, wpglobus.php:12, wpglobus.php:18
|
269 |
msgid "WPGlobus"
|
270 |
msgstr ""
|
271 |
|
784 |
msgstr ""
|
785 |
|
786 |
#: includes/builders/class-wpglobus-builder.php:358,
|
787 |
+
#: includes/class-wpglobus.php:3561
|
788 |
msgid "Save draft before using extra language."
|
789 |
msgstr ""
|
790 |
|
792 |
msgid "Builder"
|
793 |
msgstr ""
|
794 |
|
795 |
+
#: includes/builders/class-wpglobus-builder.php:465
|
796 |
msgid "Сompatibility Settings"
|
797 |
msgstr ""
|
798 |
|
855 |
msgstr ""
|
856 |
|
857 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
858 |
+
#: includes/class-wpglobus.php:1299
|
859 |
msgid "OFF"
|
860 |
msgstr ""
|
861 |
|
862 |
+
#: includes/class-wpglobus.php:1300
|
863 |
msgid "Turn on"
|
864 |
msgstr ""
|
865 |
|
866 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
867 |
+
#: includes/class-wpglobus.php:1304
|
868 |
msgid "ON"
|
869 |
msgstr ""
|
870 |
|
871 |
+
#: includes/class-wpglobus.php:1305
|
872 |
msgid "Turn off"
|
873 |
msgstr ""
|
874 |
|
875 |
+
#: includes/class-wpglobus.php:1488
|
876 |
msgid "You cannot disable the main language."
|
877 |
msgstr ""
|
878 |
|
879 |
+
#: includes/class-wpglobus.php:1689
|
880 |
msgid "*) Available after the menu is saved."
|
881 |
msgstr ""
|
882 |
|
883 |
+
#: includes/class-wpglobus.php:1706
|
884 |
msgid "Need a multilingual slug?"
|
885 |
msgstr ""
|
886 |
|
887 |
+
#: includes/class-wpglobus.php:3994
|
888 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
889 |
msgstr ""
|
890 |
|
891 |
+
#: includes/class-wpglobus.php:3996
|
892 |
msgid ""
|
893 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
894 |
"default option."
|
895 |
msgstr ""
|
896 |
|
897 |
+
#: includes/class-wpglobus.php:4142
|
898 |
msgid "Add"
|
899 |
msgstr ""
|
900 |
|
1258 |
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1259 |
msgstr ""
|
1260 |
|
1261 |
+
#: includes/options/templates/compatibility.php:37
|
1262 |
msgid "List of supported add-ons"
|
1263 |
msgstr ""
|
1264 |
|
1265 |
+
#: includes/options/templates/compatibility.php:42
|
1266 |
msgid "Add-on"
|
1267 |
msgstr ""
|
1268 |
|
1269 |
+
#: includes/options/templates/compatibility.php:43
|
1270 |
msgid "Current version"
|
1271 |
msgstr ""
|
1272 |
|
1273 |
+
#: includes/options/templates/compatibility.php:44
|
1274 |
msgid "Supported minimum version"
|
1275 |
msgstr ""
|
1276 |
|
1277 |
+
#: includes/options/templates/compatibility.php:45
|
1278 |
msgid "Stage"
|
1279 |
msgstr ""
|
1280 |
|
1281 |
+
#: includes/options/templates/compatibility.php:46
|
1282 |
msgid "Status"
|
1283 |
msgstr ""
|
1284 |
|
1285 |
+
#: includes/options/templates/compatibility.php:59
|
1286 |
+
msgid "In core"
|
1287 |
+
msgstr ""
|
1288 |
+
|
1289 |
+
#: includes/options/templates/compatibility.php:71
|
1290 |
msgid "Active"
|
1291 |
msgstr ""
|
1292 |
|
1293 |
+
#: includes/options/templates/compatibility.php:73
|
1294 |
msgid "Installed, inactive"
|
1295 |
msgstr ""
|
1296 |
|
1297 |
+
#: includes/options/templates/compatibility.php:76
|
1298 |
msgid "Not installed"
|
1299 |
msgstr ""
|
1300 |
|
languages/wpglobus-de_CH.po
CHANGED
@@ -284,8 +284,8 @@ 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:
|
289 |
msgid "WPGlobus"
|
290 |
msgstr "WPGlobus"
|
291 |
|
@@ -820,7 +820,7 @@ msgid "To translate permalinks, please activate the module Slug."
|
|
820 |
msgstr ""
|
821 |
|
822 |
#: includes/builders/class-wpglobus-builder.php:358,
|
823 |
-
#: includes/class-wpglobus.php:
|
824 |
msgid "Save draft before using extra language."
|
825 |
msgstr ""
|
826 |
|
@@ -828,7 +828,7 @@ msgstr ""
|
|
828 |
msgid "Builder"
|
829 |
msgstr ""
|
830 |
|
831 |
-
#: includes/builders/class-wpglobus-builder.php:
|
832 |
msgid "Сompatibility Settings"
|
833 |
msgstr ""
|
834 |
|
@@ -891,41 +891,41 @@ msgid "Selector type"
|
|
891 |
msgstr "Selektor-Typ"
|
892 |
|
893 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
894 |
-
#: includes/class-wpglobus.php:
|
895 |
msgid "OFF"
|
896 |
msgstr ""
|
897 |
|
898 |
-
#: includes/class-wpglobus.php:
|
899 |
msgid "Turn on"
|
900 |
msgstr ""
|
901 |
|
902 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
903 |
-
#: includes/class-wpglobus.php:
|
904 |
msgid "ON"
|
905 |
msgstr ""
|
906 |
|
907 |
-
#: includes/class-wpglobus.php:
|
908 |
msgid "Turn off"
|
909 |
msgstr ""
|
910 |
|
911 |
-
#: includes/class-wpglobus.php:
|
912 |
msgid "You cannot disable the main language."
|
913 |
msgstr "Die Hauptsprache kann nicht deaktiviert werden."
|
914 |
|
915 |
-
#: includes/class-wpglobus.php:
|
916 |
msgid "*) Available after the menu is saved."
|
917 |
msgstr "*) Verfügbar nachdem das Menü gespeichert wurde."
|
918 |
|
919 |
-
#: includes/class-wpglobus.php:
|
920 |
msgid "Need a multilingual slug?"
|
921 |
msgstr ""
|
922 |
|
923 |
-
#: includes/class-wpglobus.php:
|
924 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
925 |
msgstr ""
|
926 |
"Sie müssen schöne Permalinks aktivieren um WPGlobus verwenden zu können."
|
927 |
|
928 |
-
#: includes/class-wpglobus.php:
|
929 |
msgid ""
|
930 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
931 |
"default option."
|
@@ -933,7 +933,7 @@ msgstr ""
|
|
933 |
"Bitte gehen Sie zu Einstellungen > Permalinks > allgemeine Einstellungen, "
|
934 |
"und wählen Sie die \"Beitragsname\" für schöne Permalinks."
|
935 |
|
936 |
-
#: includes/class-wpglobus.php:
|
937 |
msgid "Add"
|
938 |
msgstr "Hinzufügen"
|
939 |
|
@@ -1299,39 +1299,43 @@ msgstr ""
|
|
1299 |
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1300 |
msgstr ""
|
1301 |
|
1302 |
-
#: includes/options/templates/compatibility.php:
|
1303 |
msgid "List of supported add-ons"
|
1304 |
msgstr ""
|
1305 |
|
1306 |
-
#: includes/options/templates/compatibility.php:
|
1307 |
msgid "Add-on"
|
1308 |
msgstr ""
|
1309 |
|
1310 |
-
#: includes/options/templates/compatibility.php:
|
1311 |
msgid "Current version"
|
1312 |
msgstr ""
|
1313 |
|
1314 |
-
#: includes/options/templates/compatibility.php:
|
1315 |
msgid "Supported minimum version"
|
1316 |
msgstr ""
|
1317 |
|
1318 |
-
#: includes/options/templates/compatibility.php:
|
1319 |
msgid "Stage"
|
1320 |
msgstr ""
|
1321 |
|
1322 |
-
#: includes/options/templates/compatibility.php:
|
1323 |
msgid "Status"
|
1324 |
msgstr ""
|
1325 |
|
1326 |
-
#: includes/options/templates/compatibility.php:
|
|
|
|
|
|
|
|
|
1327 |
msgid "Active"
|
1328 |
msgstr ""
|
1329 |
|
1330 |
-
#: includes/options/templates/compatibility.php:
|
1331 |
msgid "Installed, inactive"
|
1332 |
msgstr ""
|
1333 |
|
1334 |
-
#: includes/options/templates/compatibility.php:
|
1335 |
msgid "Not installed"
|
1336 |
msgstr ""
|
1337 |
|
284 |
msgstr ""
|
285 |
|
286 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
287 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:316,
|
288 |
+
#: includes/class-wpglobus.php:1325, wpglobus.php:12, wpglobus.php:18
|
289 |
msgid "WPGlobus"
|
290 |
msgstr "WPGlobus"
|
291 |
|
820 |
msgstr ""
|
821 |
|
822 |
#: includes/builders/class-wpglobus-builder.php:358,
|
823 |
+
#: includes/class-wpglobus.php:3561
|
824 |
msgid "Save draft before using extra language."
|
825 |
msgstr ""
|
826 |
|
828 |
msgid "Builder"
|
829 |
msgstr ""
|
830 |
|
831 |
+
#: includes/builders/class-wpglobus-builder.php:465
|
832 |
msgid "Сompatibility Settings"
|
833 |
msgstr ""
|
834 |
|
891 |
msgstr "Selektor-Typ"
|
892 |
|
893 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
894 |
+
#: includes/class-wpglobus.php:1299
|
895 |
msgid "OFF"
|
896 |
msgstr ""
|
897 |
|
898 |
+
#: includes/class-wpglobus.php:1300
|
899 |
msgid "Turn on"
|
900 |
msgstr ""
|
901 |
|
902 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
903 |
+
#: includes/class-wpglobus.php:1304
|
904 |
msgid "ON"
|
905 |
msgstr ""
|
906 |
|
907 |
+
#: includes/class-wpglobus.php:1305
|
908 |
msgid "Turn off"
|
909 |
msgstr ""
|
910 |
|
911 |
+
#: includes/class-wpglobus.php:1488
|
912 |
msgid "You cannot disable the main language."
|
913 |
msgstr "Die Hauptsprache kann nicht deaktiviert werden."
|
914 |
|
915 |
+
#: includes/class-wpglobus.php:1689
|
916 |
msgid "*) Available after the menu is saved."
|
917 |
msgstr "*) Verfügbar nachdem das Menü gespeichert wurde."
|
918 |
|
919 |
+
#: includes/class-wpglobus.php:1706
|
920 |
msgid "Need a multilingual slug?"
|
921 |
msgstr ""
|
922 |
|
923 |
+
#: includes/class-wpglobus.php:3994
|
924 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
925 |
msgstr ""
|
926 |
"Sie müssen schöne Permalinks aktivieren um WPGlobus verwenden zu können."
|
927 |
|
928 |
+
#: includes/class-wpglobus.php:3996
|
929 |
msgid ""
|
930 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
931 |
"default option."
|
933 |
"Bitte gehen Sie zu Einstellungen > Permalinks > allgemeine Einstellungen, "
|
934 |
"und wählen Sie die \"Beitragsname\" für schöne Permalinks."
|
935 |
|
936 |
+
#: includes/class-wpglobus.php:4142
|
937 |
msgid "Add"
|
938 |
msgstr "Hinzufügen"
|
939 |
|
1299 |
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1300 |
msgstr ""
|
1301 |
|
1302 |
+
#: includes/options/templates/compatibility.php:37
|
1303 |
msgid "List of supported add-ons"
|
1304 |
msgstr ""
|
1305 |
|
1306 |
+
#: includes/options/templates/compatibility.php:42
|
1307 |
msgid "Add-on"
|
1308 |
msgstr ""
|
1309 |
|
1310 |
+
#: includes/options/templates/compatibility.php:43
|
1311 |
msgid "Current version"
|
1312 |
msgstr ""
|
1313 |
|
1314 |
+
#: includes/options/templates/compatibility.php:44
|
1315 |
msgid "Supported minimum version"
|
1316 |
msgstr ""
|
1317 |
|
1318 |
+
#: includes/options/templates/compatibility.php:45
|
1319 |
msgid "Stage"
|
1320 |
msgstr ""
|
1321 |
|
1322 |
+
#: includes/options/templates/compatibility.php:46
|
1323 |
msgid "Status"
|
1324 |
msgstr ""
|
1325 |
|
1326 |
+
#: includes/options/templates/compatibility.php:59
|
1327 |
+
msgid "In core"
|
1328 |
+
msgstr ""
|
1329 |
+
|
1330 |
+
#: includes/options/templates/compatibility.php:71
|
1331 |
msgid "Active"
|
1332 |
msgstr ""
|
1333 |
|
1334 |
+
#: includes/options/templates/compatibility.php:73
|
1335 |
msgid "Installed, inactive"
|
1336 |
msgstr ""
|
1337 |
|
1338 |
+
#: includes/options/templates/compatibility.php:76
|
1339 |
msgid "Not installed"
|
1340 |
msgstr ""
|
1341 |
|
languages/wpglobus-de_DE.po
CHANGED
@@ -283,8 +283,8 @@ 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:
|
288 |
msgid "WPGlobus"
|
289 |
msgstr "WPGlobus"
|
290 |
|
@@ -819,7 +819,7 @@ msgid "To translate permalinks, please activate the module Slug."
|
|
819 |
msgstr ""
|
820 |
|
821 |
#: includes/builders/class-wpglobus-builder.php:358,
|
822 |
-
#: includes/class-wpglobus.php:
|
823 |
msgid "Save draft before using extra language."
|
824 |
msgstr ""
|
825 |
|
@@ -827,7 +827,7 @@ msgstr ""
|
|
827 |
msgid "Builder"
|
828 |
msgstr ""
|
829 |
|
830 |
-
#: includes/builders/class-wpglobus-builder.php:
|
831 |
msgid "Сompatibility Settings"
|
832 |
msgstr ""
|
833 |
|
@@ -890,41 +890,41 @@ msgid "Selector type"
|
|
890 |
msgstr "Selektor-Typ"
|
891 |
|
892 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
893 |
-
#: includes/class-wpglobus.php:
|
894 |
msgid "OFF"
|
895 |
msgstr "AUS"
|
896 |
|
897 |
-
#: includes/class-wpglobus.php:
|
898 |
msgid "Turn on"
|
899 |
msgstr ""
|
900 |
|
901 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
902 |
-
#: includes/class-wpglobus.php:
|
903 |
msgid "ON"
|
904 |
msgstr "EIN"
|
905 |
|
906 |
-
#: includes/class-wpglobus.php:
|
907 |
msgid "Turn off"
|
908 |
msgstr ""
|
909 |
|
910 |
-
#: includes/class-wpglobus.php:
|
911 |
msgid "You cannot disable the main language."
|
912 |
msgstr "Die Hauptsprache kann nicht deaktiviert werden."
|
913 |
|
914 |
-
#: includes/class-wpglobus.php:
|
915 |
msgid "*) Available after the menu is saved."
|
916 |
msgstr "*) Verfügbar nachdem das Menü gespeichert wurde."
|
917 |
|
918 |
-
#: includes/class-wpglobus.php:
|
919 |
msgid "Need a multilingual slug?"
|
920 |
msgstr ""
|
921 |
|
922 |
-
#: includes/class-wpglobus.php:
|
923 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
924 |
msgstr ""
|
925 |
"Sie müssen schöne Permalinks aktivieren um WPGlobus verwenden zu können."
|
926 |
|
927 |
-
#: includes/class-wpglobus.php:
|
928 |
msgid ""
|
929 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
930 |
"default option."
|
@@ -932,7 +932,7 @@ msgstr ""
|
|
932 |
"Bitte gehen Sie zu Einstellungen > Permalinks > allgemeine Einstellungen, "
|
933 |
"und wählen Sie die \"Beitragsname\" für schöne Permalinks."
|
934 |
|
935 |
-
#: includes/class-wpglobus.php:
|
936 |
msgid "Add"
|
937 |
msgstr "Hinzufügen"
|
938 |
|
@@ -1298,39 +1298,43 @@ msgstr ""
|
|
1298 |
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1299 |
msgstr ""
|
1300 |
|
1301 |
-
#: includes/options/templates/compatibility.php:
|
1302 |
msgid "List of supported add-ons"
|
1303 |
msgstr ""
|
1304 |
|
1305 |
-
#: includes/options/templates/compatibility.php:
|
1306 |
msgid "Add-on"
|
1307 |
msgstr ""
|
1308 |
|
1309 |
-
#: includes/options/templates/compatibility.php:
|
1310 |
msgid "Current version"
|
1311 |
msgstr ""
|
1312 |
|
1313 |
-
#: includes/options/templates/compatibility.php:
|
1314 |
msgid "Supported minimum version"
|
1315 |
msgstr ""
|
1316 |
|
1317 |
-
#: includes/options/templates/compatibility.php:
|
1318 |
msgid "Stage"
|
1319 |
msgstr ""
|
1320 |
|
1321 |
-
#: includes/options/templates/compatibility.php:
|
1322 |
msgid "Status"
|
1323 |
msgstr ""
|
1324 |
|
1325 |
-
#: includes/options/templates/compatibility.php:
|
|
|
|
|
|
|
|
|
1326 |
msgid "Active"
|
1327 |
msgstr ""
|
1328 |
|
1329 |
-
#: includes/options/templates/compatibility.php:
|
1330 |
msgid "Installed, inactive"
|
1331 |
msgstr ""
|
1332 |
|
1333 |
-
#: includes/options/templates/compatibility.php:
|
1334 |
msgid "Not installed"
|
1335 |
msgstr ""
|
1336 |
|
283 |
msgstr ""
|
284 |
|
285 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
286 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:316,
|
287 |
+
#: includes/class-wpglobus.php:1325, wpglobus.php:12, wpglobus.php:18
|
288 |
msgid "WPGlobus"
|
289 |
msgstr "WPGlobus"
|
290 |
|
819 |
msgstr ""
|
820 |
|
821 |
#: includes/builders/class-wpglobus-builder.php:358,
|
822 |
+
#: includes/class-wpglobus.php:3561
|
823 |
msgid "Save draft before using extra language."
|
824 |
msgstr ""
|
825 |
|
827 |
msgid "Builder"
|
828 |
msgstr ""
|
829 |
|
830 |
+
#: includes/builders/class-wpglobus-builder.php:465
|
831 |
msgid "Сompatibility Settings"
|
832 |
msgstr ""
|
833 |
|
890 |
msgstr "Selektor-Typ"
|
891 |
|
892 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
893 |
+
#: includes/class-wpglobus.php:1299
|
894 |
msgid "OFF"
|
895 |
msgstr "AUS"
|
896 |
|
897 |
+
#: includes/class-wpglobus.php:1300
|
898 |
msgid "Turn on"
|
899 |
msgstr ""
|
900 |
|
901 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
902 |
+
#: includes/class-wpglobus.php:1304
|
903 |
msgid "ON"
|
904 |
msgstr "EIN"
|
905 |
|
906 |
+
#: includes/class-wpglobus.php:1305
|
907 |
msgid "Turn off"
|
908 |
msgstr ""
|
909 |
|
910 |
+
#: includes/class-wpglobus.php:1488
|
911 |
msgid "You cannot disable the main language."
|
912 |
msgstr "Die Hauptsprache kann nicht deaktiviert werden."
|
913 |
|
914 |
+
#: includes/class-wpglobus.php:1689
|
915 |
msgid "*) Available after the menu is saved."
|
916 |
msgstr "*) Verfügbar nachdem das Menü gespeichert wurde."
|
917 |
|
918 |
+
#: includes/class-wpglobus.php:1706
|
919 |
msgid "Need a multilingual slug?"
|
920 |
msgstr ""
|
921 |
|
922 |
+
#: includes/class-wpglobus.php:3994
|
923 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
924 |
msgstr ""
|
925 |
"Sie müssen schöne Permalinks aktivieren um WPGlobus verwenden zu können."
|
926 |
|
927 |
+
#: includes/class-wpglobus.php:3996
|
928 |
msgid ""
|
929 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
930 |
"default option."
|
932 |
"Bitte gehen Sie zu Einstellungen > Permalinks > allgemeine Einstellungen, "
|
933 |
"und wählen Sie die \"Beitragsname\" für schöne Permalinks."
|
934 |
|
935 |
+
#: includes/class-wpglobus.php:4142
|
936 |
msgid "Add"
|
937 |
msgstr "Hinzufügen"
|
938 |
|
1298 |
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1299 |
msgstr ""
|
1300 |
|
1301 |
+
#: includes/options/templates/compatibility.php:37
|
1302 |
msgid "List of supported add-ons"
|
1303 |
msgstr ""
|
1304 |
|
1305 |
+
#: includes/options/templates/compatibility.php:42
|
1306 |
msgid "Add-on"
|
1307 |
msgstr ""
|
1308 |
|
1309 |
+
#: includes/options/templates/compatibility.php:43
|
1310 |
msgid "Current version"
|
1311 |
msgstr ""
|
1312 |
|
1313 |
+
#: includes/options/templates/compatibility.php:44
|
1314 |
msgid "Supported minimum version"
|
1315 |
msgstr ""
|
1316 |
|
1317 |
+
#: includes/options/templates/compatibility.php:45
|
1318 |
msgid "Stage"
|
1319 |
msgstr ""
|
1320 |
|
1321 |
+
#: includes/options/templates/compatibility.php:46
|
1322 |
msgid "Status"
|
1323 |
msgstr ""
|
1324 |
|
1325 |
+
#: includes/options/templates/compatibility.php:59
|
1326 |
+
msgid "In core"
|
1327 |
+
msgstr ""
|
1328 |
+
|
1329 |
+
#: includes/options/templates/compatibility.php:71
|
1330 |
msgid "Active"
|
1331 |
msgstr ""
|
1332 |
|
1333 |
+
#: includes/options/templates/compatibility.php:73
|
1334 |
msgid "Installed, inactive"
|
1335 |
msgstr ""
|
1336 |
|
1337 |
+
#: includes/options/templates/compatibility.php:76
|
1338 |
msgid "Not installed"
|
1339 |
msgstr ""
|
1340 |
|
languages/wpglobus-el.po
CHANGED
@@ -265,8 +265,8 @@ 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:
|
270 |
msgid "WPGlobus"
|
271 |
msgstr "WPGlobus"
|
272 |
|
@@ -785,7 +785,7 @@ msgid "To translate permalinks, please activate the module Slug."
|
|
785 |
msgstr ""
|
786 |
|
787 |
#: includes/builders/class-wpglobus-builder.php:358,
|
788 |
-
#: includes/class-wpglobus.php:
|
789 |
msgid "Save draft before using extra language."
|
790 |
msgstr ""
|
791 |
|
@@ -793,7 +793,7 @@ msgstr ""
|
|
793 |
msgid "Builder"
|
794 |
msgstr ""
|
795 |
|
796 |
-
#: includes/builders/class-wpglobus-builder.php:
|
797 |
msgid "Сompatibility Settings"
|
798 |
msgstr ""
|
799 |
|
@@ -856,46 +856,46 @@ msgid "Selector type"
|
|
856 |
msgstr ""
|
857 |
|
858 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
859 |
-
#: includes/class-wpglobus.php:
|
860 |
msgid "OFF"
|
861 |
msgstr ""
|
862 |
|
863 |
-
#: includes/class-wpglobus.php:
|
864 |
msgid "Turn on"
|
865 |
msgstr ""
|
866 |
|
867 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
868 |
-
#: includes/class-wpglobus.php:
|
869 |
msgid "ON"
|
870 |
msgstr ""
|
871 |
|
872 |
-
#: includes/class-wpglobus.php:
|
873 |
msgid "Turn off"
|
874 |
msgstr ""
|
875 |
|
876 |
-
#: includes/class-wpglobus.php:
|
877 |
msgid "You cannot disable the main language."
|
878 |
msgstr ""
|
879 |
|
880 |
-
#: includes/class-wpglobus.php:
|
881 |
msgid "*) Available after the menu is saved."
|
882 |
msgstr ""
|
883 |
|
884 |
-
#: includes/class-wpglobus.php:
|
885 |
msgid "Need a multilingual slug?"
|
886 |
msgstr ""
|
887 |
|
888 |
-
#: includes/class-wpglobus.php:
|
889 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
890 |
msgstr ""
|
891 |
|
892 |
-
#: includes/class-wpglobus.php:
|
893 |
msgid ""
|
894 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
895 |
"default option."
|
896 |
msgstr ""
|
897 |
|
898 |
-
#: includes/class-wpglobus.php:
|
899 |
msgid "Add"
|
900 |
msgstr ""
|
901 |
|
@@ -1259,39 +1259,43 @@ msgstr ""
|
|
1259 |
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1260 |
msgstr ""
|
1261 |
|
1262 |
-
#: includes/options/templates/compatibility.php:
|
1263 |
msgid "List of supported add-ons"
|
1264 |
msgstr ""
|
1265 |
|
1266 |
-
#: includes/options/templates/compatibility.php:
|
1267 |
msgid "Add-on"
|
1268 |
msgstr ""
|
1269 |
|
1270 |
-
#: includes/options/templates/compatibility.php:
|
1271 |
msgid "Current version"
|
1272 |
msgstr ""
|
1273 |
|
1274 |
-
#: includes/options/templates/compatibility.php:
|
1275 |
msgid "Supported minimum version"
|
1276 |
msgstr ""
|
1277 |
|
1278 |
-
#: includes/options/templates/compatibility.php:
|
1279 |
msgid "Stage"
|
1280 |
msgstr ""
|
1281 |
|
1282 |
-
#: includes/options/templates/compatibility.php:
|
1283 |
msgid "Status"
|
1284 |
msgstr ""
|
1285 |
|
1286 |
-
#: includes/options/templates/compatibility.php:
|
|
|
|
|
|
|
|
|
1287 |
msgid "Active"
|
1288 |
msgstr ""
|
1289 |
|
1290 |
-
#: includes/options/templates/compatibility.php:
|
1291 |
msgid "Installed, inactive"
|
1292 |
msgstr ""
|
1293 |
|
1294 |
-
#: includes/options/templates/compatibility.php:
|
1295 |
msgid "Not installed"
|
1296 |
msgstr ""
|
1297 |
|
265 |
msgstr ""
|
266 |
|
267 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
268 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:316,
|
269 |
+
#: includes/class-wpglobus.php:1325, wpglobus.php:12, wpglobus.php:18
|
270 |
msgid "WPGlobus"
|
271 |
msgstr "WPGlobus"
|
272 |
|
785 |
msgstr ""
|
786 |
|
787 |
#: includes/builders/class-wpglobus-builder.php:358,
|
788 |
+
#: includes/class-wpglobus.php:3561
|
789 |
msgid "Save draft before using extra language."
|
790 |
msgstr ""
|
791 |
|
793 |
msgid "Builder"
|
794 |
msgstr ""
|
795 |
|
796 |
+
#: includes/builders/class-wpglobus-builder.php:465
|
797 |
msgid "Сompatibility Settings"
|
798 |
msgstr ""
|
799 |
|
856 |
msgstr ""
|
857 |
|
858 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
859 |
+
#: includes/class-wpglobus.php:1299
|
860 |
msgid "OFF"
|
861 |
msgstr ""
|
862 |
|
863 |
+
#: includes/class-wpglobus.php:1300
|
864 |
msgid "Turn on"
|
865 |
msgstr ""
|
866 |
|
867 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
868 |
+
#: includes/class-wpglobus.php:1304
|
869 |
msgid "ON"
|
870 |
msgstr ""
|
871 |
|
872 |
+
#: includes/class-wpglobus.php:1305
|
873 |
msgid "Turn off"
|
874 |
msgstr ""
|
875 |
|
876 |
+
#: includes/class-wpglobus.php:1488
|
877 |
msgid "You cannot disable the main language."
|
878 |
msgstr ""
|
879 |
|
880 |
+
#: includes/class-wpglobus.php:1689
|
881 |
msgid "*) Available after the menu is saved."
|
882 |
msgstr ""
|
883 |
|
884 |
+
#: includes/class-wpglobus.php:1706
|
885 |
msgid "Need a multilingual slug?"
|
886 |
msgstr ""
|
887 |
|
888 |
+
#: includes/class-wpglobus.php:3994
|
889 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
890 |
msgstr ""
|
891 |
|
892 |
+
#: includes/class-wpglobus.php:3996
|
893 |
msgid ""
|
894 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
895 |
"default option."
|
896 |
msgstr ""
|
897 |
|
898 |
+
#: includes/class-wpglobus.php:4142
|
899 |
msgid "Add"
|
900 |
msgstr ""
|
901 |
|
1259 |
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1260 |
msgstr ""
|
1261 |
|
1262 |
+
#: includes/options/templates/compatibility.php:37
|
1263 |
msgid "List of supported add-ons"
|
1264 |
msgstr ""
|
1265 |
|
1266 |
+
#: includes/options/templates/compatibility.php:42
|
1267 |
msgid "Add-on"
|
1268 |
msgstr ""
|
1269 |
|
1270 |
+
#: includes/options/templates/compatibility.php:43
|
1271 |
msgid "Current version"
|
1272 |
msgstr ""
|
1273 |
|
1274 |
+
#: includes/options/templates/compatibility.php:44
|
1275 |
msgid "Supported minimum version"
|
1276 |
msgstr ""
|
1277 |
|
1278 |
+
#: includes/options/templates/compatibility.php:45
|
1279 |
msgid "Stage"
|
1280 |
msgstr ""
|
1281 |
|
1282 |
+
#: includes/options/templates/compatibility.php:46
|
1283 |
msgid "Status"
|
1284 |
msgstr ""
|
1285 |
|
1286 |
+
#: includes/options/templates/compatibility.php:59
|
1287 |
+
msgid "In core"
|
1288 |
+
msgstr ""
|
1289 |
+
|
1290 |
+
#: includes/options/templates/compatibility.php:71
|
1291 |
msgid "Active"
|
1292 |
msgstr ""
|
1293 |
|
1294 |
+
#: includes/options/templates/compatibility.php:73
|
1295 |
msgid "Installed, inactive"
|
1296 |
msgstr ""
|
1297 |
|
1298 |
+
#: includes/options/templates/compatibility.php:76
|
1299 |
msgid "Not installed"
|
1300 |
msgstr ""
|
1301 |
|
languages/wpglobus-en_AU.po
CHANGED
@@ -310,8 +310,8 @@ 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:
|
315 |
msgid "WPGlobus"
|
316 |
msgstr "WPGlobus"
|
317 |
|
@@ -859,7 +859,7 @@ msgid "To translate permalinks, please activate the module Slug."
|
|
859 |
msgstr ""
|
860 |
|
861 |
#: includes/builders/class-wpglobus-builder.php:358,
|
862 |
-
#: includes/class-wpglobus.php:
|
863 |
msgid "Save draft before using extra language."
|
864 |
msgstr ""
|
865 |
|
@@ -867,7 +867,7 @@ msgstr ""
|
|
867 |
msgid "Builder"
|
868 |
msgstr ""
|
869 |
|
870 |
-
#: includes/builders/class-wpglobus-builder.php:
|
871 |
msgid "Сompatibility Settings"
|
872 |
msgstr ""
|
873 |
|
@@ -930,40 +930,40 @@ msgid "Selector type"
|
|
930 |
msgstr "Selector type"
|
931 |
|
932 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
933 |
-
#: includes/class-wpglobus.php:
|
934 |
msgid "OFF"
|
935 |
msgstr ""
|
936 |
|
937 |
-
#: includes/class-wpglobus.php:
|
938 |
msgid "Turn on"
|
939 |
msgstr ""
|
940 |
|
941 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
942 |
-
#: includes/class-wpglobus.php:
|
943 |
msgid "ON"
|
944 |
msgstr ""
|
945 |
|
946 |
-
#: includes/class-wpglobus.php:
|
947 |
msgid "Turn off"
|
948 |
msgstr ""
|
949 |
|
950 |
-
#: includes/class-wpglobus.php:
|
951 |
msgid "You cannot disable the main language."
|
952 |
msgstr "You cannot disable the main language."
|
953 |
|
954 |
-
#: includes/class-wpglobus.php:
|
955 |
msgid "*) Available after the menu is saved."
|
956 |
msgstr "*) Available after the menu is saved."
|
957 |
|
958 |
-
#: includes/class-wpglobus.php:
|
959 |
msgid "Need a multilingual slug?"
|
960 |
msgstr "Need a multilingual slug?"
|
961 |
|
962 |
-
#: includes/class-wpglobus.php:
|
963 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
964 |
msgstr "You must enable Pretty Permalinks to use WPGlobus."
|
965 |
|
966 |
-
#: includes/class-wpglobus.php:
|
967 |
msgid ""
|
968 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
969 |
"default option."
|
@@ -971,7 +971,7 @@ msgstr ""
|
|
971 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
972 |
"default option."
|
973 |
|
974 |
-
#: includes/class-wpglobus.php:
|
975 |
msgid "Add"
|
976 |
msgstr "Add"
|
977 |
|
@@ -1335,39 +1335,43 @@ msgstr ""
|
|
1335 |
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1336 |
msgstr ""
|
1337 |
|
1338 |
-
#: includes/options/templates/compatibility.php:
|
1339 |
msgid "List of supported add-ons"
|
1340 |
msgstr ""
|
1341 |
|
1342 |
-
#: includes/options/templates/compatibility.php:
|
1343 |
msgid "Add-on"
|
1344 |
msgstr ""
|
1345 |
|
1346 |
-
#: includes/options/templates/compatibility.php:
|
1347 |
msgid "Current version"
|
1348 |
msgstr ""
|
1349 |
|
1350 |
-
#: includes/options/templates/compatibility.php:
|
1351 |
msgid "Supported minimum version"
|
1352 |
msgstr ""
|
1353 |
|
1354 |
-
#: includes/options/templates/compatibility.php:
|
1355 |
msgid "Stage"
|
1356 |
msgstr ""
|
1357 |
|
1358 |
-
#: includes/options/templates/compatibility.php:
|
1359 |
msgid "Status"
|
1360 |
msgstr ""
|
1361 |
|
1362 |
-
#: includes/options/templates/compatibility.php:
|
|
|
|
|
|
|
|
|
1363 |
msgid "Active"
|
1364 |
msgstr ""
|
1365 |
|
1366 |
-
#: includes/options/templates/compatibility.php:
|
1367 |
msgid "Installed, inactive"
|
1368 |
msgstr ""
|
1369 |
|
1370 |
-
#: includes/options/templates/compatibility.php:
|
1371 |
msgid "Not installed"
|
1372 |
msgstr ""
|
1373 |
|
310 |
msgstr "Save & Reload"
|
311 |
|
312 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
313 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:316,
|
314 |
+
#: includes/class-wpglobus.php:1325, wpglobus.php:12, wpglobus.php:18
|
315 |
msgid "WPGlobus"
|
316 |
msgstr "WPGlobus"
|
317 |
|
859 |
msgstr ""
|
860 |
|
861 |
#: includes/builders/class-wpglobus-builder.php:358,
|
862 |
+
#: includes/class-wpglobus.php:3561
|
863 |
msgid "Save draft before using extra language."
|
864 |
msgstr ""
|
865 |
|
867 |
msgid "Builder"
|
868 |
msgstr ""
|
869 |
|
870 |
+
#: includes/builders/class-wpglobus-builder.php:465
|
871 |
msgid "Сompatibility Settings"
|
872 |
msgstr ""
|
873 |
|
930 |
msgstr "Selector type"
|
931 |
|
932 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
933 |
+
#: includes/class-wpglobus.php:1299
|
934 |
msgid "OFF"
|
935 |
msgstr ""
|
936 |
|
937 |
+
#: includes/class-wpglobus.php:1300
|
938 |
msgid "Turn on"
|
939 |
msgstr ""
|
940 |
|
941 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
942 |
+
#: includes/class-wpglobus.php:1304
|
943 |
msgid "ON"
|
944 |
msgstr ""
|
945 |
|
946 |
+
#: includes/class-wpglobus.php:1305
|
947 |
msgid "Turn off"
|
948 |
msgstr ""
|
949 |
|
950 |
+
#: includes/class-wpglobus.php:1488
|
951 |
msgid "You cannot disable the main language."
|
952 |
msgstr "You cannot disable the main language."
|
953 |
|
954 |
+
#: includes/class-wpglobus.php:1689
|
955 |
msgid "*) Available after the menu is saved."
|
956 |
msgstr "*) Available after the menu is saved."
|
957 |
|
958 |
+
#: includes/class-wpglobus.php:1706
|
959 |
msgid "Need a multilingual slug?"
|
960 |
msgstr "Need a multilingual slug?"
|
961 |
|
962 |
+
#: includes/class-wpglobus.php:3994
|
963 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
964 |
msgstr "You must enable Pretty Permalinks to use WPGlobus."
|
965 |
|
966 |
+
#: includes/class-wpglobus.php:3996
|
967 |
msgid ""
|
968 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
969 |
"default option."
|
971 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
972 |
"default option."
|
973 |
|
974 |
+
#: includes/class-wpglobus.php:4142
|
975 |
msgid "Add"
|
976 |
msgstr "Add"
|
977 |
|
1335 |
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1336 |
msgstr ""
|
1337 |
|
1338 |
+
#: includes/options/templates/compatibility.php:37
|
1339 |
msgid "List of supported add-ons"
|
1340 |
msgstr ""
|
1341 |
|
1342 |
+
#: includes/options/templates/compatibility.php:42
|
1343 |
msgid "Add-on"
|
1344 |
msgstr ""
|
1345 |
|
1346 |
+
#: includes/options/templates/compatibility.php:43
|
1347 |
msgid "Current version"
|
1348 |
msgstr ""
|
1349 |
|
1350 |
+
#: includes/options/templates/compatibility.php:44
|
1351 |
msgid "Supported minimum version"
|
1352 |
msgstr ""
|
1353 |
|
1354 |
+
#: includes/options/templates/compatibility.php:45
|
1355 |
msgid "Stage"
|
1356 |
msgstr ""
|
1357 |
|
1358 |
+
#: includes/options/templates/compatibility.php:46
|
1359 |
msgid "Status"
|
1360 |
msgstr ""
|
1361 |
|
1362 |
+
#: includes/options/templates/compatibility.php:59
|
1363 |
+
msgid "In core"
|
1364 |
+
msgstr ""
|
1365 |
+
|
1366 |
+
#: includes/options/templates/compatibility.php:71
|
1367 |
msgid "Active"
|
1368 |
msgstr ""
|
1369 |
|
1370 |
+
#: includes/options/templates/compatibility.php:73
|
1371 |
msgid "Installed, inactive"
|
1372 |
msgstr ""
|
1373 |
|
1374 |
+
#: includes/options/templates/compatibility.php:76
|
1375 |
msgid "Not installed"
|
1376 |
msgstr ""
|
1377 |
|
languages/wpglobus-en_CA.po
CHANGED
@@ -309,8 +309,8 @@ 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:
|
314 |
msgid "WPGlobus"
|
315 |
msgstr "WPGlobus"
|
316 |
|
@@ -858,7 +858,7 @@ msgid "To translate permalinks, please activate the module Slug."
|
|
858 |
msgstr ""
|
859 |
|
860 |
#: includes/builders/class-wpglobus-builder.php:358,
|
861 |
-
#: includes/class-wpglobus.php:
|
862 |
msgid "Save draft before using extra language."
|
863 |
msgstr ""
|
864 |
|
@@ -866,7 +866,7 @@ msgstr ""
|
|
866 |
msgid "Builder"
|
867 |
msgstr ""
|
868 |
|
869 |
-
#: includes/builders/class-wpglobus-builder.php:
|
870 |
msgid "Сompatibility Settings"
|
871 |
msgstr ""
|
872 |
|
@@ -929,40 +929,40 @@ msgid "Selector type"
|
|
929 |
msgstr "Selector type"
|
930 |
|
931 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
932 |
-
#: includes/class-wpglobus.php:
|
933 |
msgid "OFF"
|
934 |
msgstr ""
|
935 |
|
936 |
-
#: includes/class-wpglobus.php:
|
937 |
msgid "Turn on"
|
938 |
msgstr ""
|
939 |
|
940 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
941 |
-
#: includes/class-wpglobus.php:
|
942 |
msgid "ON"
|
943 |
msgstr ""
|
944 |
|
945 |
-
#: includes/class-wpglobus.php:
|
946 |
msgid "Turn off"
|
947 |
msgstr ""
|
948 |
|
949 |
-
#: includes/class-wpglobus.php:
|
950 |
msgid "You cannot disable the main language."
|
951 |
msgstr "You cannot disable the main language."
|
952 |
|
953 |
-
#: includes/class-wpglobus.php:
|
954 |
msgid "*) Available after the menu is saved."
|
955 |
msgstr "*) Available after the menu is saved."
|
956 |
|
957 |
-
#: includes/class-wpglobus.php:
|
958 |
msgid "Need a multilingual slug?"
|
959 |
msgstr "Need a multilingual slug?"
|
960 |
|
961 |
-
#: includes/class-wpglobus.php:
|
962 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
963 |
msgstr "You must enable Pretty Permalinks to use WPGlobus."
|
964 |
|
965 |
-
#: includes/class-wpglobus.php:
|
966 |
msgid ""
|
967 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
968 |
"default option."
|
@@ -970,7 +970,7 @@ msgstr ""
|
|
970 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
971 |
"default option."
|
972 |
|
973 |
-
#: includes/class-wpglobus.php:
|
974 |
msgid "Add"
|
975 |
msgstr "Add"
|
976 |
|
@@ -1334,39 +1334,43 @@ msgstr ""
|
|
1334 |
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1335 |
msgstr ""
|
1336 |
|
1337 |
-
#: includes/options/templates/compatibility.php:
|
1338 |
msgid "List of supported add-ons"
|
1339 |
msgstr ""
|
1340 |
|
1341 |
-
#: includes/options/templates/compatibility.php:
|
1342 |
msgid "Add-on"
|
1343 |
msgstr ""
|
1344 |
|
1345 |
-
#: includes/options/templates/compatibility.php:
|
1346 |
msgid "Current version"
|
1347 |
msgstr ""
|
1348 |
|
1349 |
-
#: includes/options/templates/compatibility.php:
|
1350 |
msgid "Supported minimum version"
|
1351 |
msgstr ""
|
1352 |
|
1353 |
-
#: includes/options/templates/compatibility.php:
|
1354 |
msgid "Stage"
|
1355 |
msgstr ""
|
1356 |
|
1357 |
-
#: includes/options/templates/compatibility.php:
|
1358 |
msgid "Status"
|
1359 |
msgstr ""
|
1360 |
|
1361 |
-
#: includes/options/templates/compatibility.php:
|
|
|
|
|
|
|
|
|
1362 |
msgid "Active"
|
1363 |
msgstr ""
|
1364 |
|
1365 |
-
#: includes/options/templates/compatibility.php:
|
1366 |
msgid "Installed, inactive"
|
1367 |
msgstr ""
|
1368 |
|
1369 |
-
#: includes/options/templates/compatibility.php:
|
1370 |
msgid "Not installed"
|
1371 |
msgstr ""
|
1372 |
|
309 |
msgstr "Save & Reload"
|
310 |
|
311 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
312 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:316,
|
313 |
+
#: includes/class-wpglobus.php:1325, wpglobus.php:12, wpglobus.php:18
|
314 |
msgid "WPGlobus"
|
315 |
msgstr "WPGlobus"
|
316 |
|
858 |
msgstr ""
|
859 |
|
860 |
#: includes/builders/class-wpglobus-builder.php:358,
|
861 |
+
#: includes/class-wpglobus.php:3561
|
862 |
msgid "Save draft before using extra language."
|
863 |
msgstr ""
|
864 |
|
866 |
msgid "Builder"
|
867 |
msgstr ""
|
868 |
|
869 |
+
#: includes/builders/class-wpglobus-builder.php:465
|
870 |
msgid "Сompatibility Settings"
|
871 |
msgstr ""
|
872 |
|
929 |
msgstr "Selector type"
|
930 |
|
931 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
932 |
+
#: includes/class-wpglobus.php:1299
|
933 |
msgid "OFF"
|
934 |
msgstr ""
|
935 |
|
936 |
+
#: includes/class-wpglobus.php:1300
|
937 |
msgid "Turn on"
|
938 |
msgstr ""
|
939 |
|
940 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
941 |
+
#: includes/class-wpglobus.php:1304
|
942 |
msgid "ON"
|
943 |
msgstr ""
|
944 |
|
945 |
+
#: includes/class-wpglobus.php:1305
|
946 |
msgid "Turn off"
|
947 |
msgstr ""
|
948 |
|
949 |
+
#: includes/class-wpglobus.php:1488
|
950 |
msgid "You cannot disable the main language."
|
951 |
msgstr "You cannot disable the main language."
|
952 |
|
953 |
+
#: includes/class-wpglobus.php:1689
|
954 |
msgid "*) Available after the menu is saved."
|
955 |
msgstr "*) Available after the menu is saved."
|
956 |
|
957 |
+
#: includes/class-wpglobus.php:1706
|
958 |
msgid "Need a multilingual slug?"
|
959 |
msgstr "Need a multilingual slug?"
|
960 |
|
961 |
+
#: includes/class-wpglobus.php:3994
|
962 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
963 |
msgstr "You must enable Pretty Permalinks to use WPGlobus."
|
964 |
|
965 |
+
#: includes/class-wpglobus.php:3996
|
966 |
msgid ""
|
967 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
968 |
"default option."
|
970 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
971 |
"default option."
|
972 |
|
973 |
+
#: includes/class-wpglobus.php:4142
|
974 |
msgid "Add"
|
975 |
msgstr "Add"
|
976 |
|
1334 |
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1335 |
msgstr ""
|
1336 |
|
1337 |
+
#: includes/options/templates/compatibility.php:37
|
1338 |
msgid "List of supported add-ons"
|
1339 |
msgstr ""
|
1340 |
|
1341 |
+
#: includes/options/templates/compatibility.php:42
|
1342 |
msgid "Add-on"
|
1343 |
msgstr ""
|
1344 |
|
1345 |
+
#: includes/options/templates/compatibility.php:43
|
1346 |
msgid "Current version"
|
1347 |
msgstr ""
|
1348 |
|
1349 |
+
#: includes/options/templates/compatibility.php:44
|
1350 |
msgid "Supported minimum version"
|
1351 |
msgstr ""
|
1352 |
|
1353 |
+
#: includes/options/templates/compatibility.php:45
|
1354 |
msgid "Stage"
|
1355 |
msgstr ""
|
1356 |
|
1357 |
+
#: includes/options/templates/compatibility.php:46
|
1358 |
msgid "Status"
|
1359 |
msgstr ""
|
1360 |
|
1361 |
+
#: includes/options/templates/compatibility.php:59
|
1362 |
+
msgid "In core"
|
1363 |
+
msgstr ""
|
1364 |
+
|
1365 |
+
#: includes/options/templates/compatibility.php:71
|
1366 |
msgid "Active"
|
1367 |
msgstr ""
|
1368 |
|
1369 |
+
#: includes/options/templates/compatibility.php:73
|
1370 |
msgid "Installed, inactive"
|
1371 |
msgstr ""
|
1372 |
|
1373 |
+
#: includes/options/templates/compatibility.php:76
|
1374 |
msgid "Not installed"
|
1375 |
msgstr ""
|
1376 |
|
languages/wpglobus-en_GB.po
CHANGED
@@ -310,8 +310,8 @@ 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:
|
315 |
msgid "WPGlobus"
|
316 |
msgstr "WPGlobus"
|
317 |
|
@@ -859,7 +859,7 @@ msgid "To translate permalinks, please activate the module Slug."
|
|
859 |
msgstr ""
|
860 |
|
861 |
#: includes/builders/class-wpglobus-builder.php:358,
|
862 |
-
#: includes/class-wpglobus.php:
|
863 |
msgid "Save draft before using extra language."
|
864 |
msgstr ""
|
865 |
|
@@ -867,7 +867,7 @@ msgstr ""
|
|
867 |
msgid "Builder"
|
868 |
msgstr ""
|
869 |
|
870 |
-
#: includes/builders/class-wpglobus-builder.php:
|
871 |
msgid "Сompatibility Settings"
|
872 |
msgstr ""
|
873 |
|
@@ -930,40 +930,40 @@ msgid "Selector type"
|
|
930 |
msgstr "Selector type"
|
931 |
|
932 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
933 |
-
#: includes/class-wpglobus.php:
|
934 |
msgid "OFF"
|
935 |
msgstr "OFF"
|
936 |
|
937 |
-
#: includes/class-wpglobus.php:
|
938 |
msgid "Turn on"
|
939 |
msgstr ""
|
940 |
|
941 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
942 |
-
#: includes/class-wpglobus.php:
|
943 |
msgid "ON"
|
944 |
msgstr "ON"
|
945 |
|
946 |
-
#: includes/class-wpglobus.php:
|
947 |
msgid "Turn off"
|
948 |
msgstr ""
|
949 |
|
950 |
-
#: includes/class-wpglobus.php:
|
951 |
msgid "You cannot disable the main language."
|
952 |
msgstr "You cannot disable the main language."
|
953 |
|
954 |
-
#: includes/class-wpglobus.php:
|
955 |
msgid "*) Available after the menu is saved."
|
956 |
msgstr "*) Available after the menu is saved."
|
957 |
|
958 |
-
#: includes/class-wpglobus.php:
|
959 |
msgid "Need a multilingual slug?"
|
960 |
msgstr "Need a multilingual slug?"
|
961 |
|
962 |
-
#: includes/class-wpglobus.php:
|
963 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
964 |
msgstr "You must enable Pretty Permalinks to use WPGlobus."
|
965 |
|
966 |
-
#: includes/class-wpglobus.php:
|
967 |
msgid ""
|
968 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
969 |
"default option."
|
@@ -971,7 +971,7 @@ msgstr ""
|
|
971 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
972 |
"default option."
|
973 |
|
974 |
-
#: includes/class-wpglobus.php:
|
975 |
msgid "Add"
|
976 |
msgstr "Add"
|
977 |
|
@@ -1335,39 +1335,43 @@ msgstr ""
|
|
1335 |
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1336 |
msgstr ""
|
1337 |
|
1338 |
-
#: includes/options/templates/compatibility.php:
|
1339 |
msgid "List of supported add-ons"
|
1340 |
msgstr ""
|
1341 |
|
1342 |
-
#: includes/options/templates/compatibility.php:
|
1343 |
msgid "Add-on"
|
1344 |
msgstr ""
|
1345 |
|
1346 |
-
#: includes/options/templates/compatibility.php:
|
1347 |
msgid "Current version"
|
1348 |
msgstr ""
|
1349 |
|
1350 |
-
#: includes/options/templates/compatibility.php:
|
1351 |
msgid "Supported minimum version"
|
1352 |
msgstr ""
|
1353 |
|
1354 |
-
#: includes/options/templates/compatibility.php:
|
1355 |
msgid "Stage"
|
1356 |
msgstr ""
|
1357 |
|
1358 |
-
#: includes/options/templates/compatibility.php:
|
1359 |
msgid "Status"
|
1360 |
msgstr ""
|
1361 |
|
1362 |
-
#: includes/options/templates/compatibility.php:
|
|
|
|
|
|
|
|
|
1363 |
msgid "Active"
|
1364 |
msgstr ""
|
1365 |
|
1366 |
-
#: includes/options/templates/compatibility.php:
|
1367 |
msgid "Installed, inactive"
|
1368 |
msgstr ""
|
1369 |
|
1370 |
-
#: includes/options/templates/compatibility.php:
|
1371 |
msgid "Not installed"
|
1372 |
msgstr ""
|
1373 |
|
310 |
msgstr "Save & Reload"
|
311 |
|
312 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
313 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:316,
|
314 |
+
#: includes/class-wpglobus.php:1325, wpglobus.php:12, wpglobus.php:18
|
315 |
msgid "WPGlobus"
|
316 |
msgstr "WPGlobus"
|
317 |
|
859 |
msgstr ""
|
860 |
|
861 |
#: includes/builders/class-wpglobus-builder.php:358,
|
862 |
+
#: includes/class-wpglobus.php:3561
|
863 |
msgid "Save draft before using extra language."
|
864 |
msgstr ""
|
865 |
|
867 |
msgid "Builder"
|
868 |
msgstr ""
|
869 |
|
870 |
+
#: includes/builders/class-wpglobus-builder.php:465
|
871 |
msgid "Сompatibility Settings"
|
872 |
msgstr ""
|
873 |
|
930 |
msgstr "Selector type"
|
931 |
|
932 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
933 |
+
#: includes/class-wpglobus.php:1299
|
934 |
msgid "OFF"
|
935 |
msgstr "OFF"
|
936 |
|
937 |
+
#: includes/class-wpglobus.php:1300
|
938 |
msgid "Turn on"
|
939 |
msgstr ""
|
940 |
|
941 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
942 |
+
#: includes/class-wpglobus.php:1304
|
943 |
msgid "ON"
|
944 |
msgstr "ON"
|
945 |
|
946 |
+
#: includes/class-wpglobus.php:1305
|
947 |
msgid "Turn off"
|
948 |
msgstr ""
|
949 |
|
950 |
+
#: includes/class-wpglobus.php:1488
|
951 |
msgid "You cannot disable the main language."
|
952 |
msgstr "You cannot disable the main language."
|
953 |
|
954 |
+
#: includes/class-wpglobus.php:1689
|
955 |
msgid "*) Available after the menu is saved."
|
956 |
msgstr "*) Available after the menu is saved."
|
957 |
|
958 |
+
#: includes/class-wpglobus.php:1706
|
959 |
msgid "Need a multilingual slug?"
|
960 |
msgstr "Need a multilingual slug?"
|
961 |
|
962 |
+
#: includes/class-wpglobus.php:3994
|
963 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
964 |
msgstr "You must enable Pretty Permalinks to use WPGlobus."
|
965 |
|
966 |
+
#: includes/class-wpglobus.php:3996
|
967 |
msgid ""
|
968 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
969 |
"default option."
|
971 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
972 |
"default option."
|
973 |
|
974 |
+
#: includes/class-wpglobus.php:4142
|
975 |
msgid "Add"
|
976 |
msgstr "Add"
|
977 |
|
1335 |
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1336 |
msgstr ""
|
1337 |
|
1338 |
+
#: includes/options/templates/compatibility.php:37
|
1339 |
msgid "List of supported add-ons"
|
1340 |
msgstr ""
|
1341 |
|
1342 |
+
#: includes/options/templates/compatibility.php:42
|
1343 |
msgid "Add-on"
|
1344 |
msgstr ""
|
1345 |
|
1346 |
+
#: includes/options/templates/compatibility.php:43
|
1347 |
msgid "Current version"
|
1348 |
msgstr ""
|
1349 |
|
1350 |
+
#: includes/options/templates/compatibility.php:44
|
1351 |
msgid "Supported minimum version"
|
1352 |
msgstr ""
|
1353 |
|
1354 |
+
#: includes/options/templates/compatibility.php:45
|
1355 |
msgid "Stage"
|
1356 |
msgstr ""
|
1357 |
|
1358 |
+
#: includes/options/templates/compatibility.php:46
|
1359 |
msgid "Status"
|
1360 |
msgstr ""
|
1361 |
|
1362 |
+
#: includes/options/templates/compatibility.php:59
|
1363 |
+
msgid "In core"
|
1364 |
+
msgstr ""
|
1365 |
+
|
1366 |
+
#: includes/options/templates/compatibility.php:71
|
1367 |
msgid "Active"
|
1368 |
msgstr ""
|
1369 |
|
1370 |
+
#: includes/options/templates/compatibility.php:73
|
1371 |
msgid "Installed, inactive"
|
1372 |
msgstr ""
|
1373 |
|
1374 |
+
#: includes/options/templates/compatibility.php:76
|
1375 |
msgid "Not installed"
|
1376 |
msgstr ""
|
1377 |
|
languages/wpglobus-en_NZ.po
CHANGED
@@ -309,8 +309,8 @@ 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:
|
314 |
msgid "WPGlobus"
|
315 |
msgstr "WPGlobus"
|
316 |
|
@@ -858,7 +858,7 @@ msgid "To translate permalinks, please activate the module Slug."
|
|
858 |
msgstr ""
|
859 |
|
860 |
#: includes/builders/class-wpglobus-builder.php:358,
|
861 |
-
#: includes/class-wpglobus.php:
|
862 |
msgid "Save draft before using extra language."
|
863 |
msgstr ""
|
864 |
|
@@ -866,7 +866,7 @@ msgstr ""
|
|
866 |
msgid "Builder"
|
867 |
msgstr ""
|
868 |
|
869 |
-
#: includes/builders/class-wpglobus-builder.php:
|
870 |
msgid "Сompatibility Settings"
|
871 |
msgstr ""
|
872 |
|
@@ -929,40 +929,40 @@ msgid "Selector type"
|
|
929 |
msgstr "Selector type"
|
930 |
|
931 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
932 |
-
#: includes/class-wpglobus.php:
|
933 |
msgid "OFF"
|
934 |
msgstr ""
|
935 |
|
936 |
-
#: includes/class-wpglobus.php:
|
937 |
msgid "Turn on"
|
938 |
msgstr ""
|
939 |
|
940 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
941 |
-
#: includes/class-wpglobus.php:
|
942 |
msgid "ON"
|
943 |
msgstr ""
|
944 |
|
945 |
-
#: includes/class-wpglobus.php:
|
946 |
msgid "Turn off"
|
947 |
msgstr ""
|
948 |
|
949 |
-
#: includes/class-wpglobus.php:
|
950 |
msgid "You cannot disable the main language."
|
951 |
msgstr "You cannot disable the main language."
|
952 |
|
953 |
-
#: includes/class-wpglobus.php:
|
954 |
msgid "*) Available after the menu is saved."
|
955 |
msgstr "*) Available after the menu is saved."
|
956 |
|
957 |
-
#: includes/class-wpglobus.php:
|
958 |
msgid "Need a multilingual slug?"
|
959 |
msgstr "Need a multilingual slug?"
|
960 |
|
961 |
-
#: includes/class-wpglobus.php:
|
962 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
963 |
msgstr "You must enable Pretty Permalinks to use WPGlobus."
|
964 |
|
965 |
-
#: includes/class-wpglobus.php:
|
966 |
msgid ""
|
967 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
968 |
"default option."
|
@@ -970,7 +970,7 @@ msgstr ""
|
|
970 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
971 |
"default option."
|
972 |
|
973 |
-
#: includes/class-wpglobus.php:
|
974 |
msgid "Add"
|
975 |
msgstr "Add"
|
976 |
|
@@ -1334,39 +1334,43 @@ msgstr ""
|
|
1334 |
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1335 |
msgstr ""
|
1336 |
|
1337 |
-
#: includes/options/templates/compatibility.php:
|
1338 |
msgid "List of supported add-ons"
|
1339 |
msgstr ""
|
1340 |
|
1341 |
-
#: includes/options/templates/compatibility.php:
|
1342 |
msgid "Add-on"
|
1343 |
msgstr ""
|
1344 |
|
1345 |
-
#: includes/options/templates/compatibility.php:
|
1346 |
msgid "Current version"
|
1347 |
msgstr ""
|
1348 |
|
1349 |
-
#: includes/options/templates/compatibility.php:
|
1350 |
msgid "Supported minimum version"
|
1351 |
msgstr ""
|
1352 |
|
1353 |
-
#: includes/options/templates/compatibility.php:
|
1354 |
msgid "Stage"
|
1355 |
msgstr ""
|
1356 |
|
1357 |
-
#: includes/options/templates/compatibility.php:
|
1358 |
msgid "Status"
|
1359 |
msgstr ""
|
1360 |
|
1361 |
-
#: includes/options/templates/compatibility.php:
|
|
|
|
|
|
|
|
|
1362 |
msgid "Active"
|
1363 |
msgstr ""
|
1364 |
|
1365 |
-
#: includes/options/templates/compatibility.php:
|
1366 |
msgid "Installed, inactive"
|
1367 |
msgstr ""
|
1368 |
|
1369 |
-
#: includes/options/templates/compatibility.php:
|
1370 |
msgid "Not installed"
|
1371 |
msgstr ""
|
1372 |
|
309 |
msgstr "Save & Reload"
|
310 |
|
311 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
312 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:316,
|
313 |
+
#: includes/class-wpglobus.php:1325, wpglobus.php:12, wpglobus.php:18
|
314 |
msgid "WPGlobus"
|
315 |
msgstr "WPGlobus"
|
316 |
|
858 |
msgstr ""
|
859 |
|
860 |
#: includes/builders/class-wpglobus-builder.php:358,
|
861 |
+
#: includes/class-wpglobus.php:3561
|
862 |
msgid "Save draft before using extra language."
|
863 |
msgstr ""
|
864 |
|
866 |
msgid "Builder"
|
867 |
msgstr ""
|
868 |
|
869 |
+
#: includes/builders/class-wpglobus-builder.php:465
|
870 |
msgid "Сompatibility Settings"
|
871 |
msgstr ""
|
872 |
|
929 |
msgstr "Selector type"
|
930 |
|
931 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
932 |
+
#: includes/class-wpglobus.php:1299
|
933 |
msgid "OFF"
|
934 |
msgstr ""
|
935 |
|
936 |
+
#: includes/class-wpglobus.php:1300
|
937 |
msgid "Turn on"
|
938 |
msgstr ""
|
939 |
|
940 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
941 |
+
#: includes/class-wpglobus.php:1304
|
942 |
msgid "ON"
|
943 |
msgstr ""
|
944 |
|
945 |
+
#: includes/class-wpglobus.php:1305
|
946 |
msgid "Turn off"
|
947 |
msgstr ""
|
948 |
|
949 |
+
#: includes/class-wpglobus.php:1488
|
950 |
msgid "You cannot disable the main language."
|
951 |
msgstr "You cannot disable the main language."
|
952 |
|
953 |
+
#: includes/class-wpglobus.php:1689
|
954 |
msgid "*) Available after the menu is saved."
|
955 |
msgstr "*) Available after the menu is saved."
|
956 |
|
957 |
+
#: includes/class-wpglobus.php:1706
|
958 |
msgid "Need a multilingual slug?"
|
959 |
msgstr "Need a multilingual slug?"
|
960 |
|
961 |
+
#: includes/class-wpglobus.php:3994
|
962 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
963 |
msgstr "You must enable Pretty Permalinks to use WPGlobus."
|
964 |
|
965 |
+
#: includes/class-wpglobus.php:3996
|
966 |
msgid ""
|
967 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
968 |
"default option."
|
970 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
971 |
"default option."
|
972 |
|
973 |
+
#: includes/class-wpglobus.php:4142
|
974 |
msgid "Add"
|
975 |
msgstr "Add"
|
976 |
|
1334 |
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1335 |
msgstr ""
|
1336 |
|
1337 |
+
#: includes/options/templates/compatibility.php:37
|
1338 |
msgid "List of supported add-ons"
|
1339 |
msgstr ""
|
1340 |
|
1341 |
+
#: includes/options/templates/compatibility.php:42
|
1342 |
msgid "Add-on"
|
1343 |
msgstr ""
|
1344 |
|
1345 |
+
#: includes/options/templates/compatibility.php:43
|
1346 |
msgid "Current version"
|
1347 |
msgstr ""
|
1348 |
|
1349 |
+
#: includes/options/templates/compatibility.php:44
|
1350 |
msgid "Supported minimum version"
|
1351 |
msgstr ""
|
1352 |
|
1353 |
+
#: includes/options/templates/compatibility.php:45
|
1354 |
msgid "Stage"
|
1355 |
msgstr ""
|
1356 |
|
1357 |
+
#: includes/options/templates/compatibility.php:46
|
1358 |
msgid "Status"
|
1359 |
msgstr ""
|
1360 |
|
1361 |
+
#: includes/options/templates/compatibility.php:59
|
1362 |
+
msgid "In core"
|
1363 |
+
msgstr ""
|
1364 |
+
|
1365 |
+
#: includes/options/templates/compatibility.php:71
|
1366 |
msgid "Active"
|
1367 |
msgstr ""
|
1368 |
|
1369 |
+
#: includes/options/templates/compatibility.php:73
|
1370 |
msgid "Installed, inactive"
|
1371 |
msgstr ""
|
1372 |
|
1373 |
+
#: includes/options/templates/compatibility.php:76
|
1374 |
msgid "Not installed"
|
1375 |
msgstr ""
|
1376 |
|
languages/wpglobus-en_US.po
CHANGED
@@ -308,8 +308,8 @@ 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:
|
313 |
msgid "WPGlobus"
|
314 |
msgstr "WPGlobus"
|
315 |
|
@@ -859,7 +859,7 @@ msgid "To translate permalinks, please activate the module Slug."
|
|
859 |
msgstr "To translate permalinks, please activate the module Slug."
|
860 |
|
861 |
#: includes/builders/class-wpglobus-builder.php:358,
|
862 |
-
#: includes/class-wpglobus.php:
|
863 |
msgid "Save draft before using extra language."
|
864 |
msgstr ""
|
865 |
|
@@ -867,7 +867,7 @@ msgstr ""
|
|
867 |
msgid "Builder"
|
868 |
msgstr ""
|
869 |
|
870 |
-
#: includes/builders/class-wpglobus-builder.php:
|
871 |
msgid "Сompatibility Settings"
|
872 |
msgstr ""
|
873 |
|
@@ -930,40 +930,40 @@ msgid "Selector type"
|
|
930 |
msgstr "Selector type"
|
931 |
|
932 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
933 |
-
#: includes/class-wpglobus.php:
|
934 |
msgid "OFF"
|
935 |
msgstr "OFF"
|
936 |
|
937 |
-
#: includes/class-wpglobus.php:
|
938 |
msgid "Turn on"
|
939 |
msgstr "Turn on"
|
940 |
|
941 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
942 |
-
#: includes/class-wpglobus.php:
|
943 |
msgid "ON"
|
944 |
msgstr "ON"
|
945 |
|
946 |
-
#: includes/class-wpglobus.php:
|
947 |
msgid "Turn off"
|
948 |
msgstr "Turn off"
|
949 |
|
950 |
-
#: includes/class-wpglobus.php:
|
951 |
msgid "You cannot disable the main language."
|
952 |
msgstr "You cannot disable the main language."
|
953 |
|
954 |
-
#: includes/class-wpglobus.php:
|
955 |
msgid "*) Available after the menu is saved."
|
956 |
msgstr "*) Available after the menu is saved."
|
957 |
|
958 |
-
#: includes/class-wpglobus.php:
|
959 |
msgid "Need a multilingual slug?"
|
960 |
msgstr "Need a multilingual slug?"
|
961 |
|
962 |
-
#: includes/class-wpglobus.php:
|
963 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
964 |
msgstr "You must enable Pretty Permalinks to use WPGlobus."
|
965 |
|
966 |
-
#: includes/class-wpglobus.php:
|
967 |
msgid ""
|
968 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
969 |
"default option."
|
@@ -971,7 +971,7 @@ msgstr ""
|
|
971 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
972 |
"default option."
|
973 |
|
974 |
-
#: includes/class-wpglobus.php:
|
975 |
msgid "Add"
|
976 |
msgstr "Add"
|
977 |
|
@@ -1373,39 +1373,43 @@ msgstr ""
|
|
1373 |
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1374 |
msgstr ""
|
1375 |
|
1376 |
-
#: includes/options/templates/compatibility.php:
|
1377 |
msgid "List of supported add-ons"
|
1378 |
msgstr ""
|
1379 |
|
1380 |
-
#: includes/options/templates/compatibility.php:
|
1381 |
msgid "Add-on"
|
1382 |
msgstr ""
|
1383 |
|
1384 |
-
#: includes/options/templates/compatibility.php:
|
1385 |
msgid "Current version"
|
1386 |
msgstr ""
|
1387 |
|
1388 |
-
#: includes/options/templates/compatibility.php:
|
1389 |
msgid "Supported minimum version"
|
1390 |
msgstr ""
|
1391 |
|
1392 |
-
#: includes/options/templates/compatibility.php:
|
1393 |
msgid "Stage"
|
1394 |
msgstr ""
|
1395 |
|
1396 |
-
#: includes/options/templates/compatibility.php:
|
1397 |
msgid "Status"
|
1398 |
msgstr ""
|
1399 |
|
1400 |
-
#: includes/options/templates/compatibility.php:
|
|
|
|
|
|
|
|
|
1401 |
msgid "Active"
|
1402 |
msgstr ""
|
1403 |
|
1404 |
-
#: includes/options/templates/compatibility.php:
|
1405 |
msgid "Installed, inactive"
|
1406 |
msgstr ""
|
1407 |
|
1408 |
-
#: includes/options/templates/compatibility.php:
|
1409 |
msgid "Not installed"
|
1410 |
msgstr ""
|
1411 |
|
308 |
msgstr "Save & Reload"
|
309 |
|
310 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
311 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:316,
|
312 |
+
#: includes/class-wpglobus.php:1325, wpglobus.php:12, wpglobus.php:18
|
313 |
msgid "WPGlobus"
|
314 |
msgstr "WPGlobus"
|
315 |
|
859 |
msgstr "To translate permalinks, please activate the module Slug."
|
860 |
|
861 |
#: includes/builders/class-wpglobus-builder.php:358,
|
862 |
+
#: includes/class-wpglobus.php:3561
|
863 |
msgid "Save draft before using extra language."
|
864 |
msgstr ""
|
865 |
|
867 |
msgid "Builder"
|
868 |
msgstr ""
|
869 |
|
870 |
+
#: includes/builders/class-wpglobus-builder.php:465
|
871 |
msgid "Сompatibility Settings"
|
872 |
msgstr ""
|
873 |
|
930 |
msgstr "Selector type"
|
931 |
|
932 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
933 |
+
#: includes/class-wpglobus.php:1299
|
934 |
msgid "OFF"
|
935 |
msgstr "OFF"
|
936 |
|
937 |
+
#: includes/class-wpglobus.php:1300
|
938 |
msgid "Turn on"
|
939 |
msgstr "Turn on"
|
940 |
|
941 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
942 |
+
#: includes/class-wpglobus.php:1304
|
943 |
msgid "ON"
|
944 |
msgstr "ON"
|
945 |
|
946 |
+
#: includes/class-wpglobus.php:1305
|
947 |
msgid "Turn off"
|
948 |
msgstr "Turn off"
|
949 |
|
950 |
+
#: includes/class-wpglobus.php:1488
|
951 |
msgid "You cannot disable the main language."
|
952 |
msgstr "You cannot disable the main language."
|
953 |
|
954 |
+
#: includes/class-wpglobus.php:1689
|
955 |
msgid "*) Available after the menu is saved."
|
956 |
msgstr "*) Available after the menu is saved."
|
957 |
|
958 |
+
#: includes/class-wpglobus.php:1706
|
959 |
msgid "Need a multilingual slug?"
|
960 |
msgstr "Need a multilingual slug?"
|
961 |
|
962 |
+
#: includes/class-wpglobus.php:3994
|
963 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
964 |
msgstr "You must enable Pretty Permalinks to use WPGlobus."
|
965 |
|
966 |
+
#: includes/class-wpglobus.php:3996
|
967 |
msgid ""
|
968 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
969 |
"default option."
|
971 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
972 |
"default option."
|
973 |
|
974 |
+
#: includes/class-wpglobus.php:4142
|
975 |
msgid "Add"
|
976 |
msgstr "Add"
|
977 |
|
1373 |
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1374 |
msgstr ""
|
1375 |
|
1376 |
+
#: includes/options/templates/compatibility.php:37
|
1377 |
msgid "List of supported add-ons"
|
1378 |
msgstr ""
|
1379 |
|
1380 |
+
#: includes/options/templates/compatibility.php:42
|
1381 |
msgid "Add-on"
|
1382 |
msgstr ""
|
1383 |
|
1384 |
+
#: includes/options/templates/compatibility.php:43
|
1385 |
msgid "Current version"
|
1386 |
msgstr ""
|
1387 |
|
1388 |
+
#: includes/options/templates/compatibility.php:44
|
1389 |
msgid "Supported minimum version"
|
1390 |
msgstr ""
|
1391 |
|
1392 |
+
#: includes/options/templates/compatibility.php:45
|
1393 |
msgid "Stage"
|
1394 |
msgstr ""
|
1395 |
|
1396 |
+
#: includes/options/templates/compatibility.php:46
|
1397 |
msgid "Status"
|
1398 |
msgstr ""
|
1399 |
|
1400 |
+
#: includes/options/templates/compatibility.php:59
|
1401 |
+
msgid "In core"
|
1402 |
+
msgstr ""
|
1403 |
+
|
1404 |
+
#: includes/options/templates/compatibility.php:71
|
1405 |
msgid "Active"
|
1406 |
msgstr ""
|
1407 |
|
1408 |
+
#: includes/options/templates/compatibility.php:73
|
1409 |
msgid "Installed, inactive"
|
1410 |
msgstr ""
|
1411 |
|
1412 |
+
#: includes/options/templates/compatibility.php:76
|
1413 |
msgid "Not installed"
|
1414 |
msgstr ""
|
1415 |
|
languages/wpglobus-en_ZA.po
CHANGED
@@ -309,8 +309,8 @@ 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:
|
314 |
msgid "WPGlobus"
|
315 |
msgstr "WPGlobus"
|
316 |
|
@@ -858,7 +858,7 @@ msgid "To translate permalinks, please activate the module Slug."
|
|
858 |
msgstr ""
|
859 |
|
860 |
#: includes/builders/class-wpglobus-builder.php:358,
|
861 |
-
#: includes/class-wpglobus.php:
|
862 |
msgid "Save draft before using extra language."
|
863 |
msgstr ""
|
864 |
|
@@ -866,7 +866,7 @@ msgstr ""
|
|
866 |
msgid "Builder"
|
867 |
msgstr ""
|
868 |
|
869 |
-
#: includes/builders/class-wpglobus-builder.php:
|
870 |
msgid "Сompatibility Settings"
|
871 |
msgstr ""
|
872 |
|
@@ -929,40 +929,40 @@ msgid "Selector type"
|
|
929 |
msgstr "Selector type"
|
930 |
|
931 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
932 |
-
#: includes/class-wpglobus.php:
|
933 |
msgid "OFF"
|
934 |
msgstr ""
|
935 |
|
936 |
-
#: includes/class-wpglobus.php:
|
937 |
msgid "Turn on"
|
938 |
msgstr ""
|
939 |
|
940 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
941 |
-
#: includes/class-wpglobus.php:
|
942 |
msgid "ON"
|
943 |
msgstr ""
|
944 |
|
945 |
-
#: includes/class-wpglobus.php:
|
946 |
msgid "Turn off"
|
947 |
msgstr ""
|
948 |
|
949 |
-
#: includes/class-wpglobus.php:
|
950 |
msgid "You cannot disable the main language."
|
951 |
msgstr "You cannot disable the main language."
|
952 |
|
953 |
-
#: includes/class-wpglobus.php:
|
954 |
msgid "*) Available after the menu is saved."
|
955 |
msgstr "*) Available after the menu is saved."
|
956 |
|
957 |
-
#: includes/class-wpglobus.php:
|
958 |
msgid "Need a multilingual slug?"
|
959 |
msgstr "Need a multilingual slug?"
|
960 |
|
961 |
-
#: includes/class-wpglobus.php:
|
962 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
963 |
msgstr "You must enable Pretty Permalinks to use WPGlobus."
|
964 |
|
965 |
-
#: includes/class-wpglobus.php:
|
966 |
msgid ""
|
967 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
968 |
"default option."
|
@@ -970,7 +970,7 @@ msgstr ""
|
|
970 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
971 |
"default option."
|
972 |
|
973 |
-
#: includes/class-wpglobus.php:
|
974 |
msgid "Add"
|
975 |
msgstr "Add"
|
976 |
|
@@ -1334,39 +1334,43 @@ msgstr ""
|
|
1334 |
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1335 |
msgstr ""
|
1336 |
|
1337 |
-
#: includes/options/templates/compatibility.php:
|
1338 |
msgid "List of supported add-ons"
|
1339 |
msgstr ""
|
1340 |
|
1341 |
-
#: includes/options/templates/compatibility.php:
|
1342 |
msgid "Add-on"
|
1343 |
msgstr ""
|
1344 |
|
1345 |
-
#: includes/options/templates/compatibility.php:
|
1346 |
msgid "Current version"
|
1347 |
msgstr ""
|
1348 |
|
1349 |
-
#: includes/options/templates/compatibility.php:
|
1350 |
msgid "Supported minimum version"
|
1351 |
msgstr ""
|
1352 |
|
1353 |
-
#: includes/options/templates/compatibility.php:
|
1354 |
msgid "Stage"
|
1355 |
msgstr ""
|
1356 |
|
1357 |
-
#: includes/options/templates/compatibility.php:
|
1358 |
msgid "Status"
|
1359 |
msgstr ""
|
1360 |
|
1361 |
-
#: includes/options/templates/compatibility.php:
|
|
|
|
|
|
|
|
|
1362 |
msgid "Active"
|
1363 |
msgstr ""
|
1364 |
|
1365 |
-
#: includes/options/templates/compatibility.php:
|
1366 |
msgid "Installed, inactive"
|
1367 |
msgstr ""
|
1368 |
|
1369 |
-
#: includes/options/templates/compatibility.php:
|
1370 |
msgid "Not installed"
|
1371 |
msgstr ""
|
1372 |
|
309 |
msgstr "Save & Reload"
|
310 |
|
311 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
312 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:316,
|
313 |
+
#: includes/class-wpglobus.php:1325, wpglobus.php:12, wpglobus.php:18
|
314 |
msgid "WPGlobus"
|
315 |
msgstr "WPGlobus"
|
316 |
|
858 |
msgstr ""
|
859 |
|
860 |
#: includes/builders/class-wpglobus-builder.php:358,
|
861 |
+
#: includes/class-wpglobus.php:3561
|
862 |
msgid "Save draft before using extra language."
|
863 |
msgstr ""
|
864 |
|
866 |
msgid "Builder"
|
867 |
msgstr ""
|
868 |
|
869 |
+
#: includes/builders/class-wpglobus-builder.php:465
|
870 |
msgid "Сompatibility Settings"
|
871 |
msgstr ""
|
872 |
|
929 |
msgstr "Selector type"
|
930 |
|
931 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
932 |
+
#: includes/class-wpglobus.php:1299
|
933 |
msgid "OFF"
|
934 |
msgstr ""
|
935 |
|
936 |
+
#: includes/class-wpglobus.php:1300
|
937 |
msgid "Turn on"
|
938 |
msgstr ""
|
939 |
|
940 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
941 |
+
#: includes/class-wpglobus.php:1304
|
942 |
msgid "ON"
|
943 |
msgstr ""
|
944 |
|
945 |
+
#: includes/class-wpglobus.php:1305
|
946 |
msgid "Turn off"
|
947 |
msgstr ""
|
948 |
|
949 |
+
#: includes/class-wpglobus.php:1488
|
950 |
msgid "You cannot disable the main language."
|
951 |
msgstr "You cannot disable the main language."
|
952 |
|
953 |
+
#: includes/class-wpglobus.php:1689
|
954 |
msgid "*) Available after the menu is saved."
|
955 |
msgstr "*) Available after the menu is saved."
|
956 |
|
957 |
+
#: includes/class-wpglobus.php:1706
|
958 |
msgid "Need a multilingual slug?"
|
959 |
msgstr "Need a multilingual slug?"
|
960 |
|
961 |
+
#: includes/class-wpglobus.php:3994
|
962 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
963 |
msgstr "You must enable Pretty Permalinks to use WPGlobus."
|
964 |
|
965 |
+
#: includes/class-wpglobus.php:3996
|
966 |
msgid ""
|
967 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
968 |
"default option."
|
970 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
971 |
"default option."
|
972 |
|
973 |
+
#: includes/class-wpglobus.php:4142
|
974 |
msgid "Add"
|
975 |
msgstr "Add"
|
976 |
|
1334 |
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1335 |
msgstr ""
|
1336 |
|
1337 |
+
#: includes/options/templates/compatibility.php:37
|
1338 |
msgid "List of supported add-ons"
|
1339 |
msgstr ""
|
1340 |
|
1341 |
+
#: includes/options/templates/compatibility.php:42
|
1342 |
msgid "Add-on"
|
1343 |
msgstr ""
|
1344 |
|
1345 |
+
#: includes/options/templates/compatibility.php:43
|
1346 |
msgid "Current version"
|
1347 |
msgstr ""
|
1348 |
|
1349 |
+
#: includes/options/templates/compatibility.php:44
|
1350 |
msgid "Supported minimum version"
|
1351 |
msgstr ""
|
1352 |
|
1353 |
+
#: includes/options/templates/compatibility.php:45
|
1354 |
msgid "Stage"
|
1355 |
msgstr ""
|
1356 |
|
1357 |
+
#: includes/options/templates/compatibility.php:46
|
1358 |
msgid "Status"
|
1359 |
msgstr ""
|
1360 |
|
1361 |
+
#: includes/options/templates/compatibility.php:59
|
1362 |
+
msgid "In core"
|
1363 |
+
msgstr ""
|
1364 |
+
|
1365 |
+
#: includes/options/templates/compatibility.php:71
|
1366 |
msgid "Active"
|
1367 |
msgstr ""
|
1368 |
|
1369 |
+
#: includes/options/templates/compatibility.php:73
|
1370 |
msgid "Installed, inactive"
|
1371 |
msgstr ""
|
1372 |
|
1373 |
+
#: includes/options/templates/compatibility.php:76
|
1374 |
msgid "Not installed"
|
1375 |
msgstr ""
|
1376 |
|
languages/wpglobus-es_AR.po
CHANGED
@@ -281,8 +281,8 @@ 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:
|
286 |
msgid "WPGlobus"
|
287 |
msgstr ""
|
288 |
|
@@ -819,7 +819,7 @@ msgid "To translate permalinks, please activate the module Slug."
|
|
819 |
msgstr ""
|
820 |
|
821 |
#: includes/builders/class-wpglobus-builder.php:358,
|
822 |
-
#: includes/class-wpglobus.php:
|
823 |
msgid "Save draft before using extra language."
|
824 |
msgstr ""
|
825 |
|
@@ -827,7 +827,7 @@ msgstr ""
|
|
827 |
msgid "Builder"
|
828 |
msgstr ""
|
829 |
|
830 |
-
#: includes/builders/class-wpglobus-builder.php:
|
831 |
msgid "Сompatibility Settings"
|
832 |
msgstr ""
|
833 |
|
@@ -890,41 +890,41 @@ msgid "Selector type"
|
|
890 |
msgstr "Tipo de selector"
|
891 |
|
892 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
893 |
-
#: includes/class-wpglobus.php:
|
894 |
msgid "OFF"
|
895 |
msgstr ""
|
896 |
|
897 |
-
#: includes/class-wpglobus.php:
|
898 |
msgid "Turn on"
|
899 |
msgstr ""
|
900 |
|
901 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
902 |
-
#: includes/class-wpglobus.php:
|
903 |
msgid "ON"
|
904 |
msgstr ""
|
905 |
|
906 |
-
#: includes/class-wpglobus.php:
|
907 |
msgid "Turn off"
|
908 |
msgstr ""
|
909 |
|
910 |
-
#: includes/class-wpglobus.php:
|
911 |
msgid "You cannot disable the main language."
|
912 |
msgstr "No se puede desactivar el idioma principal."
|
913 |
|
914 |
-
#: includes/class-wpglobus.php:
|
915 |
msgid "*) Available after the menu is saved."
|
916 |
msgstr "No Se Puede Desactivar el director idioma."
|
917 |
|
918 |
-
#: includes/class-wpglobus.php:
|
919 |
msgid "Need a multilingual slug?"
|
920 |
msgstr ""
|
921 |
|
922 |
-
#: includes/class-wpglobus.php:
|
923 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
924 |
msgstr ""
|
925 |
"Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
|
926 |
|
927 |
-
#: includes/class-wpglobus.php:
|
928 |
msgid ""
|
929 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
930 |
"default option."
|
@@ -932,7 +932,7 @@ msgstr ""
|
|
932 |
"Por favor, ve a Configuración > Enlaces permanentes > Ajustes comunes y "
|
933 |
"selecciona una opción no predeterminada ."
|
934 |
|
935 |
-
#: includes/class-wpglobus.php:
|
936 |
msgid "Add"
|
937 |
msgstr "Añadir"
|
938 |
|
@@ -1296,39 +1296,43 @@ msgstr ""
|
|
1296 |
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1297 |
msgstr ""
|
1298 |
|
1299 |
-
#: includes/options/templates/compatibility.php:
|
1300 |
msgid "List of supported add-ons"
|
1301 |
msgstr ""
|
1302 |
|
1303 |
-
#: includes/options/templates/compatibility.php:
|
1304 |
msgid "Add-on"
|
1305 |
msgstr ""
|
1306 |
|
1307 |
-
#: includes/options/templates/compatibility.php:
|
1308 |
msgid "Current version"
|
1309 |
msgstr ""
|
1310 |
|
1311 |
-
#: includes/options/templates/compatibility.php:
|
1312 |
msgid "Supported minimum version"
|
1313 |
msgstr ""
|
1314 |
|
1315 |
-
#: includes/options/templates/compatibility.php:
|
1316 |
msgid "Stage"
|
1317 |
msgstr ""
|
1318 |
|
1319 |
-
#: includes/options/templates/compatibility.php:
|
1320 |
msgid "Status"
|
1321 |
msgstr ""
|
1322 |
|
1323 |
-
#: includes/options/templates/compatibility.php:
|
|
|
|
|
|
|
|
|
1324 |
msgid "Active"
|
1325 |
msgstr ""
|
1326 |
|
1327 |
-
#: includes/options/templates/compatibility.php:
|
1328 |
msgid "Installed, inactive"
|
1329 |
msgstr ""
|
1330 |
|
1331 |
-
#: includes/options/templates/compatibility.php:
|
1332 |
msgid "Not installed"
|
1333 |
msgstr ""
|
1334 |
|
281 |
msgstr ""
|
282 |
|
283 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
284 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:316,
|
285 |
+
#: includes/class-wpglobus.php:1325, wpglobus.php:12, wpglobus.php:18
|
286 |
msgid "WPGlobus"
|
287 |
msgstr ""
|
288 |
|
819 |
msgstr ""
|
820 |
|
821 |
#: includes/builders/class-wpglobus-builder.php:358,
|
822 |
+
#: includes/class-wpglobus.php:3561
|
823 |
msgid "Save draft before using extra language."
|
824 |
msgstr ""
|
825 |
|
827 |
msgid "Builder"
|
828 |
msgstr ""
|
829 |
|
830 |
+
#: includes/builders/class-wpglobus-builder.php:465
|
831 |
msgid "Сompatibility Settings"
|
832 |
msgstr ""
|
833 |
|
890 |
msgstr "Tipo de selector"
|
891 |
|
892 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
893 |
+
#: includes/class-wpglobus.php:1299
|
894 |
msgid "OFF"
|
895 |
msgstr ""
|
896 |
|
897 |
+
#: includes/class-wpglobus.php:1300
|
898 |
msgid "Turn on"
|
899 |
msgstr ""
|
900 |
|
901 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
902 |
+
#: includes/class-wpglobus.php:1304
|
903 |
msgid "ON"
|
904 |
msgstr ""
|
905 |
|
906 |
+
#: includes/class-wpglobus.php:1305
|
907 |
msgid "Turn off"
|
908 |
msgstr ""
|
909 |
|
910 |
+
#: includes/class-wpglobus.php:1488
|
911 |
msgid "You cannot disable the main language."
|
912 |
msgstr "No se puede desactivar el idioma principal."
|
913 |
|
914 |
+
#: includes/class-wpglobus.php:1689
|
915 |
msgid "*) Available after the menu is saved."
|
916 |
msgstr "No Se Puede Desactivar el director idioma."
|
917 |
|
918 |
+
#: includes/class-wpglobus.php:1706
|
919 |
msgid "Need a multilingual slug?"
|
920 |
msgstr ""
|
921 |
|
922 |
+
#: includes/class-wpglobus.php:3994
|
923 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
924 |
msgstr ""
|
925 |
"Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
|
926 |
|
927 |
+
#: includes/class-wpglobus.php:3996
|
928 |
msgid ""
|
929 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
930 |
"default option."
|
932 |
"Por favor, ve a Configuración > Enlaces permanentes > Ajustes comunes y "
|
933 |
"selecciona una opción no predeterminada ."
|
934 |
|
935 |
+
#: includes/class-wpglobus.php:4142
|
936 |
msgid "Add"
|
937 |
msgstr "Añadir"
|
938 |
|
1296 |
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1297 |
msgstr ""
|
1298 |
|
1299 |
+
#: includes/options/templates/compatibility.php:37
|
1300 |
msgid "List of supported add-ons"
|
1301 |
msgstr ""
|
1302 |
|
1303 |
+
#: includes/options/templates/compatibility.php:42
|
1304 |
msgid "Add-on"
|
1305 |
msgstr ""
|
1306 |
|
1307 |
+
#: includes/options/templates/compatibility.php:43
|
1308 |
msgid "Current version"
|
1309 |
msgstr ""
|
1310 |
|
1311 |
+
#: includes/options/templates/compatibility.php:44
|
1312 |
msgid "Supported minimum version"
|
1313 |
msgstr ""
|
1314 |
|
1315 |
+
#: includes/options/templates/compatibility.php:45
|
1316 |
msgid "Stage"
|
1317 |
msgstr ""
|
1318 |
|
1319 |
+
#: includes/options/templates/compatibility.php:46
|
1320 |
msgid "Status"
|
1321 |
msgstr ""
|
1322 |
|
1323 |
+
#: includes/options/templates/compatibility.php:59
|
1324 |
+
msgid "In core"
|
1325 |
+
msgstr ""
|
1326 |
+
|
1327 |
+
#: includes/options/templates/compatibility.php:71
|
1328 |
msgid "Active"
|
1329 |
msgstr ""
|
1330 |
|
1331 |
+
#: includes/options/templates/compatibility.php:73
|
1332 |
msgid "Installed, inactive"
|
1333 |
msgstr ""
|
1334 |
|
1335 |
+
#: includes/options/templates/compatibility.php:76
|
1336 |
msgid "Not installed"
|
1337 |
msgstr ""
|
1338 |
|
languages/wpglobus-es_CL.po
CHANGED
@@ -281,8 +281,8 @@ 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:
|
286 |
msgid "WPGlobus"
|
287 |
msgstr ""
|
288 |
|
@@ -819,7 +819,7 @@ msgid "To translate permalinks, please activate the module Slug."
|
|
819 |
msgstr ""
|
820 |
|
821 |
#: includes/builders/class-wpglobus-builder.php:358,
|
822 |
-
#: includes/class-wpglobus.php:
|
823 |
msgid "Save draft before using extra language."
|
824 |
msgstr ""
|
825 |
|
@@ -827,7 +827,7 @@ msgstr ""
|
|
827 |
msgid "Builder"
|
828 |
msgstr ""
|
829 |
|
830 |
-
#: includes/builders/class-wpglobus-builder.php:
|
831 |
msgid "Сompatibility Settings"
|
832 |
msgstr ""
|
833 |
|
@@ -890,41 +890,41 @@ msgid "Selector type"
|
|
890 |
msgstr "Tipo de selector"
|
891 |
|
892 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
893 |
-
#: includes/class-wpglobus.php:
|
894 |
msgid "OFF"
|
895 |
msgstr ""
|
896 |
|
897 |
-
#: includes/class-wpglobus.php:
|
898 |
msgid "Turn on"
|
899 |
msgstr ""
|
900 |
|
901 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
902 |
-
#: includes/class-wpglobus.php:
|
903 |
msgid "ON"
|
904 |
msgstr ""
|
905 |
|
906 |
-
#: includes/class-wpglobus.php:
|
907 |
msgid "Turn off"
|
908 |
msgstr ""
|
909 |
|
910 |
-
#: includes/class-wpglobus.php:
|
911 |
msgid "You cannot disable the main language."
|
912 |
msgstr "No se puede desactivar el idioma principal."
|
913 |
|
914 |
-
#: includes/class-wpglobus.php:
|
915 |
msgid "*) Available after the menu is saved."
|
916 |
msgstr "No Se Puede Desactivar el director idioma."
|
917 |
|
918 |
-
#: includes/class-wpglobus.php:
|
919 |
msgid "Need a multilingual slug?"
|
920 |
msgstr ""
|
921 |
|
922 |
-
#: includes/class-wpglobus.php:
|
923 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
924 |
msgstr ""
|
925 |
"Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
|
926 |
|
927 |
-
#: includes/class-wpglobus.php:
|
928 |
msgid ""
|
929 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
930 |
"default option."
|
@@ -932,7 +932,7 @@ msgstr ""
|
|
932 |
"Por favor, ve a Configuración > Enlaces permanentes > Ajustes comunes y "
|
933 |
"selecciona una opción no predeterminada ."
|
934 |
|
935 |
-
#: includes/class-wpglobus.php:
|
936 |
msgid "Add"
|
937 |
msgstr "Añadir"
|
938 |
|
@@ -1296,39 +1296,43 @@ msgstr ""
|
|
1296 |
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1297 |
msgstr ""
|
1298 |
|
1299 |
-
#: includes/options/templates/compatibility.php:
|
1300 |
msgid "List of supported add-ons"
|
1301 |
msgstr ""
|
1302 |
|
1303 |
-
#: includes/options/templates/compatibility.php:
|
1304 |
msgid "Add-on"
|
1305 |
msgstr ""
|
1306 |
|
1307 |
-
#: includes/options/templates/compatibility.php:
|
1308 |
msgid "Current version"
|
1309 |
msgstr ""
|
1310 |
|
1311 |
-
#: includes/options/templates/compatibility.php:
|
1312 |
msgid "Supported minimum version"
|
1313 |
msgstr ""
|
1314 |
|
1315 |
-
#: includes/options/templates/compatibility.php:
|
1316 |
msgid "Stage"
|
1317 |
msgstr ""
|
1318 |
|
1319 |
-
#: includes/options/templates/compatibility.php:
|
1320 |
msgid "Status"
|
1321 |
msgstr ""
|
1322 |
|
1323 |
-
#: includes/options/templates/compatibility.php:
|
|
|
|
|
|
|
|
|
1324 |
msgid "Active"
|
1325 |
msgstr ""
|
1326 |
|
1327 |
-
#: includes/options/templates/compatibility.php:
|
1328 |
msgid "Installed, inactive"
|
1329 |
msgstr ""
|
1330 |
|
1331 |
-
#: includes/options/templates/compatibility.php:
|
1332 |
msgid "Not installed"
|
1333 |
msgstr ""
|
1334 |
|
281 |
msgstr ""
|
282 |
|
283 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
284 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:316,
|
285 |
+
#: includes/class-wpglobus.php:1325, wpglobus.php:12, wpglobus.php:18
|
286 |
msgid "WPGlobus"
|
287 |
msgstr ""
|
288 |
|
819 |
msgstr ""
|
820 |
|
821 |
#: includes/builders/class-wpglobus-builder.php:358,
|
822 |
+
#: includes/class-wpglobus.php:3561
|
823 |
msgid "Save draft before using extra language."
|
824 |
msgstr ""
|
825 |
|
827 |
msgid "Builder"
|
828 |
msgstr ""
|
829 |
|
830 |
+
#: includes/builders/class-wpglobus-builder.php:465
|
831 |
msgid "Сompatibility Settings"
|
832 |
msgstr ""
|
833 |
|
890 |
msgstr "Tipo de selector"
|
891 |
|
892 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
893 |
+
#: includes/class-wpglobus.php:1299
|
894 |
msgid "OFF"
|
895 |
msgstr ""
|
896 |
|
897 |
+
#: includes/class-wpglobus.php:1300
|
898 |
msgid "Turn on"
|
899 |
msgstr ""
|
900 |
|
901 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
902 |
+
#: includes/class-wpglobus.php:1304
|
903 |
msgid "ON"
|
904 |
msgstr ""
|
905 |
|
906 |
+
#: includes/class-wpglobus.php:1305
|
907 |
msgid "Turn off"
|
908 |
msgstr ""
|
909 |
|
910 |
+
#: includes/class-wpglobus.php:1488
|
911 |
msgid "You cannot disable the main language."
|
912 |
msgstr "No se puede desactivar el idioma principal."
|
913 |
|
914 |
+
#: includes/class-wpglobus.php:1689
|
915 |
msgid "*) Available after the menu is saved."
|
916 |
msgstr "No Se Puede Desactivar el director idioma."
|
917 |
|
918 |
+
#: includes/class-wpglobus.php:1706
|
919 |
msgid "Need a multilingual slug?"
|
920 |
msgstr ""
|
921 |
|
922 |
+
#: includes/class-wpglobus.php:3994
|
923 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
924 |
msgstr ""
|
925 |
"Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
|
926 |
|
927 |
+
#: includes/class-wpglobus.php:3996
|
928 |
msgid ""
|
929 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
930 |
"default option."
|
932 |
"Por favor, ve a Configuración > Enlaces permanentes > Ajustes comunes y "
|
933 |
"selecciona una opción no predeterminada ."
|
934 |
|
935 |
+
#: includes/class-wpglobus.php:4142
|
936 |
msgid "Add"
|
937 |
msgstr "Añadir"
|
938 |
|
1296 |
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1297 |
msgstr ""
|
1298 |
|
1299 |
+
#: includes/options/templates/compatibility.php:37
|
1300 |
msgid "List of supported add-ons"
|
1301 |
msgstr ""
|
1302 |
|
1303 |
+
#: includes/options/templates/compatibility.php:42
|
1304 |
msgid "Add-on"
|
1305 |
msgstr ""
|
1306 |
|
1307 |
+
#: includes/options/templates/compatibility.php:43
|
1308 |
msgid "Current version"
|
1309 |
msgstr ""
|
1310 |
|
1311 |
+
#: includes/options/templates/compatibility.php:44
|
1312 |
msgid "Supported minimum version"
|
1313 |
msgstr ""
|
1314 |
|
1315 |
+
#: includes/options/templates/compatibility.php:45
|
1316 |
msgid "Stage"
|
1317 |
msgstr ""
|
1318 |
|
1319 |
+
#: includes/options/templates/compatibility.php:46
|
1320 |
msgid "Status"
|
1321 |
msgstr ""
|
1322 |
|
1323 |
+
#: includes/options/templates/compatibility.php:59
|
1324 |
+
msgid "In core"
|
1325 |
+
msgstr ""
|
1326 |
+
|
1327 |
+
#: includes/options/templates/compatibility.php:71
|
1328 |
msgid "Active"
|
1329 |
msgstr ""
|
1330 |
|
1331 |
+
#: includes/options/templates/compatibility.php:73
|
1332 |
msgid "Installed, inactive"
|
1333 |
msgstr ""
|
1334 |
|
1335 |
+
#: includes/options/templates/compatibility.php:76
|
1336 |
msgid "Not installed"
|
1337 |
msgstr ""
|
1338 |
|
languages/wpglobus-es_CO.po
CHANGED
@@ -281,8 +281,8 @@ 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:
|
286 |
msgid "WPGlobus"
|
287 |
msgstr ""
|
288 |
|
@@ -819,7 +819,7 @@ msgid "To translate permalinks, please activate the module Slug."
|
|
819 |
msgstr ""
|
820 |
|
821 |
#: includes/builders/class-wpglobus-builder.php:358,
|
822 |
-
#: includes/class-wpglobus.php:
|
823 |
msgid "Save draft before using extra language."
|
824 |
msgstr ""
|
825 |
|
@@ -827,7 +827,7 @@ msgstr ""
|
|
827 |
msgid "Builder"
|
828 |
msgstr ""
|
829 |
|
830 |
-
#: includes/builders/class-wpglobus-builder.php:
|
831 |
msgid "Сompatibility Settings"
|
832 |
msgstr ""
|
833 |
|
@@ -890,41 +890,41 @@ msgid "Selector type"
|
|
890 |
msgstr "Tipo de selector"
|
891 |
|
892 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
893 |
-
#: includes/class-wpglobus.php:
|
894 |
msgid "OFF"
|
895 |
msgstr ""
|
896 |
|
897 |
-
#: includes/class-wpglobus.php:
|
898 |
msgid "Turn on"
|
899 |
msgstr ""
|
900 |
|
901 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
902 |
-
#: includes/class-wpglobus.php:
|
903 |
msgid "ON"
|
904 |
msgstr ""
|
905 |
|
906 |
-
#: includes/class-wpglobus.php:
|
907 |
msgid "Turn off"
|
908 |
msgstr ""
|
909 |
|
910 |
-
#: includes/class-wpglobus.php:
|
911 |
msgid "You cannot disable the main language."
|
912 |
msgstr "No se puede desactivar el idioma principal."
|
913 |
|
914 |
-
#: includes/class-wpglobus.php:
|
915 |
msgid "*) Available after the menu is saved."
|
916 |
msgstr "No Se Puede Desactivar el director idioma."
|
917 |
|
918 |
-
#: includes/class-wpglobus.php:
|
919 |
msgid "Need a multilingual slug?"
|
920 |
msgstr ""
|
921 |
|
922 |
-
#: includes/class-wpglobus.php:
|
923 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
924 |
msgstr ""
|
925 |
"Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
|
926 |
|
927 |
-
#: includes/class-wpglobus.php:
|
928 |
msgid ""
|
929 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
930 |
"default option."
|
@@ -932,7 +932,7 @@ msgstr ""
|
|
932 |
"Por favor, ve a Configuración > Enlaces permanentes > Ajustes comunes y "
|
933 |
"selecciona una opción no predeterminada ."
|
934 |
|
935 |
-
#: includes/class-wpglobus.php:
|
936 |
msgid "Add"
|
937 |
msgstr "Añadir"
|
938 |
|
@@ -1296,39 +1296,43 @@ msgstr ""
|
|
1296 |
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1297 |
msgstr ""
|
1298 |
|
1299 |
-
#: includes/options/templates/compatibility.php:
|
1300 |
msgid "List of supported add-ons"
|
1301 |
msgstr ""
|
1302 |
|
1303 |
-
#: includes/options/templates/compatibility.php:
|
1304 |
msgid "Add-on"
|
1305 |
msgstr ""
|
1306 |
|
1307 |
-
#: includes/options/templates/compatibility.php:
|
1308 |
msgid "Current version"
|
1309 |
msgstr ""
|
1310 |
|
1311 |
-
#: includes/options/templates/compatibility.php:
|
1312 |
msgid "Supported minimum version"
|
1313 |
msgstr ""
|
1314 |
|
1315 |
-
#: includes/options/templates/compatibility.php:
|
1316 |
msgid "Stage"
|
1317 |
msgstr ""
|
1318 |
|
1319 |
-
#: includes/options/templates/compatibility.php:
|
1320 |
msgid "Status"
|
1321 |
msgstr ""
|
1322 |
|
1323 |
-
#: includes/options/templates/compatibility.php:
|
|
|
|
|
|
|
|
|
1324 |
msgid "Active"
|
1325 |
msgstr ""
|
1326 |
|
1327 |
-
#: includes/options/templates/compatibility.php:
|
1328 |
msgid "Installed, inactive"
|
1329 |
msgstr ""
|
1330 |
|
1331 |
-
#: includes/options/templates/compatibility.php:
|
1332 |
msgid "Not installed"
|
1333 |
msgstr ""
|
1334 |
|
281 |
msgstr ""
|
282 |
|
283 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
284 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:316,
|
285 |
+
#: includes/class-wpglobus.php:1325, wpglobus.php:12, wpglobus.php:18
|
286 |
msgid "WPGlobus"
|
287 |
msgstr ""
|
288 |
|
819 |
msgstr ""
|
820 |
|
821 |
#: includes/builders/class-wpglobus-builder.php:358,
|
822 |
+
#: includes/class-wpglobus.php:3561
|
823 |
msgid "Save draft before using extra language."
|
824 |
msgstr ""
|
825 |
|
827 |
msgid "Builder"
|
828 |
msgstr ""
|
829 |
|
830 |
+
#: includes/builders/class-wpglobus-builder.php:465
|
831 |
msgid "Сompatibility Settings"
|
832 |
msgstr ""
|
833 |
|
890 |
msgstr "Tipo de selector"
|
891 |
|
892 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
893 |
+
#: includes/class-wpglobus.php:1299
|
894 |
msgid "OFF"
|
895 |
msgstr ""
|
896 |
|
897 |
+
#: includes/class-wpglobus.php:1300
|
898 |
msgid "Turn on"
|
899 |
msgstr ""
|
900 |
|
901 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
902 |
+
#: includes/class-wpglobus.php:1304
|
903 |
msgid "ON"
|
904 |
msgstr ""
|
905 |
|
906 |
+
#: includes/class-wpglobus.php:1305
|
907 |
msgid "Turn off"
|
908 |
msgstr ""
|
909 |
|
910 |
+
#: includes/class-wpglobus.php:1488
|
911 |
msgid "You cannot disable the main language."
|
912 |
msgstr "No se puede desactivar el idioma principal."
|
913 |
|
914 |
+
#: includes/class-wpglobus.php:1689
|
915 |
msgid "*) Available after the menu is saved."
|
916 |
msgstr "No Se Puede Desactivar el director idioma."
|
917 |
|
918 |
+
#: includes/class-wpglobus.php:1706
|
919 |
msgid "Need a multilingual slug?"
|
920 |
msgstr ""
|
921 |
|
922 |
+
#: includes/class-wpglobus.php:3994
|
923 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
924 |
msgstr ""
|
925 |
"Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
|
926 |
|
927 |
+
#: includes/class-wpglobus.php:3996
|
928 |
msgid ""
|
929 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
930 |
"default option."
|
932 |
"Por favor, ve a Configuración > Enlaces permanentes > Ajustes comunes y "
|
933 |
"selecciona una opción no predeterminada ."
|
934 |
|
935 |
+
#: includes/class-wpglobus.php:4142
|
936 |
msgid "Add"
|
937 |
msgstr "Añadir"
|
938 |
|
1296 |
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1297 |
msgstr ""
|
1298 |
|
1299 |
+
#: includes/options/templates/compatibility.php:37
|
1300 |
msgid "List of supported add-ons"
|
1301 |
msgstr ""
|
1302 |
|
1303 |
+
#: includes/options/templates/compatibility.php:42
|
1304 |
msgid "Add-on"
|
1305 |
msgstr ""
|
1306 |
|
1307 |
+
#: includes/options/templates/compatibility.php:43
|
1308 |
msgid "Current version"
|
1309 |
msgstr ""
|
1310 |
|
1311 |
+
#: includes/options/templates/compatibility.php:44
|
1312 |
msgid "Supported minimum version"
|
1313 |
msgstr ""
|
1314 |
|
1315 |
+
#: includes/options/templates/compatibility.php:45
|
1316 |
msgid "Stage"
|
1317 |
msgstr ""
|
1318 |
|
1319 |
+
#: includes/options/templates/compatibility.php:46
|
1320 |
msgid "Status"
|
1321 |
msgstr ""
|
1322 |
|
1323 |
+
#: includes/options/templates/compatibility.php:59
|
1324 |
+
msgid "In core"
|
1325 |
+
msgstr ""
|
1326 |
+
|
1327 |
+
#: includes/options/templates/compatibility.php:71
|
1328 |
msgid "Active"
|
1329 |
msgstr ""
|
1330 |
|
1331 |
+
#: includes/options/templates/compatibility.php:73
|
1332 |
msgid "Installed, inactive"
|
1333 |
msgstr ""
|
1334 |
|
1335 |
+
#: includes/options/templates/compatibility.php:76
|
1336 |
msgid "Not installed"
|
1337 |
msgstr ""
|
1338 |
|
languages/wpglobus-es_CR.po
CHANGED
@@ -281,8 +281,8 @@ 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:
|
286 |
msgid "WPGlobus"
|
287 |
msgstr ""
|
288 |
|
@@ -819,7 +819,7 @@ msgid "To translate permalinks, please activate the module Slug."
|
|
819 |
msgstr ""
|
820 |
|
821 |
#: includes/builders/class-wpglobus-builder.php:358,
|
822 |
-
#: includes/class-wpglobus.php:
|
823 |
msgid "Save draft before using extra language."
|
824 |
msgstr ""
|
825 |
|
@@ -827,7 +827,7 @@ msgstr ""
|
|
827 |
msgid "Builder"
|
828 |
msgstr ""
|
829 |
|
830 |
-
#: includes/builders/class-wpglobus-builder.php:
|
831 |
msgid "Сompatibility Settings"
|
832 |
msgstr ""
|
833 |
|
@@ -890,41 +890,41 @@ msgid "Selector type"
|
|
890 |
msgstr "Tipo de selector"
|
891 |
|
892 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
893 |
-
#: includes/class-wpglobus.php:
|
894 |
msgid "OFF"
|
895 |
msgstr ""
|
896 |
|
897 |
-
#: includes/class-wpglobus.php:
|
898 |
msgid "Turn on"
|
899 |
msgstr ""
|
900 |
|
901 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
902 |
-
#: includes/class-wpglobus.php:
|
903 |
msgid "ON"
|
904 |
msgstr ""
|
905 |
|
906 |
-
#: includes/class-wpglobus.php:
|
907 |
msgid "Turn off"
|
908 |
msgstr ""
|
909 |
|
910 |
-
#: includes/class-wpglobus.php:
|
911 |
msgid "You cannot disable the main language."
|
912 |
msgstr "No se puede desactivar el idioma principal."
|
913 |
|
914 |
-
#: includes/class-wpglobus.php:
|
915 |
msgid "*) Available after the menu is saved."
|
916 |
msgstr "No Se Puede Desactivar el director idioma."
|
917 |
|
918 |
-
#: includes/class-wpglobus.php:
|
919 |
msgid "Need a multilingual slug?"
|
920 |
msgstr ""
|
921 |
|
922 |
-
#: includes/class-wpglobus.php:
|
923 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
924 |
msgstr ""
|
925 |
"Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
|
926 |
|
927 |
-
#: includes/class-wpglobus.php:
|
928 |
msgid ""
|
929 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
930 |
"default option."
|
@@ -932,7 +932,7 @@ msgstr ""
|
|
932 |
"Por favor, ve a Configuración > Enlaces permanentes > Ajustes comunes y "
|
933 |
"selecciona una opción no predeterminada ."
|
934 |
|
935 |
-
#: includes/class-wpglobus.php:
|
936 |
msgid "Add"
|
937 |
msgstr "Añadir"
|
938 |
|
@@ -1296,39 +1296,43 @@ msgstr ""
|
|
1296 |
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1297 |
msgstr ""
|
1298 |
|
1299 |
-
#: includes/options/templates/compatibility.php:
|
1300 |
msgid "List of supported add-ons"
|
1301 |
msgstr ""
|
1302 |
|
1303 |
-
#: includes/options/templates/compatibility.php:
|
1304 |
msgid "Add-on"
|
1305 |
msgstr ""
|
1306 |
|
1307 |
-
#: includes/options/templates/compatibility.php:
|
1308 |
msgid "Current version"
|
1309 |
msgstr ""
|
1310 |
|
1311 |
-
#: includes/options/templates/compatibility.php:
|
1312 |
msgid "Supported minimum version"
|
1313 |
msgstr ""
|
1314 |
|
1315 |
-
#: includes/options/templates/compatibility.php:
|
1316 |
msgid "Stage"
|
1317 |
msgstr ""
|
1318 |
|
1319 |
-
#: includes/options/templates/compatibility.php:
|
1320 |
msgid "Status"
|
1321 |
msgstr ""
|
1322 |
|
1323 |
-
#: includes/options/templates/compatibility.php:
|
|
|
|
|
|
|
|
|
1324 |
msgid "Active"
|
1325 |
msgstr ""
|
1326 |
|
1327 |
-
#: includes/options/templates/compatibility.php:
|
1328 |
msgid "Installed, inactive"
|
1329 |
msgstr ""
|
1330 |
|
1331 |
-
#: includes/options/templates/compatibility.php:
|
1332 |
msgid "Not installed"
|
1333 |
msgstr ""
|
1334 |
|
281 |
msgstr ""
|
282 |
|
283 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
284 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:316,
|
285 |
+
#: includes/class-wpglobus.php:1325, wpglobus.php:12, wpglobus.php:18
|
286 |
msgid "WPGlobus"
|
287 |
msgstr ""
|
288 |
|
819 |
msgstr ""
|
820 |
|
821 |
#: includes/builders/class-wpglobus-builder.php:358,
|
822 |
+
#: includes/class-wpglobus.php:3561
|
823 |
msgid "Save draft before using extra language."
|
824 |
msgstr ""
|
825 |
|
827 |
msgid "Builder"
|
828 |
msgstr ""
|
829 |
|
830 |
+
#: includes/builders/class-wpglobus-builder.php:465
|
831 |
msgid "Сompatibility Settings"
|
832 |
msgstr ""
|
833 |
|
890 |
msgstr "Tipo de selector"
|
891 |
|
892 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
893 |
+
#: includes/class-wpglobus.php:1299
|
894 |
msgid "OFF"
|
895 |
msgstr ""
|
896 |
|
897 |
+
#: includes/class-wpglobus.php:1300
|
898 |
msgid "Turn on"
|
899 |
msgstr ""
|
900 |
|
901 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
902 |
+
#: includes/class-wpglobus.php:1304
|
903 |
msgid "ON"
|
904 |
msgstr ""
|
905 |
|
906 |
+
#: includes/class-wpglobus.php:1305
|
907 |
msgid "Turn off"
|
908 |
msgstr ""
|
909 |
|
910 |
+
#: includes/class-wpglobus.php:1488
|
911 |
msgid "You cannot disable the main language."
|
912 |
msgstr "No se puede desactivar el idioma principal."
|
913 |
|
914 |
+
#: includes/class-wpglobus.php:1689
|
915 |
msgid "*) Available after the menu is saved."
|
916 |
msgstr "No Se Puede Desactivar el director idioma."
|
917 |
|
918 |
+
#: includes/class-wpglobus.php:1706
|
919 |
msgid "Need a multilingual slug?"
|
920 |
msgstr ""
|
921 |
|
922 |
+
#: includes/class-wpglobus.php:3994
|
923 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
924 |
msgstr ""
|
925 |
"Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
|
926 |
|
927 |
+
#: includes/class-wpglobus.php:3996
|
928 |
msgid ""
|
929 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
930 |
"default option."
|
932 |
"Por favor, ve a Configuración > Enlaces permanentes > Ajustes comunes y "
|
933 |
"selecciona una opción no predeterminada ."
|
934 |
|
935 |
+
#: includes/class-wpglobus.php:4142
|
936 |
msgid "Add"
|
937 |
msgstr "Añadir"
|
938 |
|
1296 |
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1297 |
msgstr ""
|
1298 |
|
1299 |
+
#: includes/options/templates/compatibility.php:37
|
1300 |
msgid "List of supported add-ons"
|
1301 |
msgstr ""
|
1302 |
|
1303 |
+
#: includes/options/templates/compatibility.php:42
|
1304 |
msgid "Add-on"
|
1305 |
msgstr ""
|
1306 |
|
1307 |
+
#: includes/options/templates/compatibility.php:43
|
1308 |
msgid "Current version"
|
1309 |
msgstr ""
|
1310 |
|
1311 |
+
#: includes/options/templates/compatibility.php:44
|
1312 |
msgid "Supported minimum version"
|
1313 |
msgstr ""
|
1314 |
|
1315 |
+
#: includes/options/templates/compatibility.php:45
|
1316 |
msgid "Stage"
|
1317 |
msgstr ""
|
1318 |
|
1319 |
+
#: includes/options/templates/compatibility.php:46
|
1320 |
msgid "Status"
|
1321 |
msgstr ""
|
1322 |
|
1323 |
+
#: includes/options/templates/compatibility.php:59
|
1324 |
+
msgid "In core"
|
1325 |
+
msgstr ""
|
1326 |
+
|
1327 |
+
#: includes/options/templates/compatibility.php:71
|
1328 |
msgid "Active"
|
1329 |
msgstr ""
|
1330 |
|
1331 |
+
#: includes/options/templates/compatibility.php:73
|
1332 |
msgid "Installed, inactive"
|
1333 |
msgstr ""
|
1334 |
|
1335 |
+
#: includes/options/templates/compatibility.php:76
|
1336 |
msgid "Not installed"
|
1337 |
msgstr ""
|
1338 |
|
languages/wpglobus-es_ES.po
CHANGED
@@ -281,8 +281,8 @@ 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:
|
286 |
msgid "WPGlobus"
|
287 |
msgstr ""
|
288 |
|
@@ -819,7 +819,7 @@ msgid "To translate permalinks, please activate the module Slug."
|
|
819 |
msgstr ""
|
820 |
|
821 |
#: includes/builders/class-wpglobus-builder.php:358,
|
822 |
-
#: includes/class-wpglobus.php:
|
823 |
msgid "Save draft before using extra language."
|
824 |
msgstr ""
|
825 |
|
@@ -827,7 +827,7 @@ msgstr ""
|
|
827 |
msgid "Builder"
|
828 |
msgstr ""
|
829 |
|
830 |
-
#: includes/builders/class-wpglobus-builder.php:
|
831 |
msgid "Сompatibility Settings"
|
832 |
msgstr ""
|
833 |
|
@@ -890,41 +890,41 @@ msgid "Selector type"
|
|
890 |
msgstr "Tipo de selector"
|
891 |
|
892 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
893 |
-
#: includes/class-wpglobus.php:
|
894 |
msgid "OFF"
|
895 |
msgstr ""
|
896 |
|
897 |
-
#: includes/class-wpglobus.php:
|
898 |
msgid "Turn on"
|
899 |
msgstr ""
|
900 |
|
901 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
902 |
-
#: includes/class-wpglobus.php:
|
903 |
msgid "ON"
|
904 |
msgstr "ON"
|
905 |
|
906 |
-
#: includes/class-wpglobus.php:
|
907 |
msgid "Turn off"
|
908 |
msgstr ""
|
909 |
|
910 |
-
#: includes/class-wpglobus.php:
|
911 |
msgid "You cannot disable the main language."
|
912 |
msgstr "No se puede desactivar el idioma principal."
|
913 |
|
914 |
-
#: includes/class-wpglobus.php:
|
915 |
msgid "*) Available after the menu is saved."
|
916 |
msgstr "No Se Puede Desactivar el director idioma."
|
917 |
|
918 |
-
#: includes/class-wpglobus.php:
|
919 |
msgid "Need a multilingual slug?"
|
920 |
msgstr ""
|
921 |
|
922 |
-
#: includes/class-wpglobus.php:
|
923 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
924 |
msgstr ""
|
925 |
"Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
|
926 |
|
927 |
-
#: includes/class-wpglobus.php:
|
928 |
msgid ""
|
929 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
930 |
"default option."
|
@@ -932,7 +932,7 @@ msgstr ""
|
|
932 |
"Por favor, ve a Configuración > Enlaces permanentes > Ajustes comunes y "
|
933 |
"selecciona una opción no predeterminada ."
|
934 |
|
935 |
-
#: includes/class-wpglobus.php:
|
936 |
msgid "Add"
|
937 |
msgstr "Añadir"
|
938 |
|
@@ -1296,39 +1296,43 @@ msgstr ""
|
|
1296 |
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1297 |
msgstr ""
|
1298 |
|
1299 |
-
#: includes/options/templates/compatibility.php:
|
1300 |
msgid "List of supported add-ons"
|
1301 |
msgstr ""
|
1302 |
|
1303 |
-
#: includes/options/templates/compatibility.php:
|
1304 |
msgid "Add-on"
|
1305 |
msgstr ""
|
1306 |
|
1307 |
-
#: includes/options/templates/compatibility.php:
|
1308 |
msgid "Current version"
|
1309 |
msgstr ""
|
1310 |
|
1311 |
-
#: includes/options/templates/compatibility.php:
|
1312 |
msgid "Supported minimum version"
|
1313 |
msgstr ""
|
1314 |
|
1315 |
-
#: includes/options/templates/compatibility.php:
|
1316 |
msgid "Stage"
|
1317 |
msgstr ""
|
1318 |
|
1319 |
-
#: includes/options/templates/compatibility.php:
|
1320 |
msgid "Status"
|
1321 |
msgstr ""
|
1322 |
|
1323 |
-
#: includes/options/templates/compatibility.php:
|
|
|
|
|
|
|
|
|
1324 |
msgid "Active"
|
1325 |
msgstr ""
|
1326 |
|
1327 |
-
#: includes/options/templates/compatibility.php:
|
1328 |
msgid "Installed, inactive"
|
1329 |
msgstr ""
|
1330 |
|
1331 |
-
#: includes/options/templates/compatibility.php:
|
1332 |
msgid "Not installed"
|
1333 |
msgstr ""
|
1334 |
|
281 |
msgstr ""
|
282 |
|
283 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
284 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:316,
|
285 |
+
#: includes/class-wpglobus.php:1325, wpglobus.php:12, wpglobus.php:18
|
286 |
msgid "WPGlobus"
|
287 |
msgstr ""
|
288 |
|
819 |
msgstr ""
|
820 |
|
821 |
#: includes/builders/class-wpglobus-builder.php:358,
|
822 |
+
#: includes/class-wpglobus.php:3561
|
823 |
msgid "Save draft before using extra language."
|
824 |
msgstr ""
|
825 |
|
827 |
msgid "Builder"
|
828 |
msgstr ""
|
829 |
|
830 |
+
#: includes/builders/class-wpglobus-builder.php:465
|
831 |
msgid "Сompatibility Settings"
|
832 |
msgstr ""
|
833 |
|
890 |
msgstr "Tipo de selector"
|
891 |
|
892 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
893 |
+
#: includes/class-wpglobus.php:1299
|
894 |
msgid "OFF"
|
895 |
msgstr ""
|
896 |
|
897 |
+
#: includes/class-wpglobus.php:1300
|
898 |
msgid "Turn on"
|
899 |
msgstr ""
|
900 |
|
901 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
902 |
+
#: includes/class-wpglobus.php:1304
|
903 |
msgid "ON"
|
904 |
msgstr "ON"
|
905 |
|
906 |
+
#: includes/class-wpglobus.php:1305
|
907 |
msgid "Turn off"
|
908 |
msgstr ""
|
909 |
|
910 |
+
#: includes/class-wpglobus.php:1488
|
911 |
msgid "You cannot disable the main language."
|
912 |
msgstr "No se puede desactivar el idioma principal."
|
913 |
|
914 |
+
#: includes/class-wpglobus.php:1689
|
915 |
msgid "*) Available after the menu is saved."
|
916 |
msgstr "No Se Puede Desactivar el director idioma."
|
917 |
|
918 |
+
#: includes/class-wpglobus.php:1706
|
919 |
msgid "Need a multilingual slug?"
|
920 |
msgstr ""
|
921 |
|
922 |
+
#: includes/class-wpglobus.php:3994
|
923 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
924 |
msgstr ""
|
925 |
"Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
|
926 |
|
927 |
+
#: includes/class-wpglobus.php:3996
|
928 |
msgid ""
|
929 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
930 |
"default option."
|
932 |
"Por favor, ve a Configuración > Enlaces permanentes > Ajustes comunes y "
|
933 |
"selecciona una opción no predeterminada ."
|
934 |
|
935 |
+
#: includes/class-wpglobus.php:4142
|
936 |
msgid "Add"
|
937 |
msgstr "Añadir"
|
938 |
|
1296 |
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1297 |
msgstr ""
|
1298 |
|
1299 |
+
#: includes/options/templates/compatibility.php:37
|
1300 |
msgid "List of supported add-ons"
|
1301 |
msgstr ""
|
1302 |
|
1303 |
+
#: includes/options/templates/compatibility.php:42
|
1304 |
msgid "Add-on"
|
1305 |
msgstr ""
|
1306 |
|
1307 |
+
#: includes/options/templates/compatibility.php:43
|
1308 |
msgid "Current version"
|
1309 |
msgstr ""
|
1310 |
|
1311 |
+
#: includes/options/templates/compatibility.php:44
|
1312 |
msgid "Supported minimum version"
|
1313 |
msgstr ""
|
1314 |
|
1315 |
+
#: includes/options/templates/compatibility.php:45
|
1316 |
msgid "Stage"
|
1317 |
msgstr ""
|
1318 |
|
1319 |
+
#: includes/options/templates/compatibility.php:46
|
1320 |
msgid "Status"
|
1321 |
msgstr ""
|
1322 |
|
1323 |
+
#: includes/options/templates/compatibility.php:59
|
1324 |
+
msgid "In core"
|
1325 |
+
msgstr ""
|
1326 |
+
|
1327 |
+
#: includes/options/templates/compatibility.php:71
|
1328 |
msgid "Active"
|
1329 |
msgstr ""
|
1330 |
|
1331 |
+
#: includes/options/templates/compatibility.php:73
|
1332 |
msgid "Installed, inactive"
|
1333 |
msgstr ""
|
1334 |
|
1335 |
+
#: includes/options/templates/compatibility.php:76
|
1336 |
msgid "Not installed"
|
1337 |
msgstr ""
|
1338 |
|
languages/wpglobus-es_GT.po
CHANGED
@@ -281,8 +281,8 @@ 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:
|
286 |
msgid "WPGlobus"
|
287 |
msgstr ""
|
288 |
|
@@ -819,7 +819,7 @@ msgid "To translate permalinks, please activate the module Slug."
|
|
819 |
msgstr ""
|
820 |
|
821 |
#: includes/builders/class-wpglobus-builder.php:358,
|
822 |
-
#: includes/class-wpglobus.php:
|
823 |
msgid "Save draft before using extra language."
|
824 |
msgstr ""
|
825 |
|
@@ -827,7 +827,7 @@ msgstr ""
|
|
827 |
msgid "Builder"
|
828 |
msgstr ""
|
829 |
|
830 |
-
#: includes/builders/class-wpglobus-builder.php:
|
831 |
msgid "Сompatibility Settings"
|
832 |
msgstr ""
|
833 |
|
@@ -890,41 +890,41 @@ msgid "Selector type"
|
|
890 |
msgstr "Tipo de selector"
|
891 |
|
892 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
893 |
-
#: includes/class-wpglobus.php:
|
894 |
msgid "OFF"
|
895 |
msgstr ""
|
896 |
|
897 |
-
#: includes/class-wpglobus.php:
|
898 |
msgid "Turn on"
|
899 |
msgstr ""
|
900 |
|
901 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
902 |
-
#: includes/class-wpglobus.php:
|
903 |
msgid "ON"
|
904 |
msgstr ""
|
905 |
|
906 |
-
#: includes/class-wpglobus.php:
|
907 |
msgid "Turn off"
|
908 |
msgstr ""
|
909 |
|
910 |
-
#: includes/class-wpglobus.php:
|
911 |
msgid "You cannot disable the main language."
|
912 |
msgstr "No se puede desactivar el idioma principal."
|
913 |
|
914 |
-
#: includes/class-wpglobus.php:
|
915 |
msgid "*) Available after the menu is saved."
|
916 |
msgstr "No Se Puede Desactivar el director idioma."
|
917 |
|
918 |
-
#: includes/class-wpglobus.php:
|
919 |
msgid "Need a multilingual slug?"
|
920 |
msgstr ""
|
921 |
|
922 |
-
#: includes/class-wpglobus.php:
|
923 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
924 |
msgstr ""
|
925 |
"Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
|
926 |
|
927 |
-
#: includes/class-wpglobus.php:
|
928 |
msgid ""
|
929 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
930 |
"default option."
|
@@ -932,7 +932,7 @@ msgstr ""
|
|
932 |
"Por favor, ve a Configuración > Enlaces permanentes > Ajustes comunes y "
|
933 |
"selecciona una opción no predeterminada ."
|
934 |
|
935 |
-
#: includes/class-wpglobus.php:
|
936 |
msgid "Add"
|
937 |
msgstr "Añadir"
|
938 |
|
@@ -1296,39 +1296,43 @@ msgstr ""
|
|
1296 |
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1297 |
msgstr ""
|
1298 |
|
1299 |
-
#: includes/options/templates/compatibility.php:
|
1300 |
msgid "List of supported add-ons"
|
1301 |
msgstr ""
|
1302 |
|
1303 |
-
#: includes/options/templates/compatibility.php:
|
1304 |
msgid "Add-on"
|
1305 |
msgstr ""
|
1306 |
|
1307 |
-
#: includes/options/templates/compatibility.php:
|
1308 |
msgid "Current version"
|
1309 |
msgstr ""
|
1310 |
|
1311 |
-
#: includes/options/templates/compatibility.php:
|
1312 |
msgid "Supported minimum version"
|
1313 |
msgstr ""
|
1314 |
|
1315 |
-
#: includes/options/templates/compatibility.php:
|
1316 |
msgid "Stage"
|
1317 |
msgstr ""
|
1318 |
|
1319 |
-
#: includes/options/templates/compatibility.php:
|
1320 |
msgid "Status"
|
1321 |
msgstr ""
|
1322 |
|
1323 |
-
#: includes/options/templates/compatibility.php:
|
|
|
|
|
|
|
|
|
1324 |
msgid "Active"
|
1325 |
msgstr ""
|
1326 |
|
1327 |
-
#: includes/options/templates/compatibility.php:
|
1328 |
msgid "Installed, inactive"
|
1329 |
msgstr ""
|
1330 |
|
1331 |
-
#: includes/options/templates/compatibility.php:
|
1332 |
msgid "Not installed"
|
1333 |
msgstr ""
|
1334 |
|
281 |
msgstr ""
|
282 |
|
283 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
284 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:316,
|
285 |
+
#: includes/class-wpglobus.php:1325, wpglobus.php:12, wpglobus.php:18
|
286 |
msgid "WPGlobus"
|
287 |
msgstr ""
|
288 |
|
819 |
msgstr ""
|
820 |
|
821 |
#: includes/builders/class-wpglobus-builder.php:358,
|
822 |
+
#: includes/class-wpglobus.php:3561
|
823 |
msgid "Save draft before using extra language."
|
824 |
msgstr ""
|
825 |
|
827 |
msgid "Builder"
|
828 |
msgstr ""
|
829 |
|
830 |
+
#: includes/builders/class-wpglobus-builder.php:465
|
831 |
msgid "Сompatibility Settings"
|
832 |
msgstr ""
|
833 |
|
890 |
msgstr "Tipo de selector"
|
891 |
|
892 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
893 |
+
#: includes/class-wpglobus.php:1299
|
894 |
msgid "OFF"
|
895 |
msgstr ""
|
896 |
|
897 |
+
#: includes/class-wpglobus.php:1300
|
898 |
msgid "Turn on"
|
899 |
msgstr ""
|
900 |
|
901 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
902 |
+
#: includes/class-wpglobus.php:1304
|
903 |
msgid "ON"
|
904 |
msgstr ""
|
905 |
|
906 |
+
#: includes/class-wpglobus.php:1305
|
907 |
msgid "Turn off"
|
908 |
msgstr ""
|
909 |
|
910 |
+
#: includes/class-wpglobus.php:1488
|
911 |
msgid "You cannot disable the main language."
|
912 |
msgstr "No se puede desactivar el idioma principal."
|
913 |
|
914 |
+
#: includes/class-wpglobus.php:1689
|
915 |
msgid "*) Available after the menu is saved."
|
916 |
msgstr "No Se Puede Desactivar el director idioma."
|
917 |
|
918 |
+
#: includes/class-wpglobus.php:1706
|
919 |
msgid "Need a multilingual slug?"
|
920 |
msgstr ""
|
921 |
|
922 |
+
#: includes/class-wpglobus.php:3994
|
923 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
924 |
msgstr ""
|
925 |
"Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
|
926 |
|
927 |
+
#: includes/class-wpglobus.php:3996
|
928 |
msgid ""
|
929 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
930 |
"default option."
|
932 |
"Por favor, ve a Configuración > Enlaces permanentes > Ajustes comunes y "
|
933 |
"selecciona una opción no predeterminada ."
|
934 |
|
935 |
+
#: includes/class-wpglobus.php:4142
|
936 |
msgid "Add"
|
937 |
msgstr "Añadir"
|
938 |
|
1296 |
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1297 |
msgstr ""
|
1298 |
|
1299 |
+
#: includes/options/templates/compatibility.php:37
|
1300 |
msgid "List of supported add-ons"
|
1301 |
msgstr ""
|
1302 |
|
1303 |
+
#: includes/options/templates/compatibility.php:42
|
1304 |
msgid "Add-on"
|
1305 |
msgstr ""
|
1306 |
|
1307 |
+
#: includes/options/templates/compatibility.php:43
|
1308 |
msgid "Current version"
|
1309 |
msgstr ""
|
1310 |
|
1311 |
+
#: includes/options/templates/compatibility.php:44
|
1312 |
msgid "Supported minimum version"
|
1313 |
msgstr ""
|
1314 |
|
1315 |
+
#: includes/options/templates/compatibility.php:45
|
1316 |
msgid "Stage"
|
1317 |
msgstr ""
|
1318 |
|
1319 |
+
#: includes/options/templates/compatibility.php:46
|
1320 |
msgid "Status"
|
1321 |
msgstr ""
|
1322 |
|
1323 |
+
#: includes/options/templates/compatibility.php:59
|
1324 |
+
msgid "In core"
|
1325 |
+
msgstr ""
|
1326 |
+
|
1327 |
+
#: includes/options/templates/compatibility.php:71
|
1328 |
msgid "Active"
|
1329 |
msgstr ""
|
1330 |
|
1331 |
+
#: includes/options/templates/compatibility.php:73
|
1332 |
msgid "Installed, inactive"
|
1333 |
msgstr ""
|
1334 |
|
1335 |
+
#: includes/options/templates/compatibility.php:76
|
1336 |
msgid "Not installed"
|
1337 |
msgstr ""
|
1338 |
|
languages/wpglobus-es_MX.po
CHANGED
@@ -281,8 +281,8 @@ 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:
|
286 |
msgid "WPGlobus"
|
287 |
msgstr ""
|
288 |
|
@@ -819,7 +819,7 @@ msgid "To translate permalinks, please activate the module Slug."
|
|
819 |
msgstr ""
|
820 |
|
821 |
#: includes/builders/class-wpglobus-builder.php:358,
|
822 |
-
#: includes/class-wpglobus.php:
|
823 |
msgid "Save draft before using extra language."
|
824 |
msgstr ""
|
825 |
|
@@ -827,7 +827,7 @@ msgstr ""
|
|
827 |
msgid "Builder"
|
828 |
msgstr ""
|
829 |
|
830 |
-
#: includes/builders/class-wpglobus-builder.php:
|
831 |
msgid "Сompatibility Settings"
|
832 |
msgstr ""
|
833 |
|
@@ -890,41 +890,41 @@ msgid "Selector type"
|
|
890 |
msgstr "Tipo de selector"
|
891 |
|
892 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
893 |
-
#: includes/class-wpglobus.php:
|
894 |
msgid "OFF"
|
895 |
msgstr "APAGADO"
|
896 |
|
897 |
-
#: includes/class-wpglobus.php:
|
898 |
msgid "Turn on"
|
899 |
msgstr ""
|
900 |
|
901 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
902 |
-
#: includes/class-wpglobus.php:
|
903 |
msgid "ON"
|
904 |
msgstr "ON"
|
905 |
|
906 |
-
#: includes/class-wpglobus.php:
|
907 |
msgid "Turn off"
|
908 |
msgstr ""
|
909 |
|
910 |
-
#: includes/class-wpglobus.php:
|
911 |
msgid "You cannot disable the main language."
|
912 |
msgstr "No se puede desactivar el idioma principal."
|
913 |
|
914 |
-
#: includes/class-wpglobus.php:
|
915 |
msgid "*) Available after the menu is saved."
|
916 |
msgstr "No Se Puede Desactivar el director idioma."
|
917 |
|
918 |
-
#: includes/class-wpglobus.php:
|
919 |
msgid "Need a multilingual slug?"
|
920 |
msgstr ""
|
921 |
|
922 |
-
#: includes/class-wpglobus.php:
|
923 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
924 |
msgstr ""
|
925 |
"Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
|
926 |
|
927 |
-
#: includes/class-wpglobus.php:
|
928 |
msgid ""
|
929 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
930 |
"default option."
|
@@ -932,7 +932,7 @@ msgstr ""
|
|
932 |
"Por favor, ve a Configuración > Enlaces permanentes > Ajustes comunes y "
|
933 |
"selecciona una opción no predeterminada ."
|
934 |
|
935 |
-
#: includes/class-wpglobus.php:
|
936 |
msgid "Add"
|
937 |
msgstr "Añadir"
|
938 |
|
@@ -1296,39 +1296,43 @@ msgstr ""
|
|
1296 |
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1297 |
msgstr ""
|
1298 |
|
1299 |
-
#: includes/options/templates/compatibility.php:
|
1300 |
msgid "List of supported add-ons"
|
1301 |
msgstr ""
|
1302 |
|
1303 |
-
#: includes/options/templates/compatibility.php:
|
1304 |
msgid "Add-on"
|
1305 |
msgstr ""
|
1306 |
|
1307 |
-
#: includes/options/templates/compatibility.php:
|
1308 |
msgid "Current version"
|
1309 |
msgstr ""
|
1310 |
|
1311 |
-
#: includes/options/templates/compatibility.php:
|
1312 |
msgid "Supported minimum version"
|
1313 |
msgstr ""
|
1314 |
|
1315 |
-
#: includes/options/templates/compatibility.php:
|
1316 |
msgid "Stage"
|
1317 |
msgstr ""
|
1318 |
|
1319 |
-
#: includes/options/templates/compatibility.php:
|
1320 |
msgid "Status"
|
1321 |
msgstr ""
|
1322 |
|
1323 |
-
#: includes/options/templates/compatibility.php:
|
|
|
|
|
|
|
|
|
1324 |
msgid "Active"
|
1325 |
msgstr ""
|
1326 |
|
1327 |
-
#: includes/options/templates/compatibility.php:
|
1328 |
msgid "Installed, inactive"
|
1329 |
msgstr ""
|
1330 |
|
1331 |
-
#: includes/options/templates/compatibility.php:
|
1332 |
msgid "Not installed"
|
1333 |
msgstr ""
|
1334 |
|
281 |
msgstr ""
|
282 |
|
283 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
284 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:316,
|
285 |
+
#: includes/class-wpglobus.php:1325, wpglobus.php:12, wpglobus.php:18
|
286 |
msgid "WPGlobus"
|
287 |
msgstr ""
|
288 |
|
819 |
msgstr ""
|
820 |
|
821 |
#: includes/builders/class-wpglobus-builder.php:358,
|
822 |
+
#: includes/class-wpglobus.php:3561
|
823 |
msgid "Save draft before using extra language."
|
824 |
msgstr ""
|
825 |
|
827 |
msgid "Builder"
|
828 |
msgstr ""
|
829 |
|
830 |
+
#: includes/builders/class-wpglobus-builder.php:465
|
831 |
msgid "Сompatibility Settings"
|
832 |
msgstr ""
|
833 |
|
890 |
msgstr "Tipo de selector"
|
891 |
|
892 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
893 |
+
#: includes/class-wpglobus.php:1299
|
894 |
msgid "OFF"
|
895 |
msgstr "APAGADO"
|
896 |
|
897 |
+
#: includes/class-wpglobus.php:1300
|
898 |
msgid "Turn on"
|
899 |
msgstr ""
|
900 |
|
901 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
902 |
+
#: includes/class-wpglobus.php:1304
|
903 |
msgid "ON"
|
904 |
msgstr "ON"
|
905 |
|
906 |
+
#: includes/class-wpglobus.php:1305
|
907 |
msgid "Turn off"
|
908 |
msgstr ""
|
909 |
|
910 |
+
#: includes/class-wpglobus.php:1488
|
911 |
msgid "You cannot disable the main language."
|
912 |
msgstr "No se puede desactivar el idioma principal."
|
913 |
|
914 |
+
#: includes/class-wpglobus.php:1689
|
915 |
msgid "*) Available after the menu is saved."
|
916 |
msgstr "No Se Puede Desactivar el director idioma."
|
917 |
|
918 |
+
#: includes/class-wpglobus.php:1706
|
919 |
msgid "Need a multilingual slug?"
|
920 |
msgstr ""
|
921 |
|
922 |
+
#: includes/class-wpglobus.php:3994
|
923 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
924 |
msgstr ""
|
925 |
"Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
|
926 |
|
927 |
+
#: includes/class-wpglobus.php:3996
|
928 |
msgid ""
|
929 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
930 |
"default option."
|
932 |
"Por favor, ve a Configuración > Enlaces permanentes > Ajustes comunes y "
|
933 |
"selecciona una opción no predeterminada ."
|
934 |
|
935 |
+
#: includes/class-wpglobus.php:4142
|
936 |
msgid "Add"
|
937 |
msgstr "Añadir"
|
938 |
|
1296 |
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1297 |
msgstr ""
|
1298 |
|
1299 |
+
#: includes/options/templates/compatibility.php:37
|
1300 |
msgid "List of supported add-ons"
|
1301 |
msgstr ""
|
1302 |
|
1303 |
+
#: includes/options/templates/compatibility.php:42
|
1304 |
msgid "Add-on"
|
1305 |
msgstr ""
|
1306 |
|
1307 |
+
#: includes/options/templates/compatibility.php:43
|
1308 |
msgid "Current version"
|
1309 |
msgstr ""
|
1310 |
|
1311 |
+
#: includes/options/templates/compatibility.php:44
|
1312 |
msgid "Supported minimum version"
|
1313 |
msgstr ""
|
1314 |
|
1315 |
+
#: includes/options/templates/compatibility.php:45
|
1316 |
msgid "Stage"
|
1317 |
msgstr ""
|
1318 |
|
1319 |
+
#: includes/options/templates/compatibility.php:46
|
1320 |
msgid "Status"
|
1321 |
msgstr ""
|
1322 |
|
1323 |
+
#: includes/options/templates/compatibility.php:59
|
1324 |
+
msgid "In core"
|
1325 |
+
msgstr ""
|
1326 |
+
|
1327 |
+
#: includes/options/templates/compatibility.php:71
|
1328 |
msgid "Active"
|
1329 |
msgstr ""
|
1330 |
|
1331 |
+
#: includes/options/templates/compatibility.php:73
|
1332 |
msgid "Installed, inactive"
|
1333 |
msgstr ""
|
1334 |
|
1335 |
+
#: includes/options/templates/compatibility.php:76
|
1336 |
msgid "Not installed"
|
1337 |
msgstr ""
|
1338 |
|
languages/wpglobus-es_PE.po
CHANGED
@@ -281,8 +281,8 @@ 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:
|
286 |
msgid "WPGlobus"
|
287 |
msgstr ""
|
288 |
|
@@ -819,7 +819,7 @@ msgid "To translate permalinks, please activate the module Slug."
|
|
819 |
msgstr ""
|
820 |
|
821 |
#: includes/builders/class-wpglobus-builder.php:358,
|
822 |
-
#: includes/class-wpglobus.php:
|
823 |
msgid "Save draft before using extra language."
|
824 |
msgstr ""
|
825 |
|
@@ -827,7 +827,7 @@ msgstr ""
|
|
827 |
msgid "Builder"
|
828 |
msgstr ""
|
829 |
|
830 |
-
#: includes/builders/class-wpglobus-builder.php:
|
831 |
msgid "Сompatibility Settings"
|
832 |
msgstr ""
|
833 |
|
@@ -890,41 +890,41 @@ msgid "Selector type"
|
|
890 |
msgstr "Tipo de selector"
|
891 |
|
892 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
893 |
-
#: includes/class-wpglobus.php:
|
894 |
msgid "OFF"
|
895 |
msgstr ""
|
896 |
|
897 |
-
#: includes/class-wpglobus.php:
|
898 |
msgid "Turn on"
|
899 |
msgstr ""
|
900 |
|
901 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
902 |
-
#: includes/class-wpglobus.php:
|
903 |
msgid "ON"
|
904 |
msgstr ""
|
905 |
|
906 |
-
#: includes/class-wpglobus.php:
|
907 |
msgid "Turn off"
|
908 |
msgstr ""
|
909 |
|
910 |
-
#: includes/class-wpglobus.php:
|
911 |
msgid "You cannot disable the main language."
|
912 |
msgstr "No se puede desactivar el idioma principal."
|
913 |
|
914 |
-
#: includes/class-wpglobus.php:
|
915 |
msgid "*) Available after the menu is saved."
|
916 |
msgstr "No Se Puede Desactivar el director idioma."
|
917 |
|
918 |
-
#: includes/class-wpglobus.php:
|
919 |
msgid "Need a multilingual slug?"
|
920 |
msgstr ""
|
921 |
|
922 |
-
#: includes/class-wpglobus.php:
|
923 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
924 |
msgstr ""
|
925 |
"Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
|
926 |
|
927 |
-
#: includes/class-wpglobus.php:
|
928 |
msgid ""
|
929 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
930 |
"default option."
|
@@ -932,7 +932,7 @@ msgstr ""
|
|
932 |
"Por favor, ve a Configuración > Enlaces permanentes > Ajustes comunes y "
|
933 |
"selecciona una opción no predeterminada ."
|
934 |
|
935 |
-
#: includes/class-wpglobus.php:
|
936 |
msgid "Add"
|
937 |
msgstr "Añadir"
|
938 |
|
@@ -1296,39 +1296,43 @@ msgstr ""
|
|
1296 |
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1297 |
msgstr ""
|
1298 |
|
1299 |
-
#: includes/options/templates/compatibility.php:
|
1300 |
msgid "List of supported add-ons"
|
1301 |
msgstr ""
|
1302 |
|
1303 |
-
#: includes/options/templates/compatibility.php:
|
1304 |
msgid "Add-on"
|
1305 |
msgstr ""
|
1306 |
|
1307 |
-
#: includes/options/templates/compatibility.php:
|
1308 |
msgid "Current version"
|
1309 |
msgstr ""
|
1310 |
|
1311 |
-
#: includes/options/templates/compatibility.php:
|
1312 |
msgid "Supported minimum version"
|
1313 |
msgstr ""
|
1314 |
|
1315 |
-
#: includes/options/templates/compatibility.php:
|
1316 |
msgid "Stage"
|
1317 |
msgstr ""
|
1318 |
|
1319 |
-
#: includes/options/templates/compatibility.php:
|
1320 |
msgid "Status"
|
1321 |
msgstr ""
|
1322 |
|
1323 |
-
#: includes/options/templates/compatibility.php:
|
|
|
|
|
|
|
|
|
1324 |
msgid "Active"
|
1325 |
msgstr ""
|
1326 |
|
1327 |
-
#: includes/options/templates/compatibility.php:
|
1328 |
msgid "Installed, inactive"
|
1329 |
msgstr ""
|
1330 |
|
1331 |
-
#: includes/options/templates/compatibility.php:
|
1332 |
msgid "Not installed"
|
1333 |
msgstr ""
|
1334 |
|
281 |
msgstr ""
|
282 |
|
283 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
284 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:316,
|
285 |
+
#: includes/class-wpglobus.php:1325, wpglobus.php:12, wpglobus.php:18
|
286 |
msgid "WPGlobus"
|
287 |
msgstr ""
|
288 |
|
819 |
msgstr ""
|
820 |
|
821 |
#: includes/builders/class-wpglobus-builder.php:358,
|
822 |
+
#: includes/class-wpglobus.php:3561
|
823 |
msgid "Save draft before using extra language."
|
824 |
msgstr ""
|
825 |
|
827 |
msgid "Builder"
|
828 |
msgstr ""
|
829 |
|
830 |
+
#: includes/builders/class-wpglobus-builder.php:465
|
831 |
msgid "Сompatibility Settings"
|
832 |
msgstr ""
|
833 |
|
890 |
msgstr "Tipo de selector"
|
891 |
|
892 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
893 |
+
#: includes/class-wpglobus.php:1299
|
894 |
msgid "OFF"
|
895 |
msgstr ""
|
896 |
|
897 |
+
#: includes/class-wpglobus.php:1300
|
898 |
msgid "Turn on"
|
899 |
msgstr ""
|
900 |
|
901 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
902 |
+
#: includes/class-wpglobus.php:1304
|
903 |
msgid "ON"
|
904 |
msgstr ""
|
905 |
|
906 |
+
#: includes/class-wpglobus.php:1305
|
907 |
msgid "Turn off"
|
908 |
msgstr ""
|
909 |
|
910 |
+
#: includes/class-wpglobus.php:1488
|
911 |
msgid "You cannot disable the main language."
|
912 |
msgstr "No se puede desactivar el idioma principal."
|
913 |
|
914 |
+
#: includes/class-wpglobus.php:1689
|
915 |
msgid "*) Available after the menu is saved."
|
916 |
msgstr "No Se Puede Desactivar el director idioma."
|
917 |
|
918 |
+
#: includes/class-wpglobus.php:1706
|
919 |
msgid "Need a multilingual slug?"
|
920 |
msgstr ""
|
921 |
|
922 |
+
#: includes/class-wpglobus.php:3994
|
923 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
924 |
msgstr ""
|
925 |
"Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
|
926 |
|
927 |
+
#: includes/class-wpglobus.php:3996
|
928 |
msgid ""
|
929 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
930 |
"default option."
|
932 |
"Por favor, ve a Configuración > Enlaces permanentes > Ajustes comunes y "
|
933 |
"selecciona una opción no predeterminada ."
|
934 |
|
935 |
+
#: includes/class-wpglobus.php:4142
|
936 |
msgid "Add"
|
937 |
msgstr "Añadir"
|
938 |
|
1296 |
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1297 |
msgstr ""
|
1298 |
|
1299 |
+
#: includes/options/templates/compatibility.php:37
|
1300 |
msgid "List of supported add-ons"
|
1301 |
msgstr ""
|
1302 |
|
1303 |
+
#: includes/options/templates/compatibility.php:42
|
1304 |
msgid "Add-on"
|
1305 |
msgstr ""
|
1306 |
|
1307 |
+
#: includes/options/templates/compatibility.php:43
|
1308 |
msgid "Current version"
|
1309 |
msgstr ""
|
1310 |
|
1311 |
+
#: includes/options/templates/compatibility.php:44
|
1312 |
msgid "Supported minimum version"
|
1313 |
msgstr ""
|
1314 |
|
1315 |
+
#: includes/options/templates/compatibility.php:45
|
1316 |
msgid "Stage"
|
1317 |
msgstr ""
|
1318 |
|
1319 |
+
#: includes/options/templates/compatibility.php:46
|
1320 |
msgid "Status"
|
1321 |
msgstr ""
|
1322 |
|
1323 |
+
#: includes/options/templates/compatibility.php:59
|
1324 |
+
msgid "In core"
|
1325 |
+
msgstr ""
|
1326 |
+
|
1327 |
+
#: includes/options/templates/compatibility.php:71
|
1328 |
msgid "Active"
|
1329 |
msgstr ""
|
1330 |
|
1331 |
+
#: includes/options/templates/compatibility.php:73
|
1332 |
msgid "Installed, inactive"
|
1333 |
msgstr ""
|
1334 |
|
1335 |
+
#: includes/options/templates/compatibility.php:76
|
1336 |
msgid "Not installed"
|
1337 |
msgstr ""
|
1338 |
|
languages/wpglobus-es_PR.po
CHANGED
@@ -281,8 +281,8 @@ 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:
|
286 |
msgid "WPGlobus"
|
287 |
msgstr ""
|
288 |
|
@@ -819,7 +819,7 @@ msgid "To translate permalinks, please activate the module Slug."
|
|
819 |
msgstr ""
|
820 |
|
821 |
#: includes/builders/class-wpglobus-builder.php:358,
|
822 |
-
#: includes/class-wpglobus.php:
|
823 |
msgid "Save draft before using extra language."
|
824 |
msgstr ""
|
825 |
|
@@ -827,7 +827,7 @@ msgstr ""
|
|
827 |
msgid "Builder"
|
828 |
msgstr ""
|
829 |
|
830 |
-
#: includes/builders/class-wpglobus-builder.php:
|
831 |
msgid "Сompatibility Settings"
|
832 |
msgstr ""
|
833 |
|
@@ -890,41 +890,41 @@ msgid "Selector type"
|
|
890 |
msgstr "Tipo de selector"
|
891 |
|
892 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
893 |
-
#: includes/class-wpglobus.php:
|
894 |
msgid "OFF"
|
895 |
msgstr ""
|
896 |
|
897 |
-
#: includes/class-wpglobus.php:
|
898 |
msgid "Turn on"
|
899 |
msgstr ""
|
900 |
|
901 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
902 |
-
#: includes/class-wpglobus.php:
|
903 |
msgid "ON"
|
904 |
msgstr ""
|
905 |
|
906 |
-
#: includes/class-wpglobus.php:
|
907 |
msgid "Turn off"
|
908 |
msgstr ""
|
909 |
|
910 |
-
#: includes/class-wpglobus.php:
|
911 |
msgid "You cannot disable the main language."
|
912 |
msgstr "No se puede desactivar el idioma principal."
|
913 |
|
914 |
-
#: includes/class-wpglobus.php:
|
915 |
msgid "*) Available after the menu is saved."
|
916 |
msgstr "No Se Puede Desactivar el director idioma."
|
917 |
|
918 |
-
#: includes/class-wpglobus.php:
|
919 |
msgid "Need a multilingual slug?"
|
920 |
msgstr ""
|
921 |
|
922 |
-
#: includes/class-wpglobus.php:
|
923 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
924 |
msgstr ""
|
925 |
"Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
|
926 |
|
927 |
-
#: includes/class-wpglobus.php:
|
928 |
msgid ""
|
929 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
930 |
"default option."
|
@@ -932,7 +932,7 @@ msgstr ""
|
|
932 |
"Por favor, ve a Configuración > Enlaces permanentes > Ajustes comunes y "
|
933 |
"selecciona una opción no predeterminada ."
|
934 |
|
935 |
-
#: includes/class-wpglobus.php:
|
936 |
msgid "Add"
|
937 |
msgstr "Añadir"
|
938 |
|
@@ -1296,39 +1296,43 @@ msgstr ""
|
|
1296 |
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1297 |
msgstr ""
|
1298 |
|
1299 |
-
#: includes/options/templates/compatibility.php:
|
1300 |
msgid "List of supported add-ons"
|
1301 |
msgstr ""
|
1302 |
|
1303 |
-
#: includes/options/templates/compatibility.php:
|
1304 |
msgid "Add-on"
|
1305 |
msgstr ""
|
1306 |
|
1307 |
-
#: includes/options/templates/compatibility.php:
|
1308 |
msgid "Current version"
|
1309 |
msgstr ""
|
1310 |
|
1311 |
-
#: includes/options/templates/compatibility.php:
|
1312 |
msgid "Supported minimum version"
|
1313 |
msgstr ""
|
1314 |
|
1315 |
-
#: includes/options/templates/compatibility.php:
|
1316 |
msgid "Stage"
|
1317 |
msgstr ""
|
1318 |
|
1319 |
-
#: includes/options/templates/compatibility.php:
|
1320 |
msgid "Status"
|
1321 |
msgstr ""
|
1322 |
|
1323 |
-
#: includes/options/templates/compatibility.php:
|
|
|
|
|
|
|
|
|
1324 |
msgid "Active"
|
1325 |
msgstr ""
|
1326 |
|
1327 |
-
#: includes/options/templates/compatibility.php:
|
1328 |
msgid "Installed, inactive"
|
1329 |
msgstr ""
|
1330 |
|
1331 |
-
#: includes/options/templates/compatibility.php:
|
1332 |
msgid "Not installed"
|
1333 |
msgstr ""
|
1334 |
|
281 |
msgstr ""
|
282 |
|
283 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
284 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:316,
|
285 |
+
#: includes/class-wpglobus.php:1325, wpglobus.php:12, wpglobus.php:18
|
286 |
msgid "WPGlobus"
|
287 |
msgstr ""
|
288 |
|
819 |
msgstr ""
|
820 |
|
821 |
#: includes/builders/class-wpglobus-builder.php:358,
|
822 |
+
#: includes/class-wpglobus.php:3561
|
823 |
msgid "Save draft before using extra language."
|
824 |
msgstr ""
|
825 |
|
827 |
msgid "Builder"
|
828 |
msgstr ""
|
829 |
|
830 |
+
#: includes/builders/class-wpglobus-builder.php:465
|
831 |
msgid "Сompatibility Settings"
|
832 |
msgstr ""
|
833 |
|
890 |
msgstr "Tipo de selector"
|
891 |
|
892 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
893 |
+
#: includes/class-wpglobus.php:1299
|
894 |
msgid "OFF"
|
895 |
msgstr ""
|
896 |
|
897 |
+
#: includes/class-wpglobus.php:1300
|
898 |
msgid "Turn on"
|
899 |
msgstr ""
|
900 |
|
901 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
902 |
+
#: includes/class-wpglobus.php:1304
|
903 |
msgid "ON"
|
904 |
msgstr ""
|
905 |
|
906 |
+
#: includes/class-wpglobus.php:1305
|
907 |
msgid "Turn off"
|
908 |
msgstr ""
|
909 |
|
910 |
+
#: includes/class-wpglobus.php:1488
|
911 |
msgid "You cannot disable the main language."
|
912 |
msgstr "No se puede desactivar el idioma principal."
|
913 |
|
914 |
+
#: includes/class-wpglobus.php:1689
|
915 |
msgid "*) Available after the menu is saved."
|
916 |
msgstr "No Se Puede Desactivar el director idioma."
|
917 |
|
918 |
+
#: includes/class-wpglobus.php:1706
|
919 |
msgid "Need a multilingual slug?"
|
920 |
msgstr ""
|
921 |
|
922 |
+
#: includes/class-wpglobus.php:3994
|
923 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
924 |
msgstr ""
|
925 |
"Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
|
926 |
|
927 |
+
#: includes/class-wpglobus.php:3996
|
928 |
msgid ""
|
929 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
930 |
"default option."
|
932 |
"Por favor, ve a Configuración > Enlaces permanentes > Ajustes comunes y "
|
933 |
"selecciona una opción no predeterminada ."
|
934 |
|
935 |
+
#: includes/class-wpglobus.php:4142
|
936 |
msgid "Add"
|
937 |
msgstr "Añadir"
|
938 |
|
1296 |
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1297 |
msgstr ""
|
1298 |
|
1299 |
+
#: includes/options/templates/compatibility.php:37
|
1300 |
msgid "List of supported add-ons"
|
1301 |
msgstr ""
|
1302 |
|
1303 |
+
#: includes/options/templates/compatibility.php:42
|
1304 |
msgid "Add-on"
|
1305 |
msgstr ""
|
1306 |
|
1307 |
+
#: includes/options/templates/compatibility.php:43
|
1308 |
msgid "Current version"
|
1309 |
msgstr ""
|
1310 |
|
1311 |
+
#: includes/options/templates/compatibility.php:44
|
1312 |
msgid "Supported minimum version"
|
1313 |
msgstr ""
|
1314 |
|
1315 |
+
#: includes/options/templates/compatibility.php:45
|
1316 |
msgid "Stage"
|
1317 |
msgstr ""
|
1318 |
|
1319 |
+
#: includes/options/templates/compatibility.php:46
|
1320 |
msgid "Status"
|
1321 |
msgstr ""
|
1322 |
|
1323 |
+
#: includes/options/templates/compatibility.php:59
|
1324 |
+
msgid "In core"
|
1325 |
+
msgstr ""
|
1326 |
+
|
1327 |
+
#: includes/options/templates/compatibility.php:71
|
1328 |
msgid "Active"
|
1329 |
msgstr ""
|
1330 |
|
1331 |
+
#: includes/options/templates/compatibility.php:73
|
1332 |
msgid "Installed, inactive"
|
1333 |
msgstr ""
|
1334 |
|
1335 |
+
#: includes/options/templates/compatibility.php:76
|
1336 |
msgid "Not installed"
|
1337 |
msgstr ""
|
1338 |
|
languages/wpglobus-es_VE.po
CHANGED
@@ -281,8 +281,8 @@ 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:
|
286 |
msgid "WPGlobus"
|
287 |
msgstr ""
|
288 |
|
@@ -819,7 +819,7 @@ msgid "To translate permalinks, please activate the module Slug."
|
|
819 |
msgstr ""
|
820 |
|
821 |
#: includes/builders/class-wpglobus-builder.php:358,
|
822 |
-
#: includes/class-wpglobus.php:
|
823 |
msgid "Save draft before using extra language."
|
824 |
msgstr ""
|
825 |
|
@@ -827,7 +827,7 @@ msgstr ""
|
|
827 |
msgid "Builder"
|
828 |
msgstr ""
|
829 |
|
830 |
-
#: includes/builders/class-wpglobus-builder.php:
|
831 |
msgid "Сompatibility Settings"
|
832 |
msgstr ""
|
833 |
|
@@ -890,41 +890,41 @@ msgid "Selector type"
|
|
890 |
msgstr "Tipo de selector"
|
891 |
|
892 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
893 |
-
#: includes/class-wpglobus.php:
|
894 |
msgid "OFF"
|
895 |
msgstr ""
|
896 |
|
897 |
-
#: includes/class-wpglobus.php:
|
898 |
msgid "Turn on"
|
899 |
msgstr ""
|
900 |
|
901 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
902 |
-
#: includes/class-wpglobus.php:
|
903 |
msgid "ON"
|
904 |
msgstr ""
|
905 |
|
906 |
-
#: includes/class-wpglobus.php:
|
907 |
msgid "Turn off"
|
908 |
msgstr ""
|
909 |
|
910 |
-
#: includes/class-wpglobus.php:
|
911 |
msgid "You cannot disable the main language."
|
912 |
msgstr "No se puede desactivar el idioma principal."
|
913 |
|
914 |
-
#: includes/class-wpglobus.php:
|
915 |
msgid "*) Available after the menu is saved."
|
916 |
msgstr "No Se Puede Desactivar el director idioma."
|
917 |
|
918 |
-
#: includes/class-wpglobus.php:
|
919 |
msgid "Need a multilingual slug?"
|
920 |
msgstr ""
|
921 |
|
922 |
-
#: includes/class-wpglobus.php:
|
923 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
924 |
msgstr ""
|
925 |
"Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
|
926 |
|
927 |
-
#: includes/class-wpglobus.php:
|
928 |
msgid ""
|
929 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
930 |
"default option."
|
@@ -932,7 +932,7 @@ msgstr ""
|
|
932 |
"Por favor, ve a Configuración > Enlaces permanentes > Ajustes comunes y "
|
933 |
"selecciona una opción no predeterminada ."
|
934 |
|
935 |
-
#: includes/class-wpglobus.php:
|
936 |
msgid "Add"
|
937 |
msgstr "Añadir"
|
938 |
|
@@ -1296,39 +1296,43 @@ msgstr ""
|
|
1296 |
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1297 |
msgstr ""
|
1298 |
|
1299 |
-
#: includes/options/templates/compatibility.php:
|
1300 |
msgid "List of supported add-ons"
|
1301 |
msgstr ""
|
1302 |
|
1303 |
-
#: includes/options/templates/compatibility.php:
|
1304 |
msgid "Add-on"
|
1305 |
msgstr ""
|
1306 |
|
1307 |
-
#: includes/options/templates/compatibility.php:
|
1308 |
msgid "Current version"
|
1309 |
msgstr ""
|
1310 |
|
1311 |
-
#: includes/options/templates/compatibility.php:
|
1312 |
msgid "Supported minimum version"
|
1313 |
msgstr ""
|
1314 |
|
1315 |
-
#: includes/options/templates/compatibility.php:
|
1316 |
msgid "Stage"
|
1317 |
msgstr ""
|
1318 |
|
1319 |
-
#: includes/options/templates/compatibility.php:
|
1320 |
msgid "Status"
|
1321 |
msgstr ""
|
1322 |
|
1323 |
-
#: includes/options/templates/compatibility.php:
|
|
|
|
|
|
|
|
|
1324 |
msgid "Active"
|
1325 |
msgstr ""
|
1326 |
|
1327 |
-
#: includes/options/templates/compatibility.php:
|
1328 |
msgid "Installed, inactive"
|
1329 |
msgstr ""
|
1330 |
|
1331 |
-
#: includes/options/templates/compatibility.php:
|
1332 |
msgid "Not installed"
|
1333 |
msgstr ""
|
1334 |
|
281 |
msgstr ""
|
282 |
|
283 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
284 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:316,
|
285 |
+
#: includes/class-wpglobus.php:1325, wpglobus.php:12, wpglobus.php:18
|
286 |
msgid "WPGlobus"
|
287 |
msgstr ""
|
288 |
|
819 |
msgstr ""
|
820 |
|
821 |
#: includes/builders/class-wpglobus-builder.php:358,
|
822 |
+
#: includes/class-wpglobus.php:3561
|
823 |
msgid "Save draft before using extra language."
|
824 |
msgstr ""
|
825 |
|
827 |
msgid "Builder"
|
828 |
msgstr ""
|
829 |
|
830 |
+
#: includes/builders/class-wpglobus-builder.php:465
|
831 |
msgid "Сompatibility Settings"
|
832 |
msgstr ""
|
833 |
|
890 |
msgstr "Tipo de selector"
|
891 |
|
892 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
893 |
+
#: includes/class-wpglobus.php:1299
|
894 |
msgid "OFF"
|
895 |
msgstr ""
|
896 |
|
897 |
+
#: includes/class-wpglobus.php:1300
|
898 |
msgid "Turn on"
|
899 |
msgstr ""
|
900 |
|
901 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
902 |
+
#: includes/class-wpglobus.php:1304
|
903 |
msgid "ON"
|
904 |
msgstr ""
|
905 |
|
906 |
+
#: includes/class-wpglobus.php:1305
|
907 |
msgid "Turn off"
|
908 |
msgstr ""
|
909 |
|
910 |
+
#: includes/class-wpglobus.php:1488
|
911 |
msgid "You cannot disable the main language."
|
912 |
msgstr "No se puede desactivar el idioma principal."
|
913 |
|
914 |
+
#: includes/class-wpglobus.php:1689
|
915 |
msgid "*) Available after the menu is saved."
|
916 |
msgstr "No Se Puede Desactivar el director idioma."
|
917 |
|
918 |
+
#: includes/class-wpglobus.php:1706
|
919 |
msgid "Need a multilingual slug?"
|
920 |
msgstr ""
|
921 |
|
922 |
+
#: includes/class-wpglobus.php:3994
|
923 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
924 |
msgstr ""
|
925 |
"Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
|
926 |
|
927 |
+
#: includes/class-wpglobus.php:3996
|
928 |
msgid ""
|
929 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
930 |
"default option."
|
932 |
"Por favor, ve a Configuración > Enlaces permanentes > Ajustes comunes y "
|
933 |
"selecciona una opción no predeterminada ."
|
934 |
|
935 |
+
#: includes/class-wpglobus.php:4142
|
936 |
msgid "Add"
|
937 |
msgstr "Añadir"
|
938 |
|
1296 |
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1297 |
msgstr ""
|
1298 |
|
1299 |
+
#: includes/options/templates/compatibility.php:37
|
1300 |
msgid "List of supported add-ons"
|
1301 |
msgstr ""
|
1302 |
|
1303 |
+
#: includes/options/templates/compatibility.php:42
|
1304 |
msgid "Add-on"
|
1305 |
msgstr ""
|
1306 |
|
1307 |
+
#: includes/options/templates/compatibility.php:43
|
1308 |
msgid "Current version"
|
1309 |
msgstr ""
|
1310 |
|
1311 |
+
#: includes/options/templates/compatibility.php:44
|
1312 |
msgid "Supported minimum version"
|
1313 |
msgstr ""
|
1314 |
|
1315 |
+
#: includes/options/templates/compatibility.php:45
|
1316 |
msgid "Stage"
|
1317 |
msgstr ""
|
1318 |
|
1319 |
+
#: includes/options/templates/compatibility.php:46
|
1320 |
msgid "Status"
|
1321 |
msgstr ""
|
1322 |
|
1323 |
+
#: includes/options/templates/compatibility.php:59
|
1324 |
+
msgid "In core"
|
1325 |
+
msgstr ""
|
1326 |
+
|
1327 |
+
#: includes/options/templates/compatibility.php:71
|
1328 |
msgid "Active"
|
1329 |
msgstr ""
|
1330 |
|
1331 |
+
#: includes/options/templates/compatibility.php:73
|
1332 |
msgid "Installed, inactive"
|
1333 |
msgstr ""
|
1334 |
|
1335 |
+
#: includes/options/templates/compatibility.php:76
|
1336 |
msgid "Not installed"
|
1337 |
msgstr ""
|
1338 |
|
languages/wpglobus-et.po
CHANGED
@@ -265,8 +265,8 @@ 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:
|
270 |
msgid "WPGlobus"
|
271 |
msgstr "WPGlobus"
|
272 |
|
@@ -785,7 +785,7 @@ msgid "To translate permalinks, please activate the module Slug."
|
|
785 |
msgstr ""
|
786 |
|
787 |
#: includes/builders/class-wpglobus-builder.php:358,
|
788 |
-
#: includes/class-wpglobus.php:
|
789 |
msgid "Save draft before using extra language."
|
790 |
msgstr ""
|
791 |
|
@@ -793,7 +793,7 @@ msgstr ""
|
|
793 |
msgid "Builder"
|
794 |
msgstr ""
|
795 |
|
796 |
-
#: includes/builders/class-wpglobus-builder.php:
|
797 |
msgid "Сompatibility Settings"
|
798 |
msgstr ""
|
799 |
|
@@ -856,46 +856,46 @@ msgid "Selector type"
|
|
856 |
msgstr ""
|
857 |
|
858 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
859 |
-
#: includes/class-wpglobus.php:
|
860 |
msgid "OFF"
|
861 |
msgstr "VÄLJAS"
|
862 |
|
863 |
-
#: includes/class-wpglobus.php:
|
864 |
msgid "Turn on"
|
865 |
msgstr "Lülita sisse"
|
866 |
|
867 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
868 |
-
#: includes/class-wpglobus.php:
|
869 |
msgid "ON"
|
870 |
msgstr "SEES"
|
871 |
|
872 |
-
#: includes/class-wpglobus.php:
|
873 |
msgid "Turn off"
|
874 |
msgstr "Lülita välja"
|
875 |
|
876 |
-
#: includes/class-wpglobus.php:
|
877 |
msgid "You cannot disable the main language."
|
878 |
msgstr ""
|
879 |
|
880 |
-
#: includes/class-wpglobus.php:
|
881 |
msgid "*) Available after the menu is saved."
|
882 |
msgstr ""
|
883 |
|
884 |
-
#: includes/class-wpglobus.php:
|
885 |
msgid "Need a multilingual slug?"
|
886 |
msgstr ""
|
887 |
|
888 |
-
#: includes/class-wpglobus.php:
|
889 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
890 |
msgstr ""
|
891 |
|
892 |
-
#: includes/class-wpglobus.php:
|
893 |
msgid ""
|
894 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
895 |
"default option."
|
896 |
msgstr ""
|
897 |
|
898 |
-
#: includes/class-wpglobus.php:
|
899 |
msgid "Add"
|
900 |
msgstr "Lisa"
|
901 |
|
@@ -1259,39 +1259,43 @@ msgstr ""
|
|
1259 |
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1260 |
msgstr ""
|
1261 |
|
1262 |
-
#: includes/options/templates/compatibility.php:
|
1263 |
msgid "List of supported add-ons"
|
1264 |
msgstr ""
|
1265 |
|
1266 |
-
#: includes/options/templates/compatibility.php:
|
1267 |
msgid "Add-on"
|
1268 |
msgstr ""
|
1269 |
|
1270 |
-
#: includes/options/templates/compatibility.php:
|
1271 |
msgid "Current version"
|
1272 |
msgstr ""
|
1273 |
|
1274 |
-
#: includes/options/templates/compatibility.php:
|
1275 |
msgid "Supported minimum version"
|
1276 |
msgstr ""
|
1277 |
|
1278 |
-
#: includes/options/templates/compatibility.php:
|
1279 |
msgid "Stage"
|
1280 |
msgstr ""
|
1281 |
|
1282 |
-
#: includes/options/templates/compatibility.php:
|
1283 |
msgid "Status"
|
1284 |
msgstr ""
|
1285 |
|
1286 |
-
#: includes/options/templates/compatibility.php:
|
|
|
|
|
|
|
|
|
1287 |
msgid "Active"
|
1288 |
msgstr ""
|
1289 |
|
1290 |
-
#: includes/options/templates/compatibility.php:
|
1291 |
msgid "Installed, inactive"
|
1292 |
msgstr ""
|
1293 |
|
1294 |
-
#: includes/options/templates/compatibility.php:
|
1295 |
msgid "Not installed"
|
1296 |
msgstr ""
|
1297 |
|
265 |
msgstr "Salvesta ja laadi uuesti"
|
266 |
|
267 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
268 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:316,
|
269 |
+
#: includes/class-wpglobus.php:1325, wpglobus.php:12, wpglobus.php:18
|
270 |
msgid "WPGlobus"
|
271 |
msgstr "WPGlobus"
|
272 |
|
785 |
msgstr ""
|
786 |
|
787 |
#: includes/builders/class-wpglobus-builder.php:358,
|
788 |
+
#: includes/class-wpglobus.php:3561
|
789 |
msgid "Save draft before using extra language."
|
790 |
msgstr ""
|
791 |
|
793 |
msgid "Builder"
|
794 |
msgstr ""
|
795 |
|
796 |
+
#: includes/builders/class-wpglobus-builder.php:465
|
797 |
msgid "Сompatibility Settings"
|
798 |
msgstr ""
|
799 |
|
856 |
msgstr ""
|
857 |
|
858 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
859 |
+
#: includes/class-wpglobus.php:1299
|
860 |
msgid "OFF"
|
861 |
msgstr "VÄLJAS"
|
862 |
|
863 |
+
#: includes/class-wpglobus.php:1300
|
864 |
msgid "Turn on"
|
865 |
msgstr "Lülita sisse"
|
866 |
|
867 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
868 |
+
#: includes/class-wpglobus.php:1304
|
869 |
msgid "ON"
|
870 |
msgstr "SEES"
|
871 |
|
872 |
+
#: includes/class-wpglobus.php:1305
|
873 |
msgid "Turn off"
|
874 |
msgstr "Lülita välja"
|
875 |
|
876 |
+
#: includes/class-wpglobus.php:1488
|
877 |
msgid "You cannot disable the main language."
|
878 |
msgstr ""
|
879 |
|
880 |
+
#: includes/class-wpglobus.php:1689
|
881 |
msgid "*) Available after the menu is saved."
|
882 |
msgstr ""
|
883 |
|
884 |
+
#: includes/class-wpglobus.php:1706
|
885 |
msgid "Need a multilingual slug?"
|
886 |
msgstr ""
|
887 |
|
888 |
+
#: includes/class-wpglobus.php:3994
|
889 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
890 |
msgstr ""
|
891 |
|
892 |
+
#: includes/class-wpglobus.php:3996
|
893 |
msgid ""
|
894 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
895 |
"default option."
|
896 |
msgstr ""
|
897 |
|
898 |
+
#: includes/class-wpglobus.php:4142
|
899 |
msgid "Add"
|
900 |
msgstr "Lisa"
|
901 |
|
1259 |
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1260 |
msgstr ""
|
1261 |
|
1262 |
+
#: includes/options/templates/compatibility.php:37
|
1263 |
msgid "List of supported add-ons"
|
1264 |
msgstr ""
|
1265 |
|
1266 |
+
#: includes/options/templates/compatibility.php:42
|
1267 |
msgid "Add-on"
|
1268 |
msgstr ""
|
1269 |
|
1270 |
+
#: includes/options/templates/compatibility.php:43
|
1271 |
msgid "Current version"
|
1272 |
msgstr ""
|
1273 |
|
1274 |
+
#: includes/options/templates/compatibility.php:44
|
1275 |
msgid "Supported minimum version"
|
1276 |
msgstr ""
|
1277 |
|
1278 |
+
#: includes/options/templates/compatibility.php:45
|
1279 |
msgid "Stage"
|
1280 |
msgstr ""
|
1281 |
|
1282 |
+
#: includes/options/templates/compatibility.php:46
|
1283 |
msgid "Status"
|
1284 |
msgstr ""
|
1285 |
|
1286 |
+
#: includes/options/templates/compatibility.php:59
|
1287 |
+
msgid "In core"
|
1288 |
+
msgstr ""
|
1289 |
+
|
1290 |
+
#: includes/options/templates/compatibility.php:71
|
1291 |
msgid "Active"
|
1292 |
msgstr ""
|
1293 |
|
1294 |
+
#: includes/options/templates/compatibility.php:73
|
1295 |
msgid "Installed, inactive"
|
1296 |
msgstr ""
|
1297 |
|
1298 |
+
#: includes/options/templates/compatibility.php:76
|
1299 |
msgid "Not installed"
|
1300 |
msgstr ""
|
1301 |
|
languages/wpglobus-fr_BE.po
CHANGED
@@ -321,8 +321,8 @@ 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:
|
326 |
msgid "WPGlobus"
|
327 |
msgstr "WPGlobus"
|
328 |
|
@@ -882,7 +882,7 @@ msgid "To translate permalinks, please activate the module Slug."
|
|
882 |
msgstr ""
|
883 |
|
884 |
#: includes/builders/class-wpglobus-builder.php:358,
|
885 |
-
#: includes/class-wpglobus.php:
|
886 |
msgid "Save draft before using extra language."
|
887 |
msgstr ""
|
888 |
|
@@ -890,7 +890,7 @@ msgstr ""
|
|
890 |
msgid "Builder"
|
891 |
msgstr ""
|
892 |
|
893 |
-
#: includes/builders/class-wpglobus-builder.php:
|
894 |
msgid "Сompatibility Settings"
|
895 |
msgstr ""
|
896 |
|
@@ -953,42 +953,42 @@ msgid "Selector type"
|
|
953 |
msgstr "Type de sélecteur"
|
954 |
|
955 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
956 |
-
#: includes/class-wpglobus.php:
|
957 |
msgid "OFF"
|
958 |
msgstr ""
|
959 |
|
960 |
-
#: includes/class-wpglobus.php:
|
961 |
msgid "Turn on"
|
962 |
msgstr ""
|
963 |
|
964 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
965 |
-
#: includes/class-wpglobus.php:
|
966 |
msgid "ON"
|
967 |
msgstr ""
|
968 |
|
969 |
-
#: includes/class-wpglobus.php:
|
970 |
msgid "Turn off"
|
971 |
msgstr ""
|
972 |
|
973 |
-
#: includes/class-wpglobus.php:
|
974 |
msgid "You cannot disable the main language."
|
975 |
msgstr "Vous ne pouvez pas désactiver la langue principale."
|
976 |
|
977 |
-
#: includes/class-wpglobus.php:
|
978 |
msgid "*) Available after the menu is saved."
|
979 |
msgstr "*) Disponible après que le menu ait été enregistré."
|
980 |
|
981 |
-
#: includes/class-wpglobus.php:
|
982 |
msgid "Need a multilingual slug?"
|
983 |
msgstr "Vous avez besoin d’un identifiant multilingue ?"
|
984 |
|
985 |
-
#: includes/class-wpglobus.php:
|
986 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
987 |
msgstr ""
|
988 |
"Vous devez activer les jolis permaliens pour pouvoir utiliser WPGlobus "
|
989 |
"correctement."
|
990 |
|
991 |
-
#: includes/class-wpglobus.php:
|
992 |
msgid ""
|
993 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
994 |
"default option."
|
@@ -996,7 +996,7 @@ msgstr ""
|
|
996 |
"Veuillez vous rendre dans Réglages > Permaliens et choisissez autre chose "
|
997 |
"que la valeur par défaut."
|
998 |
|
999 |
-
#: includes/class-wpglobus.php:
|
1000 |
msgid "Add"
|
1001 |
msgstr "Ajouter"
|
1002 |
|
@@ -1361,39 +1361,43 @@ msgstr ""
|
|
1361 |
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1362 |
msgstr ""
|
1363 |
|
1364 |
-
#: includes/options/templates/compatibility.php:
|
1365 |
msgid "List of supported add-ons"
|
1366 |
msgstr ""
|
1367 |
|
1368 |
-
#: includes/options/templates/compatibility.php:
|
1369 |
msgid "Add-on"
|
1370 |
msgstr ""
|
1371 |
|
1372 |
-
#: includes/options/templates/compatibility.php:
|
1373 |
msgid "Current version"
|
1374 |
msgstr ""
|
1375 |
|
1376 |
-
#: includes/options/templates/compatibility.php:
|
1377 |
msgid "Supported minimum version"
|
1378 |
msgstr ""
|
1379 |
|
1380 |
-
#: includes/options/templates/compatibility.php:
|
1381 |
msgid "Stage"
|
1382 |
msgstr ""
|
1383 |
|
1384 |
-
#: includes/options/templates/compatibility.php:
|
1385 |
msgid "Status"
|
1386 |
msgstr ""
|
1387 |
|
1388 |
-
#: includes/options/templates/compatibility.php:
|
|
|
|
|
|
|
|
|
1389 |
msgid "Active"
|
1390 |
msgstr ""
|
1391 |
|
1392 |
-
#: includes/options/templates/compatibility.php:
|
1393 |
msgid "Installed, inactive"
|
1394 |
msgstr ""
|
1395 |
|
1396 |
-
#: includes/options/templates/compatibility.php:
|
1397 |
msgid "Not installed"
|
1398 |
msgstr ""
|
1399 |
|
321 |
msgstr "Enregistrer & recharger"
|
322 |
|
323 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
324 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:316,
|
325 |
+
#: includes/class-wpglobus.php:1325, wpglobus.php:12, wpglobus.php:18
|
326 |
msgid "WPGlobus"
|
327 |
msgstr "WPGlobus"
|
328 |
|
882 |
msgstr ""
|
883 |
|
884 |
#: includes/builders/class-wpglobus-builder.php:358,
|
885 |
+
#: includes/class-wpglobus.php:3561
|
886 |
msgid "Save draft before using extra language."
|
887 |
msgstr ""
|
888 |
|
890 |
msgid "Builder"
|
891 |
msgstr ""
|
892 |
|
893 |
+
#: includes/builders/class-wpglobus-builder.php:465
|
894 |
msgid "Сompatibility Settings"
|
895 |
msgstr ""
|
896 |
|
953 |
msgstr "Type de sélecteur"
|
954 |
|
955 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
956 |
+
#: includes/class-wpglobus.php:1299
|
957 |
msgid "OFF"
|
958 |
msgstr ""
|
959 |
|
960 |
+
#: includes/class-wpglobus.php:1300
|
961 |
msgid "Turn on"
|
962 |
msgstr ""
|
963 |
|
964 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
965 |
+
#: includes/class-wpglobus.php:1304
|
966 |
msgid "ON"
|
967 |
msgstr ""
|
968 |
|
969 |
+
#: includes/class-wpglobus.php:1305
|
970 |
msgid "Turn off"
|
971 |
msgstr ""
|
972 |
|
973 |
+
#: includes/class-wpglobus.php:1488
|
974 |
msgid "You cannot disable the main language."
|
975 |
msgstr "Vous ne pouvez pas désactiver la langue principale."
|
976 |
|
977 |
+
#: includes/class-wpglobus.php:1689
|
978 |
msgid "*) Available after the menu is saved."
|
979 |
msgstr "*) Disponible après que le menu ait été enregistré."
|
980 |
|
981 |
+
#: includes/class-wpglobus.php:1706
|
982 |
msgid "Need a multilingual slug?"
|
983 |
msgstr "Vous avez besoin d’un identifiant multilingue ?"
|
984 |
|
985 |
+
#: includes/class-wpglobus.php:3994
|
986 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
987 |
msgstr ""
|
988 |
"Vous devez activer les jolis permaliens pour pouvoir utiliser WPGlobus "
|
989 |
"correctement."
|
990 |
|
991 |
+
#: includes/class-wpglobus.php:3996
|
992 |
msgid ""
|
993 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
994 |
"default option."
|
996 |
"Veuillez vous rendre dans Réglages > Permaliens et choisissez autre chose "
|
997 |
"que la valeur par défaut."
|
998 |
|
999 |
+
#: includes/class-wpglobus.php:4142
|
1000 |
msgid "Add"
|
1001 |
msgstr "Ajouter"
|
1002 |
|
1361 |
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1362 |
msgstr ""
|
1363 |
|
1364 |
+
#: includes/options/templates/compatibility.php:37
|
1365 |
msgid "List of supported add-ons"
|
1366 |
msgstr ""
|
1367 |
|
1368 |
+
#: includes/options/templates/compatibility.php:42
|
1369 |
msgid "Add-on"
|
1370 |
msgstr ""
|
1371 |
|
1372 |
+
#: includes/options/templates/compatibility.php:43
|
1373 |
msgid "Current version"
|
1374 |
msgstr ""
|
1375 |
|
1376 |
+
#: includes/options/templates/compatibility.php:44
|
1377 |
msgid "Supported minimum version"
|
1378 |
msgstr ""
|
1379 |
|
1380 |
+
#: includes/options/templates/compatibility.php:45
|
1381 |
msgid "Stage"
|
1382 |
msgstr ""
|
1383 |
|
1384 |
+
#: includes/options/templates/compatibility.php:46
|
1385 |
msgid "Status"
|
1386 |
msgstr ""
|
1387 |
|
1388 |
+
#: includes/options/templates/compatibility.php:59
|
1389 |
+
msgid "In core"
|
1390 |
+
msgstr ""
|
1391 |
+
|
1392 |
+
#: includes/options/templates/compatibility.php:71
|
1393 |
msgid "Active"
|
1394 |
msgstr ""
|
1395 |
|
1396 |
+
#: includes/options/templates/compatibility.php:73
|
1397 |
msgid "Installed, inactive"
|
1398 |
msgstr ""
|
1399 |
|
1400 |
+
#: includes/options/templates/compatibility.php:76
|
1401 |
msgid "Not installed"
|
1402 |
msgstr ""
|
1403 |
|
languages/wpglobus-fr_CA.po
CHANGED
@@ -323,8 +323,8 @@ 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:
|
328 |
msgid "WPGlobus"
|
329 |
msgstr "WPGlobus"
|
330 |
|
@@ -884,7 +884,7 @@ msgid "To translate permalinks, please activate the module Slug."
|
|
884 |
msgstr ""
|
885 |
|
886 |
#: includes/builders/class-wpglobus-builder.php:358,
|
887 |
-
#: includes/class-wpglobus.php:
|
888 |
msgid "Save draft before using extra language."
|
889 |
msgstr ""
|
890 |
|
@@ -892,7 +892,7 @@ msgstr ""
|
|
892 |
msgid "Builder"
|
893 |
msgstr ""
|
894 |
|
895 |
-
#: includes/builders/class-wpglobus-builder.php:
|
896 |
msgid "Сompatibility Settings"
|
897 |
msgstr ""
|
898 |
|
@@ -955,42 +955,42 @@ msgid "Selector type"
|
|
955 |
msgstr "Type de sélecteur"
|
956 |
|
957 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
958 |
-
#: includes/class-wpglobus.php:
|
959 |
msgid "OFF"
|
960 |
msgstr ""
|
961 |
|
962 |
-
#: includes/class-wpglobus.php:
|
963 |
msgid "Turn on"
|
964 |
msgstr ""
|
965 |
|
966 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
967 |
-
#: includes/class-wpglobus.php:
|
968 |
msgid "ON"
|
969 |
msgstr ""
|
970 |
|
971 |
-
#: includes/class-wpglobus.php:
|
972 |
msgid "Turn off"
|
973 |
msgstr ""
|
974 |
|
975 |
-
#: includes/class-wpglobus.php:
|
976 |
msgid "You cannot disable the main language."
|
977 |
msgstr "Vous ne pouvez pas désactiver la langue principale."
|
978 |
|
979 |
-
#: includes/class-wpglobus.php:
|
980 |
msgid "*) Available after the menu is saved."
|
981 |
msgstr "*) Disponible après que le menu ait été enregistré."
|
982 |
|
983 |
-
#: includes/class-wpglobus.php:
|
984 |
msgid "Need a multilingual slug?"
|
985 |
msgstr "Vous avez besoin d’un identifiant multilingue ?"
|
986 |
|
987 |
-
#: includes/class-wpglobus.php:
|
988 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
989 |
msgstr ""
|
990 |
"Vous devez activer les jolis permaliens pour pouvoir utiliser WPGlobus "
|
991 |
"correctement."
|
992 |
|
993 |
-
#: includes/class-wpglobus.php:
|
994 |
msgid ""
|
995 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
996 |
"default option."
|
@@ -998,7 +998,7 @@ msgstr ""
|
|
998 |
"Veuillez vous rendre dans Réglages > Permaliens et choisissez autre chose "
|
999 |
"que la valeur par défaut."
|
1000 |
|
1001 |
-
#: includes/class-wpglobus.php:
|
1002 |
msgid "Add"
|
1003 |
msgstr "Ajouter"
|
1004 |
|
@@ -1363,39 +1363,43 @@ msgstr ""
|
|
1363 |
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1364 |
msgstr ""
|
1365 |
|
1366 |
-
#: includes/options/templates/compatibility.php:
|
1367 |
msgid "List of supported add-ons"
|
1368 |
msgstr ""
|
1369 |
|
1370 |
-
#: includes/options/templates/compatibility.php:
|
1371 |
msgid "Add-on"
|
1372 |
msgstr ""
|
1373 |
|
1374 |
-
#: includes/options/templates/compatibility.php:
|
1375 |
msgid "Current version"
|
1376 |
msgstr ""
|
1377 |
|
1378 |
-
#: includes/options/templates/compatibility.php:
|
1379 |
msgid "Supported minimum version"
|
1380 |
msgstr ""
|
1381 |
|
1382 |
-
#: includes/options/templates/compatibility.php:
|
1383 |
msgid "Stage"
|
1384 |
msgstr ""
|
1385 |
|
1386 |
-
#: includes/options/templates/compatibility.php:
|
1387 |
msgid "Status"
|
1388 |
msgstr ""
|
1389 |
|
1390 |
-
#: includes/options/templates/compatibility.php:
|
|
|
|
|
|
|
|
|
1391 |
msgid "Active"
|
1392 |
msgstr ""
|
1393 |
|
1394 |
-
#: includes/options/templates/compatibility.php:
|
1395 |
msgid "Installed, inactive"
|
1396 |
msgstr ""
|
1397 |
|
1398 |
-
#: includes/options/templates/compatibility.php:
|
1399 |
msgid "Not installed"
|
1400 |
msgstr ""
|
1401 |
|
323 |
msgstr "Enregistrer & recharger"
|
324 |
|
325 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
326 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:316,
|
327 |
+
#: includes/class-wpglobus.php:1325, wpglobus.php:12, wpglobus.php:18
|
328 |
msgid "WPGlobus"
|
329 |
msgstr "WPGlobus"
|
330 |
|
884 |
msgstr ""
|
885 |
|
886 |
#: includes/builders/class-wpglobus-builder.php:358,
|
887 |
+
#: includes/class-wpglobus.php:3561
|
888 |
msgid "Save draft before using extra language."
|
889 |
msgstr ""
|
890 |
|
892 |
msgid "Builder"
|
893 |
msgstr ""
|
894 |
|
895 |
+
#: includes/builders/class-wpglobus-builder.php:465
|
896 |
msgid "Сompatibility Settings"
|
897 |
msgstr ""
|
898 |
|
955 |
msgstr "Type de sélecteur"
|
956 |
|
957 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
958 |
+
#: includes/class-wpglobus.php:1299
|
959 |
msgid "OFF"
|
960 |
msgstr ""
|
961 |
|
962 |
+
#: includes/class-wpglobus.php:1300
|
963 |
msgid "Turn on"
|
964 |
msgstr ""
|
965 |
|
966 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
967 |
+
#: includes/class-wpglobus.php:1304
|
968 |
msgid "ON"
|
969 |
msgstr ""
|
970 |
|
971 |
+
#: includes/class-wpglobus.php:1305
|
972 |
msgid "Turn off"
|
973 |
msgstr ""
|
974 |
|
975 |
+
#: includes/class-wpglobus.php:1488
|
976 |
msgid "You cannot disable the main language."
|
977 |
msgstr "Vous ne pouvez pas désactiver la langue principale."
|
978 |
|
979 |
+
#: includes/class-wpglobus.php:1689
|
980 |
msgid "*) Available after the menu is saved."
|
981 |
msgstr "*) Disponible après que le menu ait été enregistré."
|
982 |
|
983 |
+
#: includes/class-wpglobus.php:1706
|
984 |
msgid "Need a multilingual slug?"
|
985 |
msgstr "Vous avez besoin d’un identifiant multilingue ?"
|
986 |
|
987 |
+
#: includes/class-wpglobus.php:3994
|
988 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
989 |
msgstr ""
|
990 |
"Vous devez activer les jolis permaliens pour pouvoir utiliser WPGlobus "
|
991 |
"correctement."
|
992 |
|
993 |
+
#: includes/class-wpglobus.php:3996
|
994 |
msgid ""
|
995 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
996 |
"default option."
|
998 |
"Veuillez vous rendre dans Réglages > Permaliens et choisissez autre chose "
|
999 |
"que la valeur par défaut."
|
1000 |
|
1001 |
+
#: includes/class-wpglobus.php:4142
|
1002 |
msgid "Add"
|
1003 |
msgstr "Ajouter"
|
1004 |
|
1363 |
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1364 |
msgstr ""
|
1365 |
|
1366 |
+
#: includes/options/templates/compatibility.php:37
|
1367 |
msgid "List of supported add-ons"
|
1368 |
msgstr ""
|
1369 |
|
1370 |
+
#: includes/options/templates/compatibility.php:42
|
1371 |
msgid "Add-on"
|
1372 |
msgstr ""
|
1373 |
|
1374 |
+
#: includes/options/templates/compatibility.php:43
|
1375 |
msgid "Current version"
|
1376 |
msgstr ""
|
1377 |
|
1378 |
+
#: includes/options/templates/compatibility.php:44
|
1379 |
msgid "Supported minimum version"
|
1380 |
msgstr ""
|
1381 |
|
1382 |
+
#: includes/options/templates/compatibility.php:45
|
1383 |
msgid "Stage"
|
1384 |
msgstr ""
|
1385 |
|
1386 |
+
#: includes/options/templates/compatibility.php:46
|
1387 |
msgid "Status"
|
1388 |
msgstr ""
|
1389 |
|
1390 |
+
#: includes/options/templates/compatibility.php:59
|
1391 |
+
msgid "In core"
|
1392 |
+
msgstr ""
|
1393 |
+
|
1394 |
+
#: includes/options/templates/compatibility.php:71
|
1395 |
msgid "Active"
|
1396 |
msgstr ""
|
1397 |
|
1398 |
+
#: includes/options/templates/compatibility.php:73
|
1399 |
msgid "Installed, inactive"
|
1400 |
msgstr ""
|
1401 |
|
1402 |
+
#: includes/options/templates/compatibility.php:76
|
1403 |
msgid "Not installed"
|
1404 |
msgstr ""
|
1405 |
|
languages/wpglobus-fr_FR.po
CHANGED
@@ -323,8 +323,8 @@ 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:
|
328 |
msgid "WPGlobus"
|
329 |
msgstr "WPGlobus"
|
330 |
|
@@ -884,7 +884,7 @@ msgid "To translate permalinks, please activate the module Slug."
|
|
884 |
msgstr ""
|
885 |
|
886 |
#: includes/builders/class-wpglobus-builder.php:358,
|
887 |
-
#: includes/class-wpglobus.php:
|
888 |
msgid "Save draft before using extra language."
|
889 |
msgstr ""
|
890 |
|
@@ -892,7 +892,7 @@ msgstr ""
|
|
892 |
msgid "Builder"
|
893 |
msgstr ""
|
894 |
|
895 |
-
#: includes/builders/class-wpglobus-builder.php:
|
896 |
msgid "Сompatibility Settings"
|
897 |
msgstr ""
|
898 |
|
@@ -955,42 +955,42 @@ msgid "Selector type"
|
|
955 |
msgstr "Type de sélecteur"
|
956 |
|
957 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
958 |
-
#: includes/class-wpglobus.php:
|
959 |
msgid "OFF"
|
960 |
msgstr "NON"
|
961 |
|
962 |
-
#: includes/class-wpglobus.php:
|
963 |
msgid "Turn on"
|
964 |
msgstr ""
|
965 |
|
966 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
967 |
-
#: includes/class-wpglobus.php:
|
968 |
msgid "ON"
|
969 |
msgstr "OUI"
|
970 |
|
971 |
-
#: includes/class-wpglobus.php:
|
972 |
msgid "Turn off"
|
973 |
msgstr ""
|
974 |
|
975 |
-
#: includes/class-wpglobus.php:
|
976 |
msgid "You cannot disable the main language."
|
977 |
msgstr "Vous ne pouvez pas désactiver la langue principale."
|
978 |
|
979 |
-
#: includes/class-wpglobus.php:
|
980 |
msgid "*) Available after the menu is saved."
|
981 |
msgstr "*) Disponible après que le menu ait été enregistré."
|
982 |
|
983 |
-
#: includes/class-wpglobus.php:
|
984 |
msgid "Need a multilingual slug?"
|
985 |
msgstr "Vous avez besoin d’un identifiant multilingue ?"
|
986 |
|
987 |
-
#: includes/class-wpglobus.php:
|
988 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
989 |
msgstr ""
|
990 |
"Vous devez activer les jolis permaliens pour pouvoir utiliser WPGlobus "
|
991 |
"correctement."
|
992 |
|
993 |
-
#: includes/class-wpglobus.php:
|
994 |
msgid ""
|
995 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
996 |
"default option."
|
@@ -998,7 +998,7 @@ msgstr ""
|
|
998 |
"Veuillez vous rendre dans Réglages > Permaliens et choisissez autre chose "
|
999 |
"que la valeur par défaut."
|
1000 |
|
1001 |
-
#: includes/class-wpglobus.php:
|
1002 |
msgid "Add"
|
1003 |
msgstr "Ajouter"
|
1004 |
|
@@ -1363,39 +1363,43 @@ msgstr ""
|
|
1363 |
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1364 |
msgstr ""
|
1365 |
|
1366 |
-
#: includes/options/templates/compatibility.php:
|
1367 |
msgid "List of supported add-ons"
|
1368 |
msgstr ""
|
1369 |
|
1370 |
-
#: includes/options/templates/compatibility.php:
|
1371 |
msgid "Add-on"
|
1372 |
msgstr ""
|
1373 |
|
1374 |
-
#: includes/options/templates/compatibility.php:
|
1375 |
msgid "Current version"
|
1376 |
msgstr ""
|
1377 |
|
1378 |
-
#: includes/options/templates/compatibility.php:
|
1379 |
msgid "Supported minimum version"
|
1380 |
msgstr ""
|
1381 |
|
1382 |
-
#: includes/options/templates/compatibility.php:
|
1383 |
msgid "Stage"
|
1384 |
msgstr ""
|
1385 |
|
1386 |
-
#: includes/options/templates/compatibility.php:
|
1387 |
msgid "Status"
|
1388 |
msgstr ""
|
1389 |
|
1390 |
-
#: includes/options/templates/compatibility.php:
|
|
|
|
|
|
|
|
|
1391 |
msgid "Active"
|
1392 |
msgstr ""
|
1393 |
|
1394 |
-
#: includes/options/templates/compatibility.php:
|
1395 |
msgid "Installed, inactive"
|
1396 |
msgstr ""
|
1397 |
|
1398 |
-
#: includes/options/templates/compatibility.php:
|
1399 |
msgid "Not installed"
|
1400 |
msgstr ""
|
1401 |
|
323 |
msgstr "Enregistrer & recharger"
|
324 |
|
325 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
326 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:316,
|
327 |
+
#: includes/class-wpglobus.php:1325, wpglobus.php:12, wpglobus.php:18
|
328 |
msgid "WPGlobus"
|
329 |
msgstr "WPGlobus"
|
330 |
|
884 |
msgstr ""
|
885 |
|
886 |
#: includes/builders/class-wpglobus-builder.php:358,
|
887 |
+
#: includes/class-wpglobus.php:3561
|
888 |
msgid "Save draft before using extra language."
|
889 |
msgstr ""
|
890 |
|
892 |
msgid "Builder"
|
893 |
msgstr ""
|
894 |
|
895 |
+
#: includes/builders/class-wpglobus-builder.php:465
|
896 |
msgid "Сompatibility Settings"
|
897 |
msgstr ""
|
898 |
|
955 |
msgstr "Type de sélecteur"
|
956 |
|
957 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
958 |
+
#: includes/class-wpglobus.php:1299
|
959 |
msgid "OFF"
|
960 |
msgstr "NON"
|
961 |
|
962 |
+
#: includes/class-wpglobus.php:1300
|
963 |
msgid "Turn on"
|
964 |
msgstr ""
|
965 |
|
966 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
967 |
+
#: includes/class-wpglobus.php:1304
|
968 |
msgid "ON"
|
969 |
msgstr "OUI"
|
970 |
|
971 |
+
#: includes/class-wpglobus.php:1305
|
972 |
msgid "Turn off"
|
973 |
msgstr ""
|
974 |
|
975 |
+
#: includes/class-wpglobus.php:1488
|
976 |
msgid "You cannot disable the main language."
|
977 |
msgstr "Vous ne pouvez pas désactiver la langue principale."
|
978 |
|
979 |
+
#: includes/class-wpglobus.php:1689
|
980 |
msgid "*) Available after the menu is saved."
|
981 |
msgstr "*) Disponible après que le menu ait été enregistré."
|
982 |
|
983 |
+
#: includes/class-wpglobus.php:1706
|
984 |
msgid "Need a multilingual slug?"
|
985 |
msgstr "Vous avez besoin d’un identifiant multilingue ?"
|
986 |
|
987 |
+
#: includes/class-wpglobus.php:3994
|
988 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
989 |
msgstr ""
|
990 |
"Vous devez activer les jolis permaliens pour pouvoir utiliser WPGlobus "
|
991 |
"correctement."
|
992 |
|
993 |
+
#: includes/class-wpglobus.php:3996
|
994 |
msgid ""
|
995 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
996 |
"default option."
|
998 |
"Veuillez vous rendre dans Réglages > Permaliens et choisissez autre chose "
|
999 |
"que la valeur par défaut."
|
1000 |
|
1001 |
+
#: includes/class-wpglobus.php:4142
|
1002 |
msgid "Add"
|
1003 |
msgstr "Ajouter"
|
1004 |
|
1363 |
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1364 |
msgstr ""
|
1365 |
|
1366 |
+
#: includes/options/templates/compatibility.php:37
|
1367 |
msgid "List of supported add-ons"
|
1368 |
msgstr ""
|
1369 |
|
1370 |
+
#: includes/options/templates/compatibility.php:42
|
1371 |
msgid "Add-on"
|
1372 |
msgstr ""
|
1373 |
|
1374 |
+
#: includes/options/templates/compatibility.php:43
|
1375 |
msgid "Current version"
|
1376 |
msgstr ""
|
1377 |
|
1378 |
+
#: includes/options/templates/compatibility.php:44
|
1379 |
msgid "Supported minimum version"
|
1380 |
msgstr ""
|
1381 |
|
1382 |
+
#: includes/options/templates/compatibility.php:45
|
1383 |
msgid "Stage"
|
1384 |
msgstr ""
|
1385 |
|
1386 |
+
#: includes/options/templates/compatibility.php:46
|
1387 |
msgid "Status"
|
1388 |
msgstr ""
|
1389 |
|
1390 |
+
#: includes/options/templates/compatibility.php:59
|
1391 |
+
msgid "In core"
|
1392 |
+
msgstr ""
|
1393 |
+
|
1394 |
+
#: includes/options/templates/compatibility.php:71
|
1395 |
msgid "Active"
|
1396 |
msgstr ""
|
1397 |
|
1398 |
+
#: includes/options/templates/compatibility.php:73
|
1399 |
msgid "Installed, inactive"
|
1400 |
msgstr ""
|
1401 |
|
1402 |
+
#: includes/options/templates/compatibility.php:76
|
1403 |
msgid "Not installed"
|
1404 |
msgstr ""
|
1405 |
|
languages/wpglobus-id_ID.po
CHANGED
@@ -312,8 +312,8 @@ 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:
|
317 |
msgid "WPGlobus"
|
318 |
msgstr "WPGlobus"
|
319 |
|
@@ -859,7 +859,7 @@ msgid "To translate permalinks, please activate the module Slug."
|
|
859 |
msgstr ""
|
860 |
|
861 |
#: includes/builders/class-wpglobus-builder.php:358,
|
862 |
-
#: includes/class-wpglobus.php:
|
863 |
msgid "Save draft before using extra language."
|
864 |
msgstr ""
|
865 |
|
@@ -867,7 +867,7 @@ msgstr ""
|
|
867 |
msgid "Builder"
|
868 |
msgstr ""
|
869 |
|
870 |
-
#: includes/builders/class-wpglobus-builder.php:
|
871 |
msgid "Сompatibility Settings"
|
872 |
msgstr ""
|
873 |
|
@@ -930,40 +930,40 @@ msgid "Selector type"
|
|
930 |
msgstr "Jenis pemilih"
|
931 |
|
932 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
933 |
-
#: includes/class-wpglobus.php:
|
934 |
msgid "OFF"
|
935 |
msgstr ""
|
936 |
|
937 |
-
#: includes/class-wpglobus.php:
|
938 |
msgid "Turn on"
|
939 |
msgstr ""
|
940 |
|
941 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
942 |
-
#: includes/class-wpglobus.php:
|
943 |
msgid "ON"
|
944 |
msgstr ""
|
945 |
|
946 |
-
#: includes/class-wpglobus.php:
|
947 |
msgid "Turn off"
|
948 |
msgstr ""
|
949 |
|
950 |
-
#: includes/class-wpglobus.php:
|
951 |
msgid "You cannot disable the main language."
|
952 |
msgstr "Anda tidak dapat menonaktifkan bahasa utama."
|
953 |
|
954 |
-
#: includes/class-wpglobus.php:
|
955 |
msgid "*) Available after the menu is saved."
|
956 |
msgstr "*) Tersedia setelah menu tersebut disimpan."
|
957 |
|
958 |
-
#: includes/class-wpglobus.php:
|
959 |
msgid "Need a multilingual slug?"
|
960 |
msgstr ""
|
961 |
|
962 |
-
#: includes/class-wpglobus.php:
|
963 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
964 |
msgstr "Anda harus mengaktifkan Permalinks Cukup menggunakan WPGlobus."
|
965 |
|
966 |
-
#: includes/class-wpglobus.php:
|
967 |
msgid ""
|
968 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
969 |
"default option."
|
@@ -971,7 +971,7 @@ msgstr ""
|
|
971 |
"Silakan pergi ke Settings > Permalinks > Umum Pengaturan dan memilih pilihan "
|
972 |
"non-default."
|
973 |
|
974 |
-
#: includes/class-wpglobus.php:
|
975 |
msgid "Add"
|
976 |
msgstr "Menambahkan"
|
977 |
|
@@ -1335,39 +1335,43 @@ msgstr ""
|
|
1335 |
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1336 |
msgstr ""
|
1337 |
|
1338 |
-
#: includes/options/templates/compatibility.php:
|
1339 |
msgid "List of supported add-ons"
|
1340 |
msgstr ""
|
1341 |
|
1342 |
-
#: includes/options/templates/compatibility.php:
|
1343 |
msgid "Add-on"
|
1344 |
msgstr ""
|
1345 |
|
1346 |
-
#: includes/options/templates/compatibility.php:
|
1347 |
msgid "Current version"
|
1348 |
msgstr ""
|
1349 |
|
1350 |
-
#: includes/options/templates/compatibility.php:
|
1351 |
msgid "Supported minimum version"
|
1352 |
msgstr ""
|
1353 |
|
1354 |
-
#: includes/options/templates/compatibility.php:
|
1355 |
msgid "Stage"
|
1356 |
msgstr ""
|
1357 |
|
1358 |
-
#: includes/options/templates/compatibility.php:
|
1359 |
msgid "Status"
|
1360 |
msgstr ""
|
1361 |
|
1362 |
-
#: includes/options/templates/compatibility.php:
|
|
|
|
|
|
|
|
|
1363 |
msgid "Active"
|
1364 |
msgstr ""
|
1365 |
|
1366 |
-
#: includes/options/templates/compatibility.php:
|
1367 |
msgid "Installed, inactive"
|
1368 |
msgstr ""
|
1369 |
|
1370 |
-
#: includes/options/templates/compatibility.php:
|
1371 |
msgid "Not installed"
|
1372 |
msgstr ""
|
1373 |
|
312 |
msgstr "Simpan & Reload"
|
313 |
|
314 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
315 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:316,
|
316 |
+
#: includes/class-wpglobus.php:1325, wpglobus.php:12, wpglobus.php:18
|
317 |
msgid "WPGlobus"
|
318 |
msgstr "WPGlobus"
|
319 |
|
859 |
msgstr ""
|
860 |
|
861 |
#: includes/builders/class-wpglobus-builder.php:358,
|
862 |
+
#: includes/class-wpglobus.php:3561
|
863 |
msgid "Save draft before using extra language."
|
864 |
msgstr ""
|
865 |
|
867 |
msgid "Builder"
|
868 |
msgstr ""
|
869 |
|
870 |
+
#: includes/builders/class-wpglobus-builder.php:465
|
871 |
msgid "Сompatibility Settings"
|
872 |
msgstr ""
|
873 |
|
930 |
msgstr "Jenis pemilih"
|
931 |
|
932 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
933 |
+
#: includes/class-wpglobus.php:1299
|
934 |
msgid "OFF"
|
935 |
msgstr ""
|
936 |
|
937 |
+
#: includes/class-wpglobus.php:1300
|
938 |
msgid "Turn on"
|
939 |
msgstr ""
|
940 |
|
941 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
942 |
+
#: includes/class-wpglobus.php:1304
|
943 |
msgid "ON"
|
944 |
msgstr ""
|
945 |
|
946 |
+
#: includes/class-wpglobus.php:1305
|
947 |
msgid "Turn off"
|
948 |
msgstr ""
|
949 |
|
950 |
+
#: includes/class-wpglobus.php:1488
|
951 |
msgid "You cannot disable the main language."
|
952 |
msgstr "Anda tidak dapat menonaktifkan bahasa utama."
|
953 |
|
954 |
+
#: includes/class-wpglobus.php:1689
|
955 |
msgid "*) Available after the menu is saved."
|
956 |
msgstr "*) Tersedia setelah menu tersebut disimpan."
|
957 |
|
958 |
+
#: includes/class-wpglobus.php:1706
|
959 |
msgid "Need a multilingual slug?"
|
960 |
msgstr ""
|
961 |
|
962 |
+
#: includes/class-wpglobus.php:3994
|
963 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
964 |
msgstr "Anda harus mengaktifkan Permalinks Cukup menggunakan WPGlobus."
|
965 |
|
966 |
+
#: includes/class-wpglobus.php:3996
|
967 |
msgid ""
|
968 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
969 |
"default option."
|
971 |
"Silakan pergi ke Settings > Permalinks > Umum Pengaturan dan memilih pilihan "
|
972 |
"non-default."
|
973 |
|
974 |
+
#: includes/class-wpglobus.php:4142
|
975 |
msgid "Add"
|
976 |
msgstr "Menambahkan"
|
977 |
|
1335 |
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1336 |
msgstr ""
|
1337 |
|
1338 |
+
#: includes/options/templates/compatibility.php:37
|
1339 |
msgid "List of supported add-ons"
|
1340 |
msgstr ""
|
1341 |
|
1342 |
+
#: includes/options/templates/compatibility.php:42
|
1343 |
msgid "Add-on"
|
1344 |
msgstr ""
|
1345 |
|
1346 |
+
#: includes/options/templates/compatibility.php:43
|
1347 |
msgid "Current version"
|
1348 |
msgstr ""
|
1349 |
|
1350 |
+
#: includes/options/templates/compatibility.php:44
|
1351 |
msgid "Supported minimum version"
|
1352 |
msgstr ""
|
1353 |
|
1354 |
+
#: includes/options/templates/compatibility.php:45
|
1355 |
msgid "Stage"
|
1356 |
msgstr ""
|
1357 |
|
1358 |
+
#: includes/options/templates/compatibility.php:46
|
1359 |
msgid "Status"
|
1360 |
msgstr ""
|
1361 |
|
1362 |
+
#: includes/options/templates/compatibility.php:59
|
1363 |
+
msgid "In core"
|
1364 |
+
msgstr ""
|
1365 |
+
|
1366 |
+
#: includes/options/templates/compatibility.php:71
|
1367 |
msgid "Active"
|
1368 |
msgstr ""
|
1369 |
|
1370 |
+
#: includes/options/templates/compatibility.php:73
|
1371 |
msgid "Installed, inactive"
|
1372 |
msgstr ""
|
1373 |
|
1374 |
+
#: includes/options/templates/compatibility.php:76
|
1375 |
msgid "Not installed"
|
1376 |
msgstr ""
|
1377 |
|
languages/wpglobus-ko_KR.po
CHANGED
@@ -264,8 +264,8 @@ 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:
|
269 |
msgid "WPGlobus"
|
270 |
msgstr ""
|
271 |
|
@@ -784,7 +784,7 @@ msgid "To translate permalinks, please activate the module Slug."
|
|
784 |
msgstr ""
|
785 |
|
786 |
#: includes/builders/class-wpglobus-builder.php:358,
|
787 |
-
#: includes/class-wpglobus.php:
|
788 |
msgid "Save draft before using extra language."
|
789 |
msgstr ""
|
790 |
|
@@ -792,7 +792,7 @@ msgstr ""
|
|
792 |
msgid "Builder"
|
793 |
msgstr ""
|
794 |
|
795 |
-
#: includes/builders/class-wpglobus-builder.php:
|
796 |
msgid "Сompatibility Settings"
|
797 |
msgstr ""
|
798 |
|
@@ -855,46 +855,46 @@ msgid "Selector type"
|
|
855 |
msgstr ""
|
856 |
|
857 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
858 |
-
#: includes/class-wpglobus.php:
|
859 |
msgid "OFF"
|
860 |
msgstr ""
|
861 |
|
862 |
-
#: includes/class-wpglobus.php:
|
863 |
msgid "Turn on"
|
864 |
msgstr ""
|
865 |
|
866 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
867 |
-
#: includes/class-wpglobus.php:
|
868 |
msgid "ON"
|
869 |
msgstr ""
|
870 |
|
871 |
-
#: includes/class-wpglobus.php:
|
872 |
msgid "Turn off"
|
873 |
msgstr ""
|
874 |
|
875 |
-
#: includes/class-wpglobus.php:
|
876 |
msgid "You cannot disable the main language."
|
877 |
msgstr ""
|
878 |
|
879 |
-
#: includes/class-wpglobus.php:
|
880 |
msgid "*) Available after the menu is saved."
|
881 |
msgstr ""
|
882 |
|
883 |
-
#: includes/class-wpglobus.php:
|
884 |
msgid "Need a multilingual slug?"
|
885 |
msgstr ""
|
886 |
|
887 |
-
#: includes/class-wpglobus.php:
|
888 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
889 |
msgstr ""
|
890 |
|
891 |
-
#: includes/class-wpglobus.php:
|
892 |
msgid ""
|
893 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
894 |
"default option."
|
895 |
msgstr ""
|
896 |
|
897 |
-
#: includes/class-wpglobus.php:
|
898 |
msgid "Add"
|
899 |
msgstr "추가하기"
|
900 |
|
@@ -1258,39 +1258,43 @@ msgstr ""
|
|
1258 |
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1259 |
msgstr ""
|
1260 |
|
1261 |
-
#: includes/options/templates/compatibility.php:
|
1262 |
msgid "List of supported add-ons"
|
1263 |
msgstr ""
|
1264 |
|
1265 |
-
#: includes/options/templates/compatibility.php:
|
1266 |
msgid "Add-on"
|
1267 |
msgstr ""
|
1268 |
|
1269 |
-
#: includes/options/templates/compatibility.php:
|
1270 |
msgid "Current version"
|
1271 |
msgstr ""
|
1272 |
|
1273 |
-
#: includes/options/templates/compatibility.php:
|
1274 |
msgid "Supported minimum version"
|
1275 |
msgstr ""
|
1276 |
|
1277 |
-
#: includes/options/templates/compatibility.php:
|
1278 |
msgid "Stage"
|
1279 |
msgstr ""
|
1280 |
|
1281 |
-
#: includes/options/templates/compatibility.php:
|
1282 |
msgid "Status"
|
1283 |
msgstr ""
|
1284 |
|
1285 |
-
#: includes/options/templates/compatibility.php:
|
|
|
|
|
|
|
|
|
1286 |
msgid "Active"
|
1287 |
msgstr ""
|
1288 |
|
1289 |
-
#: includes/options/templates/compatibility.php:
|
1290 |
msgid "Installed, inactive"
|
1291 |
msgstr ""
|
1292 |
|
1293 |
-
#: includes/options/templates/compatibility.php:
|
1294 |
msgid "Not installed"
|
1295 |
msgstr ""
|
1296 |
|
264 |
msgstr ""
|
265 |
|
266 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
267 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:316,
|
268 |
+
#: includes/class-wpglobus.php:1325, wpglobus.php:12, wpglobus.php:18
|
269 |
msgid "WPGlobus"
|
270 |
msgstr ""
|
271 |
|
784 |
msgstr ""
|
785 |
|
786 |
#: includes/builders/class-wpglobus-builder.php:358,
|
787 |
+
#: includes/class-wpglobus.php:3561
|
788 |
msgid "Save draft before using extra language."
|
789 |
msgstr ""
|
790 |
|
792 |
msgid "Builder"
|
793 |
msgstr ""
|
794 |
|
795 |
+
#: includes/builders/class-wpglobus-builder.php:465
|
796 |
msgid "Сompatibility Settings"
|
797 |
msgstr ""
|
798 |
|
855 |
msgstr ""
|
856 |
|
857 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
858 |
+
#: includes/class-wpglobus.php:1299
|
859 |
msgid "OFF"
|
860 |
msgstr ""
|
861 |
|
862 |
+
#: includes/class-wpglobus.php:1300
|
863 |
msgid "Turn on"
|
864 |
msgstr ""
|
865 |
|
866 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
867 |
+
#: includes/class-wpglobus.php:1304
|
868 |
msgid "ON"
|
869 |
msgstr ""
|
870 |
|
871 |
+
#: includes/class-wpglobus.php:1305
|
872 |
msgid "Turn off"
|
873 |
msgstr ""
|
874 |
|
875 |
+
#: includes/class-wpglobus.php:1488
|
876 |
msgid "You cannot disable the main language."
|
877 |
msgstr ""
|
878 |
|
879 |
+
#: includes/class-wpglobus.php:1689
|
880 |
msgid "*) Available after the menu is saved."
|
881 |
msgstr ""
|
882 |
|
883 |
+
#: includes/class-wpglobus.php:1706
|
884 |
msgid "Need a multilingual slug?"
|
885 |
msgstr ""
|
886 |
|
887 |
+
#: includes/class-wpglobus.php:3994
|
888 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
889 |
msgstr ""
|
890 |
|
891 |
+
#: includes/class-wpglobus.php:3996
|
892 |
msgid ""
|
893 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
894 |
"default option."
|
895 |
msgstr ""
|
896 |
|
897 |
+
#: includes/class-wpglobus.php:4142
|
898 |
msgid "Add"
|
899 |
msgstr "추가하기"
|
900 |
|
1258 |
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1259 |
msgstr ""
|
1260 |
|
1261 |
+
#: includes/options/templates/compatibility.php:37
|
1262 |
msgid "List of supported add-ons"
|
1263 |
msgstr ""
|
1264 |
|
1265 |
+
#: includes/options/templates/compatibility.php:42
|
1266 |
msgid "Add-on"
|
1267 |
msgstr ""
|
1268 |
|
1269 |
+
#: includes/options/templates/compatibility.php:43
|
1270 |
msgid "Current version"
|
1271 |
msgstr ""
|
1272 |
|
1273 |
+
#: includes/options/templates/compatibility.php:44
|
1274 |
msgid "Supported minimum version"
|
1275 |
msgstr ""
|
1276 |
|
1277 |
+
#: includes/options/templates/compatibility.php:45
|
1278 |
msgid "Stage"
|
1279 |
msgstr ""
|
1280 |
|
1281 |
+
#: includes/options/templates/compatibility.php:46
|
1282 |
msgid "Status"
|
1283 |
msgstr ""
|
1284 |
|
1285 |
+
#: includes/options/templates/compatibility.php:59
|
1286 |
+
msgid "In core"
|
1287 |
+
msgstr ""
|
1288 |
+
|
1289 |
+
#: includes/options/templates/compatibility.php:71
|
1290 |
msgid "Active"
|
1291 |
msgstr ""
|
1292 |
|
1293 |
+
#: includes/options/templates/compatibility.php:73
|
1294 |
msgid "Installed, inactive"
|
1295 |
msgstr ""
|
1296 |
|
1297 |
+
#: includes/options/templates/compatibility.php:76
|
1298 |
msgid "Not installed"
|
1299 |
msgstr ""
|
1300 |
|
languages/wpglobus-pl_PL.po
CHANGED
@@ -282,8 +282,8 @@ 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:
|
287 |
msgid "WPGlobus"
|
288 |
msgstr "WPGlobus"
|
289 |
|
@@ -811,7 +811,7 @@ msgid "To translate permalinks, please activate the module Slug."
|
|
811 |
msgstr ""
|
812 |
|
813 |
#: includes/builders/class-wpglobus-builder.php:358,
|
814 |
-
#: includes/class-wpglobus.php:
|
815 |
msgid "Save draft before using extra language."
|
816 |
msgstr ""
|
817 |
|
@@ -819,7 +819,7 @@ msgstr ""
|
|
819 |
msgid "Builder"
|
820 |
msgstr ""
|
821 |
|
822 |
-
#: includes/builders/class-wpglobus-builder.php:
|
823 |
msgid "Сompatibility Settings"
|
824 |
msgstr ""
|
825 |
|
@@ -882,41 +882,41 @@ msgid "Selector type"
|
|
882 |
msgstr "Sposób wyboru"
|
883 |
|
884 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
885 |
-
#: includes/class-wpglobus.php:
|
886 |
msgid "OFF"
|
887 |
msgstr ""
|
888 |
|
889 |
-
#: includes/class-wpglobus.php:
|
890 |
msgid "Turn on"
|
891 |
msgstr ""
|
892 |
|
893 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
894 |
-
#: includes/class-wpglobus.php:
|
895 |
msgid "ON"
|
896 |
msgstr ""
|
897 |
|
898 |
-
#: includes/class-wpglobus.php:
|
899 |
msgid "Turn off"
|
900 |
msgstr ""
|
901 |
|
902 |
-
#: includes/class-wpglobus.php:
|
903 |
msgid "You cannot disable the main language."
|
904 |
msgstr "Nie możesz wyłączyć głównego języka."
|
905 |
|
906 |
-
#: includes/class-wpglobus.php:
|
907 |
msgid "*) Available after the menu is saved."
|
908 |
msgstr "*) Dostępne po zapisaniu menu."
|
909 |
|
910 |
-
#: includes/class-wpglobus.php:
|
911 |
msgid "Need a multilingual slug?"
|
912 |
msgstr ""
|
913 |
|
914 |
-
#: includes/class-wpglobus.php:
|
915 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
916 |
msgstr ""
|
917 |
"Aby korzystać z WPGlobus'a, musisz ustawić przyjazne bezpośrednie odnośniki."
|
918 |
|
919 |
-
#: includes/class-wpglobus.php:
|
920 |
msgid ""
|
921 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
922 |
"default option."
|
@@ -924,7 +924,7 @@ msgstr ""
|
|
924 |
"Proszę przejść do Ustawienia > Bezpośrednie odnośniki > Popularne ustawienia "
|
925 |
"i wybrać opcję Nazwa wpisu."
|
926 |
|
927 |
-
#: includes/class-wpglobus.php:
|
928 |
msgid "Add"
|
929 |
msgstr "Dodaj"
|
930 |
|
@@ -1288,39 +1288,43 @@ msgstr ""
|
|
1288 |
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1289 |
msgstr ""
|
1290 |
|
1291 |
-
#: includes/options/templates/compatibility.php:
|
1292 |
msgid "List of supported add-ons"
|
1293 |
msgstr ""
|
1294 |
|
1295 |
-
#: includes/options/templates/compatibility.php:
|
1296 |
msgid "Add-on"
|
1297 |
msgstr ""
|
1298 |
|
1299 |
-
#: includes/options/templates/compatibility.php:
|
1300 |
msgid "Current version"
|
1301 |
msgstr ""
|
1302 |
|
1303 |
-
#: includes/options/templates/compatibility.php:
|
1304 |
msgid "Supported minimum version"
|
1305 |
msgstr ""
|
1306 |
|
1307 |
-
#: includes/options/templates/compatibility.php:
|
1308 |
msgid "Stage"
|
1309 |
msgstr ""
|
1310 |
|
1311 |
-
#: includes/options/templates/compatibility.php:
|
1312 |
msgid "Status"
|
1313 |
msgstr ""
|
1314 |
|
1315 |
-
#: includes/options/templates/compatibility.php:
|
|
|
|
|
|
|
|
|
1316 |
msgid "Active"
|
1317 |
msgstr ""
|
1318 |
|
1319 |
-
#: includes/options/templates/compatibility.php:
|
1320 |
msgid "Installed, inactive"
|
1321 |
msgstr ""
|
1322 |
|
1323 |
-
#: includes/options/templates/compatibility.php:
|
1324 |
msgid "Not installed"
|
1325 |
msgstr ""
|
1326 |
|
282 |
msgstr ""
|
283 |
|
284 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
285 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:316,
|
286 |
+
#: includes/class-wpglobus.php:1325, wpglobus.php:12, wpglobus.php:18
|
287 |
msgid "WPGlobus"
|
288 |
msgstr "WPGlobus"
|
289 |
|
811 |
msgstr ""
|
812 |
|
813 |
#: includes/builders/class-wpglobus-builder.php:358,
|
814 |
+
#: includes/class-wpglobus.php:3561
|
815 |
msgid "Save draft before using extra language."
|
816 |
msgstr ""
|
817 |
|
819 |
msgid "Builder"
|
820 |
msgstr ""
|
821 |
|
822 |
+
#: includes/builders/class-wpglobus-builder.php:465
|
823 |
msgid "Сompatibility Settings"
|
824 |
msgstr ""
|
825 |
|
882 |
msgstr "Sposób wyboru"
|
883 |
|
884 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
885 |
+
#: includes/class-wpglobus.php:1299
|
886 |
msgid "OFF"
|
887 |
msgstr ""
|
888 |
|
889 |
+
#: includes/class-wpglobus.php:1300
|
890 |
msgid "Turn on"
|
891 |
msgstr ""
|
892 |
|
893 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
894 |
+
#: includes/class-wpglobus.php:1304
|
895 |
msgid "ON"
|
896 |
msgstr ""
|
897 |
|
898 |
+
#: includes/class-wpglobus.php:1305
|
899 |
msgid "Turn off"
|
900 |
msgstr ""
|
901 |
|
902 |
+
#: includes/class-wpglobus.php:1488
|
903 |
msgid "You cannot disable the main language."
|
904 |
msgstr "Nie możesz wyłączyć głównego języka."
|
905 |
|
906 |
+
#: includes/class-wpglobus.php:1689
|
907 |
msgid "*) Available after the menu is saved."
|
908 |
msgstr "*) Dostępne po zapisaniu menu."
|
909 |
|
910 |
+
#: includes/class-wpglobus.php:1706
|
911 |
msgid "Need a multilingual slug?"
|
912 |
msgstr ""
|
913 |
|
914 |
+
#: includes/class-wpglobus.php:3994
|
915 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
916 |
msgstr ""
|
917 |
"Aby korzystać z WPGlobus'a, musisz ustawić przyjazne bezpośrednie odnośniki."
|
918 |
|
919 |
+
#: includes/class-wpglobus.php:3996
|
920 |
msgid ""
|
921 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
922 |
"default option."
|
924 |
"Proszę przejść do Ustawienia > Bezpośrednie odnośniki > Popularne ustawienia "
|
925 |
"i wybrać opcję Nazwa wpisu."
|
926 |
|
927 |
+
#: includes/class-wpglobus.php:4142
|
928 |
msgid "Add"
|
929 |
msgstr "Dodaj"
|
930 |
|
1288 |
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1289 |
msgstr ""
|
1290 |
|
1291 |
+
#: includes/options/templates/compatibility.php:37
|
1292 |
msgid "List of supported add-ons"
|
1293 |
msgstr ""
|
1294 |
|
1295 |
+
#: includes/options/templates/compatibility.php:42
|
1296 |
msgid "Add-on"
|
1297 |
msgstr ""
|
1298 |
|
1299 |
+
#: includes/options/templates/compatibility.php:43
|
1300 |
msgid "Current version"
|
1301 |
msgstr ""
|
1302 |
|
1303 |
+
#: includes/options/templates/compatibility.php:44
|
1304 |
msgid "Supported minimum version"
|
1305 |
msgstr ""
|
1306 |
|
1307 |
+
#: includes/options/templates/compatibility.php:45
|
1308 |
msgid "Stage"
|
1309 |
msgstr ""
|
1310 |
|
1311 |
+
#: includes/options/templates/compatibility.php:46
|
1312 |
msgid "Status"
|
1313 |
msgstr ""
|
1314 |
|
1315 |
+
#: includes/options/templates/compatibility.php:59
|
1316 |
+
msgid "In core"
|
1317 |
+
msgstr ""
|
1318 |
+
|
1319 |
+
#: includes/options/templates/compatibility.php:71
|
1320 |
msgid "Active"
|
1321 |
msgstr ""
|
1322 |
|
1323 |
+
#: includes/options/templates/compatibility.php:73
|
1324 |
msgid "Installed, inactive"
|
1325 |
msgstr ""
|
1326 |
|
1327 |
+
#: includes/options/templates/compatibility.php:76
|
1328 |
msgid "Not installed"
|
1329 |
msgstr ""
|
1330 |
|
languages/wpglobus-pt_BR.po
CHANGED
@@ -264,8 +264,8 @@ 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:
|
269 |
msgid "WPGlobus"
|
270 |
msgstr ""
|
271 |
|
@@ -784,7 +784,7 @@ msgid "To translate permalinks, please activate the module Slug."
|
|
784 |
msgstr ""
|
785 |
|
786 |
#: includes/builders/class-wpglobus-builder.php:358,
|
787 |
-
#: includes/class-wpglobus.php:
|
788 |
msgid "Save draft before using extra language."
|
789 |
msgstr ""
|
790 |
|
@@ -792,7 +792,7 @@ msgstr ""
|
|
792 |
msgid "Builder"
|
793 |
msgstr ""
|
794 |
|
795 |
-
#: includes/builders/class-wpglobus-builder.php:
|
796 |
msgid "Сompatibility Settings"
|
797 |
msgstr ""
|
798 |
|
@@ -855,46 +855,46 @@ msgid "Selector type"
|
|
855 |
msgstr ""
|
856 |
|
857 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
858 |
-
#: includes/class-wpglobus.php:
|
859 |
msgid "OFF"
|
860 |
msgstr "DESLIGADO"
|
861 |
|
862 |
-
#: includes/class-wpglobus.php:
|
863 |
msgid "Turn on"
|
864 |
msgstr ""
|
865 |
|
866 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
867 |
-
#: includes/class-wpglobus.php:
|
868 |
msgid "ON"
|
869 |
msgstr "LIGADO"
|
870 |
|
871 |
-
#: includes/class-wpglobus.php:
|
872 |
msgid "Turn off"
|
873 |
msgstr ""
|
874 |
|
875 |
-
#: includes/class-wpglobus.php:
|
876 |
msgid "You cannot disable the main language."
|
877 |
msgstr ""
|
878 |
|
879 |
-
#: includes/class-wpglobus.php:
|
880 |
msgid "*) Available after the menu is saved."
|
881 |
msgstr ""
|
882 |
|
883 |
-
#: includes/class-wpglobus.php:
|
884 |
msgid "Need a multilingual slug?"
|
885 |
msgstr ""
|
886 |
|
887 |
-
#: includes/class-wpglobus.php:
|
888 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
889 |
msgstr ""
|
890 |
|
891 |
-
#: includes/class-wpglobus.php:
|
892 |
msgid ""
|
893 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
894 |
"default option."
|
895 |
msgstr ""
|
896 |
|
897 |
-
#: includes/class-wpglobus.php:
|
898 |
msgid "Add"
|
899 |
msgstr ""
|
900 |
|
@@ -1258,39 +1258,43 @@ msgstr ""
|
|
1258 |
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1259 |
msgstr ""
|
1260 |
|
1261 |
-
#: includes/options/templates/compatibility.php:
|
1262 |
msgid "List of supported add-ons"
|
1263 |
msgstr ""
|
1264 |
|
1265 |
-
#: includes/options/templates/compatibility.php:
|
1266 |
msgid "Add-on"
|
1267 |
msgstr ""
|
1268 |
|
1269 |
-
#: includes/options/templates/compatibility.php:
|
1270 |
msgid "Current version"
|
1271 |
msgstr ""
|
1272 |
|
1273 |
-
#: includes/options/templates/compatibility.php:
|
1274 |
msgid "Supported minimum version"
|
1275 |
msgstr ""
|
1276 |
|
1277 |
-
#: includes/options/templates/compatibility.php:
|
1278 |
msgid "Stage"
|
1279 |
msgstr ""
|
1280 |
|
1281 |
-
#: includes/options/templates/compatibility.php:
|
1282 |
msgid "Status"
|
1283 |
msgstr ""
|
1284 |
|
1285 |
-
#: includes/options/templates/compatibility.php:
|
|
|
|
|
|
|
|
|
1286 |
msgid "Active"
|
1287 |
msgstr ""
|
1288 |
|
1289 |
-
#: includes/options/templates/compatibility.php:
|
1290 |
msgid "Installed, inactive"
|
1291 |
msgstr ""
|
1292 |
|
1293 |
-
#: includes/options/templates/compatibility.php:
|
1294 |
msgid "Not installed"
|
1295 |
msgstr ""
|
1296 |
|
264 |
msgstr ""
|
265 |
|
266 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
267 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:316,
|
268 |
+
#: includes/class-wpglobus.php:1325, wpglobus.php:12, wpglobus.php:18
|
269 |
msgid "WPGlobus"
|
270 |
msgstr ""
|
271 |
|
784 |
msgstr ""
|
785 |
|
786 |
#: includes/builders/class-wpglobus-builder.php:358,
|
787 |
+
#: includes/class-wpglobus.php:3561
|
788 |
msgid "Save draft before using extra language."
|
789 |
msgstr ""
|
790 |
|
792 |
msgid "Builder"
|
793 |
msgstr ""
|
794 |
|
795 |
+
#: includes/builders/class-wpglobus-builder.php:465
|
796 |
msgid "Сompatibility Settings"
|
797 |
msgstr ""
|
798 |
|
855 |
msgstr ""
|
856 |
|
857 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
858 |
+
#: includes/class-wpglobus.php:1299
|
859 |
msgid "OFF"
|
860 |
msgstr "DESLIGADO"
|
861 |
|
862 |
+
#: includes/class-wpglobus.php:1300
|
863 |
msgid "Turn on"
|
864 |
msgstr ""
|
865 |
|
866 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
867 |
+
#: includes/class-wpglobus.php:1304
|
868 |
msgid "ON"
|
869 |
msgstr "LIGADO"
|
870 |
|
871 |
+
#: includes/class-wpglobus.php:1305
|
872 |
msgid "Turn off"
|
873 |
msgstr ""
|
874 |
|
875 |
+
#: includes/class-wpglobus.php:1488
|
876 |
msgid "You cannot disable the main language."
|
877 |
msgstr ""
|
878 |
|
879 |
+
#: includes/class-wpglobus.php:1689
|
880 |
msgid "*) Available after the menu is saved."
|
881 |
msgstr ""
|
882 |
|
883 |
+
#: includes/class-wpglobus.php:1706
|
884 |
msgid "Need a multilingual slug?"
|
885 |
msgstr ""
|
886 |
|
887 |
+
#: includes/class-wpglobus.php:3994
|
888 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
889 |
msgstr ""
|
890 |
|
891 |
+
#: includes/class-wpglobus.php:3996
|
892 |
msgid ""
|
893 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
894 |
"default option."
|
895 |
msgstr ""
|
896 |
|
897 |
+
#: includes/class-wpglobus.php:4142
|
898 |
msgid "Add"
|
899 |
msgstr ""
|
900 |
|
1258 |
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1259 |
msgstr ""
|
1260 |
|
1261 |
+
#: includes/options/templates/compatibility.php:37
|
1262 |
msgid "List of supported add-ons"
|
1263 |
msgstr ""
|
1264 |
|
1265 |
+
#: includes/options/templates/compatibility.php:42
|
1266 |
msgid "Add-on"
|
1267 |
msgstr ""
|
1268 |
|
1269 |
+
#: includes/options/templates/compatibility.php:43
|
1270 |
msgid "Current version"
|
1271 |
msgstr ""
|
1272 |
|
1273 |
+
#: includes/options/templates/compatibility.php:44
|
1274 |
msgid "Supported minimum version"
|
1275 |
msgstr ""
|
1276 |
|
1277 |
+
#: includes/options/templates/compatibility.php:45
|
1278 |
msgid "Stage"
|
1279 |
msgstr ""
|
1280 |
|
1281 |
+
#: includes/options/templates/compatibility.php:46
|
1282 |
msgid "Status"
|
1283 |
msgstr ""
|
1284 |
|
1285 |
+
#: includes/options/templates/compatibility.php:59
|
1286 |
+
msgid "In core"
|
1287 |
+
msgstr ""
|
1288 |
+
|
1289 |
+
#: includes/options/templates/compatibility.php:71
|
1290 |
msgid "Active"
|
1291 |
msgstr ""
|
1292 |
|
1293 |
+
#: includes/options/templates/compatibility.php:73
|
1294 |
msgid "Installed, inactive"
|
1295 |
msgstr ""
|
1296 |
|
1297 |
+
#: includes/options/templates/compatibility.php:76
|
1298 |
msgid "Not installed"
|
1299 |
msgstr ""
|
1300 |
|
languages/wpglobus-pt_PT.po
CHANGED
@@ -264,8 +264,8 @@ 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:
|
269 |
msgid "WPGlobus"
|
270 |
msgstr ""
|
271 |
|
@@ -784,7 +784,7 @@ msgid "To translate permalinks, please activate the module Slug."
|
|
784 |
msgstr ""
|
785 |
|
786 |
#: includes/builders/class-wpglobus-builder.php:358,
|
787 |
-
#: includes/class-wpglobus.php:
|
788 |
msgid "Save draft before using extra language."
|
789 |
msgstr ""
|
790 |
|
@@ -792,7 +792,7 @@ msgstr ""
|
|
792 |
msgid "Builder"
|
793 |
msgstr ""
|
794 |
|
795 |
-
#: includes/builders/class-wpglobus-builder.php:
|
796 |
msgid "Сompatibility Settings"
|
797 |
msgstr ""
|
798 |
|
@@ -855,46 +855,46 @@ msgid "Selector type"
|
|
855 |
msgstr ""
|
856 |
|
857 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
858 |
-
#: includes/class-wpglobus.php:
|
859 |
msgid "OFF"
|
860 |
msgstr "Não"
|
861 |
|
862 |
-
#: includes/class-wpglobus.php:
|
863 |
msgid "Turn on"
|
864 |
msgstr ""
|
865 |
|
866 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
867 |
-
#: includes/class-wpglobus.php:
|
868 |
msgid "ON"
|
869 |
msgstr "Sim"
|
870 |
|
871 |
-
#: includes/class-wpglobus.php:
|
872 |
msgid "Turn off"
|
873 |
msgstr ""
|
874 |
|
875 |
-
#: includes/class-wpglobus.php:
|
876 |
msgid "You cannot disable the main language."
|
877 |
msgstr ""
|
878 |
|
879 |
-
#: includes/class-wpglobus.php:
|
880 |
msgid "*) Available after the menu is saved."
|
881 |
msgstr ""
|
882 |
|
883 |
-
#: includes/class-wpglobus.php:
|
884 |
msgid "Need a multilingual slug?"
|
885 |
msgstr ""
|
886 |
|
887 |
-
#: includes/class-wpglobus.php:
|
888 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
889 |
msgstr ""
|
890 |
|
891 |
-
#: includes/class-wpglobus.php:
|
892 |
msgid ""
|
893 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
894 |
"default option."
|
895 |
msgstr ""
|
896 |
|
897 |
-
#: includes/class-wpglobus.php:
|
898 |
msgid "Add"
|
899 |
msgstr ""
|
900 |
|
@@ -1258,39 +1258,43 @@ msgstr ""
|
|
1258 |
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1259 |
msgstr ""
|
1260 |
|
1261 |
-
#: includes/options/templates/compatibility.php:
|
1262 |
msgid "List of supported add-ons"
|
1263 |
msgstr ""
|
1264 |
|
1265 |
-
#: includes/options/templates/compatibility.php:
|
1266 |
msgid "Add-on"
|
1267 |
msgstr ""
|
1268 |
|
1269 |
-
#: includes/options/templates/compatibility.php:
|
1270 |
msgid "Current version"
|
1271 |
msgstr ""
|
1272 |
|
1273 |
-
#: includes/options/templates/compatibility.php:
|
1274 |
msgid "Supported minimum version"
|
1275 |
msgstr ""
|
1276 |
|
1277 |
-
#: includes/options/templates/compatibility.php:
|
1278 |
msgid "Stage"
|
1279 |
msgstr ""
|
1280 |
|
1281 |
-
#: includes/options/templates/compatibility.php:
|
1282 |
msgid "Status"
|
1283 |
msgstr ""
|
1284 |
|
1285 |
-
#: includes/options/templates/compatibility.php:
|
|
|
|
|
|
|
|
|
1286 |
msgid "Active"
|
1287 |
msgstr ""
|
1288 |
|
1289 |
-
#: includes/options/templates/compatibility.php:
|
1290 |
msgid "Installed, inactive"
|
1291 |
msgstr ""
|
1292 |
|
1293 |
-
#: includes/options/templates/compatibility.php:
|
1294 |
msgid "Not installed"
|
1295 |
msgstr ""
|
1296 |
|
264 |
msgstr ""
|
265 |
|
266 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
267 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:316,
|
268 |
+
#: includes/class-wpglobus.php:1325, wpglobus.php:12, wpglobus.php:18
|
269 |
msgid "WPGlobus"
|
270 |
msgstr ""
|
271 |
|
784 |
msgstr ""
|
785 |
|
786 |
#: includes/builders/class-wpglobus-builder.php:358,
|
787 |
+
#: includes/class-wpglobus.php:3561
|
788 |
msgid "Save draft before using extra language."
|
789 |
msgstr ""
|
790 |
|
792 |
msgid "Builder"
|
793 |
msgstr ""
|
794 |
|
795 |
+
#: includes/builders/class-wpglobus-builder.php:465
|
796 |
msgid "Сompatibility Settings"
|
797 |
msgstr ""
|
798 |
|
855 |
msgstr ""
|
856 |
|
857 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
858 |
+
#: includes/class-wpglobus.php:1299
|
859 |
msgid "OFF"
|
860 |
msgstr "Não"
|
861 |
|
862 |
+
#: includes/class-wpglobus.php:1300
|
863 |
msgid "Turn on"
|
864 |
msgstr ""
|
865 |
|
866 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
867 |
+
#: includes/class-wpglobus.php:1304
|
868 |
msgid "ON"
|
869 |
msgstr "Sim"
|
870 |
|
871 |
+
#: includes/class-wpglobus.php:1305
|
872 |
msgid "Turn off"
|
873 |
msgstr ""
|
874 |
|
875 |
+
#: includes/class-wpglobus.php:1488
|
876 |
msgid "You cannot disable the main language."
|
877 |
msgstr ""
|
878 |
|
879 |
+
#: includes/class-wpglobus.php:1689
|
880 |
msgid "*) Available after the menu is saved."
|
881 |
msgstr ""
|
882 |
|
883 |
+
#: includes/class-wpglobus.php:1706
|
884 |
msgid "Need a multilingual slug?"
|
885 |
msgstr ""
|
886 |
|
887 |
+
#: includes/class-wpglobus.php:3994
|
888 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
889 |
msgstr ""
|
890 |
|
891 |
+
#: includes/class-wpglobus.php:3996
|
892 |
msgid ""
|
893 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
894 |
"default option."
|
895 |
msgstr ""
|
896 |
|
897 |
+
#: includes/class-wpglobus.php:4142
|
898 |
msgid "Add"
|
899 |
msgstr ""
|
900 |
|
1258 |
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1259 |
msgstr ""
|
1260 |
|
1261 |
+
#: includes/options/templates/compatibility.php:37
|
1262 |
msgid "List of supported add-ons"
|
1263 |
msgstr ""
|
1264 |
|
1265 |
+
#: includes/options/templates/compatibility.php:42
|
1266 |
msgid "Add-on"
|
1267 |
msgstr ""
|
1268 |
|
1269 |
+
#: includes/options/templates/compatibility.php:43
|
1270 |
msgid "Current version"
|
1271 |
msgstr ""
|
1272 |
|
1273 |
+
#: includes/options/templates/compatibility.php:44
|
1274 |
msgid "Supported minimum version"
|
1275 |
msgstr ""
|
1276 |
|
1277 |
+
#: includes/options/templates/compatibility.php:45
|
1278 |
msgid "Stage"
|
1279 |
msgstr ""
|
1280 |
|
1281 |
+
#: includes/options/templates/compatibility.php:46
|
1282 |
msgid "Status"
|
1283 |
msgstr ""
|
1284 |
|
1285 |
+
#: includes/options/templates/compatibility.php:59
|
1286 |
+
msgid "In core"
|
1287 |
+
msgstr ""
|
1288 |
+
|
1289 |
+
#: includes/options/templates/compatibility.php:71
|
1290 |
msgid "Active"
|
1291 |
msgstr ""
|
1292 |
|
1293 |
+
#: includes/options/templates/compatibility.php:73
|
1294 |
msgid "Installed, inactive"
|
1295 |
msgstr ""
|
1296 |
|
1297 |
+
#: includes/options/templates/compatibility.php:76
|
1298 |
msgid "Not installed"
|
1299 |
msgstr ""
|
1300 |
|
languages/wpglobus-ro_RO.po
CHANGED
@@ -281,8 +281,8 @@ 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:
|
286 |
msgid "WPGlobus"
|
287 |
msgstr "WPGlobus"
|
288 |
|
@@ -814,7 +814,7 @@ msgid "To translate permalinks, please activate the module Slug."
|
|
814 |
msgstr ""
|
815 |
|
816 |
#: includes/builders/class-wpglobus-builder.php:358,
|
817 |
-
#: includes/class-wpglobus.php:
|
818 |
msgid "Save draft before using extra language."
|
819 |
msgstr ""
|
820 |
|
@@ -822,7 +822,7 @@ msgstr ""
|
|
822 |
msgid "Builder"
|
823 |
msgstr ""
|
824 |
|
825 |
-
#: includes/builders/class-wpglobus-builder.php:
|
826 |
msgid "Сompatibility Settings"
|
827 |
msgstr ""
|
828 |
|
@@ -885,40 +885,40 @@ msgid "Selector type"
|
|
885 |
msgstr "Tipul de selector"
|
886 |
|
887 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
888 |
-
#: includes/class-wpglobus.php:
|
889 |
msgid "OFF"
|
890 |
msgstr ""
|
891 |
|
892 |
-
#: includes/class-wpglobus.php:
|
893 |
msgid "Turn on"
|
894 |
msgstr ""
|
895 |
|
896 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
897 |
-
#: includes/class-wpglobus.php:
|
898 |
msgid "ON"
|
899 |
msgstr ""
|
900 |
|
901 |
-
#: includes/class-wpglobus.php:
|
902 |
msgid "Turn off"
|
903 |
msgstr ""
|
904 |
|
905 |
-
#: includes/class-wpglobus.php:
|
906 |
msgid "You cannot disable the main language."
|
907 |
msgstr "Nu puteți dezactiva limba principală."
|
908 |
|
909 |
-
#: includes/class-wpglobus.php:
|
910 |
msgid "*) Available after the menu is saved."
|
911 |
msgstr "*) Disponibil după ce meniul este salvat."
|
912 |
|
913 |
-
#: includes/class-wpglobus.php:
|
914 |
msgid "Need a multilingual slug?"
|
915 |
msgstr ""
|
916 |
|
917 |
-
#: includes/class-wpglobus.php:
|
918 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
919 |
msgstr "Trebuie să activezi Pretty Permalinks pentru a folosi WPGlobus."
|
920 |
|
921 |
-
#: includes/class-wpglobus.php:
|
922 |
msgid ""
|
923 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
924 |
"default option."
|
@@ -926,7 +926,7 @@ msgstr ""
|
|
926 |
"Vă rugăm să mergeți la Setări> Permalinks> Setări comune și alegeți o "
|
927 |
"opțiune non-default."
|
928 |
|
929 |
-
#: includes/class-wpglobus.php:
|
930 |
msgid "Add"
|
931 |
msgstr "Adaugă"
|
932 |
|
@@ -1291,39 +1291,43 @@ msgstr ""
|
|
1291 |
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1292 |
msgstr ""
|
1293 |
|
1294 |
-
#: includes/options/templates/compatibility.php:
|
1295 |
msgid "List of supported add-ons"
|
1296 |
msgstr ""
|
1297 |
|
1298 |
-
#: includes/options/templates/compatibility.php:
|
1299 |
msgid "Add-on"
|
1300 |
msgstr ""
|
1301 |
|
1302 |
-
#: includes/options/templates/compatibility.php:
|
1303 |
msgid "Current version"
|
1304 |
msgstr ""
|
1305 |
|
1306 |
-
#: includes/options/templates/compatibility.php:
|
1307 |
msgid "Supported minimum version"
|
1308 |
msgstr ""
|
1309 |
|
1310 |
-
#: includes/options/templates/compatibility.php:
|
1311 |
msgid "Stage"
|
1312 |
msgstr ""
|
1313 |
|
1314 |
-
#: includes/options/templates/compatibility.php:
|
1315 |
msgid "Status"
|
1316 |
msgstr ""
|
1317 |
|
1318 |
-
#: includes/options/templates/compatibility.php:
|
|
|
|
|
|
|
|
|
1319 |
msgid "Active"
|
1320 |
msgstr ""
|
1321 |
|
1322 |
-
#: includes/options/templates/compatibility.php:
|
1323 |
msgid "Installed, inactive"
|
1324 |
msgstr ""
|
1325 |
|
1326 |
-
#: includes/options/templates/compatibility.php:
|
1327 |
msgid "Not installed"
|
1328 |
msgstr ""
|
1329 |
|
281 |
msgstr ""
|
282 |
|
283 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
284 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:316,
|
285 |
+
#: includes/class-wpglobus.php:1325, wpglobus.php:12, wpglobus.php:18
|
286 |
msgid "WPGlobus"
|
287 |
msgstr "WPGlobus"
|
288 |
|
814 |
msgstr ""
|
815 |
|
816 |
#: includes/builders/class-wpglobus-builder.php:358,
|
817 |
+
#: includes/class-wpglobus.php:3561
|
818 |
msgid "Save draft before using extra language."
|
819 |
msgstr ""
|
820 |
|
822 |
msgid "Builder"
|
823 |
msgstr ""
|
824 |
|
825 |
+
#: includes/builders/class-wpglobus-builder.php:465
|
826 |
msgid "Сompatibility Settings"
|
827 |
msgstr ""
|
828 |
|
885 |
msgstr "Tipul de selector"
|
886 |
|
887 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
888 |
+
#: includes/class-wpglobus.php:1299
|
889 |
msgid "OFF"
|
890 |
msgstr ""
|
891 |
|
892 |
+
#: includes/class-wpglobus.php:1300
|
893 |
msgid "Turn on"
|
894 |
msgstr ""
|
895 |
|
896 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
897 |
+
#: includes/class-wpglobus.php:1304
|
898 |
msgid "ON"
|
899 |
msgstr ""
|
900 |
|
901 |
+
#: includes/class-wpglobus.php:1305
|
902 |
msgid "Turn off"
|
903 |
msgstr ""
|
904 |
|
905 |
+
#: includes/class-wpglobus.php:1488
|
906 |
msgid "You cannot disable the main language."
|
907 |
msgstr "Nu puteți dezactiva limba principală."
|
908 |
|
909 |
+
#: includes/class-wpglobus.php:1689
|
910 |
msgid "*) Available after the menu is saved."
|
911 |
msgstr "*) Disponibil după ce meniul este salvat."
|
912 |
|
913 |
+
#: includes/class-wpglobus.php:1706
|
914 |
msgid "Need a multilingual slug?"
|
915 |
msgstr ""
|
916 |
|
917 |
+
#: includes/class-wpglobus.php:3994
|
918 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
919 |
msgstr "Trebuie să activezi Pretty Permalinks pentru a folosi WPGlobus."
|
920 |
|
921 |
+
#: includes/class-wpglobus.php:3996
|
922 |
msgid ""
|
923 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
924 |
"default option."
|
926 |
"Vă rugăm să mergeți la Setări> Permalinks> Setări comune și alegeți o "
|
927 |
"opțiune non-default."
|
928 |
|
929 |
+
#: includes/class-wpglobus.php:4142
|
930 |
msgid "Add"
|
931 |
msgstr "Adaugă"
|
932 |
|
1291 |
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1292 |
msgstr ""
|
1293 |
|
1294 |
+
#: includes/options/templates/compatibility.php:37
|
1295 |
msgid "List of supported add-ons"
|
1296 |
msgstr ""
|
1297 |
|
1298 |
+
#: includes/options/templates/compatibility.php:42
|
1299 |
msgid "Add-on"
|
1300 |
msgstr ""
|
1301 |
|
1302 |
+
#: includes/options/templates/compatibility.php:43
|
1303 |
msgid "Current version"
|
1304 |
msgstr ""
|
1305 |
|
1306 |
+
#: includes/options/templates/compatibility.php:44
|
1307 |
msgid "Supported minimum version"
|
1308 |
msgstr ""
|
1309 |
|
1310 |
+
#: includes/options/templates/compatibility.php:45
|
1311 |
msgid "Stage"
|
1312 |
msgstr ""
|
1313 |
|
1314 |
+
#: includes/options/templates/compatibility.php:46
|
1315 |
msgid "Status"
|
1316 |
msgstr ""
|
1317 |
|
1318 |
+
#: includes/options/templates/compatibility.php:59
|
1319 |
+
msgid "In core"
|
1320 |
+
msgstr ""
|
1321 |
+
|
1322 |
+
#: includes/options/templates/compatibility.php:71
|
1323 |
msgid "Active"
|
1324 |
msgstr ""
|
1325 |
|
1326 |
+
#: includes/options/templates/compatibility.php:73
|
1327 |
msgid "Installed, inactive"
|
1328 |
msgstr ""
|
1329 |
|
1330 |
+
#: includes/options/templates/compatibility.php:76
|
1331 |
msgid "Not installed"
|
1332 |
msgstr ""
|
1333 |
|
languages/wpglobus-ru_RU.mo
CHANGED
Binary file
|
languages/wpglobus-ru_RU.po
CHANGED
@@ -313,8 +313,8 @@ 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:
|
318 |
msgid "WPGlobus"
|
319 |
msgstr "WPGlobus"
|
320 |
|
@@ -865,7 +865,7 @@ msgid "To translate permalinks, please activate the module Slug."
|
|
865 |
msgstr "Для перевода ссылок необходимо активировать модуль УРЛ."
|
866 |
|
867 |
#: includes/builders/class-wpglobus-builder.php:358,
|
868 |
-
#: includes/class-wpglobus.php:
|
869 |
msgid "Save draft before using extra language."
|
870 |
msgstr "Сохраните черновик перед переключением на другой язык."
|
871 |
|
@@ -873,7 +873,7 @@ msgstr "Сохраните черновик перед переключение
|
|
873 |
msgid "Builder"
|
874 |
msgstr "Конструктор"
|
875 |
|
876 |
-
#: includes/builders/class-wpglobus-builder.php:
|
877 |
msgid "Сompatibility Settings"
|
878 |
msgstr "Настройки совместимости"
|
879 |
|
@@ -937,42 +937,42 @@ msgid "Selector type"
|
|
937 |
msgstr "Способ выбора языка"
|
938 |
|
939 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
940 |
-
#: includes/class-wpglobus.php:
|
941 |
msgid "OFF"
|
942 |
msgstr "ВЫКЛ"
|
943 |
|
944 |
-
#: includes/class-wpglobus.php:
|
945 |
msgid "Turn on"
|
946 |
msgstr "Включить"
|
947 |
|
948 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
949 |
-
#: includes/class-wpglobus.php:
|
950 |
msgid "ON"
|
951 |
msgstr "ВКЛ"
|
952 |
|
953 |
-
#: includes/class-wpglobus.php:
|
954 |
msgid "Turn off"
|
955 |
msgstr "Выключить"
|
956 |
|
957 |
-
#: includes/class-wpglobus.php:
|
958 |
msgid "You cannot disable the main language."
|
959 |
msgstr "Нельзя отключить основной язык."
|
960 |
|
961 |
-
#: includes/class-wpglobus.php:
|
962 |
msgid "*) Available after the menu is saved."
|
963 |
msgstr "*) Доступно после сохранения меню."
|
964 |
|
965 |
-
#: includes/class-wpglobus.php:
|
966 |
msgid "Need a multilingual slug?"
|
967 |
msgstr "Нужен мультиязычный ярлык?"
|
968 |
|
969 |
-
#: includes/class-wpglobus.php:
|
970 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
971 |
msgstr ""
|
972 |
"Чтобы использовать плагин WPGlobus, необходимо включить ЧПУ - постоянные "
|
973 |
"ссылки."
|
974 |
|
975 |
-
#: includes/class-wpglobus.php:
|
976 |
msgid ""
|
977 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
978 |
"default option."
|
@@ -980,7 +980,7 @@ msgstr ""
|
|
980 |
"Пожалуйста, перейдите в меню Настройки > Постоянные ссылки и поменяйте "
|
981 |
"структуру ссылок в разделе \"Общие настройки\"."
|
982 |
|
983 |
-
#: includes/class-wpglobus.php:
|
984 |
msgid "Add"
|
985 |
msgstr "Добавить"
|
986 |
|
@@ -1378,39 +1378,43 @@ msgstr "Не рекомендуется использовать на рабоч
|
|
1378 |
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1379 |
msgstr "О возникших проблемах сообщайте в %1$sслужбу поддержки%2$s."
|
1380 |
|
1381 |
-
#: includes/options/templates/compatibility.php:
|
1382 |
msgid "List of supported add-ons"
|
1383 |
msgstr "Список поддерживаемых расширений"
|
1384 |
|
1385 |
-
#: includes/options/templates/compatibility.php:
|
1386 |
msgid "Add-on"
|
1387 |
msgstr "Расширение"
|
1388 |
|
1389 |
-
#: includes/options/templates/compatibility.php:
|
1390 |
msgid "Current version"
|
1391 |
msgstr "Установленная версия"
|
1392 |
|
1393 |
-
#: includes/options/templates/compatibility.php:
|
1394 |
msgid "Supported minimum version"
|
1395 |
msgstr "Минимальная поддерживаемая версия"
|
1396 |
|
1397 |
-
#: includes/options/templates/compatibility.php:
|
1398 |
msgid "Stage"
|
1399 |
msgstr "Готовность"
|
1400 |
|
1401 |
-
#: includes/options/templates/compatibility.php:
|
1402 |
msgid "Status"
|
1403 |
msgstr "Статус"
|
1404 |
|
1405 |
-
#: includes/options/templates/compatibility.php:
|
|
|
|
|
|
|
|
|
1406 |
msgid "Active"
|
1407 |
msgstr "Активно"
|
1408 |
|
1409 |
-
#: includes/options/templates/compatibility.php:
|
1410 |
msgid "Installed, inactive"
|
1411 |
msgstr "Установлено, не активно"
|
1412 |
|
1413 |
-
#: includes/options/templates/compatibility.php:
|
1414 |
msgid "Not installed"
|
1415 |
msgstr "Не установлено"
|
1416 |
|
313 |
msgstr "Сохранить и перезагрузить"
|
314 |
|
315 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
316 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:316,
|
317 |
+
#: includes/class-wpglobus.php:1325, wpglobus.php:12, wpglobus.php:18
|
318 |
msgid "WPGlobus"
|
319 |
msgstr "WPGlobus"
|
320 |
|
865 |
msgstr "Для перевода ссылок необходимо активировать модуль УРЛ."
|
866 |
|
867 |
#: includes/builders/class-wpglobus-builder.php:358,
|
868 |
+
#: includes/class-wpglobus.php:3561
|
869 |
msgid "Save draft before using extra language."
|
870 |
msgstr "Сохраните черновик перед переключением на другой язык."
|
871 |
|
873 |
msgid "Builder"
|
874 |
msgstr "Конструктор"
|
875 |
|
876 |
+
#: includes/builders/class-wpglobus-builder.php:465
|
877 |
msgid "Сompatibility Settings"
|
878 |
msgstr "Настройки совместимости"
|
879 |
|
937 |
msgstr "Способ выбора языка"
|
938 |
|
939 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
940 |
+
#: includes/class-wpglobus.php:1299
|
941 |
msgid "OFF"
|
942 |
msgstr "ВЫКЛ"
|
943 |
|
944 |
+
#: includes/class-wpglobus.php:1300
|
945 |
msgid "Turn on"
|
946 |
msgstr "Включить"
|
947 |
|
948 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
949 |
+
#: includes/class-wpglobus.php:1304
|
950 |
msgid "ON"
|
951 |
msgstr "ВКЛ"
|
952 |
|
953 |
+
#: includes/class-wpglobus.php:1305
|
954 |
msgid "Turn off"
|
955 |
msgstr "Выключить"
|
956 |
|
957 |
+
#: includes/class-wpglobus.php:1488
|
958 |
msgid "You cannot disable the main language."
|
959 |
msgstr "Нельзя отключить основной язык."
|
960 |
|
961 |
+
#: includes/class-wpglobus.php:1689
|
962 |
msgid "*) Available after the menu is saved."
|
963 |
msgstr "*) Доступно после сохранения меню."
|
964 |
|
965 |
+
#: includes/class-wpglobus.php:1706
|
966 |
msgid "Need a multilingual slug?"
|
967 |
msgstr "Нужен мультиязычный ярлык?"
|
968 |
|
969 |
+
#: includes/class-wpglobus.php:3994
|
970 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
971 |
msgstr ""
|
972 |
"Чтобы использовать плагин WPGlobus, необходимо включить ЧПУ - постоянные "
|
973 |
"ссылки."
|
974 |
|
975 |
+
#: includes/class-wpglobus.php:3996
|
976 |
msgid ""
|
977 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
978 |
"default option."
|
980 |
"Пожалуйста, перейдите в меню Настройки > Постоянные ссылки и поменяйте "
|
981 |
"структуру ссылок в разделе \"Общие настройки\"."
|
982 |
|
983 |
+
#: includes/class-wpglobus.php:4142
|
984 |
msgid "Add"
|
985 |
msgstr "Добавить"
|
986 |
|
1378 |
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1379 |
msgstr "О возникших проблемах сообщайте в %1$sслужбу поддержки%2$s."
|
1380 |
|
1381 |
+
#: includes/options/templates/compatibility.php:37
|
1382 |
msgid "List of supported add-ons"
|
1383 |
msgstr "Список поддерживаемых расширений"
|
1384 |
|
1385 |
+
#: includes/options/templates/compatibility.php:42
|
1386 |
msgid "Add-on"
|
1387 |
msgstr "Расширение"
|
1388 |
|
1389 |
+
#: includes/options/templates/compatibility.php:43
|
1390 |
msgid "Current version"
|
1391 |
msgstr "Установленная версия"
|
1392 |
|
1393 |
+
#: includes/options/templates/compatibility.php:44
|
1394 |
msgid "Supported minimum version"
|
1395 |
msgstr "Минимальная поддерживаемая версия"
|
1396 |
|
1397 |
+
#: includes/options/templates/compatibility.php:45
|
1398 |
msgid "Stage"
|
1399 |
msgstr "Готовность"
|
1400 |
|
1401 |
+
#: includes/options/templates/compatibility.php:46
|
1402 |
msgid "Status"
|
1403 |
msgstr "Статус"
|
1404 |
|
1405 |
+
#: includes/options/templates/compatibility.php:59
|
1406 |
+
msgid "In core"
|
1407 |
+
msgstr "В ядре"
|
1408 |
+
|
1409 |
+
#: includes/options/templates/compatibility.php:71
|
1410 |
msgid "Active"
|
1411 |
msgstr "Активно"
|
1412 |
|
1413 |
+
#: includes/options/templates/compatibility.php:73
|
1414 |
msgid "Installed, inactive"
|
1415 |
msgstr "Установлено, не активно"
|
1416 |
|
1417 |
+
#: includes/options/templates/compatibility.php:76
|
1418 |
msgid "Not installed"
|
1419 |
msgstr "Не установлено"
|
1420 |
|
languages/wpglobus-sv_SE.po
CHANGED
@@ -280,8 +280,8 @@ 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:
|
285 |
msgid "WPGlobus"
|
286 |
msgstr ""
|
287 |
|
@@ -807,7 +807,7 @@ msgid "To translate permalinks, please activate the module Slug."
|
|
807 |
msgstr ""
|
808 |
|
809 |
#: includes/builders/class-wpglobus-builder.php:358,
|
810 |
-
#: includes/class-wpglobus.php:
|
811 |
msgid "Save draft before using extra language."
|
812 |
msgstr ""
|
813 |
|
@@ -815,7 +815,7 @@ msgstr ""
|
|
815 |
msgid "Builder"
|
816 |
msgstr ""
|
817 |
|
818 |
-
#: includes/builders/class-wpglobus-builder.php:
|
819 |
msgid "Сompatibility Settings"
|
820 |
msgstr ""
|
821 |
|
@@ -878,40 +878,40 @@ msgid "Selector type"
|
|
878 |
msgstr "Väljartyp"
|
879 |
|
880 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
881 |
-
#: includes/class-wpglobus.php:
|
882 |
msgid "OFF"
|
883 |
msgstr "AV"
|
884 |
|
885 |
-
#: includes/class-wpglobus.php:
|
886 |
msgid "Turn on"
|
887 |
msgstr ""
|
888 |
|
889 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
890 |
-
#: includes/class-wpglobus.php:
|
891 |
msgid "ON"
|
892 |
msgstr "PÅ"
|
893 |
|
894 |
-
#: includes/class-wpglobus.php:
|
895 |
msgid "Turn off"
|
896 |
msgstr ""
|
897 |
|
898 |
-
#: includes/class-wpglobus.php:
|
899 |
msgid "You cannot disable the main language."
|
900 |
msgstr "Du kan inte stänga av huvudspråk."
|
901 |
|
902 |
-
#: includes/class-wpglobus.php:
|
903 |
msgid "*) Available after the menu is saved."
|
904 |
msgstr "*) Tillgängligt när menyn sparats."
|
905 |
|
906 |
-
#: includes/class-wpglobus.php:
|
907 |
msgid "Need a multilingual slug?"
|
908 |
msgstr ""
|
909 |
|
910 |
-
#: includes/class-wpglobus.php:
|
911 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
912 |
msgstr "Du måste aktivera Vackra Permalänkar för att använda WPGlobus."
|
913 |
|
914 |
-
#: includes/class-wpglobus.php:
|
915 |
msgid ""
|
916 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
917 |
"default option."
|
@@ -919,7 +919,7 @@ msgstr ""
|
|
919 |
"Gå till Inställningar> Permalänkar> Vanliga inställningar och välj ett icke-"
|
920 |
"standardalternativet."
|
921 |
|
922 |
-
#: includes/class-wpglobus.php:
|
923 |
msgid "Add"
|
924 |
msgstr "Lägg till"
|
925 |
|
@@ -1283,39 +1283,43 @@ msgstr ""
|
|
1283 |
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1284 |
msgstr ""
|
1285 |
|
1286 |
-
#: includes/options/templates/compatibility.php:
|
1287 |
msgid "List of supported add-ons"
|
1288 |
msgstr ""
|
1289 |
|
1290 |
-
#: includes/options/templates/compatibility.php:
|
1291 |
msgid "Add-on"
|
1292 |
msgstr ""
|
1293 |
|
1294 |
-
#: includes/options/templates/compatibility.php:
|
1295 |
msgid "Current version"
|
1296 |
msgstr ""
|
1297 |
|
1298 |
-
#: includes/options/templates/compatibility.php:
|
1299 |
msgid "Supported minimum version"
|
1300 |
msgstr ""
|
1301 |
|
1302 |
-
#: includes/options/templates/compatibility.php:
|
1303 |
msgid "Stage"
|
1304 |
msgstr ""
|
1305 |
|
1306 |
-
#: includes/options/templates/compatibility.php:
|
1307 |
msgid "Status"
|
1308 |
msgstr ""
|
1309 |
|
1310 |
-
#: includes/options/templates/compatibility.php:
|
|
|
|
|
|
|
|
|
1311 |
msgid "Active"
|
1312 |
msgstr ""
|
1313 |
|
1314 |
-
#: includes/options/templates/compatibility.php:
|
1315 |
msgid "Installed, inactive"
|
1316 |
msgstr ""
|
1317 |
|
1318 |
-
#: includes/options/templates/compatibility.php:
|
1319 |
msgid "Not installed"
|
1320 |
msgstr ""
|
1321 |
|
280 |
msgstr ""
|
281 |
|
282 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
283 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:316,
|
284 |
+
#: includes/class-wpglobus.php:1325, wpglobus.php:12, wpglobus.php:18
|
285 |
msgid "WPGlobus"
|
286 |
msgstr ""
|
287 |
|
807 |
msgstr ""
|
808 |
|
809 |
#: includes/builders/class-wpglobus-builder.php:358,
|
810 |
+
#: includes/class-wpglobus.php:3561
|
811 |
msgid "Save draft before using extra language."
|
812 |
msgstr ""
|
813 |
|
815 |
msgid "Builder"
|
816 |
msgstr ""
|
817 |
|
818 |
+
#: includes/builders/class-wpglobus-builder.php:465
|
819 |
msgid "Сompatibility Settings"
|
820 |
msgstr ""
|
821 |
|
878 |
msgstr "Väljartyp"
|
879 |
|
880 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
881 |
+
#: includes/class-wpglobus.php:1299
|
882 |
msgid "OFF"
|
883 |
msgstr "AV"
|
884 |
|
885 |
+
#: includes/class-wpglobus.php:1300
|
886 |
msgid "Turn on"
|
887 |
msgstr ""
|
888 |
|
889 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
890 |
+
#: includes/class-wpglobus.php:1304
|
891 |
msgid "ON"
|
892 |
msgstr "PÅ"
|
893 |
|
894 |
+
#: includes/class-wpglobus.php:1305
|
895 |
msgid "Turn off"
|
896 |
msgstr ""
|
897 |
|
898 |
+
#: includes/class-wpglobus.php:1488
|
899 |
msgid "You cannot disable the main language."
|
900 |
msgstr "Du kan inte stänga av huvudspråk."
|
901 |
|
902 |
+
#: includes/class-wpglobus.php:1689
|
903 |
msgid "*) Available after the menu is saved."
|
904 |
msgstr "*) Tillgängligt när menyn sparats."
|
905 |
|
906 |
+
#: includes/class-wpglobus.php:1706
|
907 |
msgid "Need a multilingual slug?"
|
908 |
msgstr ""
|
909 |
|
910 |
+
#: includes/class-wpglobus.php:3994
|
911 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
912 |
msgstr "Du måste aktivera Vackra Permalänkar för att använda WPGlobus."
|
913 |
|
914 |
+
#: includes/class-wpglobus.php:3996
|
915 |
msgid ""
|
916 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
917 |
"default option."
|
919 |
"Gå till Inställningar> Permalänkar> Vanliga inställningar och välj ett icke-"
|
920 |
"standardalternativet."
|
921 |
|
922 |
+
#: includes/class-wpglobus.php:4142
|
923 |
msgid "Add"
|
924 |
msgstr "Lägg till"
|
925 |
|
1283 |
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1284 |
msgstr ""
|
1285 |
|
1286 |
+
#: includes/options/templates/compatibility.php:37
|
1287 |
msgid "List of supported add-ons"
|
1288 |
msgstr ""
|
1289 |
|
1290 |
+
#: includes/options/templates/compatibility.php:42
|
1291 |
msgid "Add-on"
|
1292 |
msgstr ""
|
1293 |
|
1294 |
+
#: includes/options/templates/compatibility.php:43
|
1295 |
msgid "Current version"
|
1296 |
msgstr ""
|
1297 |
|
1298 |
+
#: includes/options/templates/compatibility.php:44
|
1299 |
msgid "Supported minimum version"
|
1300 |
msgstr ""
|
1301 |
|
1302 |
+
#: includes/options/templates/compatibility.php:45
|
1303 |
msgid "Stage"
|
1304 |
msgstr ""
|
1305 |
|
1306 |
+
#: includes/options/templates/compatibility.php:46
|
1307 |
msgid "Status"
|
1308 |
msgstr ""
|
1309 |
|
1310 |
+
#: includes/options/templates/compatibility.php:59
|
1311 |
+
msgid "In core"
|
1312 |
+
msgstr ""
|
1313 |
+
|
1314 |
+
#: includes/options/templates/compatibility.php:71
|
1315 |
msgid "Active"
|
1316 |
msgstr ""
|
1317 |
|
1318 |
+
#: includes/options/templates/compatibility.php:73
|
1319 |
msgid "Installed, inactive"
|
1320 |
msgstr ""
|
1321 |
|
1322 |
+
#: includes/options/templates/compatibility.php:76
|
1323 |
msgid "Not installed"
|
1324 |
msgstr ""
|
1325 |
|
languages/wpglobus-tr_TR.po
CHANGED
@@ -282,8 +282,8 @@ 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:
|
287 |
msgid "WPGlobus"
|
288 |
msgstr ""
|
289 |
|
@@ -810,7 +810,7 @@ msgid "To translate permalinks, please activate the module Slug."
|
|
810 |
msgstr ""
|
811 |
|
812 |
#: includes/builders/class-wpglobus-builder.php:358,
|
813 |
-
#: includes/class-wpglobus.php:
|
814 |
msgid "Save draft before using extra language."
|
815 |
msgstr ""
|
816 |
|
@@ -818,7 +818,7 @@ msgstr ""
|
|
818 |
msgid "Builder"
|
819 |
msgstr ""
|
820 |
|
821 |
-
#: includes/builders/class-wpglobus-builder.php:
|
822 |
msgid "Сompatibility Settings"
|
823 |
msgstr ""
|
824 |
|
@@ -881,41 +881,41 @@ msgid "Selector type"
|
|
881 |
msgstr "Değiştirici tipi"
|
882 |
|
883 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
884 |
-
#: includes/class-wpglobus.php:
|
885 |
msgid "OFF"
|
886 |
msgstr "KAPALI"
|
887 |
|
888 |
-
#: includes/class-wpglobus.php:
|
889 |
msgid "Turn on"
|
890 |
msgstr ""
|
891 |
|
892 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
893 |
-
#: includes/class-wpglobus.php:
|
894 |
msgid "ON"
|
895 |
msgstr "AÇIK"
|
896 |
|
897 |
-
#: includes/class-wpglobus.php:
|
898 |
msgid "Turn off"
|
899 |
msgstr ""
|
900 |
|
901 |
-
#: includes/class-wpglobus.php:
|
902 |
msgid "You cannot disable the main language."
|
903 |
msgstr "Asıl dili etkisizleştiremezsiniz."
|
904 |
|
905 |
-
#: includes/class-wpglobus.php:
|
906 |
msgid "*) Available after the menu is saved."
|
907 |
msgstr "*) Menü kaydedildikten sonra kullanılabilir."
|
908 |
|
909 |
-
#: includes/class-wpglobus.php:
|
910 |
msgid "Need a multilingual slug?"
|
911 |
msgstr ""
|
912 |
|
913 |
-
#: includes/class-wpglobus.php:
|
914 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
915 |
msgstr ""
|
916 |
"WPGlobus' u kullanabilmek için Pretty Permalinks' i etkinleştirmelisiniz."
|
917 |
|
918 |
-
#: includes/class-wpglobus.php:
|
919 |
msgid ""
|
920 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
921 |
"default option."
|
@@ -923,7 +923,7 @@ msgstr ""
|
|
923 |
"Varsayılan olmayan bir seçeneği seçmek için lütfen Ayarlar>Kalıcı "
|
924 |
"Bağlantılar>Genel Ayarlar' a gidin."
|
925 |
|
926 |
-
#: includes/class-wpglobus.php:
|
927 |
msgid "Add"
|
928 |
msgstr "Ekle"
|
929 |
|
@@ -1287,39 +1287,43 @@ msgstr ""
|
|
1287 |
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1288 |
msgstr ""
|
1289 |
|
1290 |
-
#: includes/options/templates/compatibility.php:
|
1291 |
msgid "List of supported add-ons"
|
1292 |
msgstr ""
|
1293 |
|
1294 |
-
#: includes/options/templates/compatibility.php:
|
1295 |
msgid "Add-on"
|
1296 |
msgstr ""
|
1297 |
|
1298 |
-
#: includes/options/templates/compatibility.php:
|
1299 |
msgid "Current version"
|
1300 |
msgstr ""
|
1301 |
|
1302 |
-
#: includes/options/templates/compatibility.php:
|
1303 |
msgid "Supported minimum version"
|
1304 |
msgstr ""
|
1305 |
|
1306 |
-
#: includes/options/templates/compatibility.php:
|
1307 |
msgid "Stage"
|
1308 |
msgstr ""
|
1309 |
|
1310 |
-
#: includes/options/templates/compatibility.php:
|
1311 |
msgid "Status"
|
1312 |
msgstr ""
|
1313 |
|
1314 |
-
#: includes/options/templates/compatibility.php:
|
|
|
|
|
|
|
|
|
1315 |
msgid "Active"
|
1316 |
msgstr ""
|
1317 |
|
1318 |
-
#: includes/options/templates/compatibility.php:
|
1319 |
msgid "Installed, inactive"
|
1320 |
msgstr ""
|
1321 |
|
1322 |
-
#: includes/options/templates/compatibility.php:
|
1323 |
msgid "Not installed"
|
1324 |
msgstr ""
|
1325 |
|
282 |
msgstr ""
|
283 |
|
284 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
285 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:316,
|
286 |
+
#: includes/class-wpglobus.php:1325, wpglobus.php:12, wpglobus.php:18
|
287 |
msgid "WPGlobus"
|
288 |
msgstr ""
|
289 |
|
810 |
msgstr ""
|
811 |
|
812 |
#: includes/builders/class-wpglobus-builder.php:358,
|
813 |
+
#: includes/class-wpglobus.php:3561
|
814 |
msgid "Save draft before using extra language."
|
815 |
msgstr ""
|
816 |
|
818 |
msgid "Builder"
|
819 |
msgstr ""
|
820 |
|
821 |
+
#: includes/builders/class-wpglobus-builder.php:465
|
822 |
msgid "Сompatibility Settings"
|
823 |
msgstr ""
|
824 |
|
881 |
msgstr "Değiştirici tipi"
|
882 |
|
883 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
884 |
+
#: includes/class-wpglobus.php:1299
|
885 |
msgid "OFF"
|
886 |
msgstr "KAPALI"
|
887 |
|
888 |
+
#: includes/class-wpglobus.php:1300
|
889 |
msgid "Turn on"
|
890 |
msgstr ""
|
891 |
|
892 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
893 |
+
#: includes/class-wpglobus.php:1304
|
894 |
msgid "ON"
|
895 |
msgstr "AÇIK"
|
896 |
|
897 |
+
#: includes/class-wpglobus.php:1305
|
898 |
msgid "Turn off"
|
899 |
msgstr ""
|
900 |
|
901 |
+
#: includes/class-wpglobus.php:1488
|
902 |
msgid "You cannot disable the main language."
|
903 |
msgstr "Asıl dili etkisizleştiremezsiniz."
|
904 |
|
905 |
+
#: includes/class-wpglobus.php:1689
|
906 |
msgid "*) Available after the menu is saved."
|
907 |
msgstr "*) Menü kaydedildikten sonra kullanılabilir."
|
908 |
|
909 |
+
#: includes/class-wpglobus.php:1706
|
910 |
msgid "Need a multilingual slug?"
|
911 |
msgstr ""
|
912 |
|
913 |
+
#: includes/class-wpglobus.php:3994
|
914 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
915 |
msgstr ""
|
916 |
"WPGlobus' u kullanabilmek için Pretty Permalinks' i etkinleştirmelisiniz."
|
917 |
|
918 |
+
#: includes/class-wpglobus.php:3996
|
919 |
msgid ""
|
920 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
921 |
"default option."
|
923 |
"Varsayılan olmayan bir seçeneği seçmek için lütfen Ayarlar>Kalıcı "
|
924 |
"Bağlantılar>Genel Ayarlar' a gidin."
|
925 |
|
926 |
+
#: includes/class-wpglobus.php:4142
|
927 |
msgid "Add"
|
928 |
msgstr "Ekle"
|
929 |
|
1287 |
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1288 |
msgstr ""
|
1289 |
|
1290 |
+
#: includes/options/templates/compatibility.php:37
|
1291 |
msgid "List of supported add-ons"
|
1292 |
msgstr ""
|
1293 |
|
1294 |
+
#: includes/options/templates/compatibility.php:42
|
1295 |
msgid "Add-on"
|
1296 |
msgstr ""
|
1297 |
|
1298 |
+
#: includes/options/templates/compatibility.php:43
|
1299 |
msgid "Current version"
|
1300 |
msgstr ""
|
1301 |
|
1302 |
+
#: includes/options/templates/compatibility.php:44
|
1303 |
msgid "Supported minimum version"
|
1304 |
msgstr ""
|
1305 |
|
1306 |
+
#: includes/options/templates/compatibility.php:45
|
1307 |
msgid "Stage"
|
1308 |
msgstr ""
|
1309 |
|
1310 |
+
#: includes/options/templates/compatibility.php:46
|
1311 |
msgid "Status"
|
1312 |
msgstr ""
|
1313 |
|
1314 |
+
#: includes/options/templates/compatibility.php:59
|
1315 |
+
msgid "In core"
|
1316 |
+
msgstr ""
|
1317 |
+
|
1318 |
+
#: includes/options/templates/compatibility.php:71
|
1319 |
msgid "Active"
|
1320 |
msgstr ""
|
1321 |
|
1322 |
+
#: includes/options/templates/compatibility.php:73
|
1323 |
msgid "Installed, inactive"
|
1324 |
msgstr ""
|
1325 |
|
1326 |
+
#: includes/options/templates/compatibility.php:76
|
1327 |
msgid "Not installed"
|
1328 |
msgstr ""
|
1329 |
|
languages/wpglobus-uk.po
CHANGED
@@ -299,8 +299,8 @@ 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:
|
304 |
msgid "WPGlobus"
|
305 |
msgstr "WPGlobus"
|
306 |
|
@@ -840,7 +840,7 @@ msgid "To translate permalinks, please activate the module Slug."
|
|
840 |
msgstr ""
|
841 |
|
842 |
#: includes/builders/class-wpglobus-builder.php:358,
|
843 |
-
#: includes/class-wpglobus.php:
|
844 |
msgid "Save draft before using extra language."
|
845 |
msgstr ""
|
846 |
|
@@ -848,7 +848,7 @@ msgstr ""
|
|
848 |
msgid "Builder"
|
849 |
msgstr ""
|
850 |
|
851 |
-
#: includes/builders/class-wpglobus-builder.php:
|
852 |
msgid "Сompatibility Settings"
|
853 |
msgstr ""
|
854 |
|
@@ -911,42 +911,42 @@ msgid "Selector type"
|
|
911 |
msgstr "Спосіб выбору мови"
|
912 |
|
913 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
914 |
-
#: includes/class-wpglobus.php:
|
915 |
msgid "OFF"
|
916 |
msgstr ""
|
917 |
|
918 |
-
#: includes/class-wpglobus.php:
|
919 |
msgid "Turn on"
|
920 |
msgstr ""
|
921 |
|
922 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
923 |
-
#: includes/class-wpglobus.php:
|
924 |
msgid "ON"
|
925 |
msgstr ""
|
926 |
|
927 |
-
#: includes/class-wpglobus.php:
|
928 |
msgid "Turn off"
|
929 |
msgstr ""
|
930 |
|
931 |
-
#: includes/class-wpglobus.php:
|
932 |
msgid "You cannot disable the main language."
|
933 |
msgstr "Неможна відключити головну мову."
|
934 |
|
935 |
-
#: includes/class-wpglobus.php:
|
936 |
msgid "*) Available after the menu is saved."
|
937 |
msgstr "*) Доступно після збереження меню."
|
938 |
|
939 |
-
#: includes/class-wpglobus.php:
|
940 |
msgid "Need a multilingual slug?"
|
941 |
msgstr ""
|
942 |
|
943 |
-
#: includes/class-wpglobus.php:
|
944 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
945 |
msgstr ""
|
946 |
"Щоб використовувати плагін WPGlobus, необхідно увімкнути SEF URLs - постійні "
|
947 |
"посилання."
|
948 |
|
949 |
-
#: includes/class-wpglobus.php:
|
950 |
msgid ""
|
951 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
952 |
"default option."
|
@@ -954,7 +954,7 @@ msgstr ""
|
|
954 |
"Будь-ласка, перейдіть в меню налаштування > Постійні посилання і змініть "
|
955 |
"структуру посилань в розділі \"Загальні налаштування\"."
|
956 |
|
957 |
-
#: includes/class-wpglobus.php:
|
958 |
msgid "Add"
|
959 |
msgstr "Додати"
|
960 |
|
@@ -1319,39 +1319,43 @@ msgstr ""
|
|
1319 |
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1320 |
msgstr ""
|
1321 |
|
1322 |
-
#: includes/options/templates/compatibility.php:
|
1323 |
msgid "List of supported add-ons"
|
1324 |
msgstr ""
|
1325 |
|
1326 |
-
#: includes/options/templates/compatibility.php:
|
1327 |
msgid "Add-on"
|
1328 |
msgstr ""
|
1329 |
|
1330 |
-
#: includes/options/templates/compatibility.php:
|
1331 |
msgid "Current version"
|
1332 |
msgstr ""
|
1333 |
|
1334 |
-
#: includes/options/templates/compatibility.php:
|
1335 |
msgid "Supported minimum version"
|
1336 |
msgstr ""
|
1337 |
|
1338 |
-
#: includes/options/templates/compatibility.php:
|
1339 |
msgid "Stage"
|
1340 |
msgstr ""
|
1341 |
|
1342 |
-
#: includes/options/templates/compatibility.php:
|
1343 |
msgid "Status"
|
1344 |
msgstr ""
|
1345 |
|
1346 |
-
#: includes/options/templates/compatibility.php:
|
|
|
|
|
|
|
|
|
1347 |
msgid "Active"
|
1348 |
msgstr ""
|
1349 |
|
1350 |
-
#: includes/options/templates/compatibility.php:
|
1351 |
msgid "Installed, inactive"
|
1352 |
msgstr ""
|
1353 |
|
1354 |
-
#: includes/options/templates/compatibility.php:
|
1355 |
msgid "Not installed"
|
1356 |
msgstr ""
|
1357 |
|
299 |
msgstr "Зберегти та перезавантажити"
|
300 |
|
301 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
302 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:316,
|
303 |
+
#: includes/class-wpglobus.php:1325, wpglobus.php:12, wpglobus.php:18
|
304 |
msgid "WPGlobus"
|
305 |
msgstr "WPGlobus"
|
306 |
|
840 |
msgstr ""
|
841 |
|
842 |
#: includes/builders/class-wpglobus-builder.php:358,
|
843 |
+
#: includes/class-wpglobus.php:3561
|
844 |
msgid "Save draft before using extra language."
|
845 |
msgstr ""
|
846 |
|
848 |
msgid "Builder"
|
849 |
msgstr ""
|
850 |
|
851 |
+
#: includes/builders/class-wpglobus-builder.php:465
|
852 |
msgid "Сompatibility Settings"
|
853 |
msgstr ""
|
854 |
|
911 |
msgstr "Спосіб выбору мови"
|
912 |
|
913 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
914 |
+
#: includes/class-wpglobus.php:1299
|
915 |
msgid "OFF"
|
916 |
msgstr ""
|
917 |
|
918 |
+
#: includes/class-wpglobus.php:1300
|
919 |
msgid "Turn on"
|
920 |
msgstr ""
|
921 |
|
922 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
923 |
+
#: includes/class-wpglobus.php:1304
|
924 |
msgid "ON"
|
925 |
msgstr ""
|
926 |
|
927 |
+
#: includes/class-wpglobus.php:1305
|
928 |
msgid "Turn off"
|
929 |
msgstr ""
|
930 |
|
931 |
+
#: includes/class-wpglobus.php:1488
|
932 |
msgid "You cannot disable the main language."
|
933 |
msgstr "Неможна відключити головну мову."
|
934 |
|
935 |
+
#: includes/class-wpglobus.php:1689
|
936 |
msgid "*) Available after the menu is saved."
|
937 |
msgstr "*) Доступно після збереження меню."
|
938 |
|
939 |
+
#: includes/class-wpglobus.php:1706
|
940 |
msgid "Need a multilingual slug?"
|
941 |
msgstr ""
|
942 |
|
943 |
+
#: includes/class-wpglobus.php:3994
|
944 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
945 |
msgstr ""
|
946 |
"Щоб використовувати плагін WPGlobus, необхідно увімкнути SEF URLs - постійні "
|
947 |
"посилання."
|
948 |
|
949 |
+
#: includes/class-wpglobus.php:3996
|
950 |
msgid ""
|
951 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
952 |
"default option."
|
954 |
"Будь-ласка, перейдіть в меню налаштування > Постійні посилання і змініть "
|
955 |
"структуру посилань в розділі \"Загальні налаштування\"."
|
956 |
|
957 |
+
#: includes/class-wpglobus.php:4142
|
958 |
msgid "Add"
|
959 |
msgstr "Додати"
|
960 |
|
1319 |
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1320 |
msgstr ""
|
1321 |
|
1322 |
+
#: includes/options/templates/compatibility.php:37
|
1323 |
msgid "List of supported add-ons"
|
1324 |
msgstr ""
|
1325 |
|
1326 |
+
#: includes/options/templates/compatibility.php:42
|
1327 |
msgid "Add-on"
|
1328 |
msgstr ""
|
1329 |
|
1330 |
+
#: includes/options/templates/compatibility.php:43
|
1331 |
msgid "Current version"
|
1332 |
msgstr ""
|
1333 |
|
1334 |
+
#: includes/options/templates/compatibility.php:44
|
1335 |
msgid "Supported minimum version"
|
1336 |
msgstr ""
|
1337 |
|
1338 |
+
#: includes/options/templates/compatibility.php:45
|
1339 |
msgid "Stage"
|
1340 |
msgstr ""
|
1341 |
|
1342 |
+
#: includes/options/templates/compatibility.php:46
|
1343 |
msgid "Status"
|
1344 |
msgstr ""
|
1345 |
|
1346 |
+
#: includes/options/templates/compatibility.php:59
|
1347 |
+
msgid "In core"
|
1348 |
+
msgstr ""
|
1349 |
+
|
1350 |
+
#: includes/options/templates/compatibility.php:71
|
1351 |
msgid "Active"
|
1352 |
msgstr ""
|
1353 |
|
1354 |
+
#: includes/options/templates/compatibility.php:73
|
1355 |
msgid "Installed, inactive"
|
1356 |
msgstr ""
|
1357 |
|
1358 |
+
#: includes/options/templates/compatibility.php:76
|
1359 |
msgid "Not installed"
|
1360 |
msgstr ""
|
1361 |
|
languages/wpglobus.pot
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
-
# Copyright (C) 2018 WPGlobus
|
2 |
-
# This file is distributed under the same license as the WPGlobus
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: WPGlobus
|
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 |
|
@@ -635,7 +635,7 @@ msgstr ""
|
|
635 |
msgid "To translate permalinks, please activate the module Slug."
|
636 |
msgstr ""
|
637 |
|
638 |
-
#: includes/builders/class-wpglobus-builder.php:358, includes/class-wpglobus.php:
|
639 |
msgid "Save draft before using extra language."
|
640 |
msgstr ""
|
641 |
|
@@ -643,7 +643,7 @@ msgstr ""
|
|
643 |
msgid "Builder"
|
644 |
msgstr ""
|
645 |
|
646 |
-
#: includes/builders/class-wpglobus-builder.php:
|
647 |
msgid "Сompatibility Settings"
|
648 |
msgstr ""
|
649 |
|
@@ -706,44 +706,44 @@ msgid "Selector type"
|
|
706 |
msgstr ""
|
707 |
|
708 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
709 |
-
#: includes/class-wpglobus.php:
|
710 |
msgid "OFF"
|
711 |
msgstr ""
|
712 |
|
713 |
-
#: includes/class-wpglobus.php:
|
714 |
msgid "Turn on"
|
715 |
msgstr ""
|
716 |
|
717 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
718 |
-
#: includes/class-wpglobus.php:
|
719 |
msgid "ON"
|
720 |
msgstr ""
|
721 |
|
722 |
-
#: includes/class-wpglobus.php:
|
723 |
msgid "Turn off"
|
724 |
msgstr ""
|
725 |
|
726 |
-
#: includes/class-wpglobus.php:
|
727 |
msgid "You cannot disable the main language."
|
728 |
msgstr ""
|
729 |
|
730 |
-
#: includes/class-wpglobus.php:
|
731 |
msgid "*) Available after the menu is saved."
|
732 |
msgstr ""
|
733 |
|
734 |
-
#: includes/class-wpglobus.php:
|
735 |
msgid "Need a multilingual slug?"
|
736 |
msgstr ""
|
737 |
|
738 |
-
#: includes/class-wpglobus.php:
|
739 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
740 |
msgstr ""
|
741 |
|
742 |
-
#: includes/class-wpglobus.php:
|
743 |
msgid "Please go to Settings > Permalinks > Common Settings and choose a non-default option."
|
744 |
msgstr ""
|
745 |
|
746 |
-
#: includes/class-wpglobus.php:
|
747 |
msgid "Add"
|
748 |
msgstr ""
|
749 |
|
@@ -1066,39 +1066,43 @@ msgstr ""
|
|
1066 |
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1067 |
msgstr ""
|
1068 |
|
1069 |
-
#: includes/options/templates/compatibility.php:
|
1070 |
msgid "List of supported add-ons"
|
1071 |
msgstr ""
|
1072 |
|
1073 |
-
#: includes/options/templates/compatibility.php:
|
1074 |
msgid "Add-on"
|
1075 |
msgstr ""
|
1076 |
|
1077 |
-
#: includes/options/templates/compatibility.php:
|
1078 |
msgid "Current version"
|
1079 |
msgstr ""
|
1080 |
|
1081 |
-
#: includes/options/templates/compatibility.php:
|
1082 |
msgid "Supported minimum version"
|
1083 |
msgstr ""
|
1084 |
|
1085 |
-
#: includes/options/templates/compatibility.php:
|
1086 |
msgid "Stage"
|
1087 |
msgstr ""
|
1088 |
|
1089 |
-
#: includes/options/templates/compatibility.php:
|
1090 |
msgid "Status"
|
1091 |
msgstr ""
|
1092 |
|
1093 |
-
#: includes/options/templates/compatibility.php:
|
|
|
|
|
|
|
|
|
1094 |
msgid "Active"
|
1095 |
msgstr ""
|
1096 |
|
1097 |
-
#: includes/options/templates/compatibility.php:
|
1098 |
msgid "Installed, inactive"
|
1099 |
msgstr ""
|
1100 |
|
1101 |
-
#: includes/options/templates/compatibility.php:
|
1102 |
msgid "Not installed"
|
1103 |
msgstr ""
|
1104 |
|
1 |
+
# Copyright (C) 2018 WPGlobus 2.0.0
|
2 |
+
# This file is distributed under the same license as the WPGlobus 2.0.0 package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: WPGlobus 2.0.0\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:316, includes/class-wpglobus.php:1325, wpglobus.php:12, wpglobus.php:18
|
201 |
msgid "WPGlobus"
|
202 |
msgstr ""
|
203 |
|
635 |
msgid "To translate permalinks, please activate the module Slug."
|
636 |
msgstr ""
|
637 |
|
638 |
+
#: includes/builders/class-wpglobus-builder.php:358, includes/class-wpglobus.php:3561
|
639 |
msgid "Save draft before using extra language."
|
640 |
msgstr ""
|
641 |
|
643 |
msgid "Builder"
|
644 |
msgstr ""
|
645 |
|
646 |
+
#: includes/builders/class-wpglobus-builder.php:465
|
647 |
msgid "Сompatibility Settings"
|
648 |
msgstr ""
|
649 |
|
706 |
msgstr ""
|
707 |
|
708 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
709 |
+
#: includes/class-wpglobus.php:1299
|
710 |
msgid "OFF"
|
711 |
msgstr ""
|
712 |
|
713 |
+
#: includes/class-wpglobus.php:1300
|
714 |
msgid "Turn on"
|
715 |
msgstr ""
|
716 |
|
717 |
#. translators: ON/OFF status of WPGlobus on the edit pages.
|
718 |
+
#: includes/class-wpglobus.php:1304
|
719 |
msgid "ON"
|
720 |
msgstr ""
|
721 |
|
722 |
+
#: includes/class-wpglobus.php:1305
|
723 |
msgid "Turn off"
|
724 |
msgstr ""
|
725 |
|
726 |
+
#: includes/class-wpglobus.php:1488
|
727 |
msgid "You cannot disable the main language."
|
728 |
msgstr ""
|
729 |
|
730 |
+
#: includes/class-wpglobus.php:1689
|
731 |
msgid "*) Available after the menu is saved."
|
732 |
msgstr ""
|
733 |
|
734 |
+
#: includes/class-wpglobus.php:1706
|
735 |
msgid "Need a multilingual slug?"
|
736 |
msgstr ""
|
737 |
|
738 |
+
#: includes/class-wpglobus.php:3994
|
739 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
740 |
msgstr ""
|
741 |
|
742 |
+
#: includes/class-wpglobus.php:3996
|
743 |
msgid "Please go to Settings > Permalinks > Common Settings and choose a non-default option."
|
744 |
msgstr ""
|
745 |
|
746 |
+
#: includes/class-wpglobus.php:4142
|
747 |
msgid "Add"
|
748 |
msgstr ""
|
749 |
|
1066 |
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1067 |
msgstr ""
|
1068 |
|
1069 |
+
#: includes/options/templates/compatibility.php:37
|
1070 |
msgid "List of supported add-ons"
|
1071 |
msgstr ""
|
1072 |
|
1073 |
+
#: includes/options/templates/compatibility.php:42
|
1074 |
msgid "Add-on"
|
1075 |
msgstr ""
|
1076 |
|
1077 |
+
#: includes/options/templates/compatibility.php:43
|
1078 |
msgid "Current version"
|
1079 |
msgstr ""
|
1080 |
|
1081 |
+
#: includes/options/templates/compatibility.php:44
|
1082 |
msgid "Supported minimum version"
|
1083 |
msgstr ""
|
1084 |
|
1085 |
+
#: includes/options/templates/compatibility.php:45
|
1086 |
msgid "Stage"
|
1087 |
msgstr ""
|
1088 |
|
1089 |
+
#: includes/options/templates/compatibility.php:46
|
1090 |
msgid "Status"
|
1091 |
msgstr ""
|
1092 |
|
1093 |
+
#: includes/options/templates/compatibility.php:59
|
1094 |
+
msgid "In core"
|
1095 |
+
msgstr ""
|
1096 |
+
|
1097 |
+
#: includes/options/templates/compatibility.php:71
|
1098 |
msgid "Active"
|
1099 |
msgstr ""
|
1100 |
|
1101 |
+
#: includes/options/templates/compatibility.php:73
|
1102 |
msgid "Installed, inactive"
|
1103 |
msgstr ""
|
1104 |
|
1105 |
+
#: includes/options/templates/compatibility.php:76
|
1106 |
msgid "Not installed"
|
1107 |
msgstr ""
|
1108 |
|
readme.txt
CHANGED
@@ -2,9 +2,9 @@
|
|
2 |
Contributors: tivnetinc, alexgff, tivnet
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=SLF8M4YNZHNQN
|
4 |
Tags: WPGlobus, localization, multilanguage, multilingual, translate
|
5 |
-
Requires at least: 4.
|
6 |
-
Tested up to:
|
7 |
-
Requires PHP: 5.
|
8 |
Stable tag: trunk
|
9 |
License: GPL-3.0-or-later
|
10 |
License URI: https://spdx.org/licenses/GPL-3.0-or-later.html
|
@@ -71,7 +71,7 @@ The WPGlobus plugin serves as the **foundation** to other plugins in the family.
|
|
71 |
For more details, please check out the descriptions of each paid add-on on our website:
|
72 |
|
73 |
* [WooCommerce WPGlobus](https://wpglobus.com/product/woocommerce-wpglobus/): adds multilingual capabilities to WooCommerce-based online stores.
|
74 |
-
* [WPGlobus Plus](https://wpglobus.com/product/wpglobus-plus/): adds URL fine-tuning, publishing status per translation, multilingual Yoast SEO analysis and more.
|
75 |
* [WPGlobus Language Widgets](https://wpglobus.com/product/wpglobus-language-widget/): Multilingual widget logic: show and hide widget depending on the current language.
|
76 |
* [WPGlobus Header Images](https://wpglobus.com/product/wpglobus-header-images/): Display different header images per language. Show images depending on the settings in the Customizer.
|
77 |
* [WPGlobus Menu Visibility](https://wpglobus.com/product/wpglobus-menu-visibility/): Show or hide menu items depending on the current language.
|
@@ -102,7 +102,7 @@ We have checked WPGlobus together with many plugins, including:
|
|
102 |
* WPBakery Page Builder for WordPress (formerly Visual Composer),
|
103 |
* Whistles,
|
104 |
* Widget Logic,
|
105 |
-
* Yoast SEO. [WPGlobus Plus](https://wpglobus.com/product/wpglobus-plus/) premium add-on is required for multilingual focus keyword and SEO analysis.
|
106 |
|
107 |
Some 3rd-party plugins are supported with our [premium add-ons](https://wpglobus.com/shop/):
|
108 |
|
@@ -211,12 +211,19 @@ We do not make a "PRO" plugin that replaces the free one. Instead, we have a set
|
|
211 |
|
212 |
== Upgrade Notice ==
|
213 |
|
214 |
-
=
|
215 |
|
216 |
-
|
217 |
|
218 |
== Changelog ==
|
219 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
220 |
= 1.9.30 =
|
221 |
|
222 |
* ADDED:
|
2 |
Contributors: tivnetinc, alexgff, tivnet
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=SLF8M4YNZHNQN
|
4 |
Tags: WPGlobus, localization, multilanguage, multilingual, translate
|
5 |
+
Requires at least: 4.9
|
6 |
+
Tested up to: 5.0
|
7 |
+
Requires PHP: 5.6
|
8 |
Stable tag: trunk
|
9 |
License: GPL-3.0-or-later
|
10 |
License URI: https://spdx.org/licenses/GPL-3.0-or-later.html
|
71 |
For more details, please check out the descriptions of each paid add-on on our website:
|
72 |
|
73 |
* [WooCommerce WPGlobus](https://wpglobus.com/product/woocommerce-wpglobus/): adds multilingual capabilities to WooCommerce-based online stores.
|
74 |
+
* [WPGlobus Plus](https://wpglobus.com/product/wpglobus-plus/): adds URL fine-tuning, publishing status per translation, multilingual Yoast SEO analysis and more.
|
75 |
* [WPGlobus Language Widgets](https://wpglobus.com/product/wpglobus-language-widget/): Multilingual widget logic: show and hide widget depending on the current language.
|
76 |
* [WPGlobus Header Images](https://wpglobus.com/product/wpglobus-header-images/): Display different header images per language. Show images depending on the settings in the Customizer.
|
77 |
* [WPGlobus Menu Visibility](https://wpglobus.com/product/wpglobus-menu-visibility/): Show or hide menu items depending on the current language.
|
102 |
* WPBakery Page Builder for WordPress (formerly Visual Composer),
|
103 |
* Whistles,
|
104 |
* Widget Logic,
|
105 |
+
* Yoast SEO. [WPGlobus Plus](https://wpglobus.com/product/wpglobus-plus/) premium add-on is required for multilingual focus keyword and SEO analysis.
|
106 |
|
107 |
Some 3rd-party plugins are supported with our [premium add-ons](https://wpglobus.com/shop/):
|
108 |
|
211 |
|
212 |
== Upgrade Notice ==
|
213 |
|
214 |
+
= 2.0.0 =
|
215 |
|
216 |
+
WPGlobus Version 2 supports WordPress 5.
|
217 |
|
218 |
== Changelog ==
|
219 |
|
220 |
+
= 2.0.0 =
|
221 |
+
|
222 |
+
* COMPATIBILITY:
|
223 |
+
* WordPress 5.0 (with Gutenberg in the WP Core)
|
224 |
+
* ADDED:
|
225 |
+
* Vendor/Yoast SEO: multilingual taxonomy support (`term.php` page).
|
226 |
+
|
227 |
= 1.9.30 =
|
228 |
|
229 |
* ADDED:
|
vendor/composer/ClassLoader.php
CHANGED
@@ -279,7 +279,7 @@ class ClassLoader
|
|
279 |
*/
|
280 |
public function setApcuPrefix($apcuPrefix)
|
281 |
{
|
282 |
-
$this->apcuPrefix = function_exists('apcu_fetch') && ini_get('apc.enabled') ? $apcuPrefix : null;
|
283 |
}
|
284 |
|
285 |
/**
|
279 |
*/
|
280 |
public function setApcuPrefix($apcuPrefix)
|
281 |
{
|
282 |
+
$this->apcuPrefix = function_exists('apcu_fetch') && filter_var(ini_get('apc.enabled'), FILTER_VALIDATE_BOOLEAN) ? $apcuPrefix : null;
|
283 |
}
|
284 |
|
285 |
/**
|
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:
|
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', '
|
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: 2.0.0
|
19 |
* Author: WPGlobus
|
20 |
* Author URI: https://wpglobus.com/
|
21 |
* Network: false
|
42 |
exit;
|
43 |
}
|
44 |
|
45 |
+
define( 'WPGLOBUS_VERSION', '2.0.0' );
|
46 |
define( 'WPGLOBUS_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
|
47 |
|
48 |
/**
|