Version Description
- (Core) Correct setting initial language tab in Standard/Classic mode on the
post.php
page. - (Vendor/Yoast) Added JS script for dashboard.
Download this release
Release Info
Developer | tivnet |
Plugin | WPGlobus – Multilingual Everything! |
Version | 2.4.5 |
Comparing to | |
See all releases |
Code changes from version 2.4.4 to 2.4.5
- includes/class-wpglobus.php +4 -3
- includes/js/wpglobus-yoastseo-dashboard.js +32 -0
- includes/js/wpglobus-yoastseo-dashboard.min.js +1 -0
- includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php +51 -0
- languages/wpglobus-ar.po +16 -2
- languages/wpglobus-be.po +16 -2
- languages/wpglobus-bg_BG.po +16 -2
- languages/wpglobus-de_CH.po +16 -2
- languages/wpglobus-de_DE.po +16 -2
- languages/wpglobus-el.po +16 -2
- languages/wpglobus-en_AU.po +16 -2
- languages/wpglobus-en_CA.po +16 -2
- languages/wpglobus-en_GB.po +16 -2
- languages/wpglobus-en_NZ.po +16 -2
- languages/wpglobus-en_US.po +16 -2
- languages/wpglobus-en_ZA.po +16 -2
- languages/wpglobus-es_AR.po +16 -2
- languages/wpglobus-es_CL.po +16 -2
- languages/wpglobus-es_CO.po +16 -2
- languages/wpglobus-es_CR.po +16 -2
- languages/wpglobus-es_ES.po +16 -2
- languages/wpglobus-es_GT.po +16 -2
- languages/wpglobus-es_MX.po +16 -2
- languages/wpglobus-es_PE.po +16 -2
- languages/wpglobus-es_PR.po +16 -2
- languages/wpglobus-es_VE.po +16 -2
- languages/wpglobus-et.po +16 -2
- languages/wpglobus-fr_BE.po +16 -2
- languages/wpglobus-fr_CA.po +16 -2
- languages/wpglobus-fr_FR.po +16 -2
- languages/wpglobus-id_ID.po +16 -2
- languages/wpglobus-ko_KR.po +16 -2
- languages/wpglobus-pl_PL.po +16 -2
- languages/wpglobus-pt_BR.po +16 -2
- languages/wpglobus-pt_PT.po +16 -2
- languages/wpglobus-ro_RO.po +16 -2
- languages/wpglobus-ru_RU.mo +0 -0
- languages/wpglobus-ru_RU.po +19 -2
- languages/wpglobus-sv_SE.po +16 -2
- languages/wpglobus-tr_TR.po +16 -2
- languages/wpglobus-uk.po +16 -2
- languages/wpglobus.pot +17 -5
- readme.txt +8 -5
- wpglobus.php +2 -2
includes/class-wpglobus.php
CHANGED
@@ -3541,7 +3541,10 @@ class WPGlobus {
|
|
3541 |
$_link_class = $link_class;
|
3542 |
}
|
3543 |
|
3544 |
-
|
|
|
|
|
|
|
3545 |
$_link_class['tab-link-active'] = 'wpglobus-tab-link-active';
|
3546 |
}
|
3547 |
?>
|
@@ -3560,9 +3563,7 @@ class WPGlobus {
|
|
3560 |
?>
|
3561 |
</ul>
|
3562 |
<?php
|
3563 |
-
|
3564 |
endif;
|
3565 |
-
|
3566 |
}
|
3567 |
|
3568 |
/**
|
3541 |
$_link_class = $link_class;
|
3542 |
}
|
3543 |
|
3544 |
+
/**
|
3545 |
+
* @since 2.4.5
|
3546 |
+
*/
|
3547 |
+
if ( self::Config()->default_language === $language ) {
|
3548 |
$_link_class['tab-link-active'] = 'wpglobus-tab-link-active';
|
3549 |
}
|
3550 |
?>
|
3563 |
?>
|
3564 |
</ul>
|
3565 |
<?php
|
|
|
3566 |
endif;
|
|
|
3567 |
}
|
3568 |
|
3569 |
/**
|
includes/js/wpglobus-yoastseo-dashboard.js
ADDED
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/**
|
2 |
+
* WPGlobus for YoastSeo Dashboard v.14
|
3 |
+
* Interface JS functions
|
4 |
+
*
|
5 |
+
* @since 2.4.5
|
6 |
+
*
|
7 |
+
* @package WPGlobus
|
8 |
+
*/
|
9 |
+
/*jslint browser: true*/
|
10 |
+
/*global jQuery, console*/
|
11 |
+
|
12 |
+
jQuery(document).ready(function($){
|
13 |
+
'use strict';
|
14 |
+
|
15 |
+
if ( 'undefined' === typeof WPGlobusYoastSeoDashboard ) {
|
16 |
+
return;
|
17 |
+
}
|
18 |
+
|
19 |
+
var api = {
|
20 |
+
messageBox: '<div style="text-align:center;font-weight:bold;background-color:#d3e4f4;color:#000;padding:10px 0;">{{warning}}</div>',
|
21 |
+
init: function() {
|
22 |
+
var parent = $('.wpseo_table_page');
|
23 |
+
if ( parent.length == 1 ) {
|
24 |
+
var wrng = WPGlobusYoastSeoDashboard.i18n.preWarning+WPGlobusYoastSeoDashboard.i18n.bulkEditorWarning;
|
25 |
+
var box = api.messageBox.replace( '{{warning}}', wrng );
|
26 |
+
parent.before(box);
|
27 |
+
}
|
28 |
+
}
|
29 |
+
}
|
30 |
+
WPGlobusYoastSeoDashboard = $.extend({}, WPGlobusYoastSeoDashboard, api);
|
31 |
+
WPGlobusYoastSeoDashboard.init();
|
32 |
+
});
|
includes/js/wpglobus-yoastseo-dashboard.min.js
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
jQuery(document).ready(function(n){"use strict";if("undefined"!=typeof WPGlobusYoastSeoDashboard){var s={messageBox:'<div style="text-align:center;font-weight:bold;background-color:#d3e4f4;color:#000;padding:10px 0;">{{warning}}</div>',init:function(){var o=n(".wpseo_table_page");if(1==o.length){var a=WPGlobusYoastSeoDashboard.i18n.preWarning+WPGlobusYoastSeoDashboard.i18n.bulkEditorWarning,e=s.messageBox.replace("{{warning}}",a);o.before(e)}}};WPGlobusYoastSeoDashboard=n.extend({},WPGlobusYoastSeoDashboard,s),WPGlobusYoastSeoDashboard.init()}});
|
includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php
CHANGED
@@ -24,6 +24,14 @@ class WPGlobus_YoastSEO {
|
|
24 |
* @var string
|
25 |
*/
|
26 |
public static $handle_script = 'wpglobus-yoastseo';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
27 |
|
28 |
/**
|
29 |
* Name of the premium script.
|
@@ -652,11 +660,54 @@ class WPGlobus_YoastSEO {
|
|
652 |
|
653 |
/**
|
654 |
* Enqueue JS for YoastSEO support.
|
|
|
655 |
* @since 1.4.0
|
656 |
* @since 2.2.20
|
|
|
657 |
*/
|
658 |
public static function action__admin_print_scripts() {
|
659 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
660 |
if ( 'off' === WPGlobus::Config()->toggle ) {
|
661 |
return;
|
662 |
}
|
24 |
* @var string
|
25 |
*/
|
26 |
public static $handle_script = 'wpglobus-yoastseo';
|
27 |
+
|
28 |
+
/**
|
29 |
+
* Name of the dashboard script.
|
30 |
+
*
|
31 |
+
* @since 2.4.5
|
32 |
+
* @var string
|
33 |
+
*/
|
34 |
+
public static $handle_script_dashboard = 'wpglobus-yoastseo-dashboard';
|
35 |
|
36 |
/**
|
37 |
* Name of the premium script.
|
660 |
|
661 |
/**
|
662 |
* Enqueue JS for YoastSEO support.
|
663 |
+
*
|
664 |
* @since 1.4.0
|
665 |
* @since 2.2.20
|
666 |
+
* @since 2.4.5 Add JS script on dashboard.
|
667 |
*/
|
668 |
public static function action__admin_print_scripts() {
|
669 |
|
670 |
+
if ( WPGlobus_WP::is_pagenow( 'admin.php' ) ) {
|
671 |
+
|
672 |
+
if ( 'wpseo_tools' == WPGlobus_Utils::safe_get('page') && 'bulk-editor' == WPGlobus_Utils::safe_get('tool') ) {
|
673 |
+
|
674 |
+
$wrng1 = '<div>' . esc_html__( 'Bulk editing of the multilingual titles and descriptions is not supported by the current version.', 'wpglobus' ) . '</div>';
|
675 |
+
$wrng2 = '<div>' . esc_html__( 'Therefore, to avoid any data loss, we do not recommend using this.', 'wpglobus' ) . '</div>';
|
676 |
+
|
677 |
+
$i18n = array(
|
678 |
+
'preWarning' => esc_html__( 'WPGlobus warning: ', 'wpglobus' ),
|
679 |
+
'bulkEditorWarning' => $wrng1 . $wrng2,
|
680 |
+
);
|
681 |
+
|
682 |
+
$src = WPGlobus::$PLUGIN_DIR_URL . 'includes/js/wpglobus-yoastseo-dashboard' . WPGlobus::SCRIPT_SUFFIX() . '.js';
|
683 |
+
|
684 |
+
wp_register_script(
|
685 |
+
self::$handle_script_dashboard,
|
686 |
+
$src,
|
687 |
+
array( 'jquery' ),
|
688 |
+
WPGLOBUS_VERSION,
|
689 |
+
true
|
690 |
+
);
|
691 |
+
|
692 |
+
wp_enqueue_script(self::$handle_script_dashboard);
|
693 |
+
|
694 |
+
wp_localize_script(
|
695 |
+
self::$handle_script_dashboard,
|
696 |
+
'WPGlobusYoastSeoDashboard',
|
697 |
+
array(
|
698 |
+
'version' => WPGLOBUS_VERSION,
|
699 |
+
'wpseo_version' => WPSEO_VERSION,
|
700 |
+
'pagenow' => 'admin.php',
|
701 |
+
'page' => WPGlobus_Utils::safe_get('page'),
|
702 |
+
'tool' => WPGlobus_Utils::safe_get('tool'),
|
703 |
+
'i18n' => $i18n
|
704 |
+
)
|
705 |
+
);
|
706 |
+
|
707 |
+
return;
|
708 |
+
}
|
709 |
+
}
|
710 |
+
|
711 |
if ( 'off' === WPGlobus::Config()->toggle ) {
|
712 |
return;
|
713 |
}
|
languages/wpglobus-ar.po
CHANGED
@@ -939,11 +939,11 @@ msgstr ""
|
|
939 |
msgid "Need a multilingual slug?"
|
940 |
msgstr ""
|
941 |
|
942 |
-
#: includes/class-wpglobus.php:
|
943 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
944 |
msgstr ""
|
945 |
|
946 |
-
#: includes/class-wpglobus.php:
|
947 |
msgid ""
|
948 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
949 |
"default option."
|
@@ -1566,6 +1566,20 @@ msgstr ""
|
|
1566 |
msgid "Get WPGlobus Plus now!"
|
1567 |
msgstr "أحصل علي WPGlobus الأضافي الأن!"
|
1568 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1569 |
#: wpglobus.php:13
|
1570 |
msgid "https://github.com/WPGlobus/WPGlobus"
|
1571 |
msgstr "https://github.com/WPGlobus/WPGlobus"
|
939 |
msgid "Need a multilingual slug?"
|
940 |
msgstr ""
|
941 |
|
942 |
+
#: includes/class-wpglobus.php:3956
|
943 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
944 |
msgstr ""
|
945 |
|
946 |
+
#: includes/class-wpglobus.php:3958
|
947 |
msgid ""
|
948 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
949 |
"default option."
|
1566 |
msgid "Get WPGlobus Plus now!"
|
1567 |
msgstr "أحصل علي WPGlobus الأضافي الأن!"
|
1568 |
|
1569 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:674
|
1570 |
+
msgid ""
|
1571 |
+
"Bulk editing of the multilingual titles and descriptions is not supported by "
|
1572 |
+
"the current version."
|
1573 |
+
msgstr ""
|
1574 |
+
|
1575 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:675
|
1576 |
+
msgid "Therefore, to avoid any data loss, we do not recommend using this."
|
1577 |
+
msgstr ""
|
1578 |
+
|
1579 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:678
|
1580 |
+
msgid "WPGlobus warning: "
|
1581 |
+
msgstr ""
|
1582 |
+
|
1583 |
#: wpglobus.php:13
|
1584 |
msgid "https://github.com/WPGlobus/WPGlobus"
|
1585 |
msgstr "https://github.com/WPGlobus/WPGlobus"
|
languages/wpglobus-be.po
CHANGED
@@ -990,13 +990,13 @@ msgstr "*) Доступно после сохранения меню."
|
|
990 |
msgid "Need a multilingual slug?"
|
991 |
msgstr "Нужен мультиязычный ярлык?"
|
992 |
|
993 |
-
#: includes/class-wpglobus.php:
|
994 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
995 |
msgstr ""
|
996 |
"Чтобы использовать плагин WPGlobus, необходимо включить ЧПУ - постоянные "
|
997 |
"ссылки."
|
998 |
|
999 |
-
#: includes/class-wpglobus.php:
|
1000 |
msgid ""
|
1001 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
1002 |
"default option."
|
@@ -1626,6 +1626,20 @@ msgstr ""
|
|
1626 |
msgid "Get WPGlobus Plus now!"
|
1627 |
msgstr "Установите WPGlobus Плюс прямо сейчас!"
|
1628 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1629 |
#: wpglobus.php:13
|
1630 |
msgid "https://github.com/WPGlobus/WPGlobus"
|
1631 |
msgstr "https://github.com/WPGlobus/WPGlobus"
|
990 |
msgid "Need a multilingual slug?"
|
991 |
msgstr "Нужен мультиязычный ярлык?"
|
992 |
|
993 |
+
#: includes/class-wpglobus.php:3956
|
994 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
995 |
msgstr ""
|
996 |
"Чтобы использовать плагин WPGlobus, необходимо включить ЧПУ - постоянные "
|
997 |
"ссылки."
|
998 |
|
999 |
+
#: includes/class-wpglobus.php:3958
|
1000 |
msgid ""
|
1001 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
1002 |
"default option."
|
1626 |
msgid "Get WPGlobus Plus now!"
|
1627 |
msgstr "Установите WPGlobus Плюс прямо сейчас!"
|
1628 |
|
1629 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:674
|
1630 |
+
msgid ""
|
1631 |
+
"Bulk editing of the multilingual titles and descriptions is not supported by "
|
1632 |
+
"the current version."
|
1633 |
+
msgstr ""
|
1634 |
+
|
1635 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:675
|
1636 |
+
msgid "Therefore, to avoid any data loss, we do not recommend using this."
|
1637 |
+
msgstr ""
|
1638 |
+
|
1639 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:678
|
1640 |
+
msgid "WPGlobus warning: "
|
1641 |
+
msgstr ""
|
1642 |
+
|
1643 |
#: wpglobus.php:13
|
1644 |
msgid "https://github.com/WPGlobus/WPGlobus"
|
1645 |
msgstr "https://github.com/WPGlobus/WPGlobus"
|
languages/wpglobus-bg_BG.po
CHANGED
@@ -915,11 +915,11 @@ msgstr ""
|
|
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 |
|
922 |
-
#: includes/class-wpglobus.php:
|
923 |
msgid ""
|
924 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
925 |
"default option."
|
@@ -1542,6 +1542,20 @@ msgstr ""
|
|
1542 |
msgid "Get WPGlobus Plus now!"
|
1543 |
msgstr ""
|
1544 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1545 |
#: wpglobus.php:13
|
1546 |
msgid "https://github.com/WPGlobus/WPGlobus"
|
1547 |
msgstr ""
|
915 |
msgid "Need a multilingual slug?"
|
916 |
msgstr ""
|
917 |
|
918 |
+
#: includes/class-wpglobus.php:3956
|
919 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
920 |
msgstr ""
|
921 |
|
922 |
+
#: includes/class-wpglobus.php:3958
|
923 |
msgid ""
|
924 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
925 |
"default option."
|
1542 |
msgid "Get WPGlobus Plus now!"
|
1543 |
msgstr ""
|
1544 |
|
1545 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:674
|
1546 |
+
msgid ""
|
1547 |
+
"Bulk editing of the multilingual titles and descriptions is not supported by "
|
1548 |
+
"the current version."
|
1549 |
+
msgstr ""
|
1550 |
+
|
1551 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:675
|
1552 |
+
msgid "Therefore, to avoid any data loss, we do not recommend using this."
|
1553 |
+
msgstr ""
|
1554 |
+
|
1555 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:678
|
1556 |
+
msgid "WPGlobus warning: "
|
1557 |
+
msgstr ""
|
1558 |
+
|
1559 |
#: wpglobus.php:13
|
1560 |
msgid "https://github.com/WPGlobus/WPGlobus"
|
1561 |
msgstr ""
|
languages/wpglobus-de_CH.po
CHANGED
@@ -951,12 +951,12 @@ msgstr "*) Verfügbar nachdem das Menü gespeichert wurde."
|
|
951 |
msgid "Need a multilingual slug?"
|
952 |
msgstr ""
|
953 |
|
954 |
-
#: includes/class-wpglobus.php:
|
955 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
956 |
msgstr ""
|
957 |
"Sie müssen schöne Permalinks aktivieren um WPGlobus verwenden zu können."
|
958 |
|
959 |
-
#: includes/class-wpglobus.php:
|
960 |
msgid ""
|
961 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
962 |
"default option."
|
@@ -1587,6 +1587,20 @@ msgstr ""
|
|
1587 |
msgid "Get WPGlobus Plus now!"
|
1588 |
msgstr "Jetzt zu WPGlobus Plus wechseln!"
|
1589 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1590 |
#: wpglobus.php:13
|
1591 |
msgid "https://github.com/WPGlobus/WPGlobus"
|
1592 |
msgstr "https://github.com/WPGlobus/WPGlobus"
|
951 |
msgid "Need a multilingual slug?"
|
952 |
msgstr ""
|
953 |
|
954 |
+
#: includes/class-wpglobus.php:3956
|
955 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
956 |
msgstr ""
|
957 |
"Sie müssen schöne Permalinks aktivieren um WPGlobus verwenden zu können."
|
958 |
|
959 |
+
#: includes/class-wpglobus.php:3958
|
960 |
msgid ""
|
961 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
962 |
"default option."
|
1587 |
msgid "Get WPGlobus Plus now!"
|
1588 |
msgstr "Jetzt zu WPGlobus Plus wechseln!"
|
1589 |
|
1590 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:674
|
1591 |
+
msgid ""
|
1592 |
+
"Bulk editing of the multilingual titles and descriptions is not supported by "
|
1593 |
+
"the current version."
|
1594 |
+
msgstr ""
|
1595 |
+
|
1596 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:675
|
1597 |
+
msgid "Therefore, to avoid any data loss, we do not recommend using this."
|
1598 |
+
msgstr ""
|
1599 |
+
|
1600 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:678
|
1601 |
+
msgid "WPGlobus warning: "
|
1602 |
+
msgstr ""
|
1603 |
+
|
1604 |
#: wpglobus.php:13
|
1605 |
msgid "https://github.com/WPGlobus/WPGlobus"
|
1606 |
msgstr "https://github.com/WPGlobus/WPGlobus"
|
languages/wpglobus-de_DE.po
CHANGED
@@ -952,12 +952,12 @@ msgstr "*) Verfügbar nachdem das Menü gespeichert wurde."
|
|
952 |
msgid "Need a multilingual slug?"
|
953 |
msgstr ""
|
954 |
|
955 |
-
#: includes/class-wpglobus.php:
|
956 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
957 |
msgstr ""
|
958 |
"Sie müssen schöne Permalinks aktivieren um WPGlobus verwenden zu können."
|
959 |
|
960 |
-
#: includes/class-wpglobus.php:
|
961 |
msgid ""
|
962 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
963 |
"default option."
|
@@ -1588,6 +1588,20 @@ msgstr ""
|
|
1588 |
msgid "Get WPGlobus Plus now!"
|
1589 |
msgstr "Jetzt zu WPGlobus Plus wechseln!"
|
1590 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1591 |
#: wpglobus.php:13
|
1592 |
msgid "https://github.com/WPGlobus/WPGlobus"
|
1593 |
msgstr "https://github.com/WPGlobus/WPGlobus"
|
952 |
msgid "Need a multilingual slug?"
|
953 |
msgstr ""
|
954 |
|
955 |
+
#: includes/class-wpglobus.php:3956
|
956 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
957 |
msgstr ""
|
958 |
"Sie müssen schöne Permalinks aktivieren um WPGlobus verwenden zu können."
|
959 |
|
960 |
+
#: includes/class-wpglobus.php:3958
|
961 |
msgid ""
|
962 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
963 |
"default option."
|
1588 |
msgid "Get WPGlobus Plus now!"
|
1589 |
msgstr "Jetzt zu WPGlobus Plus wechseln!"
|
1590 |
|
1591 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:674
|
1592 |
+
msgid ""
|
1593 |
+
"Bulk editing of the multilingual titles and descriptions is not supported by "
|
1594 |
+
"the current version."
|
1595 |
+
msgstr ""
|
1596 |
+
|
1597 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:675
|
1598 |
+
msgid "Therefore, to avoid any data loss, we do not recommend using this."
|
1599 |
+
msgstr ""
|
1600 |
+
|
1601 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:678
|
1602 |
+
msgid "WPGlobus warning: "
|
1603 |
+
msgstr ""
|
1604 |
+
|
1605 |
#: wpglobus.php:13
|
1606 |
msgid "https://github.com/WPGlobus/WPGlobus"
|
1607 |
msgstr "https://github.com/WPGlobus/WPGlobus"
|
languages/wpglobus-el.po
CHANGED
@@ -916,11 +916,11 @@ msgstr ""
|
|
916 |
msgid "Need a multilingual slug?"
|
917 |
msgstr ""
|
918 |
|
919 |
-
#: includes/class-wpglobus.php:
|
920 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
921 |
msgstr ""
|
922 |
|
923 |
-
#: includes/class-wpglobus.php:
|
924 |
msgid ""
|
925 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
926 |
"default option."
|
@@ -1543,6 +1543,20 @@ msgstr ""
|
|
1543 |
msgid "Get WPGlobus Plus now!"
|
1544 |
msgstr ""
|
1545 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1546 |
#: wpglobus.php:13
|
1547 |
msgid "https://github.com/WPGlobus/WPGlobus"
|
1548 |
msgstr "https://github.com/WPGlobus/WPGlobus"
|
916 |
msgid "Need a multilingual slug?"
|
917 |
msgstr ""
|
918 |
|
919 |
+
#: includes/class-wpglobus.php:3956
|
920 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
921 |
msgstr ""
|
922 |
|
923 |
+
#: includes/class-wpglobus.php:3958
|
924 |
msgid ""
|
925 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
926 |
"default option."
|
1543 |
msgid "Get WPGlobus Plus now!"
|
1544 |
msgstr ""
|
1545 |
|
1546 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:674
|
1547 |
+
msgid ""
|
1548 |
+
"Bulk editing of the multilingual titles and descriptions is not supported by "
|
1549 |
+
"the current version."
|
1550 |
+
msgstr ""
|
1551 |
+
|
1552 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:675
|
1553 |
+
msgid "Therefore, to avoid any data loss, we do not recommend using this."
|
1554 |
+
msgstr ""
|
1555 |
+
|
1556 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:678
|
1557 |
+
msgid "WPGlobus warning: "
|
1558 |
+
msgstr ""
|
1559 |
+
|
1560 |
#: wpglobus.php:13
|
1561 |
msgid "https://github.com/WPGlobus/WPGlobus"
|
1562 |
msgstr "https://github.com/WPGlobus/WPGlobus"
|
languages/wpglobus-en_AU.po
CHANGED
@@ -990,11 +990,11 @@ msgstr "*) Available after the menu is saved."
|
|
990 |
msgid "Need a multilingual slug?"
|
991 |
msgstr "Need a multilingual slug?"
|
992 |
|
993 |
-
#: includes/class-wpglobus.php:
|
994 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
995 |
msgstr "You must enable Pretty Permalinks to use WPGlobus."
|
996 |
|
997 |
-
#: includes/class-wpglobus.php:
|
998 |
msgid ""
|
999 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
1000 |
"default option."
|
@@ -1621,6 +1621,20 @@ msgstr ""
|
|
1621 |
msgid "Get WPGlobus Plus now!"
|
1622 |
msgstr "Get WPGlobus Plus now!"
|
1623 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1624 |
#: wpglobus.php:13
|
1625 |
msgid "https://github.com/WPGlobus/WPGlobus"
|
1626 |
msgstr "https://github.com/WPGlobus/WPGlobus"
|
990 |
msgid "Need a multilingual slug?"
|
991 |
msgstr "Need a multilingual slug?"
|
992 |
|
993 |
+
#: includes/class-wpglobus.php:3956
|
994 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
995 |
msgstr "You must enable Pretty Permalinks to use WPGlobus."
|
996 |
|
997 |
+
#: includes/class-wpglobus.php:3958
|
998 |
msgid ""
|
999 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
1000 |
"default option."
|
1621 |
msgid "Get WPGlobus Plus now!"
|
1622 |
msgstr "Get WPGlobus Plus now!"
|
1623 |
|
1624 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:674
|
1625 |
+
msgid ""
|
1626 |
+
"Bulk editing of the multilingual titles and descriptions is not supported by "
|
1627 |
+
"the current version."
|
1628 |
+
msgstr ""
|
1629 |
+
|
1630 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:675
|
1631 |
+
msgid "Therefore, to avoid any data loss, we do not recommend using this."
|
1632 |
+
msgstr ""
|
1633 |
+
|
1634 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:678
|
1635 |
+
msgid "WPGlobus warning: "
|
1636 |
+
msgstr ""
|
1637 |
+
|
1638 |
#: wpglobus.php:13
|
1639 |
msgid "https://github.com/WPGlobus/WPGlobus"
|
1640 |
msgstr "https://github.com/WPGlobus/WPGlobus"
|
languages/wpglobus-en_CA.po
CHANGED
@@ -989,11 +989,11 @@ msgstr "*) Available after the menu is saved."
|
|
989 |
msgid "Need a multilingual slug?"
|
990 |
msgstr "Need a multilingual slug?"
|
991 |
|
992 |
-
#: includes/class-wpglobus.php:
|
993 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
994 |
msgstr "You must enable Pretty Permalinks to use WPGlobus."
|
995 |
|
996 |
-
#: includes/class-wpglobus.php:
|
997 |
msgid ""
|
998 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
999 |
"default option."
|
@@ -1620,6 +1620,20 @@ msgstr ""
|
|
1620 |
msgid "Get WPGlobus Plus now!"
|
1621 |
msgstr "Get WPGlobus Plus now!"
|
1622 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1623 |
#: wpglobus.php:13
|
1624 |
msgid "https://github.com/WPGlobus/WPGlobus"
|
1625 |
msgstr "https://github.com/WPGlobus/WPGlobus"
|
989 |
msgid "Need a multilingual slug?"
|
990 |
msgstr "Need a multilingual slug?"
|
991 |
|
992 |
+
#: includes/class-wpglobus.php:3956
|
993 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
994 |
msgstr "You must enable Pretty Permalinks to use WPGlobus."
|
995 |
|
996 |
+
#: includes/class-wpglobus.php:3958
|
997 |
msgid ""
|
998 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
999 |
"default option."
|
1620 |
msgid "Get WPGlobus Plus now!"
|
1621 |
msgstr "Get WPGlobus Plus now!"
|
1622 |
|
1623 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:674
|
1624 |
+
msgid ""
|
1625 |
+
"Bulk editing of the multilingual titles and descriptions is not supported by "
|
1626 |
+
"the current version."
|
1627 |
+
msgstr ""
|
1628 |
+
|
1629 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:675
|
1630 |
+
msgid "Therefore, to avoid any data loss, we do not recommend using this."
|
1631 |
+
msgstr ""
|
1632 |
+
|
1633 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:678
|
1634 |
+
msgid "WPGlobus warning: "
|
1635 |
+
msgstr ""
|
1636 |
+
|
1637 |
#: wpglobus.php:13
|
1638 |
msgid "https://github.com/WPGlobus/WPGlobus"
|
1639 |
msgstr "https://github.com/WPGlobus/WPGlobus"
|
languages/wpglobus-en_GB.po
CHANGED
@@ -990,11 +990,11 @@ msgstr "*) Available after the menu is saved."
|
|
990 |
msgid "Need a multilingual slug?"
|
991 |
msgstr "Need a multilingual slug?"
|
992 |
|
993 |
-
#: includes/class-wpglobus.php:
|
994 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
995 |
msgstr "You must enable Pretty Permalinks to use WPGlobus."
|
996 |
|
997 |
-
#: includes/class-wpglobus.php:
|
998 |
msgid ""
|
999 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
1000 |
"default option."
|
@@ -1621,6 +1621,20 @@ msgstr ""
|
|
1621 |
msgid "Get WPGlobus Plus now!"
|
1622 |
msgstr "Get WPGlobus Plus now!"
|
1623 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1624 |
#: wpglobus.php:13
|
1625 |
msgid "https://github.com/WPGlobus/WPGlobus"
|
1626 |
msgstr "https://github.com/WPGlobus/WPGlobus"
|
990 |
msgid "Need a multilingual slug?"
|
991 |
msgstr "Need a multilingual slug?"
|
992 |
|
993 |
+
#: includes/class-wpglobus.php:3956
|
994 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
995 |
msgstr "You must enable Pretty Permalinks to use WPGlobus."
|
996 |
|
997 |
+
#: includes/class-wpglobus.php:3958
|
998 |
msgid ""
|
999 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
1000 |
"default option."
|
1621 |
msgid "Get WPGlobus Plus now!"
|
1622 |
msgstr "Get WPGlobus Plus now!"
|
1623 |
|
1624 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:674
|
1625 |
+
msgid ""
|
1626 |
+
"Bulk editing of the multilingual titles and descriptions is not supported by "
|
1627 |
+
"the current version."
|
1628 |
+
msgstr ""
|
1629 |
+
|
1630 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:675
|
1631 |
+
msgid "Therefore, to avoid any data loss, we do not recommend using this."
|
1632 |
+
msgstr ""
|
1633 |
+
|
1634 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:678
|
1635 |
+
msgid "WPGlobus warning: "
|
1636 |
+
msgstr ""
|
1637 |
+
|
1638 |
#: wpglobus.php:13
|
1639 |
msgid "https://github.com/WPGlobus/WPGlobus"
|
1640 |
msgstr "https://github.com/WPGlobus/WPGlobus"
|
languages/wpglobus-en_NZ.po
CHANGED
@@ -989,11 +989,11 @@ msgstr "*) Available after the menu is saved."
|
|
989 |
msgid "Need a multilingual slug?"
|
990 |
msgstr "Need a multilingual slug?"
|
991 |
|
992 |
-
#: includes/class-wpglobus.php:
|
993 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
994 |
msgstr "You must enable Pretty Permalinks to use WPGlobus."
|
995 |
|
996 |
-
#: includes/class-wpglobus.php:
|
997 |
msgid ""
|
998 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
999 |
"default option."
|
@@ -1620,6 +1620,20 @@ msgstr ""
|
|
1620 |
msgid "Get WPGlobus Plus now!"
|
1621 |
msgstr "Get WPGlobus Plus now!"
|
1622 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1623 |
#: wpglobus.php:13
|
1624 |
msgid "https://github.com/WPGlobus/WPGlobus"
|
1625 |
msgstr "https://github.com/WPGlobus/WPGlobus"
|
989 |
msgid "Need a multilingual slug?"
|
990 |
msgstr "Need a multilingual slug?"
|
991 |
|
992 |
+
#: includes/class-wpglobus.php:3956
|
993 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
994 |
msgstr "You must enable Pretty Permalinks to use WPGlobus."
|
995 |
|
996 |
+
#: includes/class-wpglobus.php:3958
|
997 |
msgid ""
|
998 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
999 |
"default option."
|
1620 |
msgid "Get WPGlobus Plus now!"
|
1621 |
msgstr "Get WPGlobus Plus now!"
|
1622 |
|
1623 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:674
|
1624 |
+
msgid ""
|
1625 |
+
"Bulk editing of the multilingual titles and descriptions is not supported by "
|
1626 |
+
"the current version."
|
1627 |
+
msgstr ""
|
1628 |
+
|
1629 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:675
|
1630 |
+
msgid "Therefore, to avoid any data loss, we do not recommend using this."
|
1631 |
+
msgstr ""
|
1632 |
+
|
1633 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:678
|
1634 |
+
msgid "WPGlobus warning: "
|
1635 |
+
msgstr ""
|
1636 |
+
|
1637 |
#: wpglobus.php:13
|
1638 |
msgid "https://github.com/WPGlobus/WPGlobus"
|
1639 |
msgstr "https://github.com/WPGlobus/WPGlobus"
|
languages/wpglobus-en_US.po
CHANGED
@@ -997,11 +997,11 @@ msgstr "*) Available after the menu is saved."
|
|
997 |
msgid "Need a multilingual slug?"
|
998 |
msgstr "Need a multilingual slug?"
|
999 |
|
1000 |
-
#: includes/class-wpglobus.php:
|
1001 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
1002 |
msgstr "You must enable Pretty Permalinks to use WPGlobus."
|
1003 |
|
1004 |
-
#: includes/class-wpglobus.php:
|
1005 |
msgid ""
|
1006 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
1007 |
"default option."
|
@@ -1680,6 +1680,20 @@ msgstr ""
|
|
1680 |
msgid "Get WPGlobus Plus now!"
|
1681 |
msgstr "Get WPGlobus Plus now!"
|
1682 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1683 |
#: wpglobus.php:13
|
1684 |
msgid "https://github.com/WPGlobus/WPGlobus"
|
1685 |
msgstr "https://github.com/WPGlobus/WPGlobus"
|
997 |
msgid "Need a multilingual slug?"
|
998 |
msgstr "Need a multilingual slug?"
|
999 |
|
1000 |
+
#: includes/class-wpglobus.php:3956
|
1001 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
1002 |
msgstr "You must enable Pretty Permalinks to use WPGlobus."
|
1003 |
|
1004 |
+
#: includes/class-wpglobus.php:3958
|
1005 |
msgid ""
|
1006 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
1007 |
"default option."
|
1680 |
msgid "Get WPGlobus Plus now!"
|
1681 |
msgstr "Get WPGlobus Plus now!"
|
1682 |
|
1683 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:674
|
1684 |
+
msgid ""
|
1685 |
+
"Bulk editing of the multilingual titles and descriptions is not supported by "
|
1686 |
+
"the current version."
|
1687 |
+
msgstr ""
|
1688 |
+
|
1689 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:675
|
1690 |
+
msgid "Therefore, to avoid any data loss, we do not recommend using this."
|
1691 |
+
msgstr ""
|
1692 |
+
|
1693 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:678
|
1694 |
+
msgid "WPGlobus warning: "
|
1695 |
+
msgstr ""
|
1696 |
+
|
1697 |
#: wpglobus.php:13
|
1698 |
msgid "https://github.com/WPGlobus/WPGlobus"
|
1699 |
msgstr "https://github.com/WPGlobus/WPGlobus"
|
languages/wpglobus-en_ZA.po
CHANGED
@@ -989,11 +989,11 @@ msgstr "*) Available after the menu is saved."
|
|
989 |
msgid "Need a multilingual slug?"
|
990 |
msgstr "Need a multilingual slug?"
|
991 |
|
992 |
-
#: includes/class-wpglobus.php:
|
993 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
994 |
msgstr "You must enable Pretty Permalinks to use WPGlobus."
|
995 |
|
996 |
-
#: includes/class-wpglobus.php:
|
997 |
msgid ""
|
998 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
999 |
"default option."
|
@@ -1620,6 +1620,20 @@ msgstr ""
|
|
1620 |
msgid "Get WPGlobus Plus now!"
|
1621 |
msgstr "Get WPGlobus Plus now!"
|
1622 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1623 |
#: wpglobus.php:13
|
1624 |
msgid "https://github.com/WPGlobus/WPGlobus"
|
1625 |
msgstr "https://github.com/WPGlobus/WPGlobus"
|
989 |
msgid "Need a multilingual slug?"
|
990 |
msgstr "Need a multilingual slug?"
|
991 |
|
992 |
+
#: includes/class-wpglobus.php:3956
|
993 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
994 |
msgstr "You must enable Pretty Permalinks to use WPGlobus."
|
995 |
|
996 |
+
#: includes/class-wpglobus.php:3958
|
997 |
msgid ""
|
998 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
999 |
"default option."
|
1620 |
msgid "Get WPGlobus Plus now!"
|
1621 |
msgstr "Get WPGlobus Plus now!"
|
1622 |
|
1623 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:674
|
1624 |
+
msgid ""
|
1625 |
+
"Bulk editing of the multilingual titles and descriptions is not supported by "
|
1626 |
+
"the current version."
|
1627 |
+
msgstr ""
|
1628 |
+
|
1629 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:675
|
1630 |
+
msgid "Therefore, to avoid any data loss, we do not recommend using this."
|
1631 |
+
msgstr ""
|
1632 |
+
|
1633 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:678
|
1634 |
+
msgid "WPGlobus warning: "
|
1635 |
+
msgstr ""
|
1636 |
+
|
1637 |
#: wpglobus.php:13
|
1638 |
msgid "https://github.com/WPGlobus/WPGlobus"
|
1639 |
msgstr "https://github.com/WPGlobus/WPGlobus"
|
languages/wpglobus-es_AR.po
CHANGED
@@ -950,12 +950,12 @@ msgstr "No Se Puede Desactivar el director idioma."
|
|
950 |
msgid "Need a multilingual slug?"
|
951 |
msgstr ""
|
952 |
|
953 |
-
#: includes/class-wpglobus.php:
|
954 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
955 |
msgstr ""
|
956 |
"Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
|
957 |
|
958 |
-
#: includes/class-wpglobus.php:
|
959 |
msgid ""
|
960 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
961 |
"default option."
|
@@ -1580,6 +1580,20 @@ msgstr ""
|
|
1580 |
msgid "Get WPGlobus Plus now!"
|
1581 |
msgstr ""
|
1582 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1583 |
#: wpglobus.php:13
|
1584 |
msgid "https://github.com/WPGlobus/WPGlobus"
|
1585 |
msgstr ""
|
950 |
msgid "Need a multilingual slug?"
|
951 |
msgstr ""
|
952 |
|
953 |
+
#: includes/class-wpglobus.php:3956
|
954 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
955 |
msgstr ""
|
956 |
"Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
|
957 |
|
958 |
+
#: includes/class-wpglobus.php:3958
|
959 |
msgid ""
|
960 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
961 |
"default option."
|
1580 |
msgid "Get WPGlobus Plus now!"
|
1581 |
msgstr ""
|
1582 |
|
1583 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:674
|
1584 |
+
msgid ""
|
1585 |
+
"Bulk editing of the multilingual titles and descriptions is not supported by "
|
1586 |
+
"the current version."
|
1587 |
+
msgstr ""
|
1588 |
+
|
1589 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:675
|
1590 |
+
msgid "Therefore, to avoid any data loss, we do not recommend using this."
|
1591 |
+
msgstr ""
|
1592 |
+
|
1593 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:678
|
1594 |
+
msgid "WPGlobus warning: "
|
1595 |
+
msgstr ""
|
1596 |
+
|
1597 |
#: wpglobus.php:13
|
1598 |
msgid "https://github.com/WPGlobus/WPGlobus"
|
1599 |
msgstr ""
|
languages/wpglobus-es_CL.po
CHANGED
@@ -950,12 +950,12 @@ msgstr "No Se Puede Desactivar el director idioma."
|
|
950 |
msgid "Need a multilingual slug?"
|
951 |
msgstr ""
|
952 |
|
953 |
-
#: includes/class-wpglobus.php:
|
954 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
955 |
msgstr ""
|
956 |
"Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
|
957 |
|
958 |
-
#: includes/class-wpglobus.php:
|
959 |
msgid ""
|
960 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
961 |
"default option."
|
@@ -1580,6 +1580,20 @@ msgstr ""
|
|
1580 |
msgid "Get WPGlobus Plus now!"
|
1581 |
msgstr ""
|
1582 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1583 |
#: wpglobus.php:13
|
1584 |
msgid "https://github.com/WPGlobus/WPGlobus"
|
1585 |
msgstr ""
|
950 |
msgid "Need a multilingual slug?"
|
951 |
msgstr ""
|
952 |
|
953 |
+
#: includes/class-wpglobus.php:3956
|
954 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
955 |
msgstr ""
|
956 |
"Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
|
957 |
|
958 |
+
#: includes/class-wpglobus.php:3958
|
959 |
msgid ""
|
960 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
961 |
"default option."
|
1580 |
msgid "Get WPGlobus Plus now!"
|
1581 |
msgstr ""
|
1582 |
|
1583 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:674
|
1584 |
+
msgid ""
|
1585 |
+
"Bulk editing of the multilingual titles and descriptions is not supported by "
|
1586 |
+
"the current version."
|
1587 |
+
msgstr ""
|
1588 |
+
|
1589 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:675
|
1590 |
+
msgid "Therefore, to avoid any data loss, we do not recommend using this."
|
1591 |
+
msgstr ""
|
1592 |
+
|
1593 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:678
|
1594 |
+
msgid "WPGlobus warning: "
|
1595 |
+
msgstr ""
|
1596 |
+
|
1597 |
#: wpglobus.php:13
|
1598 |
msgid "https://github.com/WPGlobus/WPGlobus"
|
1599 |
msgstr ""
|
languages/wpglobus-es_CO.po
CHANGED
@@ -950,12 +950,12 @@ msgstr "No Se Puede Desactivar el director idioma."
|
|
950 |
msgid "Need a multilingual slug?"
|
951 |
msgstr ""
|
952 |
|
953 |
-
#: includes/class-wpglobus.php:
|
954 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
955 |
msgstr ""
|
956 |
"Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
|
957 |
|
958 |
-
#: includes/class-wpglobus.php:
|
959 |
msgid ""
|
960 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
961 |
"default option."
|
@@ -1580,6 +1580,20 @@ msgstr ""
|
|
1580 |
msgid "Get WPGlobus Plus now!"
|
1581 |
msgstr ""
|
1582 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1583 |
#: wpglobus.php:13
|
1584 |
msgid "https://github.com/WPGlobus/WPGlobus"
|
1585 |
msgstr ""
|
950 |
msgid "Need a multilingual slug?"
|
951 |
msgstr ""
|
952 |
|
953 |
+
#: includes/class-wpglobus.php:3956
|
954 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
955 |
msgstr ""
|
956 |
"Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
|
957 |
|
958 |
+
#: includes/class-wpglobus.php:3958
|
959 |
msgid ""
|
960 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
961 |
"default option."
|
1580 |
msgid "Get WPGlobus Plus now!"
|
1581 |
msgstr ""
|
1582 |
|
1583 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:674
|
1584 |
+
msgid ""
|
1585 |
+
"Bulk editing of the multilingual titles and descriptions is not supported by "
|
1586 |
+
"the current version."
|
1587 |
+
msgstr ""
|
1588 |
+
|
1589 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:675
|
1590 |
+
msgid "Therefore, to avoid any data loss, we do not recommend using this."
|
1591 |
+
msgstr ""
|
1592 |
+
|
1593 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:678
|
1594 |
+
msgid "WPGlobus warning: "
|
1595 |
+
msgstr ""
|
1596 |
+
|
1597 |
#: wpglobus.php:13
|
1598 |
msgid "https://github.com/WPGlobus/WPGlobus"
|
1599 |
msgstr ""
|
languages/wpglobus-es_CR.po
CHANGED
@@ -950,12 +950,12 @@ msgstr "No Se Puede Desactivar el director idioma."
|
|
950 |
msgid "Need a multilingual slug?"
|
951 |
msgstr ""
|
952 |
|
953 |
-
#: includes/class-wpglobus.php:
|
954 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
955 |
msgstr ""
|
956 |
"Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
|
957 |
|
958 |
-
#: includes/class-wpglobus.php:
|
959 |
msgid ""
|
960 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
961 |
"default option."
|
@@ -1580,6 +1580,20 @@ msgstr ""
|
|
1580 |
msgid "Get WPGlobus Plus now!"
|
1581 |
msgstr ""
|
1582 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1583 |
#: wpglobus.php:13
|
1584 |
msgid "https://github.com/WPGlobus/WPGlobus"
|
1585 |
msgstr ""
|
950 |
msgid "Need a multilingual slug?"
|
951 |
msgstr ""
|
952 |
|
953 |
+
#: includes/class-wpglobus.php:3956
|
954 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
955 |
msgstr ""
|
956 |
"Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
|
957 |
|
958 |
+
#: includes/class-wpglobus.php:3958
|
959 |
msgid ""
|
960 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
961 |
"default option."
|
1580 |
msgid "Get WPGlobus Plus now!"
|
1581 |
msgstr ""
|
1582 |
|
1583 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:674
|
1584 |
+
msgid ""
|
1585 |
+
"Bulk editing of the multilingual titles and descriptions is not supported by "
|
1586 |
+
"the current version."
|
1587 |
+
msgstr ""
|
1588 |
+
|
1589 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:675
|
1590 |
+
msgid "Therefore, to avoid any data loss, we do not recommend using this."
|
1591 |
+
msgstr ""
|
1592 |
+
|
1593 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:678
|
1594 |
+
msgid "WPGlobus warning: "
|
1595 |
+
msgstr ""
|
1596 |
+
|
1597 |
#: wpglobus.php:13
|
1598 |
msgid "https://github.com/WPGlobus/WPGlobus"
|
1599 |
msgstr ""
|
languages/wpglobus-es_ES.po
CHANGED
@@ -950,12 +950,12 @@ msgstr "No Se Puede Desactivar el director idioma."
|
|
950 |
msgid "Need a multilingual slug?"
|
951 |
msgstr ""
|
952 |
|
953 |
-
#: includes/class-wpglobus.php:
|
954 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
955 |
msgstr ""
|
956 |
"Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
|
957 |
|
958 |
-
#: includes/class-wpglobus.php:
|
959 |
msgid ""
|
960 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
961 |
"default option."
|
@@ -1580,6 +1580,20 @@ msgstr ""
|
|
1580 |
msgid "Get WPGlobus Plus now!"
|
1581 |
msgstr ""
|
1582 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1583 |
#: wpglobus.php:13
|
1584 |
msgid "https://github.com/WPGlobus/WPGlobus"
|
1585 |
msgstr ""
|
950 |
msgid "Need a multilingual slug?"
|
951 |
msgstr ""
|
952 |
|
953 |
+
#: includes/class-wpglobus.php:3956
|
954 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
955 |
msgstr ""
|
956 |
"Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
|
957 |
|
958 |
+
#: includes/class-wpglobus.php:3958
|
959 |
msgid ""
|
960 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
961 |
"default option."
|
1580 |
msgid "Get WPGlobus Plus now!"
|
1581 |
msgstr ""
|
1582 |
|
1583 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:674
|
1584 |
+
msgid ""
|
1585 |
+
"Bulk editing of the multilingual titles and descriptions is not supported by "
|
1586 |
+
"the current version."
|
1587 |
+
msgstr ""
|
1588 |
+
|
1589 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:675
|
1590 |
+
msgid "Therefore, to avoid any data loss, we do not recommend using this."
|
1591 |
+
msgstr ""
|
1592 |
+
|
1593 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:678
|
1594 |
+
msgid "WPGlobus warning: "
|
1595 |
+
msgstr ""
|
1596 |
+
|
1597 |
#: wpglobus.php:13
|
1598 |
msgid "https://github.com/WPGlobus/WPGlobus"
|
1599 |
msgstr ""
|
languages/wpglobus-es_GT.po
CHANGED
@@ -950,12 +950,12 @@ msgstr "No Se Puede Desactivar el director idioma."
|
|
950 |
msgid "Need a multilingual slug?"
|
951 |
msgstr ""
|
952 |
|
953 |
-
#: includes/class-wpglobus.php:
|
954 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
955 |
msgstr ""
|
956 |
"Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
|
957 |
|
958 |
-
#: includes/class-wpglobus.php:
|
959 |
msgid ""
|
960 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
961 |
"default option."
|
@@ -1580,6 +1580,20 @@ msgstr ""
|
|
1580 |
msgid "Get WPGlobus Plus now!"
|
1581 |
msgstr ""
|
1582 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1583 |
#: wpglobus.php:13
|
1584 |
msgid "https://github.com/WPGlobus/WPGlobus"
|
1585 |
msgstr ""
|
950 |
msgid "Need a multilingual slug?"
|
951 |
msgstr ""
|
952 |
|
953 |
+
#: includes/class-wpglobus.php:3956
|
954 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
955 |
msgstr ""
|
956 |
"Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
|
957 |
|
958 |
+
#: includes/class-wpglobus.php:3958
|
959 |
msgid ""
|
960 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
961 |
"default option."
|
1580 |
msgid "Get WPGlobus Plus now!"
|
1581 |
msgstr ""
|
1582 |
|
1583 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:674
|
1584 |
+
msgid ""
|
1585 |
+
"Bulk editing of the multilingual titles and descriptions is not supported by "
|
1586 |
+
"the current version."
|
1587 |
+
msgstr ""
|
1588 |
+
|
1589 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:675
|
1590 |
+
msgid "Therefore, to avoid any data loss, we do not recommend using this."
|
1591 |
+
msgstr ""
|
1592 |
+
|
1593 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:678
|
1594 |
+
msgid "WPGlobus warning: "
|
1595 |
+
msgstr ""
|
1596 |
+
|
1597 |
#: wpglobus.php:13
|
1598 |
msgid "https://github.com/WPGlobus/WPGlobus"
|
1599 |
msgstr ""
|
languages/wpglobus-es_MX.po
CHANGED
@@ -950,12 +950,12 @@ msgstr "No Se Puede Desactivar el director idioma."
|
|
950 |
msgid "Need a multilingual slug?"
|
951 |
msgstr ""
|
952 |
|
953 |
-
#: includes/class-wpglobus.php:
|
954 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
955 |
msgstr ""
|
956 |
"Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
|
957 |
|
958 |
-
#: includes/class-wpglobus.php:
|
959 |
msgid ""
|
960 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
961 |
"default option."
|
@@ -1580,6 +1580,20 @@ msgstr ""
|
|
1580 |
msgid "Get WPGlobus Plus now!"
|
1581 |
msgstr ""
|
1582 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1583 |
#: wpglobus.php:13
|
1584 |
msgid "https://github.com/WPGlobus/WPGlobus"
|
1585 |
msgstr ""
|
950 |
msgid "Need a multilingual slug?"
|
951 |
msgstr ""
|
952 |
|
953 |
+
#: includes/class-wpglobus.php:3956
|
954 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
955 |
msgstr ""
|
956 |
"Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
|
957 |
|
958 |
+
#: includes/class-wpglobus.php:3958
|
959 |
msgid ""
|
960 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
961 |
"default option."
|
1580 |
msgid "Get WPGlobus Plus now!"
|
1581 |
msgstr ""
|
1582 |
|
1583 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:674
|
1584 |
+
msgid ""
|
1585 |
+
"Bulk editing of the multilingual titles and descriptions is not supported by "
|
1586 |
+
"the current version."
|
1587 |
+
msgstr ""
|
1588 |
+
|
1589 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:675
|
1590 |
+
msgid "Therefore, to avoid any data loss, we do not recommend using this."
|
1591 |
+
msgstr ""
|
1592 |
+
|
1593 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:678
|
1594 |
+
msgid "WPGlobus warning: "
|
1595 |
+
msgstr ""
|
1596 |
+
|
1597 |
#: wpglobus.php:13
|
1598 |
msgid "https://github.com/WPGlobus/WPGlobus"
|
1599 |
msgstr ""
|
languages/wpglobus-es_PE.po
CHANGED
@@ -950,12 +950,12 @@ msgstr "No Se Puede Desactivar el director idioma."
|
|
950 |
msgid "Need a multilingual slug?"
|
951 |
msgstr ""
|
952 |
|
953 |
-
#: includes/class-wpglobus.php:
|
954 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
955 |
msgstr ""
|
956 |
"Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
|
957 |
|
958 |
-
#: includes/class-wpglobus.php:
|
959 |
msgid ""
|
960 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
961 |
"default option."
|
@@ -1580,6 +1580,20 @@ msgstr ""
|
|
1580 |
msgid "Get WPGlobus Plus now!"
|
1581 |
msgstr ""
|
1582 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1583 |
#: wpglobus.php:13
|
1584 |
msgid "https://github.com/WPGlobus/WPGlobus"
|
1585 |
msgstr ""
|
950 |
msgid "Need a multilingual slug?"
|
951 |
msgstr ""
|
952 |
|
953 |
+
#: includes/class-wpglobus.php:3956
|
954 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
955 |
msgstr ""
|
956 |
"Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
|
957 |
|
958 |
+
#: includes/class-wpglobus.php:3958
|
959 |
msgid ""
|
960 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
961 |
"default option."
|
1580 |
msgid "Get WPGlobus Plus now!"
|
1581 |
msgstr ""
|
1582 |
|
1583 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:674
|
1584 |
+
msgid ""
|
1585 |
+
"Bulk editing of the multilingual titles and descriptions is not supported by "
|
1586 |
+
"the current version."
|
1587 |
+
msgstr ""
|
1588 |
+
|
1589 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:675
|
1590 |
+
msgid "Therefore, to avoid any data loss, we do not recommend using this."
|
1591 |
+
msgstr ""
|
1592 |
+
|
1593 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:678
|
1594 |
+
msgid "WPGlobus warning: "
|
1595 |
+
msgstr ""
|
1596 |
+
|
1597 |
#: wpglobus.php:13
|
1598 |
msgid "https://github.com/WPGlobus/WPGlobus"
|
1599 |
msgstr ""
|
languages/wpglobus-es_PR.po
CHANGED
@@ -950,12 +950,12 @@ msgstr "No Se Puede Desactivar el director idioma."
|
|
950 |
msgid "Need a multilingual slug?"
|
951 |
msgstr ""
|
952 |
|
953 |
-
#: includes/class-wpglobus.php:
|
954 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
955 |
msgstr ""
|
956 |
"Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
|
957 |
|
958 |
-
#: includes/class-wpglobus.php:
|
959 |
msgid ""
|
960 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
961 |
"default option."
|
@@ -1580,6 +1580,20 @@ msgstr ""
|
|
1580 |
msgid "Get WPGlobus Plus now!"
|
1581 |
msgstr ""
|
1582 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1583 |
#: wpglobus.php:13
|
1584 |
msgid "https://github.com/WPGlobus/WPGlobus"
|
1585 |
msgstr ""
|
950 |
msgid "Need a multilingual slug?"
|
951 |
msgstr ""
|
952 |
|
953 |
+
#: includes/class-wpglobus.php:3956
|
954 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
955 |
msgstr ""
|
956 |
"Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
|
957 |
|
958 |
+
#: includes/class-wpglobus.php:3958
|
959 |
msgid ""
|
960 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
961 |
"default option."
|
1580 |
msgid "Get WPGlobus Plus now!"
|
1581 |
msgstr ""
|
1582 |
|
1583 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:674
|
1584 |
+
msgid ""
|
1585 |
+
"Bulk editing of the multilingual titles and descriptions is not supported by "
|
1586 |
+
"the current version."
|
1587 |
+
msgstr ""
|
1588 |
+
|
1589 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:675
|
1590 |
+
msgid "Therefore, to avoid any data loss, we do not recommend using this."
|
1591 |
+
msgstr ""
|
1592 |
+
|
1593 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:678
|
1594 |
+
msgid "WPGlobus warning: "
|
1595 |
+
msgstr ""
|
1596 |
+
|
1597 |
#: wpglobus.php:13
|
1598 |
msgid "https://github.com/WPGlobus/WPGlobus"
|
1599 |
msgstr ""
|
languages/wpglobus-es_VE.po
CHANGED
@@ -950,12 +950,12 @@ msgstr "No Se Puede Desactivar el director idioma."
|
|
950 |
msgid "Need a multilingual slug?"
|
951 |
msgstr ""
|
952 |
|
953 |
-
#: includes/class-wpglobus.php:
|
954 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
955 |
msgstr ""
|
956 |
"Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
|
957 |
|
958 |
-
#: includes/class-wpglobus.php:
|
959 |
msgid ""
|
960 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
961 |
"default option."
|
@@ -1580,6 +1580,20 @@ msgstr ""
|
|
1580 |
msgid "Get WPGlobus Plus now!"
|
1581 |
msgstr ""
|
1582 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1583 |
#: wpglobus.php:13
|
1584 |
msgid "https://github.com/WPGlobus/WPGlobus"
|
1585 |
msgstr ""
|
950 |
msgid "Need a multilingual slug?"
|
951 |
msgstr ""
|
952 |
|
953 |
+
#: includes/class-wpglobus.php:3956
|
954 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
955 |
msgstr ""
|
956 |
"Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
|
957 |
|
958 |
+
#: includes/class-wpglobus.php:3958
|
959 |
msgid ""
|
960 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
961 |
"default option."
|
1580 |
msgid "Get WPGlobus Plus now!"
|
1581 |
msgstr ""
|
1582 |
|
1583 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:674
|
1584 |
+
msgid ""
|
1585 |
+
"Bulk editing of the multilingual titles and descriptions is not supported by "
|
1586 |
+
"the current version."
|
1587 |
+
msgstr ""
|
1588 |
+
|
1589 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:675
|
1590 |
+
msgid "Therefore, to avoid any data loss, we do not recommend using this."
|
1591 |
+
msgstr ""
|
1592 |
+
|
1593 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:678
|
1594 |
+
msgid "WPGlobus warning: "
|
1595 |
+
msgstr ""
|
1596 |
+
|
1597 |
#: wpglobus.php:13
|
1598 |
msgid "https://github.com/WPGlobus/WPGlobus"
|
1599 |
msgstr ""
|
languages/wpglobus-et.po
CHANGED
@@ -916,11 +916,11 @@ msgstr ""
|
|
916 |
msgid "Need a multilingual slug?"
|
917 |
msgstr ""
|
918 |
|
919 |
-
#: includes/class-wpglobus.php:
|
920 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
921 |
msgstr ""
|
922 |
|
923 |
-
#: includes/class-wpglobus.php:
|
924 |
msgid ""
|
925 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
926 |
"default option."
|
@@ -1543,6 +1543,20 @@ msgstr ""
|
|
1543 |
msgid "Get WPGlobus Plus now!"
|
1544 |
msgstr ""
|
1545 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1546 |
#: wpglobus.php:13
|
1547 |
msgid "https://github.com/WPGlobus/WPGlobus"
|
1548 |
msgstr "https://github.com/WPGlobus/WPGlobus"
|
916 |
msgid "Need a multilingual slug?"
|
917 |
msgstr ""
|
918 |
|
919 |
+
#: includes/class-wpglobus.php:3956
|
920 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
921 |
msgstr ""
|
922 |
|
923 |
+
#: includes/class-wpglobus.php:3958
|
924 |
msgid ""
|
925 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
926 |
"default option."
|
1543 |
msgid "Get WPGlobus Plus now!"
|
1544 |
msgstr ""
|
1545 |
|
1546 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:674
|
1547 |
+
msgid ""
|
1548 |
+
"Bulk editing of the multilingual titles and descriptions is not supported by "
|
1549 |
+
"the current version."
|
1550 |
+
msgstr ""
|
1551 |
+
|
1552 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:675
|
1553 |
+
msgid "Therefore, to avoid any data loss, we do not recommend using this."
|
1554 |
+
msgstr ""
|
1555 |
+
|
1556 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:678
|
1557 |
+
msgid "WPGlobus warning: "
|
1558 |
+
msgstr ""
|
1559 |
+
|
1560 |
#: wpglobus.php:13
|
1561 |
msgid "https://github.com/WPGlobus/WPGlobus"
|
1562 |
msgstr "https://github.com/WPGlobus/WPGlobus"
|
languages/wpglobus-fr_BE.po
CHANGED
@@ -1013,13 +1013,13 @@ msgstr "*) Disponible après que le menu ait été enregistré."
|
|
1013 |
msgid "Need a multilingual slug?"
|
1014 |
msgstr "Vous avez besoin d’un identifiant multilingue ?"
|
1015 |
|
1016 |
-
#: includes/class-wpglobus.php:
|
1017 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
1018 |
msgstr ""
|
1019 |
"Vous devez activer les jolis permaliens pour pouvoir utiliser WPGlobus "
|
1020 |
"correctement."
|
1021 |
|
1022 |
-
#: includes/class-wpglobus.php:
|
1023 |
msgid ""
|
1024 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
1025 |
"default option."
|
@@ -1648,6 +1648,20 @@ msgstr ""
|
|
1648 |
msgid "Get WPGlobus Plus now!"
|
1649 |
msgstr "Obtenez WPGlobus Plus maintenant !"
|
1650 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1651 |
#: wpglobus.php:13
|
1652 |
msgid "https://github.com/WPGlobus/WPGlobus"
|
1653 |
msgstr "https://github.com/WPGlobus/WPGlobus"
|
1013 |
msgid "Need a multilingual slug?"
|
1014 |
msgstr "Vous avez besoin d’un identifiant multilingue ?"
|
1015 |
|
1016 |
+
#: includes/class-wpglobus.php:3956
|
1017 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
1018 |
msgstr ""
|
1019 |
"Vous devez activer les jolis permaliens pour pouvoir utiliser WPGlobus "
|
1020 |
"correctement."
|
1021 |
|
1022 |
+
#: includes/class-wpglobus.php:3958
|
1023 |
msgid ""
|
1024 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
1025 |
"default option."
|
1648 |
msgid "Get WPGlobus Plus now!"
|
1649 |
msgstr "Obtenez WPGlobus Plus maintenant !"
|
1650 |
|
1651 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:674
|
1652 |
+
msgid ""
|
1653 |
+
"Bulk editing of the multilingual titles and descriptions is not supported by "
|
1654 |
+
"the current version."
|
1655 |
+
msgstr ""
|
1656 |
+
|
1657 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:675
|
1658 |
+
msgid "Therefore, to avoid any data loss, we do not recommend using this."
|
1659 |
+
msgstr ""
|
1660 |
+
|
1661 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:678
|
1662 |
+
msgid "WPGlobus warning: "
|
1663 |
+
msgstr ""
|
1664 |
+
|
1665 |
#: wpglobus.php:13
|
1666 |
msgid "https://github.com/WPGlobus/WPGlobus"
|
1667 |
msgstr "https://github.com/WPGlobus/WPGlobus"
|
languages/wpglobus-fr_CA.po
CHANGED
@@ -1015,13 +1015,13 @@ msgstr "*) Disponible après que le menu ait été enregistré."
|
|
1015 |
msgid "Need a multilingual slug?"
|
1016 |
msgstr "Vous avez besoin d’un identifiant multilingue ?"
|
1017 |
|
1018 |
-
#: includes/class-wpglobus.php:
|
1019 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
1020 |
msgstr ""
|
1021 |
"Vous devez activer les jolis permaliens pour pouvoir utiliser WPGlobus "
|
1022 |
"correctement."
|
1023 |
|
1024 |
-
#: includes/class-wpglobus.php:
|
1025 |
msgid ""
|
1026 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
1027 |
"default option."
|
@@ -1650,6 +1650,20 @@ msgstr ""
|
|
1650 |
msgid "Get WPGlobus Plus now!"
|
1651 |
msgstr "Obtenez WPGlobus Plus maintenant !"
|
1652 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1653 |
#: wpglobus.php:13
|
1654 |
msgid "https://github.com/WPGlobus/WPGlobus"
|
1655 |
msgstr "https://github.com/WPGlobus/WPGlobus"
|
1015 |
msgid "Need a multilingual slug?"
|
1016 |
msgstr "Vous avez besoin d’un identifiant multilingue ?"
|
1017 |
|
1018 |
+
#: includes/class-wpglobus.php:3956
|
1019 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
1020 |
msgstr ""
|
1021 |
"Vous devez activer les jolis permaliens pour pouvoir utiliser WPGlobus "
|
1022 |
"correctement."
|
1023 |
|
1024 |
+
#: includes/class-wpglobus.php:3958
|
1025 |
msgid ""
|
1026 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
1027 |
"default option."
|
1650 |
msgid "Get WPGlobus Plus now!"
|
1651 |
msgstr "Obtenez WPGlobus Plus maintenant !"
|
1652 |
|
1653 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:674
|
1654 |
+
msgid ""
|
1655 |
+
"Bulk editing of the multilingual titles and descriptions is not supported by "
|
1656 |
+
"the current version."
|
1657 |
+
msgstr ""
|
1658 |
+
|
1659 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:675
|
1660 |
+
msgid "Therefore, to avoid any data loss, we do not recommend using this."
|
1661 |
+
msgstr ""
|
1662 |
+
|
1663 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:678
|
1664 |
+
msgid "WPGlobus warning: "
|
1665 |
+
msgstr ""
|
1666 |
+
|
1667 |
#: wpglobus.php:13
|
1668 |
msgid "https://github.com/WPGlobus/WPGlobus"
|
1669 |
msgstr "https://github.com/WPGlobus/WPGlobus"
|
languages/wpglobus-fr_FR.po
CHANGED
@@ -1028,13 +1028,13 @@ msgstr "*) Disponible après que le menu ait été enregistré."
|
|
1028 |
msgid "Need a multilingual slug?"
|
1029 |
msgstr "Vous avez besoin d’un identifiant multilingue ?"
|
1030 |
|
1031 |
-
#: includes/class-wpglobus.php:
|
1032 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
1033 |
msgstr ""
|
1034 |
"Vous devez activer les jolis permaliens pour pouvoir utiliser WPGlobus "
|
1035 |
"correctement."
|
1036 |
|
1037 |
-
#: includes/class-wpglobus.php:
|
1038 |
msgid ""
|
1039 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
1040 |
"default option."
|
@@ -1725,6 +1725,20 @@ msgstr ""
|
|
1725 |
msgid "Get WPGlobus Plus now!"
|
1726 |
msgstr "Obtenez WPGlobus Plus maintenant !"
|
1727 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1728 |
#: wpglobus.php:13
|
1729 |
msgid "https://github.com/WPGlobus/WPGlobus"
|
1730 |
msgstr "https://github.com/WPGlobus/WPGlobus"
|
1028 |
msgid "Need a multilingual slug?"
|
1029 |
msgstr "Vous avez besoin d’un identifiant multilingue ?"
|
1030 |
|
1031 |
+
#: includes/class-wpglobus.php:3956
|
1032 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
1033 |
msgstr ""
|
1034 |
"Vous devez activer les jolis permaliens pour pouvoir utiliser WPGlobus "
|
1035 |
"correctement."
|
1036 |
|
1037 |
+
#: includes/class-wpglobus.php:3958
|
1038 |
msgid ""
|
1039 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
1040 |
"default option."
|
1725 |
msgid "Get WPGlobus Plus now!"
|
1726 |
msgstr "Obtenez WPGlobus Plus maintenant !"
|
1727 |
|
1728 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:674
|
1729 |
+
msgid ""
|
1730 |
+
"Bulk editing of the multilingual titles and descriptions is not supported by "
|
1731 |
+
"the current version."
|
1732 |
+
msgstr ""
|
1733 |
+
|
1734 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:675
|
1735 |
+
msgid "Therefore, to avoid any data loss, we do not recommend using this."
|
1736 |
+
msgstr ""
|
1737 |
+
|
1738 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:678
|
1739 |
+
msgid "WPGlobus warning: "
|
1740 |
+
msgstr ""
|
1741 |
+
|
1742 |
#: wpglobus.php:13
|
1743 |
msgid "https://github.com/WPGlobus/WPGlobus"
|
1744 |
msgstr "https://github.com/WPGlobus/WPGlobus"
|
languages/wpglobus-id_ID.po
CHANGED
@@ -991,11 +991,11 @@ msgstr "*) Tersedia setelah menu tersebut disimpan."
|
|
991 |
msgid "Need a multilingual slug?"
|
992 |
msgstr ""
|
993 |
|
994 |
-
#: includes/class-wpglobus.php:
|
995 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
996 |
msgstr "Anda harus mengaktifkan Permalinks Cukup menggunakan WPGlobus."
|
997 |
|
998 |
-
#: includes/class-wpglobus.php:
|
999 |
msgid ""
|
1000 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
1001 |
"default option."
|
@@ -1624,6 +1624,20 @@ msgstr ""
|
|
1624 |
msgid "Get WPGlobus Plus now!"
|
1625 |
msgstr "Dapatkan WPGlobus Ditambah sekarang!"
|
1626 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1627 |
#: wpglobus.php:13
|
1628 |
msgid "https://github.com/WPGlobus/WPGlobus"
|
1629 |
msgstr "https://github.com/WPGlobus/WPGlobus"
|
991 |
msgid "Need a multilingual slug?"
|
992 |
msgstr ""
|
993 |
|
994 |
+
#: includes/class-wpglobus.php:3956
|
995 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
996 |
msgstr "Anda harus mengaktifkan Permalinks Cukup menggunakan WPGlobus."
|
997 |
|
998 |
+
#: includes/class-wpglobus.php:3958
|
999 |
msgid ""
|
1000 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
1001 |
"default option."
|
1624 |
msgid "Get WPGlobus Plus now!"
|
1625 |
msgstr "Dapatkan WPGlobus Ditambah sekarang!"
|
1626 |
|
1627 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:674
|
1628 |
+
msgid ""
|
1629 |
+
"Bulk editing of the multilingual titles and descriptions is not supported by "
|
1630 |
+
"the current version."
|
1631 |
+
msgstr ""
|
1632 |
+
|
1633 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:675
|
1634 |
+
msgid "Therefore, to avoid any data loss, we do not recommend using this."
|
1635 |
+
msgstr ""
|
1636 |
+
|
1637 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:678
|
1638 |
+
msgid "WPGlobus warning: "
|
1639 |
+
msgstr ""
|
1640 |
+
|
1641 |
#: wpglobus.php:13
|
1642 |
msgid "https://github.com/WPGlobus/WPGlobus"
|
1643 |
msgstr "https://github.com/WPGlobus/WPGlobus"
|
languages/wpglobus-ko_KR.po
CHANGED
@@ -915,11 +915,11 @@ msgstr ""
|
|
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 |
|
922 |
-
#: includes/class-wpglobus.php:
|
923 |
msgid ""
|
924 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
925 |
"default option."
|
@@ -1542,6 +1542,20 @@ msgstr ""
|
|
1542 |
msgid "Get WPGlobus Plus now!"
|
1543 |
msgstr ""
|
1544 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1545 |
#: wpglobus.php:13
|
1546 |
msgid "https://github.com/WPGlobus/WPGlobus"
|
1547 |
msgstr ""
|
915 |
msgid "Need a multilingual slug?"
|
916 |
msgstr ""
|
917 |
|
918 |
+
#: includes/class-wpglobus.php:3956
|
919 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
920 |
msgstr ""
|
921 |
|
922 |
+
#: includes/class-wpglobus.php:3958
|
923 |
msgid ""
|
924 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
925 |
"default option."
|
1542 |
msgid "Get WPGlobus Plus now!"
|
1543 |
msgstr ""
|
1544 |
|
1545 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:674
|
1546 |
+
msgid ""
|
1547 |
+
"Bulk editing of the multilingual titles and descriptions is not supported by "
|
1548 |
+
"the current version."
|
1549 |
+
msgstr ""
|
1550 |
+
|
1551 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:675
|
1552 |
+
msgid "Therefore, to avoid any data loss, we do not recommend using this."
|
1553 |
+
msgstr ""
|
1554 |
+
|
1555 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:678
|
1556 |
+
msgid "WPGlobus warning: "
|
1557 |
+
msgstr ""
|
1558 |
+
|
1559 |
#: wpglobus.php:13
|
1560 |
msgid "https://github.com/WPGlobus/WPGlobus"
|
1561 |
msgstr ""
|
languages/wpglobus-pl_PL.po
CHANGED
@@ -942,12 +942,12 @@ msgstr "*) Dostępne po zapisaniu menu."
|
|
942 |
msgid "Need a multilingual slug?"
|
943 |
msgstr ""
|
944 |
|
945 |
-
#: includes/class-wpglobus.php:
|
946 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
947 |
msgstr ""
|
948 |
"Aby korzystać z WPGlobus'a, musisz ustawić przyjazne bezpośrednie odnośniki."
|
949 |
|
950 |
-
#: includes/class-wpglobus.php:
|
951 |
msgid ""
|
952 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
953 |
"default option."
|
@@ -1576,6 +1576,20 @@ msgstr ""
|
|
1576 |
msgid "Get WPGlobus Plus now!"
|
1577 |
msgstr "Uzyskaj już teraz WPGlobus Plus!"
|
1578 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1579 |
#: wpglobus.php:13
|
1580 |
msgid "https://github.com/WPGlobus/WPGlobus"
|
1581 |
msgstr "https://github.com/WPGlobus/WPGlobus"
|
942 |
msgid "Need a multilingual slug?"
|
943 |
msgstr ""
|
944 |
|
945 |
+
#: includes/class-wpglobus.php:3956
|
946 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
947 |
msgstr ""
|
948 |
"Aby korzystać z WPGlobus'a, musisz ustawić przyjazne bezpośrednie odnośniki."
|
949 |
|
950 |
+
#: includes/class-wpglobus.php:3958
|
951 |
msgid ""
|
952 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
953 |
"default option."
|
1576 |
msgid "Get WPGlobus Plus now!"
|
1577 |
msgstr "Uzyskaj już teraz WPGlobus Plus!"
|
1578 |
|
1579 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:674
|
1580 |
+
msgid ""
|
1581 |
+
"Bulk editing of the multilingual titles and descriptions is not supported by "
|
1582 |
+
"the current version."
|
1583 |
+
msgstr ""
|
1584 |
+
|
1585 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:675
|
1586 |
+
msgid "Therefore, to avoid any data loss, we do not recommend using this."
|
1587 |
+
msgstr ""
|
1588 |
+
|
1589 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:678
|
1590 |
+
msgid "WPGlobus warning: "
|
1591 |
+
msgstr ""
|
1592 |
+
|
1593 |
#: wpglobus.php:13
|
1594 |
msgid "https://github.com/WPGlobus/WPGlobus"
|
1595 |
msgstr "https://github.com/WPGlobus/WPGlobus"
|
languages/wpglobus-pt_BR.po
CHANGED
@@ -915,11 +915,11 @@ msgstr ""
|
|
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 |
|
922 |
-
#: includes/class-wpglobus.php:
|
923 |
msgid ""
|
924 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
925 |
"default option."
|
@@ -1542,6 +1542,20 @@ msgstr ""
|
|
1542 |
msgid "Get WPGlobus Plus now!"
|
1543 |
msgstr ""
|
1544 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1545 |
#: wpglobus.php:13
|
1546 |
msgid "https://github.com/WPGlobus/WPGlobus"
|
1547 |
msgstr ""
|
915 |
msgid "Need a multilingual slug?"
|
916 |
msgstr ""
|
917 |
|
918 |
+
#: includes/class-wpglobus.php:3956
|
919 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
920 |
msgstr ""
|
921 |
|
922 |
+
#: includes/class-wpglobus.php:3958
|
923 |
msgid ""
|
924 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
925 |
"default option."
|
1542 |
msgid "Get WPGlobus Plus now!"
|
1543 |
msgstr ""
|
1544 |
|
1545 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:674
|
1546 |
+
msgid ""
|
1547 |
+
"Bulk editing of the multilingual titles and descriptions is not supported by "
|
1548 |
+
"the current version."
|
1549 |
+
msgstr ""
|
1550 |
+
|
1551 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:675
|
1552 |
+
msgid "Therefore, to avoid any data loss, we do not recommend using this."
|
1553 |
+
msgstr ""
|
1554 |
+
|
1555 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:678
|
1556 |
+
msgid "WPGlobus warning: "
|
1557 |
+
msgstr ""
|
1558 |
+
|
1559 |
#: wpglobus.php:13
|
1560 |
msgid "https://github.com/WPGlobus/WPGlobus"
|
1561 |
msgstr ""
|
languages/wpglobus-pt_PT.po
CHANGED
@@ -915,11 +915,11 @@ msgstr ""
|
|
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 |
|
922 |
-
#: includes/class-wpglobus.php:
|
923 |
msgid ""
|
924 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
925 |
"default option."
|
@@ -1542,6 +1542,20 @@ msgstr ""
|
|
1542 |
msgid "Get WPGlobus Plus now!"
|
1543 |
msgstr ""
|
1544 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1545 |
#: wpglobus.php:13
|
1546 |
msgid "https://github.com/WPGlobus/WPGlobus"
|
1547 |
msgstr ""
|
915 |
msgid "Need a multilingual slug?"
|
916 |
msgstr ""
|
917 |
|
918 |
+
#: includes/class-wpglobus.php:3956
|
919 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
920 |
msgstr ""
|
921 |
|
922 |
+
#: includes/class-wpglobus.php:3958
|
923 |
msgid ""
|
924 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
925 |
"default option."
|
1542 |
msgid "Get WPGlobus Plus now!"
|
1543 |
msgstr ""
|
1544 |
|
1545 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:674
|
1546 |
+
msgid ""
|
1547 |
+
"Bulk editing of the multilingual titles and descriptions is not supported by "
|
1548 |
+
"the current version."
|
1549 |
+
msgstr ""
|
1550 |
+
|
1551 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:675
|
1552 |
+
msgid "Therefore, to avoid any data loss, we do not recommend using this."
|
1553 |
+
msgstr ""
|
1554 |
+
|
1555 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:678
|
1556 |
+
msgid "WPGlobus warning: "
|
1557 |
+
msgstr ""
|
1558 |
+
|
1559 |
#: wpglobus.php:13
|
1560 |
msgid "https://github.com/WPGlobus/WPGlobus"
|
1561 |
msgstr ""
|
languages/wpglobus-ro_RO.po
CHANGED
@@ -945,11 +945,11 @@ msgstr "*) Disponibil după ce meniul este salvat."
|
|
945 |
msgid "Need a multilingual slug?"
|
946 |
msgstr ""
|
947 |
|
948 |
-
#: includes/class-wpglobus.php:
|
949 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
950 |
msgstr "Trebuie să activezi Pretty Permalinks pentru a folosi WPGlobus."
|
951 |
|
952 |
-
#: includes/class-wpglobus.php:
|
953 |
msgid ""
|
954 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
955 |
"default option."
|
@@ -1579,6 +1579,20 @@ msgstr ""
|
|
1579 |
msgid "Get WPGlobus Plus now!"
|
1580 |
msgstr "Obține WPGlobus Plus acum!"
|
1581 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1582 |
#: wpglobus.php:13
|
1583 |
msgid "https://github.com/WPGlobus/WPGlobus"
|
1584 |
msgstr "https://github.com/WPGlobus/WPGlobus"
|
945 |
msgid "Need a multilingual slug?"
|
946 |
msgstr ""
|
947 |
|
948 |
+
#: includes/class-wpglobus.php:3956
|
949 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
950 |
msgstr "Trebuie să activezi Pretty Permalinks pentru a folosi WPGlobus."
|
951 |
|
952 |
+
#: includes/class-wpglobus.php:3958
|
953 |
msgid ""
|
954 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
955 |
"default option."
|
1579 |
msgid "Get WPGlobus Plus now!"
|
1580 |
msgstr "Obține WPGlobus Plus acum!"
|
1581 |
|
1582 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:674
|
1583 |
+
msgid ""
|
1584 |
+
"Bulk editing of the multilingual titles and descriptions is not supported by "
|
1585 |
+
"the current version."
|
1586 |
+
msgstr ""
|
1587 |
+
|
1588 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:675
|
1589 |
+
msgid "Therefore, to avoid any data loss, we do not recommend using this."
|
1590 |
+
msgstr ""
|
1591 |
+
|
1592 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:678
|
1593 |
+
msgid "WPGlobus warning: "
|
1594 |
+
msgstr ""
|
1595 |
+
|
1596 |
#: wpglobus.php:13
|
1597 |
msgid "https://github.com/WPGlobus/WPGlobus"
|
1598 |
msgstr "https://github.com/WPGlobus/WPGlobus"
|
languages/wpglobus-ru_RU.mo
CHANGED
Binary file
|
languages/wpglobus-ru_RU.po
CHANGED
@@ -1002,13 +1002,13 @@ msgstr "*) Доступно после сохранения меню."
|
|
1002 |
msgid "Need a multilingual slug?"
|
1003 |
msgstr "Нужен мультиязычный ярлык?"
|
1004 |
|
1005 |
-
#: includes/class-wpglobus.php:
|
1006 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
1007 |
msgstr ""
|
1008 |
"Чтобы использовать плагин WPGlobus, необходимо включить ЧПУ - постоянные "
|
1009 |
"ссылки."
|
1010 |
|
1011 |
-
#: includes/class-wpglobus.php:
|
1012 |
msgid ""
|
1013 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
1014 |
"default option."
|
@@ -1687,6 +1687,23 @@ msgstr ""
|
|
1687 |
msgid "Get WPGlobus Plus now!"
|
1688 |
msgstr "Установите WPGlobus Плюс прямо сейчас!"
|
1689 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1690 |
#: wpglobus.php:13
|
1691 |
msgid "https://github.com/WPGlobus/WPGlobus"
|
1692 |
msgstr "https://github.com/WPGlobus/WPGlobus"
|
1002 |
msgid "Need a multilingual slug?"
|
1003 |
msgstr "Нужен мультиязычный ярлык?"
|
1004 |
|
1005 |
+
#: includes/class-wpglobus.php:3956
|
1006 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
1007 |
msgstr ""
|
1008 |
"Чтобы использовать плагин WPGlobus, необходимо включить ЧПУ - постоянные "
|
1009 |
"ссылки."
|
1010 |
|
1011 |
+
#: includes/class-wpglobus.php:3958
|
1012 |
msgid ""
|
1013 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
1014 |
"default option."
|
1687 |
msgid "Get WPGlobus Plus now!"
|
1688 |
msgstr "Установите WPGlobus Плюс прямо сейчас!"
|
1689 |
|
1690 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:674
|
1691 |
+
msgid ""
|
1692 |
+
"Bulk editing of the multilingual titles and descriptions is not supported by "
|
1693 |
+
"the current version."
|
1694 |
+
msgstr ""
|
1695 |
+
"Текущая версия не поддерживает возможность массового редактирования "
|
1696 |
+
"многоязычных заголовков и описаний."
|
1697 |
+
|
1698 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:675
|
1699 |
+
msgid "Therefore, to avoid any data loss, we do not recommend using this."
|
1700 |
+
msgstr ""
|
1701 |
+
"Поэтому не рекомендуем использовать этот режим во избежание потери данных."
|
1702 |
+
|
1703 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:678
|
1704 |
+
msgid "WPGlobus warning: "
|
1705 |
+
msgstr "Предупреждение WPGlobus: "
|
1706 |
+
|
1707 |
#: wpglobus.php:13
|
1708 |
msgid "https://github.com/WPGlobus/WPGlobus"
|
1709 |
msgstr "https://github.com/WPGlobus/WPGlobus"
|
languages/wpglobus-sv_SE.po
CHANGED
@@ -941,11 +941,11 @@ msgstr "*) Tillgängligt när menyn sparats."
|
|
941 |
msgid "Need a multilingual slug?"
|
942 |
msgstr ""
|
943 |
|
944 |
-
#: includes/class-wpglobus.php:
|
945 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
946 |
msgstr "Du måste aktivera Vackra Permalänkar för att använda WPGlobus."
|
947 |
|
948 |
-
#: includes/class-wpglobus.php:
|
949 |
msgid ""
|
950 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
951 |
"default option."
|
@@ -1578,6 +1578,20 @@ msgstr ""
|
|
1578 |
msgid "Get WPGlobus Plus now!"
|
1579 |
msgstr "Hämta WPGlobus Plus nu!"
|
1580 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1581 |
#: wpglobus.php:13
|
1582 |
msgid "https://github.com/WPGlobus/WPGlobus"
|
1583 |
msgstr "https://github.com/WPGlobus/WPGlobus"
|
941 |
msgid "Need a multilingual slug?"
|
942 |
msgstr ""
|
943 |
|
944 |
+
#: includes/class-wpglobus.php:3956
|
945 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
946 |
msgstr "Du måste aktivera Vackra Permalänkar för att använda WPGlobus."
|
947 |
|
948 |
+
#: includes/class-wpglobus.php:3958
|
949 |
msgid ""
|
950 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
951 |
"default option."
|
1578 |
msgid "Get WPGlobus Plus now!"
|
1579 |
msgstr "Hämta WPGlobus Plus nu!"
|
1580 |
|
1581 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:674
|
1582 |
+
msgid ""
|
1583 |
+
"Bulk editing of the multilingual titles and descriptions is not supported by "
|
1584 |
+
"the current version."
|
1585 |
+
msgstr ""
|
1586 |
+
|
1587 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:675
|
1588 |
+
msgid "Therefore, to avoid any data loss, we do not recommend using this."
|
1589 |
+
msgstr ""
|
1590 |
+
|
1591 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:678
|
1592 |
+
msgid "WPGlobus warning: "
|
1593 |
+
msgstr ""
|
1594 |
+
|
1595 |
#: wpglobus.php:13
|
1596 |
msgid "https://github.com/WPGlobus/WPGlobus"
|
1597 |
msgstr "https://github.com/WPGlobus/WPGlobus"
|
languages/wpglobus-tr_TR.po
CHANGED
@@ -941,12 +941,12 @@ msgstr "*) Menü kaydedildikten sonra kullanılabilir."
|
|
941 |
msgid "Need a multilingual slug?"
|
942 |
msgstr ""
|
943 |
|
944 |
-
#: includes/class-wpglobus.php:
|
945 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
946 |
msgstr ""
|
947 |
"WPGlobus' u kullanabilmek için Pretty Permalinks' i etkinleştirmelisiniz."
|
948 |
|
949 |
-
#: includes/class-wpglobus.php:
|
950 |
msgid ""
|
951 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
952 |
"default option."
|
@@ -1574,6 +1574,20 @@ msgstr ""
|
|
1574 |
msgid "Get WPGlobus Plus now!"
|
1575 |
msgstr "WPGlobus Plus' ı şimdi edinin!"
|
1576 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1577 |
#: wpglobus.php:13
|
1578 |
msgid "https://github.com/WPGlobus/WPGlobus"
|
1579 |
msgstr ""
|
941 |
msgid "Need a multilingual slug?"
|
942 |
msgstr ""
|
943 |
|
944 |
+
#: includes/class-wpglobus.php:3956
|
945 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
946 |
msgstr ""
|
947 |
"WPGlobus' u kullanabilmek için Pretty Permalinks' i etkinleştirmelisiniz."
|
948 |
|
949 |
+
#: includes/class-wpglobus.php:3958
|
950 |
msgid ""
|
951 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
952 |
"default option."
|
1574 |
msgid "Get WPGlobus Plus now!"
|
1575 |
msgstr "WPGlobus Plus' ı şimdi edinin!"
|
1576 |
|
1577 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:674
|
1578 |
+
msgid ""
|
1579 |
+
"Bulk editing of the multilingual titles and descriptions is not supported by "
|
1580 |
+
"the current version."
|
1581 |
+
msgstr ""
|
1582 |
+
|
1583 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:675
|
1584 |
+
msgid "Therefore, to avoid any data loss, we do not recommend using this."
|
1585 |
+
msgstr ""
|
1586 |
+
|
1587 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:678
|
1588 |
+
msgid "WPGlobus warning: "
|
1589 |
+
msgstr ""
|
1590 |
+
|
1591 |
#: wpglobus.php:13
|
1592 |
msgid "https://github.com/WPGlobus/WPGlobus"
|
1593 |
msgstr ""
|
languages/wpglobus-uk.po
CHANGED
@@ -998,13 +998,13 @@ msgstr "*) Доступно після збереження меню."
|
|
998 |
msgid "Need a multilingual slug?"
|
999 |
msgstr "Потрібен багатомовний ярлик?"
|
1000 |
|
1001 |
-
#: includes/class-wpglobus.php:
|
1002 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
1003 |
msgstr ""
|
1004 |
"Щоб використовувати плагін WPGlobus, необхідно увімкнути SEF URLs - постійні "
|
1005 |
"посилання."
|
1006 |
|
1007 |
-
#: includes/class-wpglobus.php:
|
1008 |
msgid ""
|
1009 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
1010 |
"default option."
|
@@ -1677,6 +1677,20 @@ msgstr ""
|
|
1677 |
msgid "Get WPGlobus Plus now!"
|
1678 |
msgstr "Встановіть WPGlobus Плюс прямо зараз!"
|
1679 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1680 |
#: wpglobus.php:13
|
1681 |
msgid "https://github.com/WPGlobus/WPGlobus"
|
1682 |
msgstr "https://github.com/WPGlobus/WPGlobus"
|
998 |
msgid "Need a multilingual slug?"
|
999 |
msgstr "Потрібен багатомовний ярлик?"
|
1000 |
|
1001 |
+
#: includes/class-wpglobus.php:3956
|
1002 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
1003 |
msgstr ""
|
1004 |
"Щоб використовувати плагін WPGlobus, необхідно увімкнути SEF URLs - постійні "
|
1005 |
"посилання."
|
1006 |
|
1007 |
+
#: includes/class-wpglobus.php:3958
|
1008 |
msgid ""
|
1009 |
"Please go to Settings > Permalinks > Common Settings and choose a non-"
|
1010 |
"default option."
|
1677 |
msgid "Get WPGlobus Plus now!"
|
1678 |
msgstr "Встановіть WPGlobus Плюс прямо зараз!"
|
1679 |
|
1680 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:674
|
1681 |
+
msgid ""
|
1682 |
+
"Bulk editing of the multilingual titles and descriptions is not supported by "
|
1683 |
+
"the current version."
|
1684 |
+
msgstr ""
|
1685 |
+
|
1686 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:675
|
1687 |
+
msgid "Therefore, to avoid any data loss, we do not recommend using this."
|
1688 |
+
msgstr ""
|
1689 |
+
|
1690 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:678
|
1691 |
+
msgid "WPGlobus warning: "
|
1692 |
+
msgstr ""
|
1693 |
+
|
1694 |
#: wpglobus.php:13
|
1695 |
msgid "https://github.com/WPGlobus/WPGlobus"
|
1696 |
msgstr "https://github.com/WPGlobus/WPGlobus"
|
languages/wpglobus.pot
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
-
# Copyright (C) 2020 WPGlobus 2.4.
|
2 |
-
# This file is distributed under the same license as the WPGlobus 2.4.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: WPGlobus 2.4.
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -760,11 +760,11 @@ msgstr ""
|
|
760 |
msgid "Need a multilingual slug?"
|
761 |
msgstr ""
|
762 |
|
763 |
-
#: includes/class-wpglobus.php:
|
764 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
765 |
msgstr ""
|
766 |
|
767 |
-
#: includes/class-wpglobus.php:
|
768 |
msgid "Please go to Settings > Permalinks > Common Settings and choose a non-default option."
|
769 |
msgstr ""
|
770 |
|
@@ -1322,6 +1322,18 @@ msgstr ""
|
|
1322 |
msgid "Get WPGlobus Plus now!"
|
1323 |
msgstr ""
|
1324 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1325 |
#: wpglobus.php:13
|
1326 |
msgid "https://github.com/WPGlobus/WPGlobus"
|
1327 |
msgstr ""
|
1 |
+
# Copyright (C) 2020 WPGlobus 2.4.5
|
2 |
+
# This file is distributed under the same license as the WPGlobus 2.4.5 package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: WPGlobus 2.4.5\n"
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
760 |
msgid "Need a multilingual slug?"
|
761 |
msgstr ""
|
762 |
|
763 |
+
#: includes/class-wpglobus.php:3956
|
764 |
msgid "You must enable Pretty Permalinks to use WPGlobus."
|
765 |
msgstr ""
|
766 |
|
767 |
+
#: includes/class-wpglobus.php:3958
|
768 |
msgid "Please go to Settings > Permalinks > Common Settings and choose a non-default option."
|
769 |
msgstr ""
|
770 |
|
1322 |
msgid "Get WPGlobus Plus now!"
|
1323 |
msgstr ""
|
1324 |
|
1325 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:674
|
1326 |
+
msgid "Bulk editing of the multilingual titles and descriptions is not supported by the current version."
|
1327 |
+
msgstr ""
|
1328 |
+
|
1329 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:675
|
1330 |
+
msgid "Therefore, to avoid any data loss, we do not recommend using this."
|
1331 |
+
msgstr ""
|
1332 |
+
|
1333 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:678
|
1334 |
+
msgid "WPGlobus warning: "
|
1335 |
+
msgstr ""
|
1336 |
+
|
1337 |
#: wpglobus.php:13
|
1338 |
msgid "https://github.com/WPGlobus/WPGlobus"
|
1339 |
msgstr ""
|
readme.txt
CHANGED
@@ -26,7 +26,7 @@ Please also read the [Quick Start Guide](https://wpglobus.com/quick-start/).
|
|
26 |
* NO AUTOMATIC TRANSLATION:
|
27 |
* WPGlobus does NOT translate texts automatically! You will **translate texts manually**.
|
28 |
* PAGE BUILDERS / COMPOSERS:
|
29 |
-
* Starting from the version 1.9.17, WPGlobus supports Gutenberg
|
30 |
* IF YOU UNINSTALL, YOU LOSE TRANSLATIONS:
|
31 |
* WPGlobus stores all translations using a special format: `{:en}English{:}{:fr}French{:}{:es}Spanish{:}`. If you decide to **deactivate and uninstall WPGlobus**, you **must run the clean-up tool** to keep only one language. See the details on the "Welcome" tab in the WPGlobus Settings.
|
32 |
* COOKIES:
|
@@ -76,7 +76,6 @@ For more details, please check out the descriptions of each paid add-on on our w
|
|
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.
|
78 |
* [WPGlobus Mobile Menu](https://wpglobus.com/product/wpglobus-mobile-menu/): makes the WPGlobus language switcher menu compatible with mobile devices and narrow screens.
|
79 |
-
* [WPGlobus for Slider Revolution](https://wpglobus.com/product/wpglobus-for-slider-revolution/): Adds multilingual capabilities to the Slider Revolution plugin.
|
80 |
* [WPGlobus for the "Bridge" theme](https://wpglobus.com/product/wpglobus-for-bridge-theme/): create different sliders for each language when using theme "Bridge".
|
81 |
* [Multilingual WooCommerce Nets Netaxept](https://wpglobus.com/product/multilingual-woocommerce-nets-netaxept/): with this add-on, you will be able to translate the Nets payment methods' titles and descriptions to multiple languages.
|
82 |
|
@@ -93,12 +92,12 @@ We have checked WPGlobus together with many plugins, including:
|
|
93 |
|
94 |
* ACF - Advanced Custom Fields. [WPGlobus Plus](https://wpglobus.com/product/wpglobus-plus/) premium add-on is required for WYSIWYG fields support,
|
95 |
* All in One SEO Pack,
|
|
|
96 |
* Black Studio TinyMCE Widget (with our free add-on),
|
97 |
* MailChimp for WordPress,
|
98 |
* Max Mega Menu,
|
99 |
* Popups - WordPress Popup,
|
100 |
* Sidebar Login,
|
101 |
-
* The Events Calendar,
|
102 |
* WPBakery Page Builder,
|
103 |
* Whistles,
|
104 |
* Widget Logic,
|
@@ -106,7 +105,6 @@ We have checked WPGlobus together with many plugins, including:
|
|
106 |
|
107 |
Some 3rd-party plugins are supported with our [premium add-ons](https://wpglobus.com/shop/):
|
108 |
|
109 |
-
* [Slider Revolution](https://wpglobus.com/product/wpglobus-for-slider-revolution/),
|
110 |
* [TablePress](https://wpglobus.com/product/wpglobus-plus/#tablepress),
|
111 |
* [WooCommerce and some of its extensions](https://wpglobus.com/product/woocommerce-wpglobus/),
|
112 |
* [WooCommerce Nets Netaxept Payment Plugin](https://wpglobus.com/product/multilingual-woocommerce-nets-netaxept/)
|
@@ -218,7 +216,12 @@ WPGlobus Version 2 supports WordPress 5.x, with Gutenberg.
|
|
218 |
|
219 |
== Changelog ==
|
220 |
|
221 |
-
= 2.4.
|
|
|
|
|
|
|
|
|
|
|
222 |
|
223 |
* (Builders/RankMathSEO) Added filters for title and description on frontend.
|
224 |
|
26 |
* NO AUTOMATIC TRANSLATION:
|
27 |
* WPGlobus does NOT translate texts automatically! You will **translate texts manually**.
|
28 |
* PAGE BUILDERS / COMPOSERS:
|
29 |
+
* Starting from the version 1.9.17, WPGlobus supports Gutenberg, WPBakery Page Builder and Elementor. Other builders, such as "Page Builder by SiteOrigin", "Beaver Builder", Fusion ("Avada"), Elegant ("Divi"), etc. are currently in development.
|
30 |
* IF YOU UNINSTALL, YOU LOSE TRANSLATIONS:
|
31 |
* WPGlobus stores all translations using a special format: `{:en}English{:}{:fr}French{:}{:es}Spanish{:}`. If you decide to **deactivate and uninstall WPGlobus**, you **must run the clean-up tool** to keep only one language. See the details on the "Welcome" tab in the WPGlobus Settings.
|
32 |
* COOKIES:
|
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.
|
78 |
* [WPGlobus Mobile Menu](https://wpglobus.com/product/wpglobus-mobile-menu/): makes the WPGlobus language switcher menu compatible with mobile devices and narrow screens.
|
|
|
79 |
* [WPGlobus for the "Bridge" theme](https://wpglobus.com/product/wpglobus-for-bridge-theme/): create different sliders for each language when using theme "Bridge".
|
80 |
* [Multilingual WooCommerce Nets Netaxept](https://wpglobus.com/product/multilingual-woocommerce-nets-netaxept/): with this add-on, you will be able to translate the Nets payment methods' titles and descriptions to multiple languages.
|
81 |
|
92 |
|
93 |
* ACF - Advanced Custom Fields. [WPGlobus Plus](https://wpglobus.com/product/wpglobus-plus/) premium add-on is required for WYSIWYG fields support,
|
94 |
* All in One SEO Pack,
|
95 |
+
* WordPress SEO Plugin – Rank Math,
|
96 |
* Black Studio TinyMCE Widget (with our free add-on),
|
97 |
* MailChimp for WordPress,
|
98 |
* Max Mega Menu,
|
99 |
* Popups - WordPress Popup,
|
100 |
* Sidebar Login,
|
|
|
101 |
* WPBakery Page Builder,
|
102 |
* Whistles,
|
103 |
* Widget Logic,
|
105 |
|
106 |
Some 3rd-party plugins are supported with our [premium add-ons](https://wpglobus.com/shop/):
|
107 |
|
|
|
108 |
* [TablePress](https://wpglobus.com/product/wpglobus-plus/#tablepress),
|
109 |
* [WooCommerce and some of its extensions](https://wpglobus.com/product/woocommerce-wpglobus/),
|
110 |
* [WooCommerce Nets Netaxept Payment Plugin](https://wpglobus.com/product/multilingual-woocommerce-nets-netaxept/)
|
216 |
|
217 |
== Changelog ==
|
218 |
|
219 |
+
= 2.4.5 =
|
220 |
+
|
221 |
+
* (Core) Correct setting initial language tab in Standard/Classic mode on the `post.php` page.
|
222 |
+
* (Vendor/Yoast) Added JS script for dashboard.
|
223 |
+
|
224 |
+
= 2.4.4 =
|
225 |
|
226 |
* (Builders/RankMathSEO) Added filters for title and description on frontend.
|
227 |
|
wpglobus.php
CHANGED
@@ -15,7 +15,7 @@
|
|
15 |
* Description: A WordPress Globalization / Multilingual Plugin. Posts, pages, menus, widgets and even custom fields - in multiple languages!
|
16 |
* Text Domain: wpglobus
|
17 |
* Domain Path: /languages/
|
18 |
-
* Version: 2.4.
|
19 |
* Author: WPGlobus
|
20 |
* Author URI: https://wpglobus.com/
|
21 |
* Network: false
|
@@ -42,7 +42,7 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
42 |
exit;
|
43 |
}
|
44 |
|
45 |
-
define( 'WPGLOBUS_VERSION', '2.4.
|
46 |
define( 'WPGLOBUS_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
|
47 |
define( 'WPGLOBUS_AJAX', 'wpglobus-ajax' );
|
48 |
|
15 |
* Description: A WordPress Globalization / Multilingual Plugin. Posts, pages, menus, widgets and even custom fields - in multiple languages!
|
16 |
* Text Domain: wpglobus
|
17 |
* Domain Path: /languages/
|
18 |
+
* Version: 2.4.5
|
19 |
* Author: WPGlobus
|
20 |
* Author URI: https://wpglobus.com/
|
21 |
* Network: false
|
42 |
exit;
|
43 |
}
|
44 |
|
45 |
+
define( 'WPGLOBUS_VERSION', '2.4.5' );
|
46 |
define( 'WPGLOBUS_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
|
47 |
define( 'WPGLOBUS_AJAX', 'wpglobus-ajax' );
|
48 |
|