Version Description
- Fixed: (Vendor/Acf) Fixed hidden WPGlobus dialog start icon with ACF Pro from v.5.8
- Fixed: (Customizer) Fixed PHP Warning
Invalid argument supplied for foreach
.
Download this release
Release Info
Developer | tivnet |
Plugin | WPGlobus – Multilingual Everything! |
Version | 2.2.1 |
Comparing to | |
See all releases |
Code changes from version 2.2.0 to 2.2.1
- includes/admin/customize/class-wpglobus-customize190.php +17 -11
- includes/class-wpglobus.php +16 -1
- includes/js/wpglobus-vendor-acf.js +23 -3
- includes/js/wpglobus-vendor-acf.min.js +1 -1
- languages/wpglobus-ar.po +4 -4
- languages/wpglobus-be.po +4 -4
- languages/wpglobus-bg_BG.po +4 -4
- languages/wpglobus-de_CH.po +4 -4
- languages/wpglobus-de_DE.po +4 -4
- languages/wpglobus-el.po +4 -4
- languages/wpglobus-en_AU.po +4 -4
- languages/wpglobus-en_CA.po +4 -4
- languages/wpglobus-en_GB.po +4 -4
- languages/wpglobus-en_NZ.po +4 -4
- languages/wpglobus-en_US.po +4 -4
- languages/wpglobus-en_ZA.po +4 -4
- languages/wpglobus-es_AR.po +4 -4
- languages/wpglobus-es_CL.po +4 -4
- languages/wpglobus-es_CO.po +4 -4
- languages/wpglobus-es_CR.po +4 -4
- languages/wpglobus-es_ES.po +4 -4
- languages/wpglobus-es_GT.po +4 -4
- languages/wpglobus-es_MX.po +4 -4
- languages/wpglobus-es_PE.po +4 -4
- languages/wpglobus-es_PR.po +4 -4
- languages/wpglobus-es_VE.po +4 -4
- languages/wpglobus-et.po +4 -4
- languages/wpglobus-fr_BE.po +4 -4
- languages/wpglobus-fr_CA.po +4 -4
- languages/wpglobus-fr_FR.po +4 -4
- languages/wpglobus-id_ID.po +4 -4
- languages/wpglobus-ko_KR.po +4 -4
- languages/wpglobus-pl_PL.po +4 -4
- languages/wpglobus-pt_BR.po +4 -4
- languages/wpglobus-pt_PT.po +4 -4
- languages/wpglobus-ro_RO.po +4 -4
- languages/wpglobus-ru_RU.po +4 -4
- languages/wpglobus-sv_SE.po +4 -4
- languages/wpglobus-tr_TR.po +4 -4
- languages/wpglobus-uk.po +4 -4
- languages/wpglobus.pot +4 -4
- readme.txt +5 -4
- wpglobus.php +2 -2
includes/admin/customize/class-wpglobus-customize190.php
CHANGED
@@ -68,8 +68,8 @@ if ( ! class_exists( 'WPGlobus_Customize' ) ) :
|
|
68 |
/**
|
69 |
* Filter customize_changeset_save_data.
|
70 |
*
|
|
|
71 |
* @since 1.9.3
|
72 |
-
* @see wp-includes\class-wp-customize-manager.php
|
73 |
*/
|
74 |
add_filter(
|
75 |
'customize_changeset_save_data',
|
@@ -99,18 +99,21 @@ if ( ! class_exists( 'WPGlobus_Customize' ) ) :
|
|
99 |
$mods = get_theme_mods();
|
100 |
|
101 |
$filtered_mods = array();
|
102 |
-
foreach ( $mods as $mod_key => $mod_value ) {
|
103 |
|
104 |
-
|
105 |
-
|
106 |
-
}
|
107 |
|
108 |
-
|
109 |
-
|
110 |
-
|
|
|
|
|
|
|
|
|
111 |
|
112 |
-
|
113 |
|
|
|
114 |
}
|
115 |
|
116 |
/**
|
@@ -274,6 +277,7 @@ if ( ! class_exists( 'WPGlobus_Customize' ) ) :
|
|
274 |
$arr1[ WPGlobus::Config()->enabled_languages[ $k ] ] = $val;
|
275 |
}
|
276 |
}
|
|
|
277 |
return WPGlobus_Utils::build_multilingual_string( $arr1 );
|
278 |
}
|
279 |
|
@@ -286,7 +290,8 @@ if ( ! class_exists( 'WPGlobus_Customize' ) ) :
|
|
286 |
*
|
287 |
* @param WP_Customize_Manager $wp_customize Customize Manager.
|
288 |
*/
|
289 |
-
public static function action__customize_register( WP_Customize_Manager $wp_customize ) {
|
|
|
290 |
|
291 |
/**
|
292 |
* Load Customize Preview JS
|
@@ -497,8 +502,9 @@ if ( ! class_exists( 'WPGlobus_Customize' ) ) :
|
|
497 |
*
|
498 |
* @since 1.9.0
|
499 |
*
|
500 |
-
* @param string $selector_type
|
501 |
* @param array $selector_types An array of existing selector types.
|
|
|
502 |
* @return string
|
503 |
*/
|
504 |
$selector_type = apply_filters( 'wpglobus_customize_language_selector_type', $selector_type, $selector_types );
|
68 |
/**
|
69 |
* Filter customize_changeset_save_data.
|
70 |
*
|
71 |
+
* @see wp-includes\class-wp-customize-manager.php
|
72 |
* @since 1.9.3
|
|
|
73 |
*/
|
74 |
add_filter(
|
75 |
'customize_changeset_save_data',
|
99 |
$mods = get_theme_mods();
|
100 |
|
101 |
$filtered_mods = array();
|
|
|
102 |
|
103 |
+
if ( $mods ) {
|
104 |
+
foreach ( $mods as $mod_key => $mod_value ) {
|
|
|
105 |
|
106 |
+
if ( in_array( $mod_key, $excluded_mods, true ) ) {
|
107 |
+
continue;
|
108 |
+
}
|
109 |
+
|
110 |
+
if ( ! is_string( $mod_value ) ) {
|
111 |
+
continue;
|
112 |
+
}
|
113 |
|
114 |
+
$filtered_mods[ $mod_key ] = $mod_value;
|
115 |
|
116 |
+
}
|
117 |
}
|
118 |
|
119 |
/**
|
277 |
$arr1[ WPGlobus::Config()->enabled_languages[ $k ] ] = $val;
|
278 |
}
|
279 |
}
|
280 |
+
|
281 |
return WPGlobus_Utils::build_multilingual_string( $arr1 );
|
282 |
}
|
283 |
|
290 |
*
|
291 |
* @param WP_Customize_Manager $wp_customize Customize Manager.
|
292 |
*/
|
293 |
+
public static function action__customize_register( WP_Customize_Manager $wp_customize ) {
|
294 |
+
}
|
295 |
|
296 |
/**
|
297 |
* Load Customize Preview JS
|
502 |
*
|
503 |
* @since 1.9.0
|
504 |
*
|
505 |
+
* @param string $selector_type Name of the current selector type.
|
506 |
* @param array $selector_types An array of existing selector types.
|
507 |
+
*
|
508 |
* @return string
|
509 |
*/
|
510 |
$selector_type = apply_filters( 'wpglobus_customize_language_selector_type', $selector_type, $selector_types );
|
includes/class-wpglobus.php
CHANGED
@@ -2057,6 +2057,19 @@ class WPGlobus {
|
|
2057 |
*/
|
2058 |
$disabled_fields = apply_filters( 'wpglobus_disabled_acf_fields', array(), $this->vendors_scripts['ACFPRO'] );
|
2059 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2060 |
wp_register_script(
|
2061 |
'wpglobus-acf',
|
2062 |
self::$PLUGIN_DIR_URL . 'includes/js/wpglobus-vendor-acf' . self::$_SCRIPT_SUFFIX . '.js',
|
@@ -2071,8 +2084,10 @@ class WPGlobus {
|
|
2071 |
array(
|
2072 |
'wpglobus_version' => WPGLOBUS_VERSION,
|
2073 |
'pro' => $this->vendors_scripts['ACFPRO'] ? true : false,
|
|
|
|
|
2074 |
'fields' => array(),
|
2075 |
-
'disabledFields' => $disabled_fields
|
2076 |
)
|
2077 |
);
|
2078 |
|
2057 |
*/
|
2058 |
$disabled_fields = apply_filters( 'wpglobus_disabled_acf_fields', array(), $this->vendors_scripts['ACFPRO'] );
|
2059 |
|
2060 |
+
/**
|
2061 |
+
* @since 2.2.1
|
2062 |
+
* @todo may be add filter for $actions array.
|
2063 |
+
*/
|
2064 |
+
$actions = array(
|
2065 |
+
'fixTextFields' => false
|
2066 |
+
);
|
2067 |
+
if ( defined('ACF_VERSION') ) {
|
2068 |
+
if ( version_compare( ACF_VERSION, '5.8.0', '>=' ) ) {
|
2069 |
+
$actions['fixTextFields'] = true;
|
2070 |
+
}
|
2071 |
+
}
|
2072 |
+
|
2073 |
wp_register_script(
|
2074 |
'wpglobus-acf',
|
2075 |
self::$PLUGIN_DIR_URL . 'includes/js/wpglobus-vendor-acf' . self::$_SCRIPT_SUFFIX . '.js',
|
2084 |
array(
|
2085 |
'wpglobus_version' => WPGLOBUS_VERSION,
|
2086 |
'pro' => $this->vendors_scripts['ACFPRO'] ? true : false,
|
2087 |
+
'acf_version' => defined('ACF_VERSION') ? ACF_VERSION : false,
|
2088 |
+
'actions' => $actions,
|
2089 |
'fields' => array(),
|
2090 |
+
'disabledFields' => $disabled_fields
|
2091 |
)
|
2092 |
);
|
2093 |
|
includes/js/wpglobus-vendor-acf.js
CHANGED
@@ -21,11 +21,12 @@ jQuery(document).ready(function ($) {
|
|
21 |
}
|
22 |
|
23 |
var api = {
|
24 |
-
option
|
25 |
-
init
|
26 |
api.option = $.extend(api.option, args);
|
27 |
if (api.option.pro) {
|
28 |
-
|
|
|
29 |
} else {
|
30 |
//api.startAcf('.acf_postbox .field');
|
31 |
// @since 1.9.17
|
@@ -38,6 +39,25 @@ jQuery(document).ready(function ($) {
|
|
38 |
}
|
39 |
api.attachListeners();
|
40 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
41 |
isDisabledField: function(id) {
|
42 |
var res = false;
|
43 |
|
21 |
}
|
22 |
|
23 |
var api = {
|
24 |
+
option: {},
|
25 |
+
init: function (args) {
|
26 |
api.option = $.extend(api.option, args);
|
27 |
if (api.option.pro) {
|
28 |
+
api.startAcf('.acf-field');
|
29 |
+
api.runActions();
|
30 |
} else {
|
31 |
//api.startAcf('.acf_postbox .field');
|
32 |
// @since 1.9.17
|
39 |
}
|
40 |
api.attachListeners();
|
41 |
},
|
42 |
+
runActions: function() {
|
43 |
+
if ( 'undefined' !== typeof WPGlobusAcf.actions.fixTextFields && WPGlobusAcf.actions.fixTextFields ) {
|
44 |
+
api.fixTextFields();
|
45 |
+
}
|
46 |
+
},
|
47 |
+
fixTextFields: function() {
|
48 |
+
// fix hidden WPGlobus dialog start icon with ACF Pro from v.5.8
|
49 |
+
$.each(WPGlobusAcf.fields, function(i, id){
|
50 |
+
var $tf = $('input[type="text"]#'+id);
|
51 |
+
if ( $tf.length == 1 ) {
|
52 |
+
var $tfp = $tf.parent('.acf-input-wrap');
|
53 |
+
if ( $tfp.length == 1 ) {
|
54 |
+
if ( $tfp.hasClass('acf-input-wrap') ) {
|
55 |
+
$tfp.css('overflow','visible');
|
56 |
+
}
|
57 |
+
}
|
58 |
+
}
|
59 |
+
});
|
60 |
+
},
|
61 |
isDisabledField: function(id) {
|
62 |
var res = false;
|
63 |
|
includes/js/wpglobus-vendor-acf.min.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
jQuery(document).ready(function(
|
1 |
+
jQuery(document).ready(function(s){"use strict";if("undefined"!=typeof WPGlobusAcf&&"undefined"!=typeof WPGlobusDialogApp){var a={option:{},init:function(e){a.option=s.extend(a.option,e),a.option.pro?(a.startAcf(".acf-field"),a.runActions()):(0<s(".acf_postbox .field").length&&a.startAcf(".acf_postbox .field"),0<s(".acf-postbox .acf-field").length&&a.startAcf(".acf-postbox .acf-field")),a.attachListeners()},runActions:function(){void 0!==WPGlobusAcf.actions.fixTextFields&&WPGlobusAcf.actions.fixTextFields&&a.fixTextFields()},fixTextFields:function(){s.each(WPGlobusAcf.fields,function(e,i){var t=s('input[type="text"]#'+i);if(1==t.length){var a=t.parent(".acf-input-wrap");1==a.length&&a.hasClass("acf-input-wrap")&&a.css("overflow","visible")}})},isDisabledField:function(t){var a=!1,n=s("#"+t).parents(".acf-field").attr("id");return void 0!==n&&s.each(WPGlobusAcf.disabledFields,function(e,i){i==n&&(a=!0)}),a||(s.each(WPGlobusAcf.disabledFields,function(e,i){i==t&&(a=!0)}),a)},startAcf:function(e){s(".acf_postbox").parents("#postbox-container-2").length,s(e).each(function(){var e,i,t=s(this);if(t.hasClass("field_type-textarea")||t.hasClass("acf-field-textarea")){if(e=t.find("textarea").attr("id"),a.registerField(e),a.isDisabledField(e))return!0;i=s("#"+e).height()+20,WPGlobusDialogApp.addElement({id:e,dialogTitle:"Edit ACF field",style:"width:97%;float:left;",styleTextareaWrapper:"height:"+i+"px;",sbTitle:"Click for edit",onChangeClass:"wpglobus-on-change-acf-field"})}else if(t.hasClass("field_type-text")||t.hasClass("acf-field-text")){if(e=t.find("input").attr("id"),a.registerField(e),a.isDisabledField(e))return!0;WPGlobusDialogApp.addElement({id:e,dialogTitle:"Edit ACF field",style:"width:97%;float:left;",sbTitle:"Click for edit",onChangeClass:"wpglobus-on-change-acf-field"})}})},registerField:function(e,i){var t=!1;return void 0!==e&&-1==e.indexOf("acfcloneindex")&&(a.isRegisteredField(e)||(t=!0,WPGlobusAcf.fields.push(e))),!!t&&e},getFields:function(){return WPGlobusAcf.fields},getDisabledFields:function(){return WPGlobusAcf.disabledFields},isRegisteredField:function(i){var t=!1;return a.getFields().forEach(function(e){if(e==i)return!(t=!0)}),t},attachListeners:function(){if(a.option.pro){var i=this;acf.add_action&&acf.add_action("append",function(e){i.replaceCloneIndex(e)})}},replaceCloneIndex:function(e){var i=e.data("id");e.find('[data-source-id*="acfcloneindex"]').each(function(){s(this).attr("data-source-id",s(this).attr("data-source-id").replace("acfcloneindex",i))})}};WPGlobusAcf=s.extend({},WPGlobusAcf,a),WPGlobusAcf.init({pro:WPGlobusAcf.pro})}});
|
languages/wpglobus-ar.po
CHANGED
@@ -808,7 +808,7 @@ msgid "To translate permalinks, please activate the module Slug."
|
|
808 |
msgstr ""
|
809 |
|
810 |
#: includes/builders/class-wpglobus-builder.php:277,
|
811 |
-
#: includes/class-wpglobus.php:
|
812 |
msgid "Save draft before using extra language."
|
813 |
msgstr ""
|
814 |
|
@@ -912,17 +912,17 @@ msgstr ""
|
|
912 |
msgid "Need a multilingual slug?"
|
913 |
msgstr ""
|
914 |
|
915 |
-
#: includes/class-wpglobus.php:
|
916 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
917 |
msgstr ""
|
918 |
|
919 |
-
#: includes/class-wpglobus.php:
|
920 |
msgid ""
|
921 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
922 |
"default option."
|
923 |
msgstr ""
|
924 |
|
925 |
-
#: includes/class-wpglobus.php:
|
926 |
msgid "Add"
|
927 |
msgstr "إضافة"
|
928 |
|
808 |
msgstr ""
|
809 |
|
810 |
#: includes/builders/class-wpglobus-builder.php:277,
|
811 |
+
#: includes/class-wpglobus.php:3596
|
812 |
msgid "Save draft before using extra language."
|
813 |
msgstr ""
|
814 |
|
912 |
msgid "Need a multilingual slug?"
|
913 |
msgstr ""
|
914 |
|
915 |
+
#: includes/class-wpglobus.php:4035
|
916 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
917 |
msgstr ""
|
918 |
|
919 |
+
#: includes/class-wpglobus.php:4037
|
920 |
msgid ""
|
921 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
922 |
"default option."
|
923 |
msgstr ""
|
924 |
|
925 |
+
#: includes/class-wpglobus.php:4189
|
926 |
msgid "Add"
|
927 |
msgstr "إضافة"
|
928 |
|
languages/wpglobus-be.po
CHANGED
@@ -859,7 +859,7 @@ msgid "To translate permalinks, please activate the module Slug."
|
|
859 |
msgstr ""
|
860 |
|
861 |
#: includes/builders/class-wpglobus-builder.php:277,
|
862 |
-
#: includes/class-wpglobus.php:
|
863 |
msgid "Save draft before using extra language."
|
864 |
msgstr ""
|
865 |
|
@@ -963,13 +963,13 @@ msgstr "*) Доступно после сохранения меню."
|
|
963 |
msgid "Need a multilingual slug?"
|
964 |
msgstr "Нужен мультиязычный ярлык?"
|
965 |
|
966 |
-
#: includes/class-wpglobus.php:
|
967 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
968 |
msgstr ""
|
969 |
"Чтобы использовать плагин WPGlobus, необходимо включить ЧПУ - постоянные "
|
970 |
"ссылки."
|
971 |
|
972 |
-
#: includes/class-wpglobus.php:
|
973 |
msgid ""
|
974 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
975 |
"default option."
|
@@ -977,7 +977,7 @@ msgstr ""
|
|
977 |
"Пожалуйста, перейдите в меню Настройки > Постоянные ссылки и поменяйте "
|
978 |
"структуру ссылок в разделе \"Общие настройки\"."
|
979 |
|
980 |
-
#: includes/class-wpglobus.php:
|
981 |
msgid "Add"
|
982 |
msgstr "Добавить"
|
983 |
|
859 |
msgstr ""
|
860 |
|
861 |
#: includes/builders/class-wpglobus-builder.php:277,
|
862 |
+
#: includes/class-wpglobus.php:3596
|
863 |
msgid "Save draft before using extra language."
|
864 |
msgstr ""
|
865 |
|
963 |
msgid "Need a multilingual slug?"
|
964 |
msgstr "Нужен мультиязычный ярлык?"
|
965 |
|
966 |
+
#: includes/class-wpglobus.php:4035
|
967 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
968 |
msgstr ""
|
969 |
"Чтобы использовать плагин WPGlobus, необходимо включить ЧПУ - постоянные "
|
970 |
"ссылки."
|
971 |
|
972 |
+
#: includes/class-wpglobus.php:4037
|
973 |
msgid ""
|
974 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
975 |
"default option."
|
977 |
"Пожалуйста, перейдите в меню Настройки > Постоянные ссылки и поменяйте "
|
978 |
"структуру ссылок в разделе \"Общие настройки\"."
|
979 |
|
980 |
+
#: includes/class-wpglobus.php:4189
|
981 |
msgid "Add"
|
982 |
msgstr "Добавить"
|
983 |
|
languages/wpglobus-bg_BG.po
CHANGED
@@ -784,7 +784,7 @@ msgid "To translate permalinks, please activate the module Slug."
|
|
784 |
msgstr ""
|
785 |
|
786 |
#: includes/builders/class-wpglobus-builder.php:277,
|
787 |
-
#: includes/class-wpglobus.php:
|
788 |
msgid "Save draft before using extra language."
|
789 |
msgstr ""
|
790 |
|
@@ -888,17 +888,17 @@ msgstr ""
|
|
888 |
msgid "Need a multilingual slug?"
|
889 |
msgstr ""
|
890 |
|
891 |
-
#: includes/class-wpglobus.php:
|
892 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
893 |
msgstr ""
|
894 |
|
895 |
-
#: includes/class-wpglobus.php:
|
896 |
msgid ""
|
897 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
898 |
"default option."
|
899 |
msgstr ""
|
900 |
|
901 |
-
#: includes/class-wpglobus.php:
|
902 |
msgid "Add"
|
903 |
msgstr ""
|
904 |
|
784 |
msgstr ""
|
785 |
|
786 |
#: includes/builders/class-wpglobus-builder.php:277,
|
787 |
+
#: includes/class-wpglobus.php:3596
|
788 |
msgid "Save draft before using extra language."
|
789 |
msgstr ""
|
790 |
|
888 |
msgid "Need a multilingual slug?"
|
889 |
msgstr ""
|
890 |
|
891 |
+
#: includes/class-wpglobus.php:4035
|
892 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
893 |
msgstr ""
|
894 |
|
895 |
+
#: includes/class-wpglobus.php:4037
|
896 |
msgid ""
|
897 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
898 |
"default option."
|
899 |
msgstr ""
|
900 |
|
901 |
+
#: includes/class-wpglobus.php:4189
|
902 |
msgid "Add"
|
903 |
msgstr ""
|
904 |
|
languages/wpglobus-de_CH.po
CHANGED
@@ -820,7 +820,7 @@ msgid "To translate permalinks, please activate the module Slug."
|
|
820 |
msgstr ""
|
821 |
|
822 |
#: includes/builders/class-wpglobus-builder.php:277,
|
823 |
-
#: includes/class-wpglobus.php:
|
824 |
msgid "Save draft before using extra language."
|
825 |
msgstr ""
|
826 |
|
@@ -924,12 +924,12 @@ msgstr "*) Verfügbar nachdem das Menü gespeichert wurde."
|
|
924 |
msgid "Need a multilingual slug?"
|
925 |
msgstr ""
|
926 |
|
927 |
-
#: includes/class-wpglobus.php:
|
928 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
929 |
msgstr ""
|
930 |
"Sie müssen schöne Permalinks aktivieren um WPGlobus verwenden zu können."
|
931 |
|
932 |
-
#: includes/class-wpglobus.php:
|
933 |
msgid ""
|
934 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
935 |
"default option."
|
@@ -937,7 +937,7 @@ msgstr ""
|
|
937 |
"Bitte gehen Sie zu Einstellungen > Permalinks > allgemeine Einstellungen, "
|
938 |
"und wählen Sie die \"Beitragsname\" für schöne Permalinks."
|
939 |
|
940 |
-
#: includes/class-wpglobus.php:
|
941 |
msgid "Add"
|
942 |
msgstr "Hinzufügen"
|
943 |
|
820 |
msgstr ""
|
821 |
|
822 |
#: includes/builders/class-wpglobus-builder.php:277,
|
823 |
+
#: includes/class-wpglobus.php:3596
|
824 |
msgid "Save draft before using extra language."
|
825 |
msgstr ""
|
826 |
|
924 |
msgid "Need a multilingual slug?"
|
925 |
msgstr ""
|
926 |
|
927 |
+
#: includes/class-wpglobus.php:4035
|
928 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
929 |
msgstr ""
|
930 |
"Sie müssen schöne Permalinks aktivieren um WPGlobus verwenden zu können."
|
931 |
|
932 |
+
#: includes/class-wpglobus.php:4037
|
933 |
msgid ""
|
934 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
935 |
"default option."
|
937 |
"Bitte gehen Sie zu Einstellungen > Permalinks > allgemeine Einstellungen, "
|
938 |
"und wählen Sie die \"Beitragsname\" für schöne Permalinks."
|
939 |
|
940 |
+
#: includes/class-wpglobus.php:4189
|
941 |
msgid "Add"
|
942 |
msgstr "Hinzufügen"
|
943 |
|
languages/wpglobus-de_DE.po
CHANGED
@@ -819,7 +819,7 @@ msgid "To translate permalinks, please activate the module Slug."
|
|
819 |
msgstr ""
|
820 |
|
821 |
#: includes/builders/class-wpglobus-builder.php:277,
|
822 |
-
#: includes/class-wpglobus.php:
|
823 |
msgid "Save draft before using extra language."
|
824 |
msgstr ""
|
825 |
|
@@ -923,12 +923,12 @@ msgstr "*) Verfügbar nachdem das Menü gespeichert wurde."
|
|
923 |
msgid "Need a multilingual slug?"
|
924 |
msgstr ""
|
925 |
|
926 |
-
#: includes/class-wpglobus.php:
|
927 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
928 |
msgstr ""
|
929 |
"Sie müssen schöne Permalinks aktivieren um WPGlobus verwenden zu können."
|
930 |
|
931 |
-
#: includes/class-wpglobus.php:
|
932 |
msgid ""
|
933 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
934 |
"default option."
|
@@ -936,7 +936,7 @@ msgstr ""
|
|
936 |
"Bitte gehen Sie zu Einstellungen > Permalinks > allgemeine Einstellungen, "
|
937 |
"und wählen Sie die \"Beitragsname\" für schöne Permalinks."
|
938 |
|
939 |
-
#: includes/class-wpglobus.php:
|
940 |
msgid "Add"
|
941 |
msgstr "Hinzufügen"
|
942 |
|
819 |
msgstr ""
|
820 |
|
821 |
#: includes/builders/class-wpglobus-builder.php:277,
|
822 |
+
#: includes/class-wpglobus.php:3596
|
823 |
msgid "Save draft before using extra language."
|
824 |
msgstr ""
|
825 |
|
923 |
msgid "Need a multilingual slug?"
|
924 |
msgstr ""
|
925 |
|
926 |
+
#: includes/class-wpglobus.php:4035
|
927 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
928 |
msgstr ""
|
929 |
"Sie müssen schöne Permalinks aktivieren um WPGlobus verwenden zu können."
|
930 |
|
931 |
+
#: includes/class-wpglobus.php:4037
|
932 |
msgid ""
|
933 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
934 |
"default option."
|
936 |
"Bitte gehen Sie zu Einstellungen > Permalinks > allgemeine Einstellungen, "
|
937 |
"und wählen Sie die \"Beitragsname\" für schöne Permalinks."
|
938 |
|
939 |
+
#: includes/class-wpglobus.php:4189
|
940 |
msgid "Add"
|
941 |
msgstr "Hinzufügen"
|
942 |
|
languages/wpglobus-el.po
CHANGED
@@ -785,7 +785,7 @@ msgid "To translate permalinks, please activate the module Slug."
|
|
785 |
msgstr ""
|
786 |
|
787 |
#: includes/builders/class-wpglobus-builder.php:277,
|
788 |
-
#: includes/class-wpglobus.php:
|
789 |
msgid "Save draft before using extra language."
|
790 |
msgstr ""
|
791 |
|
@@ -889,17 +889,17 @@ msgstr ""
|
|
889 |
msgid "Need a multilingual slug?"
|
890 |
msgstr ""
|
891 |
|
892 |
-
#: includes/class-wpglobus.php:
|
893 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
894 |
msgstr ""
|
895 |
|
896 |
-
#: includes/class-wpglobus.php:
|
897 |
msgid ""
|
898 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
899 |
"default option."
|
900 |
msgstr ""
|
901 |
|
902 |
-
#: includes/class-wpglobus.php:
|
903 |
msgid "Add"
|
904 |
msgstr ""
|
905 |
|
785 |
msgstr ""
|
786 |
|
787 |
#: includes/builders/class-wpglobus-builder.php:277,
|
788 |
+
#: includes/class-wpglobus.php:3596
|
789 |
msgid "Save draft before using extra language."
|
790 |
msgstr ""
|
791 |
|
889 |
msgid "Need a multilingual slug?"
|
890 |
msgstr ""
|
891 |
|
892 |
+
#: includes/class-wpglobus.php:4035
|
893 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
894 |
msgstr ""
|
895 |
|
896 |
+
#: includes/class-wpglobus.php:4037
|
897 |
msgid ""
|
898 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
899 |
"default option."
|
900 |
msgstr ""
|
901 |
|
902 |
+
#: includes/class-wpglobus.php:4189
|
903 |
msgid "Add"
|
904 |
msgstr ""
|
905 |
|
languages/wpglobus-en_AU.po
CHANGED
@@ -859,7 +859,7 @@ msgid "To translate permalinks, please activate the module Slug."
|
|
859 |
msgstr ""
|
860 |
|
861 |
#: includes/builders/class-wpglobus-builder.php:277,
|
862 |
-
#: includes/class-wpglobus.php:
|
863 |
msgid "Save draft before using extra language."
|
864 |
msgstr ""
|
865 |
|
@@ -963,11 +963,11 @@ msgstr "*) Available after the menu is saved."
|
|
963 |
msgid "Need a multilingual slug?"
|
964 |
msgstr "Need a multilingual slug?"
|
965 |
|
966 |
-
#: includes/class-wpglobus.php:
|
967 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
968 |
msgstr "You must enable Pretty Permalinks to use WPGlobus."
|
969 |
|
970 |
-
#: includes/class-wpglobus.php:
|
971 |
msgid ""
|
972 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
973 |
"default option."
|
@@ -975,7 +975,7 @@ msgstr ""
|
|
975 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
976 |
"default option."
|
977 |
|
978 |
-
#: includes/class-wpglobus.php:
|
979 |
msgid "Add"
|
980 |
msgstr "Add"
|
981 |
|
859 |
msgstr ""
|
860 |
|
861 |
#: includes/builders/class-wpglobus-builder.php:277,
|
862 |
+
#: includes/class-wpglobus.php:3596
|
863 |
msgid "Save draft before using extra language."
|
864 |
msgstr ""
|
865 |
|
963 |
msgid "Need a multilingual slug?"
|
964 |
msgstr "Need a multilingual slug?"
|
965 |
|
966 |
+
#: includes/class-wpglobus.php:4035
|
967 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
968 |
msgstr "You must enable Pretty Permalinks to use WPGlobus."
|
969 |
|
970 |
+
#: includes/class-wpglobus.php:4037
|
971 |
msgid ""
|
972 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
973 |
"default option."
|
975 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
976 |
"default option."
|
977 |
|
978 |
+
#: includes/class-wpglobus.php:4189
|
979 |
msgid "Add"
|
980 |
msgstr "Add"
|
981 |
|
languages/wpglobus-en_CA.po
CHANGED
@@ -858,7 +858,7 @@ msgid "To translate permalinks, please activate the module Slug."
|
|
858 |
msgstr ""
|
859 |
|
860 |
#: includes/builders/class-wpglobus-builder.php:277,
|
861 |
-
#: includes/class-wpglobus.php:
|
862 |
msgid "Save draft before using extra language."
|
863 |
msgstr ""
|
864 |
|
@@ -962,11 +962,11 @@ msgstr "*) Available after the menu is saved."
|
|
962 |
msgid "Need a multilingual slug?"
|
963 |
msgstr "Need a multilingual slug?"
|
964 |
|
965 |
-
#: includes/class-wpglobus.php:
|
966 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
967 |
msgstr "You must enable Pretty Permalinks to use WPGlobus."
|
968 |
|
969 |
-
#: includes/class-wpglobus.php:
|
970 |
msgid ""
|
971 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
972 |
"default option."
|
@@ -974,7 +974,7 @@ msgstr ""
|
|
974 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
975 |
"default option."
|
976 |
|
977 |
-
#: includes/class-wpglobus.php:
|
978 |
msgid "Add"
|
979 |
msgstr "Add"
|
980 |
|
858 |
msgstr ""
|
859 |
|
860 |
#: includes/builders/class-wpglobus-builder.php:277,
|
861 |
+
#: includes/class-wpglobus.php:3596
|
862 |
msgid "Save draft before using extra language."
|
863 |
msgstr ""
|
864 |
|
962 |
msgid "Need a multilingual slug?"
|
963 |
msgstr "Need a multilingual slug?"
|
964 |
|
965 |
+
#: includes/class-wpglobus.php:4035
|
966 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
967 |
msgstr "You must enable Pretty Permalinks to use WPGlobus."
|
968 |
|
969 |
+
#: includes/class-wpglobus.php:4037
|
970 |
msgid ""
|
971 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
972 |
"default option."
|
974 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
975 |
"default option."
|
976 |
|
977 |
+
#: includes/class-wpglobus.php:4189
|
978 |
msgid "Add"
|
979 |
msgstr "Add"
|
980 |
|
languages/wpglobus-en_GB.po
CHANGED
@@ -859,7 +859,7 @@ msgid "To translate permalinks, please activate the module Slug."
|
|
859 |
msgstr ""
|
860 |
|
861 |
#: includes/builders/class-wpglobus-builder.php:277,
|
862 |
-
#: includes/class-wpglobus.php:
|
863 |
msgid "Save draft before using extra language."
|
864 |
msgstr ""
|
865 |
|
@@ -963,11 +963,11 @@ msgstr "*) Available after the menu is saved."
|
|
963 |
msgid "Need a multilingual slug?"
|
964 |
msgstr "Need a multilingual slug?"
|
965 |
|
966 |
-
#: includes/class-wpglobus.php:
|
967 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
968 |
msgstr "You must enable Pretty Permalinks to use WPGlobus."
|
969 |
|
970 |
-
#: includes/class-wpglobus.php:
|
971 |
msgid ""
|
972 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
973 |
"default option."
|
@@ -975,7 +975,7 @@ msgstr ""
|
|
975 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
976 |
"default option."
|
977 |
|
978 |
-
#: includes/class-wpglobus.php:
|
979 |
msgid "Add"
|
980 |
msgstr "Add"
|
981 |
|
859 |
msgstr ""
|
860 |
|
861 |
#: includes/builders/class-wpglobus-builder.php:277,
|
862 |
+
#: includes/class-wpglobus.php:3596
|
863 |
msgid "Save draft before using extra language."
|
864 |
msgstr ""
|
865 |
|
963 |
msgid "Need a multilingual slug?"
|
964 |
msgstr "Need a multilingual slug?"
|
965 |
|
966 |
+
#: includes/class-wpglobus.php:4035
|
967 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
968 |
msgstr "You must enable Pretty Permalinks to use WPGlobus."
|
969 |
|
970 |
+
#: includes/class-wpglobus.php:4037
|
971 |
msgid ""
|
972 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
973 |
"default option."
|
975 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
976 |
"default option."
|
977 |
|
978 |
+
#: includes/class-wpglobus.php:4189
|
979 |
msgid "Add"
|
980 |
msgstr "Add"
|
981 |
|
languages/wpglobus-en_NZ.po
CHANGED
@@ -858,7 +858,7 @@ msgid "To translate permalinks, please activate the module Slug."
|
|
858 |
msgstr ""
|
859 |
|
860 |
#: includes/builders/class-wpglobus-builder.php:277,
|
861 |
-
#: includes/class-wpglobus.php:
|
862 |
msgid "Save draft before using extra language."
|
863 |
msgstr ""
|
864 |
|
@@ -962,11 +962,11 @@ msgstr "*) Available after the menu is saved."
|
|
962 |
msgid "Need a multilingual slug?"
|
963 |
msgstr "Need a multilingual slug?"
|
964 |
|
965 |
-
#: includes/class-wpglobus.php:
|
966 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
967 |
msgstr "You must enable Pretty Permalinks to use WPGlobus."
|
968 |
|
969 |
-
#: includes/class-wpglobus.php:
|
970 |
msgid ""
|
971 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
972 |
"default option."
|
@@ -974,7 +974,7 @@ msgstr ""
|
|
974 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
975 |
"default option."
|
976 |
|
977 |
-
#: includes/class-wpglobus.php:
|
978 |
msgid "Add"
|
979 |
msgstr "Add"
|
980 |
|
858 |
msgstr ""
|
859 |
|
860 |
#: includes/builders/class-wpglobus-builder.php:277,
|
861 |
+
#: includes/class-wpglobus.php:3596
|
862 |
msgid "Save draft before using extra language."
|
863 |
msgstr ""
|
864 |
|
962 |
msgid "Need a multilingual slug?"
|
963 |
msgstr "Need a multilingual slug?"
|
964 |
|
965 |
+
#: includes/class-wpglobus.php:4035
|
966 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
967 |
msgstr "You must enable Pretty Permalinks to use WPGlobus."
|
968 |
|
969 |
+
#: includes/class-wpglobus.php:4037
|
970 |
msgid ""
|
971 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
972 |
"default option."
|
974 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
975 |
"default option."
|
976 |
|
977 |
+
#: includes/class-wpglobus.php:4189
|
978 |
msgid "Add"
|
979 |
msgstr "Add"
|
980 |
|
languages/wpglobus-en_US.po
CHANGED
@@ -862,7 +862,7 @@ msgid "To translate permalinks, please activate the module Slug."
|
|
862 |
msgstr "To translate permalinks, please activate the module Slug."
|
863 |
|
864 |
#: includes/builders/class-wpglobus-builder.php:277,
|
865 |
-
#: includes/class-wpglobus.php:
|
866 |
msgid "Save draft before using extra language."
|
867 |
msgstr "Save draft before using extra language."
|
868 |
|
@@ -966,11 +966,11 @@ msgstr "*) Available after the menu is saved."
|
|
966 |
msgid "Need a multilingual slug?"
|
967 |
msgstr "Need a multilingual slug?"
|
968 |
|
969 |
-
#: includes/class-wpglobus.php:
|
970 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
971 |
msgstr "You must enable Pretty Permalinks to use WPGlobus."
|
972 |
|
973 |
-
#: includes/class-wpglobus.php:
|
974 |
msgid ""
|
975 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
976 |
"default option."
|
@@ -978,7 +978,7 @@ msgstr ""
|
|
978 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
979 |
"default option."
|
980 |
|
981 |
-
#: includes/class-wpglobus.php:
|
982 |
msgid "Add"
|
983 |
msgstr "Add"
|
984 |
|
862 |
msgstr "To translate permalinks, please activate the module Slug."
|
863 |
|
864 |
#: includes/builders/class-wpglobus-builder.php:277,
|
865 |
+
#: includes/class-wpglobus.php:3596
|
866 |
msgid "Save draft before using extra language."
|
867 |
msgstr "Save draft before using extra language."
|
868 |
|
966 |
msgid "Need a multilingual slug?"
|
967 |
msgstr "Need a multilingual slug?"
|
968 |
|
969 |
+
#: includes/class-wpglobus.php:4035
|
970 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
971 |
msgstr "You must enable Pretty Permalinks to use WPGlobus."
|
972 |
|
973 |
+
#: includes/class-wpglobus.php:4037
|
974 |
msgid ""
|
975 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
976 |
"default option."
|
978 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
979 |
"default option."
|
980 |
|
981 |
+
#: includes/class-wpglobus.php:4189
|
982 |
msgid "Add"
|
983 |
msgstr "Add"
|
984 |
|
languages/wpglobus-en_ZA.po
CHANGED
@@ -858,7 +858,7 @@ msgid "To translate permalinks, please activate the module Slug."
|
|
858 |
msgstr ""
|
859 |
|
860 |
#: includes/builders/class-wpglobus-builder.php:277,
|
861 |
-
#: includes/class-wpglobus.php:
|
862 |
msgid "Save draft before using extra language."
|
863 |
msgstr ""
|
864 |
|
@@ -962,11 +962,11 @@ msgstr "*) Available after the menu is saved."
|
|
962 |
msgid "Need a multilingual slug?"
|
963 |
msgstr "Need a multilingual slug?"
|
964 |
|
965 |
-
#: includes/class-wpglobus.php:
|
966 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
967 |
msgstr "You must enable Pretty Permalinks to use WPGlobus."
|
968 |
|
969 |
-
#: includes/class-wpglobus.php:
|
970 |
msgid ""
|
971 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
972 |
"default option."
|
@@ -974,7 +974,7 @@ msgstr ""
|
|
974 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
975 |
"default option."
|
976 |
|
977 |
-
#: includes/class-wpglobus.php:
|
978 |
msgid "Add"
|
979 |
msgstr "Add"
|
980 |
|
858 |
msgstr ""
|
859 |
|
860 |
#: includes/builders/class-wpglobus-builder.php:277,
|
861 |
+
#: includes/class-wpglobus.php:3596
|
862 |
msgid "Save draft before using extra language."
|
863 |
msgstr ""
|
864 |
|
962 |
msgid "Need a multilingual slug?"
|
963 |
msgstr "Need a multilingual slug?"
|
964 |
|
965 |
+
#: includes/class-wpglobus.php:4035
|
966 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
967 |
msgstr "You must enable Pretty Permalinks to use WPGlobus."
|
968 |
|
969 |
+
#: includes/class-wpglobus.php:4037
|
970 |
msgid ""
|
971 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
972 |
"default option."
|
974 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
975 |
"default option."
|
976 |
|
977 |
+
#: includes/class-wpglobus.php:4189
|
978 |
msgid "Add"
|
979 |
msgstr "Add"
|
980 |
|
languages/wpglobus-es_AR.po
CHANGED
@@ -819,7 +819,7 @@ msgid "To translate permalinks, please activate the module Slug."
|
|
819 |
msgstr ""
|
820 |
|
821 |
#: includes/builders/class-wpglobus-builder.php:277,
|
822 |
-
#: includes/class-wpglobus.php:
|
823 |
msgid "Save draft before using extra language."
|
824 |
msgstr ""
|
825 |
|
@@ -923,12 +923,12 @@ msgstr "No Se Puede Desactivar el director idioma."
|
|
923 |
msgid "Need a multilingual slug?"
|
924 |
msgstr ""
|
925 |
|
926 |
-
#: includes/class-wpglobus.php:
|
927 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
928 |
msgstr ""
|
929 |
"Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
|
930 |
|
931 |
-
#: includes/class-wpglobus.php:
|
932 |
msgid ""
|
933 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
934 |
"default option."
|
@@ -936,7 +936,7 @@ msgstr ""
|
|
936 |
"Por favor, ve a Configuración > Enlaces permanentes > Ajustes comunes y "
|
937 |
"selecciona una opción no predeterminada ."
|
938 |
|
939 |
-
#: includes/class-wpglobus.php:
|
940 |
msgid "Add"
|
941 |
msgstr "Añadir"
|
942 |
|
819 |
msgstr ""
|
820 |
|
821 |
#: includes/builders/class-wpglobus-builder.php:277,
|
822 |
+
#: includes/class-wpglobus.php:3596
|
823 |
msgid "Save draft before using extra language."
|
824 |
msgstr ""
|
825 |
|
923 |
msgid "Need a multilingual slug?"
|
924 |
msgstr ""
|
925 |
|
926 |
+
#: includes/class-wpglobus.php:4035
|
927 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
928 |
msgstr ""
|
929 |
"Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
|
930 |
|
931 |
+
#: includes/class-wpglobus.php:4037
|
932 |
msgid ""
|
933 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
934 |
"default option."
|
936 |
"Por favor, ve a Configuración > Enlaces permanentes > Ajustes comunes y "
|
937 |
"selecciona una opción no predeterminada ."
|
938 |
|
939 |
+
#: includes/class-wpglobus.php:4189
|
940 |
msgid "Add"
|
941 |
msgstr "Añadir"
|
942 |
|
languages/wpglobus-es_CL.po
CHANGED
@@ -819,7 +819,7 @@ msgid "To translate permalinks, please activate the module Slug."
|
|
819 |
msgstr ""
|
820 |
|
821 |
#: includes/builders/class-wpglobus-builder.php:277,
|
822 |
-
#: includes/class-wpglobus.php:
|
823 |
msgid "Save draft before using extra language."
|
824 |
msgstr ""
|
825 |
|
@@ -923,12 +923,12 @@ msgstr "No Se Puede Desactivar el director idioma."
|
|
923 |
msgid "Need a multilingual slug?"
|
924 |
msgstr ""
|
925 |
|
926 |
-
#: includes/class-wpglobus.php:
|
927 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
928 |
msgstr ""
|
929 |
"Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
|
930 |
|
931 |
-
#: includes/class-wpglobus.php:
|
932 |
msgid ""
|
933 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
934 |
"default option."
|
@@ -936,7 +936,7 @@ msgstr ""
|
|
936 |
"Por favor, ve a Configuración > Enlaces permanentes > Ajustes comunes y "
|
937 |
"selecciona una opción no predeterminada ."
|
938 |
|
939 |
-
#: includes/class-wpglobus.php:
|
940 |
msgid "Add"
|
941 |
msgstr "Añadir"
|
942 |
|
819 |
msgstr ""
|
820 |
|
821 |
#: includes/builders/class-wpglobus-builder.php:277,
|
822 |
+
#: includes/class-wpglobus.php:3596
|
823 |
msgid "Save draft before using extra language."
|
824 |
msgstr ""
|
825 |
|
923 |
msgid "Need a multilingual slug?"
|
924 |
msgstr ""
|
925 |
|
926 |
+
#: includes/class-wpglobus.php:4035
|
927 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
928 |
msgstr ""
|
929 |
"Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
|
930 |
|
931 |
+
#: includes/class-wpglobus.php:4037
|
932 |
msgid ""
|
933 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
934 |
"default option."
|
936 |
"Por favor, ve a Configuración > Enlaces permanentes > Ajustes comunes y "
|
937 |
"selecciona una opción no predeterminada ."
|
938 |
|
939 |
+
#: includes/class-wpglobus.php:4189
|
940 |
msgid "Add"
|
941 |
msgstr "Añadir"
|
942 |
|
languages/wpglobus-es_CO.po
CHANGED
@@ -819,7 +819,7 @@ msgid "To translate permalinks, please activate the module Slug."
|
|
819 |
msgstr ""
|
820 |
|
821 |
#: includes/builders/class-wpglobus-builder.php:277,
|
822 |
-
#: includes/class-wpglobus.php:
|
823 |
msgid "Save draft before using extra language."
|
824 |
msgstr ""
|
825 |
|
@@ -923,12 +923,12 @@ msgstr "No Se Puede Desactivar el director idioma."
|
|
923 |
msgid "Need a multilingual slug?"
|
924 |
msgstr ""
|
925 |
|
926 |
-
#: includes/class-wpglobus.php:
|
927 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
928 |
msgstr ""
|
929 |
"Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
|
930 |
|
931 |
-
#: includes/class-wpglobus.php:
|
932 |
msgid ""
|
933 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
934 |
"default option."
|
@@ -936,7 +936,7 @@ msgstr ""
|
|
936 |
"Por favor, ve a Configuración > Enlaces permanentes > Ajustes comunes y "
|
937 |
"selecciona una opción no predeterminada ."
|
938 |
|
939 |
-
#: includes/class-wpglobus.php:
|
940 |
msgid "Add"
|
941 |
msgstr "Añadir"
|
942 |
|
819 |
msgstr ""
|
820 |
|
821 |
#: includes/builders/class-wpglobus-builder.php:277,
|
822 |
+
#: includes/class-wpglobus.php:3596
|
823 |
msgid "Save draft before using extra language."
|
824 |
msgstr ""
|
825 |
|
923 |
msgid "Need a multilingual slug?"
|
924 |
msgstr ""
|
925 |
|
926 |
+
#: includes/class-wpglobus.php:4035
|
927 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
928 |
msgstr ""
|
929 |
"Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
|
930 |
|
931 |
+
#: includes/class-wpglobus.php:4037
|
932 |
msgid ""
|
933 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
934 |
"default option."
|
936 |
"Por favor, ve a Configuración > Enlaces permanentes > Ajustes comunes y "
|
937 |
"selecciona una opción no predeterminada ."
|
938 |
|
939 |
+
#: includes/class-wpglobus.php:4189
|
940 |
msgid "Add"
|
941 |
msgstr "Añadir"
|
942 |
|
languages/wpglobus-es_CR.po
CHANGED
@@ -819,7 +819,7 @@ msgid "To translate permalinks, please activate the module Slug."
|
|
819 |
msgstr ""
|
820 |
|
821 |
#: includes/builders/class-wpglobus-builder.php:277,
|
822 |
-
#: includes/class-wpglobus.php:
|
823 |
msgid "Save draft before using extra language."
|
824 |
msgstr ""
|
825 |
|
@@ -923,12 +923,12 @@ msgstr "No Se Puede Desactivar el director idioma."
|
|
923 |
msgid "Need a multilingual slug?"
|
924 |
msgstr ""
|
925 |
|
926 |
-
#: includes/class-wpglobus.php:
|
927 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
928 |
msgstr ""
|
929 |
"Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
|
930 |
|
931 |
-
#: includes/class-wpglobus.php:
|
932 |
msgid ""
|
933 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
934 |
"default option."
|
@@ -936,7 +936,7 @@ msgstr ""
|
|
936 |
"Por favor, ve a Configuración > Enlaces permanentes > Ajustes comunes y "
|
937 |
"selecciona una opción no predeterminada ."
|
938 |
|
939 |
-
#: includes/class-wpglobus.php:
|
940 |
msgid "Add"
|
941 |
msgstr "Añadir"
|
942 |
|
819 |
msgstr ""
|
820 |
|
821 |
#: includes/builders/class-wpglobus-builder.php:277,
|
822 |
+
#: includes/class-wpglobus.php:3596
|
823 |
msgid "Save draft before using extra language."
|
824 |
msgstr ""
|
825 |
|
923 |
msgid "Need a multilingual slug?"
|
924 |
msgstr ""
|
925 |
|
926 |
+
#: includes/class-wpglobus.php:4035
|
927 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
928 |
msgstr ""
|
929 |
"Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
|
930 |
|
931 |
+
#: includes/class-wpglobus.php:4037
|
932 |
msgid ""
|
933 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
934 |
"default option."
|
936 |
"Por favor, ve a Configuración > Enlaces permanentes > Ajustes comunes y "
|
937 |
"selecciona una opción no predeterminada ."
|
938 |
|
939 |
+
#: includes/class-wpglobus.php:4189
|
940 |
msgid "Add"
|
941 |
msgstr "Añadir"
|
942 |
|
languages/wpglobus-es_ES.po
CHANGED
@@ -819,7 +819,7 @@ msgid "To translate permalinks, please activate the module Slug."
|
|
819 |
msgstr ""
|
820 |
|
821 |
#: includes/builders/class-wpglobus-builder.php:277,
|
822 |
-
#: includes/class-wpglobus.php:
|
823 |
msgid "Save draft before using extra language."
|
824 |
msgstr ""
|
825 |
|
@@ -923,12 +923,12 @@ msgstr "No Se Puede Desactivar el director idioma."
|
|
923 |
msgid "Need a multilingual slug?"
|
924 |
msgstr ""
|
925 |
|
926 |
-
#: includes/class-wpglobus.php:
|
927 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
928 |
msgstr ""
|
929 |
"Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
|
930 |
|
931 |
-
#: includes/class-wpglobus.php:
|
932 |
msgid ""
|
933 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
934 |
"default option."
|
@@ -936,7 +936,7 @@ msgstr ""
|
|
936 |
"Por favor, ve a Configuración > Enlaces permanentes > Ajustes comunes y "
|
937 |
"selecciona una opción no predeterminada ."
|
938 |
|
939 |
-
#: includes/class-wpglobus.php:
|
940 |
msgid "Add"
|
941 |
msgstr "Añadir"
|
942 |
|
819 |
msgstr ""
|
820 |
|
821 |
#: includes/builders/class-wpglobus-builder.php:277,
|
822 |
+
#: includes/class-wpglobus.php:3596
|
823 |
msgid "Save draft before using extra language."
|
824 |
msgstr ""
|
825 |
|
923 |
msgid "Need a multilingual slug?"
|
924 |
msgstr ""
|
925 |
|
926 |
+
#: includes/class-wpglobus.php:4035
|
927 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
928 |
msgstr ""
|
929 |
"Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
|
930 |
|
931 |
+
#: includes/class-wpglobus.php:4037
|
932 |
msgid ""
|
933 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
934 |
"default option."
|
936 |
"Por favor, ve a Configuración > Enlaces permanentes > Ajustes comunes y "
|
937 |
"selecciona una opción no predeterminada ."
|
938 |
|
939 |
+
#: includes/class-wpglobus.php:4189
|
940 |
msgid "Add"
|
941 |
msgstr "Añadir"
|
942 |
|
languages/wpglobus-es_GT.po
CHANGED
@@ -819,7 +819,7 @@ msgid "To translate permalinks, please activate the module Slug."
|
|
819 |
msgstr ""
|
820 |
|
821 |
#: includes/builders/class-wpglobus-builder.php:277,
|
822 |
-
#: includes/class-wpglobus.php:
|
823 |
msgid "Save draft before using extra language."
|
824 |
msgstr ""
|
825 |
|
@@ -923,12 +923,12 @@ msgstr "No Se Puede Desactivar el director idioma."
|
|
923 |
msgid "Need a multilingual slug?"
|
924 |
msgstr ""
|
925 |
|
926 |
-
#: includes/class-wpglobus.php:
|
927 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
928 |
msgstr ""
|
929 |
"Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
|
930 |
|
931 |
-
#: includes/class-wpglobus.php:
|
932 |
msgid ""
|
933 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
934 |
"default option."
|
@@ -936,7 +936,7 @@ msgstr ""
|
|
936 |
"Por favor, ve a Configuración > Enlaces permanentes > Ajustes comunes y "
|
937 |
"selecciona una opción no predeterminada ."
|
938 |
|
939 |
-
#: includes/class-wpglobus.php:
|
940 |
msgid "Add"
|
941 |
msgstr "Añadir"
|
942 |
|
819 |
msgstr ""
|
820 |
|
821 |
#: includes/builders/class-wpglobus-builder.php:277,
|
822 |
+
#: includes/class-wpglobus.php:3596
|
823 |
msgid "Save draft before using extra language."
|
824 |
msgstr ""
|
825 |
|
923 |
msgid "Need a multilingual slug?"
|
924 |
msgstr ""
|
925 |
|
926 |
+
#: includes/class-wpglobus.php:4035
|
927 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
928 |
msgstr ""
|
929 |
"Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
|
930 |
|
931 |
+
#: includes/class-wpglobus.php:4037
|
932 |
msgid ""
|
933 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
934 |
"default option."
|
936 |
"Por favor, ve a Configuración > Enlaces permanentes > Ajustes comunes y "
|
937 |
"selecciona una opción no predeterminada ."
|
938 |
|
939 |
+
#: includes/class-wpglobus.php:4189
|
940 |
msgid "Add"
|
941 |
msgstr "Añadir"
|
942 |
|
languages/wpglobus-es_MX.po
CHANGED
@@ -819,7 +819,7 @@ msgid "To translate permalinks, please activate the module Slug."
|
|
819 |
msgstr ""
|
820 |
|
821 |
#: includes/builders/class-wpglobus-builder.php:277,
|
822 |
-
#: includes/class-wpglobus.php:
|
823 |
msgid "Save draft before using extra language."
|
824 |
msgstr ""
|
825 |
|
@@ -923,12 +923,12 @@ msgstr "No Se Puede Desactivar el director idioma."
|
|
923 |
msgid "Need a multilingual slug?"
|
924 |
msgstr ""
|
925 |
|
926 |
-
#: includes/class-wpglobus.php:
|
927 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
928 |
msgstr ""
|
929 |
"Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
|
930 |
|
931 |
-
#: includes/class-wpglobus.php:
|
932 |
msgid ""
|
933 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
934 |
"default option."
|
@@ -936,7 +936,7 @@ msgstr ""
|
|
936 |
"Por favor, ve a Configuración > Enlaces permanentes > Ajustes comunes y "
|
937 |
"selecciona una opción no predeterminada ."
|
938 |
|
939 |
-
#: includes/class-wpglobus.php:
|
940 |
msgid "Add"
|
941 |
msgstr "Añadir"
|
942 |
|
819 |
msgstr ""
|
820 |
|
821 |
#: includes/builders/class-wpglobus-builder.php:277,
|
822 |
+
#: includes/class-wpglobus.php:3596
|
823 |
msgid "Save draft before using extra language."
|
824 |
msgstr ""
|
825 |
|
923 |
msgid "Need a multilingual slug?"
|
924 |
msgstr ""
|
925 |
|
926 |
+
#: includes/class-wpglobus.php:4035
|
927 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
928 |
msgstr ""
|
929 |
"Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
|
930 |
|
931 |
+
#: includes/class-wpglobus.php:4037
|
932 |
msgid ""
|
933 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
934 |
"default option."
|
936 |
"Por favor, ve a Configuración > Enlaces permanentes > Ajustes comunes y "
|
937 |
"selecciona una opción no predeterminada ."
|
938 |
|
939 |
+
#: includes/class-wpglobus.php:4189
|
940 |
msgid "Add"
|
941 |
msgstr "Añadir"
|
942 |
|
languages/wpglobus-es_PE.po
CHANGED
@@ -819,7 +819,7 @@ msgid "To translate permalinks, please activate the module Slug."
|
|
819 |
msgstr ""
|
820 |
|
821 |
#: includes/builders/class-wpglobus-builder.php:277,
|
822 |
-
#: includes/class-wpglobus.php:
|
823 |
msgid "Save draft before using extra language."
|
824 |
msgstr ""
|
825 |
|
@@ -923,12 +923,12 @@ msgstr "No Se Puede Desactivar el director idioma."
|
|
923 |
msgid "Need a multilingual slug?"
|
924 |
msgstr ""
|
925 |
|
926 |
-
#: includes/class-wpglobus.php:
|
927 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
928 |
msgstr ""
|
929 |
"Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
|
930 |
|
931 |
-
#: includes/class-wpglobus.php:
|
932 |
msgid ""
|
933 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
934 |
"default option."
|
@@ -936,7 +936,7 @@ msgstr ""
|
|
936 |
"Por favor, ve a Configuración > Enlaces permanentes > Ajustes comunes y "
|
937 |
"selecciona una opción no predeterminada ."
|
938 |
|
939 |
-
#: includes/class-wpglobus.php:
|
940 |
msgid "Add"
|
941 |
msgstr "Añadir"
|
942 |
|
819 |
msgstr ""
|
820 |
|
821 |
#: includes/builders/class-wpglobus-builder.php:277,
|
822 |
+
#: includes/class-wpglobus.php:3596
|
823 |
msgid "Save draft before using extra language."
|
824 |
msgstr ""
|
825 |
|
923 |
msgid "Need a multilingual slug?"
|
924 |
msgstr ""
|
925 |
|
926 |
+
#: includes/class-wpglobus.php:4035
|
927 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
928 |
msgstr ""
|
929 |
"Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
|
930 |
|
931 |
+
#: includes/class-wpglobus.php:4037
|
932 |
msgid ""
|
933 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
934 |
"default option."
|
936 |
"Por favor, ve a Configuración > Enlaces permanentes > Ajustes comunes y "
|
937 |
"selecciona una opción no predeterminada ."
|
938 |
|
939 |
+
#: includes/class-wpglobus.php:4189
|
940 |
msgid "Add"
|
941 |
msgstr "Añadir"
|
942 |
|
languages/wpglobus-es_PR.po
CHANGED
@@ -819,7 +819,7 @@ msgid "To translate permalinks, please activate the module Slug."
|
|
819 |
msgstr ""
|
820 |
|
821 |
#: includes/builders/class-wpglobus-builder.php:277,
|
822 |
-
#: includes/class-wpglobus.php:
|
823 |
msgid "Save draft before using extra language."
|
824 |
msgstr ""
|
825 |
|
@@ -923,12 +923,12 @@ msgstr "No Se Puede Desactivar el director idioma."
|
|
923 |
msgid "Need a multilingual slug?"
|
924 |
msgstr ""
|
925 |
|
926 |
-
#: includes/class-wpglobus.php:
|
927 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
928 |
msgstr ""
|
929 |
"Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
|
930 |
|
931 |
-
#: includes/class-wpglobus.php:
|
932 |
msgid ""
|
933 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
934 |
"default option."
|
@@ -936,7 +936,7 @@ msgstr ""
|
|
936 |
"Por favor, ve a Configuración > Enlaces permanentes > Ajustes comunes y "
|
937 |
"selecciona una opción no predeterminada ."
|
938 |
|
939 |
-
#: includes/class-wpglobus.php:
|
940 |
msgid "Add"
|
941 |
msgstr "Añadir"
|
942 |
|
819 |
msgstr ""
|
820 |
|
821 |
#: includes/builders/class-wpglobus-builder.php:277,
|
822 |
+
#: includes/class-wpglobus.php:3596
|
823 |
msgid "Save draft before using extra language."
|
824 |
msgstr ""
|
825 |
|
923 |
msgid "Need a multilingual slug?"
|
924 |
msgstr ""
|
925 |
|
926 |
+
#: includes/class-wpglobus.php:4035
|
927 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
928 |
msgstr ""
|
929 |
"Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
|
930 |
|
931 |
+
#: includes/class-wpglobus.php:4037
|
932 |
msgid ""
|
933 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
934 |
"default option."
|
936 |
"Por favor, ve a Configuración > Enlaces permanentes > Ajustes comunes y "
|
937 |
"selecciona una opción no predeterminada ."
|
938 |
|
939 |
+
#: includes/class-wpglobus.php:4189
|
940 |
msgid "Add"
|
941 |
msgstr "Añadir"
|
942 |
|
languages/wpglobus-es_VE.po
CHANGED
@@ -819,7 +819,7 @@ msgid "To translate permalinks, please activate the module Slug."
|
|
819 |
msgstr ""
|
820 |
|
821 |
#: includes/builders/class-wpglobus-builder.php:277,
|
822 |
-
#: includes/class-wpglobus.php:
|
823 |
msgid "Save draft before using extra language."
|
824 |
msgstr ""
|
825 |
|
@@ -923,12 +923,12 @@ msgstr "No Se Puede Desactivar el director idioma."
|
|
923 |
msgid "Need a multilingual slug?"
|
924 |
msgstr ""
|
925 |
|
926 |
-
#: includes/class-wpglobus.php:
|
927 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
928 |
msgstr ""
|
929 |
"Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
|
930 |
|
931 |
-
#: includes/class-wpglobus.php:
|
932 |
msgid ""
|
933 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
934 |
"default option."
|
@@ -936,7 +936,7 @@ msgstr ""
|
|
936 |
"Por favor, ve a Configuración > Enlaces permanentes > Ajustes comunes y "
|
937 |
"selecciona una opción no predeterminada ."
|
938 |
|
939 |
-
#: includes/class-wpglobus.php:
|
940 |
msgid "Add"
|
941 |
msgstr "Añadir"
|
942 |
|
819 |
msgstr ""
|
820 |
|
821 |
#: includes/builders/class-wpglobus-builder.php:277,
|
822 |
+
#: includes/class-wpglobus.php:3596
|
823 |
msgid "Save draft before using extra language."
|
824 |
msgstr ""
|
825 |
|
923 |
msgid "Need a multilingual slug?"
|
924 |
msgstr ""
|
925 |
|
926 |
+
#: includes/class-wpglobus.php:4035
|
927 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
928 |
msgstr ""
|
929 |
"Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
|
930 |
|
931 |
+
#: includes/class-wpglobus.php:4037
|
932 |
msgid ""
|
933 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
934 |
"default option."
|
936 |
"Por favor, ve a Configuración > Enlaces permanentes > Ajustes comunes y "
|
937 |
"selecciona una opción no predeterminada ."
|
938 |
|
939 |
+
#: includes/class-wpglobus.php:4189
|
940 |
msgid "Add"
|
941 |
msgstr "Añadir"
|
942 |
|
languages/wpglobus-et.po
CHANGED
@@ -785,7 +785,7 @@ msgid "To translate permalinks, please activate the module Slug."
|
|
785 |
msgstr ""
|
786 |
|
787 |
#: includes/builders/class-wpglobus-builder.php:277,
|
788 |
-
#: includes/class-wpglobus.php:
|
789 |
msgid "Save draft before using extra language."
|
790 |
msgstr ""
|
791 |
|
@@ -889,17 +889,17 @@ msgstr ""
|
|
889 |
msgid "Need a multilingual slug?"
|
890 |
msgstr ""
|
891 |
|
892 |
-
#: includes/class-wpglobus.php:
|
893 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
894 |
msgstr ""
|
895 |
|
896 |
-
#: includes/class-wpglobus.php:
|
897 |
msgid ""
|
898 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
899 |
"default option."
|
900 |
msgstr ""
|
901 |
|
902 |
-
#: includes/class-wpglobus.php:
|
903 |
msgid "Add"
|
904 |
msgstr "Lisa"
|
905 |
|
785 |
msgstr ""
|
786 |
|
787 |
#: includes/builders/class-wpglobus-builder.php:277,
|
788 |
+
#: includes/class-wpglobus.php:3596
|
789 |
msgid "Save draft before using extra language."
|
790 |
msgstr ""
|
791 |
|
889 |
msgid "Need a multilingual slug?"
|
890 |
msgstr ""
|
891 |
|
892 |
+
#: includes/class-wpglobus.php:4035
|
893 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
894 |
msgstr ""
|
895 |
|
896 |
+
#: includes/class-wpglobus.php:4037
|
897 |
msgid ""
|
898 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
899 |
"default option."
|
900 |
msgstr ""
|
901 |
|
902 |
+
#: includes/class-wpglobus.php:4189
|
903 |
msgid "Add"
|
904 |
msgstr "Lisa"
|
905 |
|
languages/wpglobus-fr_BE.po
CHANGED
@@ -882,7 +882,7 @@ msgid "To translate permalinks, please activate the module Slug."
|
|
882 |
msgstr ""
|
883 |
|
884 |
#: includes/builders/class-wpglobus-builder.php:277,
|
885 |
-
#: includes/class-wpglobus.php:
|
886 |
msgid "Save draft before using extra language."
|
887 |
msgstr ""
|
888 |
|
@@ -986,13 +986,13 @@ msgstr "*) Disponible après que le menu ait été enregistré."
|
|
986 |
msgid "Need a multilingual slug?"
|
987 |
msgstr "Vous avez besoin d’un identifiant multilingue ?"
|
988 |
|
989 |
-
#: includes/class-wpglobus.php:
|
990 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
991 |
msgstr ""
|
992 |
"Vous devez activer les jolis permaliens pour pouvoir utiliser WPGlobus "
|
993 |
"correctement."
|
994 |
|
995 |
-
#: includes/class-wpglobus.php:
|
996 |
msgid ""
|
997 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
998 |
"default option."
|
@@ -1000,7 +1000,7 @@ msgstr ""
|
|
1000 |
"Veuillez vous rendre dans Réglages > Permaliens et choisissez autre chose "
|
1001 |
"que la valeur par défaut."
|
1002 |
|
1003 |
-
#: includes/class-wpglobus.php:
|
1004 |
msgid "Add"
|
1005 |
msgstr "Ajouter"
|
1006 |
|
882 |
msgstr ""
|
883 |
|
884 |
#: includes/builders/class-wpglobus-builder.php:277,
|
885 |
+
#: includes/class-wpglobus.php:3596
|
886 |
msgid "Save draft before using extra language."
|
887 |
msgstr ""
|
888 |
|
986 |
msgid "Need a multilingual slug?"
|
987 |
msgstr "Vous avez besoin d’un identifiant multilingue ?"
|
988 |
|
989 |
+
#: includes/class-wpglobus.php:4035
|
990 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
991 |
msgstr ""
|
992 |
"Vous devez activer les jolis permaliens pour pouvoir utiliser WPGlobus "
|
993 |
"correctement."
|
994 |
|
995 |
+
#: includes/class-wpglobus.php:4037
|
996 |
msgid ""
|
997 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
998 |
"default option."
|
1000 |
"Veuillez vous rendre dans Réglages > Permaliens et choisissez autre chose "
|
1001 |
"que la valeur par défaut."
|
1002 |
|
1003 |
+
#: includes/class-wpglobus.php:4189
|
1004 |
msgid "Add"
|
1005 |
msgstr "Ajouter"
|
1006 |
|
languages/wpglobus-fr_CA.po
CHANGED
@@ -884,7 +884,7 @@ msgid "To translate permalinks, please activate the module Slug."
|
|
884 |
msgstr ""
|
885 |
|
886 |
#: includes/builders/class-wpglobus-builder.php:277,
|
887 |
-
#: includes/class-wpglobus.php:
|
888 |
msgid "Save draft before using extra language."
|
889 |
msgstr ""
|
890 |
|
@@ -988,13 +988,13 @@ msgstr "*) Disponible après que le menu ait été enregistré."
|
|
988 |
msgid "Need a multilingual slug?"
|
989 |
msgstr "Vous avez besoin d’un identifiant multilingue ?"
|
990 |
|
991 |
-
#: includes/class-wpglobus.php:
|
992 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
993 |
msgstr ""
|
994 |
"Vous devez activer les jolis permaliens pour pouvoir utiliser WPGlobus "
|
995 |
"correctement."
|
996 |
|
997 |
-
#: includes/class-wpglobus.php:
|
998 |
msgid ""
|
999 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
1000 |
"default option."
|
@@ -1002,7 +1002,7 @@ msgstr ""
|
|
1002 |
"Veuillez vous rendre dans Réglages > Permaliens et choisissez autre chose "
|
1003 |
"que la valeur par défaut."
|
1004 |
|
1005 |
-
#: includes/class-wpglobus.php:
|
1006 |
msgid "Add"
|
1007 |
msgstr "Ajouter"
|
1008 |
|
884 |
msgstr ""
|
885 |
|
886 |
#: includes/builders/class-wpglobus-builder.php:277,
|
887 |
+
#: includes/class-wpglobus.php:3596
|
888 |
msgid "Save draft before using extra language."
|
889 |
msgstr ""
|
890 |
|
988 |
msgid "Need a multilingual slug?"
|
989 |
msgstr "Vous avez besoin d’un identifiant multilingue ?"
|
990 |
|
991 |
+
#: includes/class-wpglobus.php:4035
|
992 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
993 |
msgstr ""
|
994 |
"Vous devez activer les jolis permaliens pour pouvoir utiliser WPGlobus "
|
995 |
"correctement."
|
996 |
|
997 |
+
#: includes/class-wpglobus.php:4037
|
998 |
msgid ""
|
999 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
1000 |
"default option."
|
1002 |
"Veuillez vous rendre dans Réglages > Permaliens et choisissez autre chose "
|
1003 |
"que la valeur par défaut."
|
1004 |
|
1005 |
+
#: includes/class-wpglobus.php:4189
|
1006 |
msgid "Add"
|
1007 |
msgstr "Ajouter"
|
1008 |
|
languages/wpglobus-fr_FR.po
CHANGED
@@ -884,7 +884,7 @@ msgid "To translate permalinks, please activate the module Slug."
|
|
884 |
msgstr ""
|
885 |
|
886 |
#: includes/builders/class-wpglobus-builder.php:277,
|
887 |
-
#: includes/class-wpglobus.php:
|
888 |
msgid "Save draft before using extra language."
|
889 |
msgstr ""
|
890 |
|
@@ -988,13 +988,13 @@ msgstr "*) Disponible après que le menu ait été enregistré."
|
|
988 |
msgid "Need a multilingual slug?"
|
989 |
msgstr "Vous avez besoin d’un identifiant multilingue ?"
|
990 |
|
991 |
-
#: includes/class-wpglobus.php:
|
992 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
993 |
msgstr ""
|
994 |
"Vous devez activer les jolis permaliens pour pouvoir utiliser WPGlobus "
|
995 |
"correctement."
|
996 |
|
997 |
-
#: includes/class-wpglobus.php:
|
998 |
msgid ""
|
999 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
1000 |
"default option."
|
@@ -1002,7 +1002,7 @@ msgstr ""
|
|
1002 |
"Veuillez vous rendre dans Réglages > Permaliens et choisissez autre chose "
|
1003 |
"que la valeur par défaut."
|
1004 |
|
1005 |
-
#: includes/class-wpglobus.php:
|
1006 |
msgid "Add"
|
1007 |
msgstr "Ajouter"
|
1008 |
|
884 |
msgstr ""
|
885 |
|
886 |
#: includes/builders/class-wpglobus-builder.php:277,
|
887 |
+
#: includes/class-wpglobus.php:3596
|
888 |
msgid "Save draft before using extra language."
|
889 |
msgstr ""
|
890 |
|
988 |
msgid "Need a multilingual slug?"
|
989 |
msgstr "Vous avez besoin d’un identifiant multilingue ?"
|
990 |
|
991 |
+
#: includes/class-wpglobus.php:4035
|
992 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
993 |
msgstr ""
|
994 |
"Vous devez activer les jolis permaliens pour pouvoir utiliser WPGlobus "
|
995 |
"correctement."
|
996 |
|
997 |
+
#: includes/class-wpglobus.php:4037
|
998 |
msgid ""
|
999 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
1000 |
"default option."
|
1002 |
"Veuillez vous rendre dans Réglages > Permaliens et choisissez autre chose "
|
1003 |
"que la valeur par défaut."
|
1004 |
|
1005 |
+
#: includes/class-wpglobus.php:4189
|
1006 |
msgid "Add"
|
1007 |
msgstr "Ajouter"
|
1008 |
|
languages/wpglobus-id_ID.po
CHANGED
@@ -859,7 +859,7 @@ msgid "To translate permalinks, please activate the module Slug."
|
|
859 |
msgstr ""
|
860 |
|
861 |
#: includes/builders/class-wpglobus-builder.php:277,
|
862 |
-
#: includes/class-wpglobus.php:
|
863 |
msgid "Save draft before using extra language."
|
864 |
msgstr ""
|
865 |
|
@@ -963,11 +963,11 @@ msgstr "*) Tersedia setelah menu tersebut disimpan."
|
|
963 |
msgid "Need a multilingual slug?"
|
964 |
msgstr ""
|
965 |
|
966 |
-
#: includes/class-wpglobus.php:
|
967 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
968 |
msgstr "Anda harus mengaktifkan Permalinks Cukup menggunakan WPGlobus."
|
969 |
|
970 |
-
#: includes/class-wpglobus.php:
|
971 |
msgid ""
|
972 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
973 |
"default option."
|
@@ -975,7 +975,7 @@ msgstr ""
|
|
975 |
"Silakan pergi ke Settings > Permalinks > Umum Pengaturan dan memilih pilihan "
|
976 |
"non-default."
|
977 |
|
978 |
-
#: includes/class-wpglobus.php:
|
979 |
msgid "Add"
|
980 |
msgstr "Menambahkan"
|
981 |
|
859 |
msgstr ""
|
860 |
|
861 |
#: includes/builders/class-wpglobus-builder.php:277,
|
862 |
+
#: includes/class-wpglobus.php:3596
|
863 |
msgid "Save draft before using extra language."
|
864 |
msgstr ""
|
865 |
|
963 |
msgid "Need a multilingual slug?"
|
964 |
msgstr ""
|
965 |
|
966 |
+
#: includes/class-wpglobus.php:4035
|
967 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
968 |
msgstr "Anda harus mengaktifkan Permalinks Cukup menggunakan WPGlobus."
|
969 |
|
970 |
+
#: includes/class-wpglobus.php:4037
|
971 |
msgid ""
|
972 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
973 |
"default option."
|
975 |
"Silakan pergi ke Settings > Permalinks > Umum Pengaturan dan memilih pilihan "
|
976 |
"non-default."
|
977 |
|
978 |
+
#: includes/class-wpglobus.php:4189
|
979 |
msgid "Add"
|
980 |
msgstr "Menambahkan"
|
981 |
|
languages/wpglobus-ko_KR.po
CHANGED
@@ -784,7 +784,7 @@ msgid "To translate permalinks, please activate the module Slug."
|
|
784 |
msgstr ""
|
785 |
|
786 |
#: includes/builders/class-wpglobus-builder.php:277,
|
787 |
-
#: includes/class-wpglobus.php:
|
788 |
msgid "Save draft before using extra language."
|
789 |
msgstr ""
|
790 |
|
@@ -888,17 +888,17 @@ msgstr ""
|
|
888 |
msgid "Need a multilingual slug?"
|
889 |
msgstr ""
|
890 |
|
891 |
-
#: includes/class-wpglobus.php:
|
892 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
893 |
msgstr ""
|
894 |
|
895 |
-
#: includes/class-wpglobus.php:
|
896 |
msgid ""
|
897 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
898 |
"default option."
|
899 |
msgstr ""
|
900 |
|
901 |
-
#: includes/class-wpglobus.php:
|
902 |
msgid "Add"
|
903 |
msgstr "추가하기"
|
904 |
|
784 |
msgstr ""
|
785 |
|
786 |
#: includes/builders/class-wpglobus-builder.php:277,
|
787 |
+
#: includes/class-wpglobus.php:3596
|
788 |
msgid "Save draft before using extra language."
|
789 |
msgstr ""
|
790 |
|
888 |
msgid "Need a multilingual slug?"
|
889 |
msgstr ""
|
890 |
|
891 |
+
#: includes/class-wpglobus.php:4035
|
892 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
893 |
msgstr ""
|
894 |
|
895 |
+
#: includes/class-wpglobus.php:4037
|
896 |
msgid ""
|
897 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
898 |
"default option."
|
899 |
msgstr ""
|
900 |
|
901 |
+
#: includes/class-wpglobus.php:4189
|
902 |
msgid "Add"
|
903 |
msgstr "추가하기"
|
904 |
|
languages/wpglobus-pl_PL.po
CHANGED
@@ -811,7 +811,7 @@ msgid "To translate permalinks, please activate the module Slug."
|
|
811 |
msgstr ""
|
812 |
|
813 |
#: includes/builders/class-wpglobus-builder.php:277,
|
814 |
-
#: includes/class-wpglobus.php:
|
815 |
msgid "Save draft before using extra language."
|
816 |
msgstr ""
|
817 |
|
@@ -915,12 +915,12 @@ msgstr "*) Dostępne po zapisaniu menu."
|
|
915 |
msgid "Need a multilingual slug?"
|
916 |
msgstr ""
|
917 |
|
918 |
-
#: includes/class-wpglobus.php:
|
919 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
920 |
msgstr ""
|
921 |
"Aby korzystać z WPGlobus'a, musisz ustawić przyjazne bezpośrednie odnośniki."
|
922 |
|
923 |
-
#: includes/class-wpglobus.php:
|
924 |
msgid ""
|
925 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
926 |
"default option."
|
@@ -928,7 +928,7 @@ msgstr ""
|
|
928 |
"Proszę przejść do Ustawienia > Bezpośrednie odnośniki > Popularne ustawienia "
|
929 |
"i wybrać opcję Nazwa wpisu."
|
930 |
|
931 |
-
#: includes/class-wpglobus.php:
|
932 |
msgid "Add"
|
933 |
msgstr "Dodaj"
|
934 |
|
811 |
msgstr ""
|
812 |
|
813 |
#: includes/builders/class-wpglobus-builder.php:277,
|
814 |
+
#: includes/class-wpglobus.php:3596
|
815 |
msgid "Save draft before using extra language."
|
816 |
msgstr ""
|
817 |
|
915 |
msgid "Need a multilingual slug?"
|
916 |
msgstr ""
|
917 |
|
918 |
+
#: includes/class-wpglobus.php:4035
|
919 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
920 |
msgstr ""
|
921 |
"Aby korzystać z WPGlobus'a, musisz ustawić przyjazne bezpośrednie odnośniki."
|
922 |
|
923 |
+
#: includes/class-wpglobus.php:4037
|
924 |
msgid ""
|
925 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
926 |
"default option."
|
928 |
"Proszę przejść do Ustawienia > Bezpośrednie odnośniki > Popularne ustawienia "
|
929 |
"i wybrać opcję Nazwa wpisu."
|
930 |
|
931 |
+
#: includes/class-wpglobus.php:4189
|
932 |
msgid "Add"
|
933 |
msgstr "Dodaj"
|
934 |
|
languages/wpglobus-pt_BR.po
CHANGED
@@ -784,7 +784,7 @@ msgid "To translate permalinks, please activate the module Slug."
|
|
784 |
msgstr ""
|
785 |
|
786 |
#: includes/builders/class-wpglobus-builder.php:277,
|
787 |
-
#: includes/class-wpglobus.php:
|
788 |
msgid "Save draft before using extra language."
|
789 |
msgstr ""
|
790 |
|
@@ -888,17 +888,17 @@ msgstr ""
|
|
888 |
msgid "Need a multilingual slug?"
|
889 |
msgstr ""
|
890 |
|
891 |
-
#: includes/class-wpglobus.php:
|
892 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
893 |
msgstr ""
|
894 |
|
895 |
-
#: includes/class-wpglobus.php:
|
896 |
msgid ""
|
897 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
898 |
"default option."
|
899 |
msgstr ""
|
900 |
|
901 |
-
#: includes/class-wpglobus.php:
|
902 |
msgid "Add"
|
903 |
msgstr ""
|
904 |
|
784 |
msgstr ""
|
785 |
|
786 |
#: includes/builders/class-wpglobus-builder.php:277,
|
787 |
+
#: includes/class-wpglobus.php:3596
|
788 |
msgid "Save draft before using extra language."
|
789 |
msgstr ""
|
790 |
|
888 |
msgid "Need a multilingual slug?"
|
889 |
msgstr ""
|
890 |
|
891 |
+
#: includes/class-wpglobus.php:4035
|
892 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
893 |
msgstr ""
|
894 |
|
895 |
+
#: includes/class-wpglobus.php:4037
|
896 |
msgid ""
|
897 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
898 |
"default option."
|
899 |
msgstr ""
|
900 |
|
901 |
+
#: includes/class-wpglobus.php:4189
|
902 |
msgid "Add"
|
903 |
msgstr ""
|
904 |
|
languages/wpglobus-pt_PT.po
CHANGED
@@ -784,7 +784,7 @@ msgid "To translate permalinks, please activate the module Slug."
|
|
784 |
msgstr ""
|
785 |
|
786 |
#: includes/builders/class-wpglobus-builder.php:277,
|
787 |
-
#: includes/class-wpglobus.php:
|
788 |
msgid "Save draft before using extra language."
|
789 |
msgstr ""
|
790 |
|
@@ -888,17 +888,17 @@ msgstr ""
|
|
888 |
msgid "Need a multilingual slug?"
|
889 |
msgstr ""
|
890 |
|
891 |
-
#: includes/class-wpglobus.php:
|
892 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
893 |
msgstr ""
|
894 |
|
895 |
-
#: includes/class-wpglobus.php:
|
896 |
msgid ""
|
897 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
898 |
"default option."
|
899 |
msgstr ""
|
900 |
|
901 |
-
#: includes/class-wpglobus.php:
|
902 |
msgid "Add"
|
903 |
msgstr ""
|
904 |
|
784 |
msgstr ""
|
785 |
|
786 |
#: includes/builders/class-wpglobus-builder.php:277,
|
787 |
+
#: includes/class-wpglobus.php:3596
|
788 |
msgid "Save draft before using extra language."
|
789 |
msgstr ""
|
790 |
|
888 |
msgid "Need a multilingual slug?"
|
889 |
msgstr ""
|
890 |
|
891 |
+
#: includes/class-wpglobus.php:4035
|
892 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
893 |
msgstr ""
|
894 |
|
895 |
+
#: includes/class-wpglobus.php:4037
|
896 |
msgid ""
|
897 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
898 |
"default option."
|
899 |
msgstr ""
|
900 |
|
901 |
+
#: includes/class-wpglobus.php:4189
|
902 |
msgid "Add"
|
903 |
msgstr ""
|
904 |
|
languages/wpglobus-ro_RO.po
CHANGED
@@ -814,7 +814,7 @@ msgid "To translate permalinks, please activate the module Slug."
|
|
814 |
msgstr ""
|
815 |
|
816 |
#: includes/builders/class-wpglobus-builder.php:277,
|
817 |
-
#: includes/class-wpglobus.php:
|
818 |
msgid "Save draft before using extra language."
|
819 |
msgstr ""
|
820 |
|
@@ -918,11 +918,11 @@ msgstr "*) Disponibil după ce meniul este salvat."
|
|
918 |
msgid "Need a multilingual slug?"
|
919 |
msgstr ""
|
920 |
|
921 |
-
#: includes/class-wpglobus.php:
|
922 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
923 |
msgstr "Trebuie să activezi Pretty Permalinks pentru a folosi WPGlobus."
|
924 |
|
925 |
-
#: includes/class-wpglobus.php:
|
926 |
msgid ""
|
927 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
928 |
"default option."
|
@@ -930,7 +930,7 @@ msgstr ""
|
|
930 |
"Vă rugăm să mergeți la Setări> Permalinks> Setări comune și alegeți o "
|
931 |
"opțiune non-default."
|
932 |
|
933 |
-
#: includes/class-wpglobus.php:
|
934 |
msgid "Add"
|
935 |
msgstr "Adaugă"
|
936 |
|
814 |
msgstr ""
|
815 |
|
816 |
#: includes/builders/class-wpglobus-builder.php:277,
|
817 |
+
#: includes/class-wpglobus.php:3596
|
818 |
msgid "Save draft before using extra language."
|
819 |
msgstr ""
|
820 |
|
918 |
msgid "Need a multilingual slug?"
|
919 |
msgstr ""
|
920 |
|
921 |
+
#: includes/class-wpglobus.php:4035
|
922 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
923 |
msgstr "Trebuie să activezi Pretty Permalinks pentru a folosi WPGlobus."
|
924 |
|
925 |
+
#: includes/class-wpglobus.php:4037
|
926 |
msgid ""
|
927 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
928 |
"default option."
|
930 |
"Vă rugăm să mergeți la Setări> Permalinks> Setări comune și alegeți o "
|
931 |
"opțiune non-default."
|
932 |
|
933 |
+
#: includes/class-wpglobus.php:4189
|
934 |
msgid "Add"
|
935 |
msgstr "Adaugă"
|
936 |
|
languages/wpglobus-ru_RU.po
CHANGED
@@ -865,7 +865,7 @@ msgid "To translate permalinks, please activate the module Slug."
|
|
865 |
msgstr "Для перевода ссылок необходимо активировать модуль УРЛ."
|
866 |
|
867 |
#: includes/builders/class-wpglobus-builder.php:277,
|
868 |
-
#: includes/class-wpglobus.php:
|
869 |
msgid "Save draft before using extra language."
|
870 |
msgstr "Сохраните черновик перед переключением на другой язык."
|
871 |
|
@@ -970,13 +970,13 @@ msgstr "*) Доступно после сохранения меню."
|
|
970 |
msgid "Need a multilingual slug?"
|
971 |
msgstr "Нужен мультиязычный ярлык?"
|
972 |
|
973 |
-
#: includes/class-wpglobus.php:
|
974 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
975 |
msgstr ""
|
976 |
"Чтобы использовать плагин WPGlobus, необходимо включить ЧПУ - постоянные "
|
977 |
"ссылки."
|
978 |
|
979 |
-
#: includes/class-wpglobus.php:
|
980 |
msgid ""
|
981 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
982 |
"default option."
|
@@ -984,7 +984,7 @@ msgstr ""
|
|
984 |
"Пожалуйста, перейдите в меню Настройки > Постоянные ссылки и поменяйте "
|
985 |
"структуру ссылок в разделе \"Общие настройки\"."
|
986 |
|
987 |
-
#: includes/class-wpglobus.php:
|
988 |
msgid "Add"
|
989 |
msgstr "Добавить"
|
990 |
|
865 |
msgstr "Для перевода ссылок необходимо активировать модуль УРЛ."
|
866 |
|
867 |
#: includes/builders/class-wpglobus-builder.php:277,
|
868 |
+
#: includes/class-wpglobus.php:3596
|
869 |
msgid "Save draft before using extra language."
|
870 |
msgstr "Сохраните черновик перед переключением на другой язык."
|
871 |
|
970 |
msgid "Need a multilingual slug?"
|
971 |
msgstr "Нужен мультиязычный ярлык?"
|
972 |
|
973 |
+
#: includes/class-wpglobus.php:4035
|
974 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
975 |
msgstr ""
|
976 |
"Чтобы использовать плагин WPGlobus, необходимо включить ЧПУ - постоянные "
|
977 |
"ссылки."
|
978 |
|
979 |
+
#: includes/class-wpglobus.php:4037
|
980 |
msgid ""
|
981 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
982 |
"default option."
|
984 |
"Пожалуйста, перейдите в меню Настройки > Постоянные ссылки и поменяйте "
|
985 |
"структуру ссылок в разделе \"Общие настройки\"."
|
986 |
|
987 |
+
#: includes/class-wpglobus.php:4189
|
988 |
msgid "Add"
|
989 |
msgstr "Добавить"
|
990 |
|
languages/wpglobus-sv_SE.po
CHANGED
@@ -807,7 +807,7 @@ msgid "To translate permalinks, please activate the module Slug."
|
|
807 |
msgstr ""
|
808 |
|
809 |
#: includes/builders/class-wpglobus-builder.php:277,
|
810 |
-
#: includes/class-wpglobus.php:
|
811 |
msgid "Save draft before using extra language."
|
812 |
msgstr ""
|
813 |
|
@@ -911,11 +911,11 @@ msgstr "*) Tillgängligt när menyn sparats."
|
|
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 "Du måste aktivera Vackra Permalänkar för att använda WPGlobus."
|
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 |
"Gå till Inställningar> Permalänkar> Vanliga inställningar och välj ett icke-"
|
924 |
"standardalternativet."
|
925 |
|
926 |
-
#: includes/class-wpglobus.php:
|
927 |
msgid "Add"
|
928 |
msgstr "Lägg till"
|
929 |
|
807 |
msgstr ""
|
808 |
|
809 |
#: includes/builders/class-wpglobus-builder.php:277,
|
810 |
+
#: includes/class-wpglobus.php:3596
|
811 |
msgid "Save draft before using extra language."
|
812 |
msgstr ""
|
813 |
|
911 |
msgid "Need a multilingual slug?"
|
912 |
msgstr ""
|
913 |
|
914 |
+
#: includes/class-wpglobus.php:4035
|
915 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
916 |
msgstr "Du måste aktivera Vackra Permalänkar för att använda WPGlobus."
|
917 |
|
918 |
+
#: includes/class-wpglobus.php:4037
|
919 |
msgid ""
|
920 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
921 |
"default option."
|
923 |
"Gå till Inställningar> Permalänkar> Vanliga inställningar och välj ett icke-"
|
924 |
"standardalternativet."
|
925 |
|
926 |
+
#: includes/class-wpglobus.php:4189
|
927 |
msgid "Add"
|
928 |
msgstr "Lägg till"
|
929 |
|
languages/wpglobus-tr_TR.po
CHANGED
@@ -810,7 +810,7 @@ msgid "To translate permalinks, please activate the module Slug."
|
|
810 |
msgstr ""
|
811 |
|
812 |
#: includes/builders/class-wpglobus-builder.php:277,
|
813 |
-
#: includes/class-wpglobus.php:
|
814 |
msgid "Save draft before using extra language."
|
815 |
msgstr ""
|
816 |
|
@@ -914,12 +914,12 @@ msgstr "*) Menü kaydedildikten sonra kullanılabilir."
|
|
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 ""
|
920 |
"WPGlobus' u kullanabilmek için Pretty Permalinks' i etkinleştirmelisiniz."
|
921 |
|
922 |
-
#: includes/class-wpglobus.php:
|
923 |
msgid ""
|
924 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
925 |
"default option."
|
@@ -927,7 +927,7 @@ msgstr ""
|
|
927 |
"Varsayılan olmayan bir seçeneği seçmek için lütfen Ayarlar>Kalıcı "
|
928 |
"Bağlantılar>Genel Ayarlar' a gidin."
|
929 |
|
930 |
-
#: includes/class-wpglobus.php:
|
931 |
msgid "Add"
|
932 |
msgstr "Ekle"
|
933 |
|
810 |
msgstr ""
|
811 |
|
812 |
#: includes/builders/class-wpglobus-builder.php:277,
|
813 |
+
#: includes/class-wpglobus.php:3596
|
814 |
msgid "Save draft before using extra language."
|
815 |
msgstr ""
|
816 |
|
914 |
msgid "Need a multilingual slug?"
|
915 |
msgstr ""
|
916 |
|
917 |
+
#: includes/class-wpglobus.php:4035
|
918 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
919 |
msgstr ""
|
920 |
"WPGlobus' u kullanabilmek için Pretty Permalinks' i etkinleştirmelisiniz."
|
921 |
|
922 |
+
#: includes/class-wpglobus.php:4037
|
923 |
msgid ""
|
924 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
925 |
"default option."
|
927 |
"Varsayılan olmayan bir seçeneği seçmek için lütfen Ayarlar>Kalıcı "
|
928 |
"Bağlantılar>Genel Ayarlar' a gidin."
|
929 |
|
930 |
+
#: includes/class-wpglobus.php:4189
|
931 |
msgid "Add"
|
932 |
msgstr "Ekle"
|
933 |
|
languages/wpglobus-uk.po
CHANGED
@@ -842,7 +842,7 @@ msgid "To translate permalinks, please activate the module Slug."
|
|
842 |
msgstr ""
|
843 |
|
844 |
#: includes/builders/class-wpglobus-builder.php:277,
|
845 |
-
#: includes/class-wpglobus.php:
|
846 |
msgid "Save draft before using extra language."
|
847 |
msgstr ""
|
848 |
|
@@ -946,13 +946,13 @@ msgstr "*) Доступно після збереження меню."
|
|
946 |
msgid "Need a multilingual slug?"
|
947 |
msgstr ""
|
948 |
|
949 |
-
#: includes/class-wpglobus.php:
|
950 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
951 |
msgstr ""
|
952 |
"Щоб використовувати плагін WPGlobus, необхідно увімкнути SEF URLs - постійні "
|
953 |
"посилання."
|
954 |
|
955 |
-
#: includes/class-wpglobus.php:
|
956 |
msgid ""
|
957 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
958 |
"default option."
|
@@ -960,7 +960,7 @@ msgstr ""
|
|
960 |
"Будь-ласка, перейдіть в меню налаштування > Постійні посилання і змініть "
|
961 |
"структуру посилань в розділі \"Загальні налаштування\"."
|
962 |
|
963 |
-
#: includes/class-wpglobus.php:
|
964 |
msgid "Add"
|
965 |
msgstr "Додати"
|
966 |
|
842 |
msgstr ""
|
843 |
|
844 |
#: includes/builders/class-wpglobus-builder.php:277,
|
845 |
+
#: includes/class-wpglobus.php:3596
|
846 |
msgid "Save draft before using extra language."
|
847 |
msgstr ""
|
848 |
|
946 |
msgid "Need a multilingual slug?"
|
947 |
msgstr ""
|
948 |
|
949 |
+
#: includes/class-wpglobus.php:4035
|
950 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
951 |
msgstr ""
|
952 |
"Щоб використовувати плагін WPGlobus, необхідно увімкнути SEF URLs - постійні "
|
953 |
"посилання."
|
954 |
|
955 |
+
#: includes/class-wpglobus.php:4037
|
956 |
msgid ""
|
957 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
958 |
"default option."
|
960 |
"Будь-ласка, перейдіть в меню налаштування > Постійні посилання і змініть "
|
961 |
"структуру посилань в розділі \"Загальні налаштування\"."
|
962 |
|
963 |
+
#: includes/class-wpglobus.php:4189
|
964 |
msgid "Add"
|
965 |
msgstr "Додати"
|
966 |
|
languages/wpglobus.pot
CHANGED
@@ -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:277, includes/class-wpglobus.php:
|
639 |
msgid "Save draft before using extra language."
|
640 |
msgstr ""
|
641 |
|
@@ -739,15 +739,15 @@ msgstr ""
|
|
739 |
msgid "Need a multilingual slug?"
|
740 |
msgstr ""
|
741 |
|
742 |
-
#: includes/class-wpglobus.php:
|
743 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
744 |
msgstr ""
|
745 |
|
746 |
-
#: includes/class-wpglobus.php:
|
747 |
msgid "Please go to Settings > Permalinks > Common Settings and choose a non-default option."
|
748 |
msgstr ""
|
749 |
|
750 |
-
#: includes/class-wpglobus.php:
|
751 |
msgid "Add"
|
752 |
msgstr ""
|
753 |
|
635 |
msgid "To translate permalinks, please activate the module Slug."
|
636 |
msgstr ""
|
637 |
|
638 |
+
#: includes/builders/class-wpglobus-builder.php:277, includes/class-wpglobus.php:3596
|
639 |
msgid "Save draft before using extra language."
|
640 |
msgstr ""
|
641 |
|
739 |
msgid "Need a multilingual slug?"
|
740 |
msgstr ""
|
741 |
|
742 |
+
#: includes/class-wpglobus.php:4035
|
743 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
744 |
msgstr ""
|
745 |
|
746 |
+
#: includes/class-wpglobus.php:4037
|
747 |
msgid "Please go to Settings > Permalinks > Common Settings and choose a non-default option."
|
748 |
msgstr ""
|
749 |
|
750 |
+
#: includes/class-wpglobus.php:4189
|
751 |
msgid "Add"
|
752 |
msgstr ""
|
753 |
|
readme.txt
CHANGED
@@ -218,6 +218,11 @@ WPGlobus Version 2 supports WordPress 5.x, with Gutenberg.
|
|
218 |
|
219 |
== Changelog ==
|
220 |
|
|
|
|
|
|
|
|
|
|
|
221 |
= 2.2.0 =
|
222 |
|
223 |
* Compatibility: WordPress 5.2
|
@@ -233,10 +238,6 @@ WPGlobus Version 2 supports WordPress 5.x, with Gutenberg.
|
|
233 |
* Added: (Core/Builders) Element `admin_bar_builder_label` to the WP admin bar.
|
234 |
* Internal: (Flags) Added `purple.globe` icon.
|
235 |
|
236 |
-
= 2.1.13 =
|
237 |
-
|
238 |
-
* Internal: (Builders/Elementor) Beta-2 version of the `Elementor` support.
|
239 |
-
|
240 |
= Earlier versions and Add-ons =
|
241 |
|
242 |
* [See the complete changelog here](https://github.com/WPGlobus/WPGlobus/blob/master/CHANGELOG.md)
|
218 |
|
219 |
== Changelog ==
|
220 |
|
221 |
+
= 2.2.1 =
|
222 |
+
|
223 |
+
* Fixed: (Vendor/Acf) Fixed hidden WPGlobus dialog start icon with ACF Pro from v.5.8
|
224 |
+
* Fixed: (Customizer) Fixed PHP Warning `Invalid argument supplied for foreach`.
|
225 |
+
|
226 |
= 2.2.0 =
|
227 |
|
228 |
* Compatibility: WordPress 5.2
|
238 |
* Added: (Core/Builders) Element `admin_bar_builder_label` to the WP admin bar.
|
239 |
* Internal: (Flags) Added `purple.globe` icon.
|
240 |
|
|
|
|
|
|
|
|
|
241 |
= Earlier versions and Add-ons =
|
242 |
|
243 |
* [See the complete changelog here](https://github.com/WPGlobus/WPGlobus/blob/master/CHANGELOG.md)
|
wpglobus.php
CHANGED
@@ -15,7 +15,7 @@
|
|
15 |
* Description: A WordPress Globalization / Multilingual Plugin. Posts, pages, menus, widgets and even custom fields - in multiple languages!
|
16 |
* Text Domain: wpglobus
|
17 |
* Domain Path: /languages/
|
18 |
-
* Version: 2.2.
|
19 |
* Author: WPGlobus
|
20 |
* Author URI: https://wpglobus.com/
|
21 |
* Network: false
|
@@ -42,7 +42,7 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
42 |
exit;
|
43 |
}
|
44 |
|
45 |
-
define( 'WPGLOBUS_VERSION', '2.2.
|
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.2.1
|
19 |
* Author: WPGlobus
|
20 |
* Author URI: https://wpglobus.com/
|
21 |
* Network: false
|
42 |
exit;
|
43 |
}
|
44 |
|
45 |
+
define( 'WPGLOBUS_VERSION', '2.2.1' );
|
46 |
define( 'WPGLOBUS_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
|
47 |
|
48 |
/**
|