Version Description
- (Vendor/Yoast) Correct defining post type for frontend.
Download this release
Release Info
Developer | tivnet |
Plugin | WPGlobus – Multilingual Everything! |
Version | 2.4.6 |
Comparing to | |
See all releases |
Code changes from version 2.4.5 to 2.4.6
- includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php +49 -21
- languages/wpglobus-ar.po +3 -3
- languages/wpglobus-be.po +3 -3
- languages/wpglobus-bg_BG.po +3 -3
- languages/wpglobus-de_CH.po +3 -3
- languages/wpglobus-de_DE.po +3 -3
- languages/wpglobus-el.po +3 -3
- languages/wpglobus-en_AU.po +3 -3
- languages/wpglobus-en_CA.po +3 -3
- languages/wpglobus-en_GB.po +3 -3
- languages/wpglobus-en_NZ.po +3 -3
- languages/wpglobus-en_US.po +3 -3
- languages/wpglobus-en_ZA.po +3 -3
- languages/wpglobus-es_AR.po +3 -3
- languages/wpglobus-es_CL.po +3 -3
- languages/wpglobus-es_CO.po +3 -3
- languages/wpglobus-es_CR.po +3 -3
- languages/wpglobus-es_ES.po +3 -3
- languages/wpglobus-es_GT.po +3 -3
- languages/wpglobus-es_MX.po +3 -3
- languages/wpglobus-es_PE.po +3 -3
- languages/wpglobus-es_PR.po +3 -3
- languages/wpglobus-es_VE.po +3 -3
- languages/wpglobus-et.po +3 -3
- languages/wpglobus-fr_BE.po +3 -3
- languages/wpglobus-fr_CA.po +3 -3
- languages/wpglobus-fr_FR.po +3 -3
- languages/wpglobus-id_ID.po +3 -3
- languages/wpglobus-ko_KR.po +3 -3
- languages/wpglobus-pl_PL.po +3 -3
- languages/wpglobus-pt_BR.po +3 -3
- languages/wpglobus-pt_PT.po +3 -3
- languages/wpglobus-ro_RO.po +3 -3
- languages/wpglobus-ru_RU.po +3 -3
- languages/wpglobus-sv_SE.po +3 -3
- languages/wpglobus-tr_TR.po +3 -3
- languages/wpglobus-uk.po +3 -3
- languages/wpglobus.pot +6 -6
- readme.txt +4 -6
- wpglobus.php +2 -2
includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php
CHANGED
@@ -181,6 +181,7 @@ class WPGlobus_YoastSEO {
|
|
181 |
* @see wordpress-seo\src\presenters\open-graph\title-presenter.php
|
182 |
* @scope front
|
183 |
* @since 2.4
|
|
|
184 |
*
|
185 |
* @param string $title The title.
|
186 |
* @param Indexable_Presentation $presentation The presentation of an indexable.
|
@@ -189,14 +190,9 @@ class WPGlobus_YoastSEO {
|
|
189 |
*/
|
190 |
public static function filter_front__title( $title, $presentation ) {
|
191 |
|
192 |
-
if ( WPGlobus::Config()->language == WPGlobus::Config()->default_language ) {
|
193 |
-
return $title;
|
194 |
-
}
|
195 |
-
|
196 |
if ( empty( $title ) ) {
|
197 |
return $title;
|
198 |
}
|
199 |
-
|
200 |
return self::filter__title( $title );
|
201 |
}
|
202 |
|
@@ -581,6 +577,7 @@ class WPGlobus_YoastSEO {
|
|
581 |
global $post;
|
582 |
|
583 |
if ( empty( $meta_value ) ) {
|
|
|
584 |
/**
|
585 |
* Try get meta by post ID.
|
586 |
*/
|
@@ -608,37 +605,68 @@ class WPGlobus_YoastSEO {
|
|
608 |
/**
|
609 |
* Get `_yoast_wpseo_metadesc`, `_yoast_wpseo_focuskw` meta.
|
610 |
*
|
611 |
-
* @scope
|
612 |
* @since 2.4
|
|
|
613 |
*/
|
614 |
protected static function get_wpseo_meta() {
|
615 |
|
616 |
/** @global wpdb $wpdb */
|
617 |
global $wpdb;
|
618 |
|
|
|
|
|
|
|
619 |
$post_type = 'post';
|
620 |
-
|
|
|
|
|
|
|
|
|
621 |
$post_type = sanitize_text_field( $_GET['post_type'] ); // phpcs:ignore WordPress.CSRF.NonceVerification
|
|
|
|
|
|
|
|
|
|
|
622 |
}
|
623 |
|
624 |
-
$query =
|
625 |
-
|
626 |
-
|
627 |
-
|
628 |
-
|
629 |
-
|
630 |
-
|
631 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
632 |
|
633 |
-
|
634 |
-
|
635 |
-
|
636 |
-
|
|
|
|
|
637 |
}
|
638 |
-
self::$wpseo_meta[ $_meta['meta_key'] ][ $_meta['ID'] ] = $_meta['meta_value'];
|
639 |
}
|
|
|
640 |
}
|
641 |
-
|
642 |
}
|
643 |
|
644 |
/**
|
181 |
* @see wordpress-seo\src\presenters\open-graph\title-presenter.php
|
182 |
* @scope front
|
183 |
* @since 2.4
|
184 |
+
* @since 2.4.6 Removed checking for default language.
|
185 |
*
|
186 |
* @param string $title The title.
|
187 |
* @param Indexable_Presentation $presentation The presentation of an indexable.
|
190 |
*/
|
191 |
public static function filter_front__title( $title, $presentation ) {
|
192 |
|
|
|
|
|
|
|
|
|
193 |
if ( empty( $title ) ) {
|
194 |
return $title;
|
195 |
}
|
|
|
196 |
return self::filter__title( $title );
|
197 |
}
|
198 |
|
577 |
global $post;
|
578 |
|
579 |
if ( empty( $meta_value ) ) {
|
580 |
+
|
581 |
/**
|
582 |
* Try get meta by post ID.
|
583 |
*/
|
605 |
/**
|
606 |
* Get `_yoast_wpseo_metadesc`, `_yoast_wpseo_focuskw` meta.
|
607 |
*
|
608 |
+
* @scope both
|
609 |
* @since 2.4
|
610 |
+
* @since 2.4.6 Separate the defining of post type for frontend and admin.
|
611 |
*/
|
612 |
protected static function get_wpseo_meta() {
|
613 |
|
614 |
/** @global wpdb $wpdb */
|
615 |
global $wpdb;
|
616 |
|
617 |
+
/** @global WP_Post $post */
|
618 |
+
global $post;
|
619 |
+
|
620 |
$post_type = 'post';
|
621 |
+
|
622 |
+
if ( is_admin() && ! empty( $_GET['post_type'] ) ) {
|
623 |
+
/**
|
624 |
+
* Admin.
|
625 |
+
*/
|
626 |
$post_type = sanitize_text_field( $_GET['post_type'] ); // phpcs:ignore WordPress.CSRF.NonceVerification
|
627 |
+
} elseif ( ! empty( $post->post_type ) ) {
|
628 |
+
/**
|
629 |
+
* Front-end.
|
630 |
+
*/
|
631 |
+
$post_type = $post->post_type;
|
632 |
}
|
633 |
|
634 |
+
$query = false;
|
635 |
+
|
636 |
+
if ( is_admin() ) {
|
637 |
+
$query = $wpdb->prepare(
|
638 |
+
"SELECT p.ID, p.post_type, pm.meta_key, pm.meta_value FROM {$wpdb->prefix}posts AS p JOIN {$wpdb->prefix}postmeta AS pm ON p.ID = pm.post_id WHERE p.post_type = %s AND (pm.meta_key = %s OR pm.meta_key = %s)",
|
639 |
+
$post_type,
|
640 |
+
'_yoast_wpseo_metadesc',
|
641 |
+
'_yoast_wpseo_focuskw'
|
642 |
+
);
|
643 |
+
} else {
|
644 |
+
|
645 |
+
if ( (int) $post->ID > 0 ) {
|
646 |
+
$query = $wpdb->prepare(
|
647 |
+
"SELECT p.ID, p.post_type, pm.meta_key, pm.meta_value FROM {$wpdb->prefix}posts AS p JOIN {$wpdb->prefix}postmeta AS pm ON p.ID = pm.post_id WHERE p.ID = %s AND p.post_type = %s AND (pm.meta_key = %s OR pm.meta_key = %s)",
|
648 |
+
$post->ID,
|
649 |
+
$post_type,
|
650 |
+
'_yoast_wpseo_metadesc',
|
651 |
+
'_yoast_wpseo_focuskw'
|
652 |
+
);
|
653 |
+
}
|
654 |
+
}
|
655 |
+
|
656 |
+
if ( $query ) {
|
657 |
+
|
658 |
+
$metas = $wpdb->get_results( $query, ARRAY_A );
|
659 |
|
660 |
+
if ( ! empty( $metas ) ) {
|
661 |
+
foreach( $metas as $_meta ) {
|
662 |
+
if ( ! isset( self::$wpseo_meta[ $_meta['meta_key'] ] ) ) {
|
663 |
+
self::$wpseo_meta[ $_meta['meta_key'] ] = array();
|
664 |
+
}
|
665 |
+
self::$wpseo_meta[ $_meta['meta_key'] ][ $_meta['ID'] ] = $_meta['meta_value'];
|
666 |
}
|
|
|
667 |
}
|
668 |
+
|
669 |
}
|
|
|
670 |
}
|
671 |
|
672 |
/**
|
languages/wpglobus-ar.po
CHANGED
@@ -1566,17 +1566,17 @@ msgstr ""
|
|
1566 |
msgid "Get WPGlobus Plus now!"
|
1567 |
msgstr "أحصل علي WPGlobus الأضافي الأن!"
|
1568 |
|
1569 |
-
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:
|
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:
|
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:
|
1580 |
msgid "WPGlobus warning: "
|
1581 |
msgstr ""
|
1582 |
|
1566 |
msgid "Get WPGlobus Plus now!"
|
1567 |
msgstr "أحصل علي WPGlobus الأضافي الأن!"
|
1568 |
|
1569 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:702
|
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:703
|
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:706
|
1580 |
msgid "WPGlobus warning: "
|
1581 |
msgstr ""
|
1582 |
|
languages/wpglobus-be.po
CHANGED
@@ -1626,17 +1626,17 @@ msgstr ""
|
|
1626 |
msgid "Get WPGlobus Plus now!"
|
1627 |
msgstr "Установите WPGlobus Плюс прямо сейчас!"
|
1628 |
|
1629 |
-
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:
|
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:
|
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:
|
1640 |
msgid "WPGlobus warning: "
|
1641 |
msgstr ""
|
1642 |
|
1626 |
msgid "Get WPGlobus Plus now!"
|
1627 |
msgstr "Установите WPGlobus Плюс прямо сейчас!"
|
1628 |
|
1629 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:702
|
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:703
|
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:706
|
1640 |
msgid "WPGlobus warning: "
|
1641 |
msgstr ""
|
1642 |
|
languages/wpglobus-bg_BG.po
CHANGED
@@ -1542,17 +1542,17 @@ msgstr ""
|
|
1542 |
msgid "Get WPGlobus Plus now!"
|
1543 |
msgstr ""
|
1544 |
|
1545 |
-
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:
|
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:
|
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:
|
1556 |
msgid "WPGlobus warning: "
|
1557 |
msgstr ""
|
1558 |
|
1542 |
msgid "Get WPGlobus Plus now!"
|
1543 |
msgstr ""
|
1544 |
|
1545 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:702
|
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:703
|
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:706
|
1556 |
msgid "WPGlobus warning: "
|
1557 |
msgstr ""
|
1558 |
|
languages/wpglobus-de_CH.po
CHANGED
@@ -1587,17 +1587,17 @@ msgstr ""
|
|
1587 |
msgid "Get WPGlobus Plus now!"
|
1588 |
msgstr "Jetzt zu WPGlobus Plus wechseln!"
|
1589 |
|
1590 |
-
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:
|
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:
|
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:
|
1601 |
msgid "WPGlobus warning: "
|
1602 |
msgstr ""
|
1603 |
|
1587 |
msgid "Get WPGlobus Plus now!"
|
1588 |
msgstr "Jetzt zu WPGlobus Plus wechseln!"
|
1589 |
|
1590 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:702
|
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:703
|
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:706
|
1601 |
msgid "WPGlobus warning: "
|
1602 |
msgstr ""
|
1603 |
|
languages/wpglobus-de_DE.po
CHANGED
@@ -1588,17 +1588,17 @@ msgstr ""
|
|
1588 |
msgid "Get WPGlobus Plus now!"
|
1589 |
msgstr "Jetzt zu WPGlobus Plus wechseln!"
|
1590 |
|
1591 |
-
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:
|
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:
|
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:
|
1602 |
msgid "WPGlobus warning: "
|
1603 |
msgstr ""
|
1604 |
|
1588 |
msgid "Get WPGlobus Plus now!"
|
1589 |
msgstr "Jetzt zu WPGlobus Plus wechseln!"
|
1590 |
|
1591 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:702
|
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:703
|
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:706
|
1602 |
msgid "WPGlobus warning: "
|
1603 |
msgstr ""
|
1604 |
|
languages/wpglobus-el.po
CHANGED
@@ -1543,17 +1543,17 @@ msgstr ""
|
|
1543 |
msgid "Get WPGlobus Plus now!"
|
1544 |
msgstr ""
|
1545 |
|
1546 |
-
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:
|
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:
|
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:
|
1557 |
msgid "WPGlobus warning: "
|
1558 |
msgstr ""
|
1559 |
|
1543 |
msgid "Get WPGlobus Plus now!"
|
1544 |
msgstr ""
|
1545 |
|
1546 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:702
|
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:703
|
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:706
|
1557 |
msgid "WPGlobus warning: "
|
1558 |
msgstr ""
|
1559 |
|
languages/wpglobus-en_AU.po
CHANGED
@@ -1621,17 +1621,17 @@ msgstr ""
|
|
1621 |
msgid "Get WPGlobus Plus now!"
|
1622 |
msgstr "Get WPGlobus Plus now!"
|
1623 |
|
1624 |
-
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:
|
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:
|
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:
|
1635 |
msgid "WPGlobus warning: "
|
1636 |
msgstr ""
|
1637 |
|
1621 |
msgid "Get WPGlobus Plus now!"
|
1622 |
msgstr "Get WPGlobus Plus now!"
|
1623 |
|
1624 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:702
|
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:703
|
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:706
|
1635 |
msgid "WPGlobus warning: "
|
1636 |
msgstr ""
|
1637 |
|
languages/wpglobus-en_CA.po
CHANGED
@@ -1620,17 +1620,17 @@ msgstr ""
|
|
1620 |
msgid "Get WPGlobus Plus now!"
|
1621 |
msgstr "Get WPGlobus Plus now!"
|
1622 |
|
1623 |
-
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:
|
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:
|
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:
|
1634 |
msgid "WPGlobus warning: "
|
1635 |
msgstr ""
|
1636 |
|
1620 |
msgid "Get WPGlobus Plus now!"
|
1621 |
msgstr "Get WPGlobus Plus now!"
|
1622 |
|
1623 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:702
|
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:703
|
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:706
|
1634 |
msgid "WPGlobus warning: "
|
1635 |
msgstr ""
|
1636 |
|
languages/wpglobus-en_GB.po
CHANGED
@@ -1621,17 +1621,17 @@ msgstr ""
|
|
1621 |
msgid "Get WPGlobus Plus now!"
|
1622 |
msgstr "Get WPGlobus Plus now!"
|
1623 |
|
1624 |
-
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:
|
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:
|
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:
|
1635 |
msgid "WPGlobus warning: "
|
1636 |
msgstr ""
|
1637 |
|
1621 |
msgid "Get WPGlobus Plus now!"
|
1622 |
msgstr "Get WPGlobus Plus now!"
|
1623 |
|
1624 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:702
|
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:703
|
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:706
|
1635 |
msgid "WPGlobus warning: "
|
1636 |
msgstr ""
|
1637 |
|
languages/wpglobus-en_NZ.po
CHANGED
@@ -1620,17 +1620,17 @@ msgstr ""
|
|
1620 |
msgid "Get WPGlobus Plus now!"
|
1621 |
msgstr "Get WPGlobus Plus now!"
|
1622 |
|
1623 |
-
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:
|
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:
|
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:
|
1634 |
msgid "WPGlobus warning: "
|
1635 |
msgstr ""
|
1636 |
|
1620 |
msgid "Get WPGlobus Plus now!"
|
1621 |
msgstr "Get WPGlobus Plus now!"
|
1622 |
|
1623 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:702
|
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:703
|
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:706
|
1634 |
msgid "WPGlobus warning: "
|
1635 |
msgstr ""
|
1636 |
|
languages/wpglobus-en_US.po
CHANGED
@@ -1680,17 +1680,17 @@ msgstr ""
|
|
1680 |
msgid "Get WPGlobus Plus now!"
|
1681 |
msgstr "Get WPGlobus Plus now!"
|
1682 |
|
1683 |
-
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:
|
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:
|
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:
|
1694 |
msgid "WPGlobus warning: "
|
1695 |
msgstr ""
|
1696 |
|
1680 |
msgid "Get WPGlobus Plus now!"
|
1681 |
msgstr "Get WPGlobus Plus now!"
|
1682 |
|
1683 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:702
|
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:703
|
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:706
|
1694 |
msgid "WPGlobus warning: "
|
1695 |
msgstr ""
|
1696 |
|
languages/wpglobus-en_ZA.po
CHANGED
@@ -1620,17 +1620,17 @@ msgstr ""
|
|
1620 |
msgid "Get WPGlobus Plus now!"
|
1621 |
msgstr "Get WPGlobus Plus now!"
|
1622 |
|
1623 |
-
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:
|
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:
|
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:
|
1634 |
msgid "WPGlobus warning: "
|
1635 |
msgstr ""
|
1636 |
|
1620 |
msgid "Get WPGlobus Plus now!"
|
1621 |
msgstr "Get WPGlobus Plus now!"
|
1622 |
|
1623 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:702
|
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:703
|
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:706
|
1634 |
msgid "WPGlobus warning: "
|
1635 |
msgstr ""
|
1636 |
|
languages/wpglobus-es_AR.po
CHANGED
@@ -1580,17 +1580,17 @@ msgstr ""
|
|
1580 |
msgid "Get WPGlobus Plus now!"
|
1581 |
msgstr ""
|
1582 |
|
1583 |
-
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:
|
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:
|
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:
|
1594 |
msgid "WPGlobus warning: "
|
1595 |
msgstr ""
|
1596 |
|
1580 |
msgid "Get WPGlobus Plus now!"
|
1581 |
msgstr ""
|
1582 |
|
1583 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:702
|
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:703
|
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:706
|
1594 |
msgid "WPGlobus warning: "
|
1595 |
msgstr ""
|
1596 |
|
languages/wpglobus-es_CL.po
CHANGED
@@ -1580,17 +1580,17 @@ msgstr ""
|
|
1580 |
msgid "Get WPGlobus Plus now!"
|
1581 |
msgstr ""
|
1582 |
|
1583 |
-
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:
|
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:
|
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:
|
1594 |
msgid "WPGlobus warning: "
|
1595 |
msgstr ""
|
1596 |
|
1580 |
msgid "Get WPGlobus Plus now!"
|
1581 |
msgstr ""
|
1582 |
|
1583 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:702
|
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:703
|
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:706
|
1594 |
msgid "WPGlobus warning: "
|
1595 |
msgstr ""
|
1596 |
|
languages/wpglobus-es_CO.po
CHANGED
@@ -1580,17 +1580,17 @@ msgstr ""
|
|
1580 |
msgid "Get WPGlobus Plus now!"
|
1581 |
msgstr ""
|
1582 |
|
1583 |
-
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:
|
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:
|
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:
|
1594 |
msgid "WPGlobus warning: "
|
1595 |
msgstr ""
|
1596 |
|
1580 |
msgid "Get WPGlobus Plus now!"
|
1581 |
msgstr ""
|
1582 |
|
1583 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:702
|
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:703
|
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:706
|
1594 |
msgid "WPGlobus warning: "
|
1595 |
msgstr ""
|
1596 |
|
languages/wpglobus-es_CR.po
CHANGED
@@ -1580,17 +1580,17 @@ msgstr ""
|
|
1580 |
msgid "Get WPGlobus Plus now!"
|
1581 |
msgstr ""
|
1582 |
|
1583 |
-
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:
|
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:
|
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:
|
1594 |
msgid "WPGlobus warning: "
|
1595 |
msgstr ""
|
1596 |
|
1580 |
msgid "Get WPGlobus Plus now!"
|
1581 |
msgstr ""
|
1582 |
|
1583 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:702
|
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:703
|
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:706
|
1594 |
msgid "WPGlobus warning: "
|
1595 |
msgstr ""
|
1596 |
|
languages/wpglobus-es_ES.po
CHANGED
@@ -1580,17 +1580,17 @@ msgstr ""
|
|
1580 |
msgid "Get WPGlobus Plus now!"
|
1581 |
msgstr ""
|
1582 |
|
1583 |
-
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:
|
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:
|
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:
|
1594 |
msgid "WPGlobus warning: "
|
1595 |
msgstr ""
|
1596 |
|
1580 |
msgid "Get WPGlobus Plus now!"
|
1581 |
msgstr ""
|
1582 |
|
1583 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:702
|
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:703
|
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:706
|
1594 |
msgid "WPGlobus warning: "
|
1595 |
msgstr ""
|
1596 |
|
languages/wpglobus-es_GT.po
CHANGED
@@ -1580,17 +1580,17 @@ msgstr ""
|
|
1580 |
msgid "Get WPGlobus Plus now!"
|
1581 |
msgstr ""
|
1582 |
|
1583 |
-
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:
|
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:
|
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:
|
1594 |
msgid "WPGlobus warning: "
|
1595 |
msgstr ""
|
1596 |
|
1580 |
msgid "Get WPGlobus Plus now!"
|
1581 |
msgstr ""
|
1582 |
|
1583 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:702
|
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:703
|
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:706
|
1594 |
msgid "WPGlobus warning: "
|
1595 |
msgstr ""
|
1596 |
|
languages/wpglobus-es_MX.po
CHANGED
@@ -1580,17 +1580,17 @@ msgstr ""
|
|
1580 |
msgid "Get WPGlobus Plus now!"
|
1581 |
msgstr ""
|
1582 |
|
1583 |
-
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:
|
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:
|
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:
|
1594 |
msgid "WPGlobus warning: "
|
1595 |
msgstr ""
|
1596 |
|
1580 |
msgid "Get WPGlobus Plus now!"
|
1581 |
msgstr ""
|
1582 |
|
1583 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:702
|
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:703
|
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:706
|
1594 |
msgid "WPGlobus warning: "
|
1595 |
msgstr ""
|
1596 |
|
languages/wpglobus-es_PE.po
CHANGED
@@ -1580,17 +1580,17 @@ msgstr ""
|
|
1580 |
msgid "Get WPGlobus Plus now!"
|
1581 |
msgstr ""
|
1582 |
|
1583 |
-
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:
|
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:
|
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:
|
1594 |
msgid "WPGlobus warning: "
|
1595 |
msgstr ""
|
1596 |
|
1580 |
msgid "Get WPGlobus Plus now!"
|
1581 |
msgstr ""
|
1582 |
|
1583 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:702
|
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:703
|
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:706
|
1594 |
msgid "WPGlobus warning: "
|
1595 |
msgstr ""
|
1596 |
|
languages/wpglobus-es_PR.po
CHANGED
@@ -1580,17 +1580,17 @@ msgstr ""
|
|
1580 |
msgid "Get WPGlobus Plus now!"
|
1581 |
msgstr ""
|
1582 |
|
1583 |
-
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:
|
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:
|
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:
|
1594 |
msgid "WPGlobus warning: "
|
1595 |
msgstr ""
|
1596 |
|
1580 |
msgid "Get WPGlobus Plus now!"
|
1581 |
msgstr ""
|
1582 |
|
1583 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:702
|
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:703
|
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:706
|
1594 |
msgid "WPGlobus warning: "
|
1595 |
msgstr ""
|
1596 |
|
languages/wpglobus-es_VE.po
CHANGED
@@ -1580,17 +1580,17 @@ msgstr ""
|
|
1580 |
msgid "Get WPGlobus Plus now!"
|
1581 |
msgstr ""
|
1582 |
|
1583 |
-
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:
|
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:
|
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:
|
1594 |
msgid "WPGlobus warning: "
|
1595 |
msgstr ""
|
1596 |
|
1580 |
msgid "Get WPGlobus Plus now!"
|
1581 |
msgstr ""
|
1582 |
|
1583 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:702
|
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:703
|
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:706
|
1594 |
msgid "WPGlobus warning: "
|
1595 |
msgstr ""
|
1596 |
|
languages/wpglobus-et.po
CHANGED
@@ -1543,17 +1543,17 @@ msgstr ""
|
|
1543 |
msgid "Get WPGlobus Plus now!"
|
1544 |
msgstr ""
|
1545 |
|
1546 |
-
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:
|
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:
|
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:
|
1557 |
msgid "WPGlobus warning: "
|
1558 |
msgstr ""
|
1559 |
|
1543 |
msgid "Get WPGlobus Plus now!"
|
1544 |
msgstr ""
|
1545 |
|
1546 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:702
|
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:703
|
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:706
|
1557 |
msgid "WPGlobus warning: "
|
1558 |
msgstr ""
|
1559 |
|
languages/wpglobus-fr_BE.po
CHANGED
@@ -1648,17 +1648,17 @@ msgstr ""
|
|
1648 |
msgid "Get WPGlobus Plus now!"
|
1649 |
msgstr "Obtenez WPGlobus Plus maintenant !"
|
1650 |
|
1651 |
-
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:
|
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:
|
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:
|
1662 |
msgid "WPGlobus warning: "
|
1663 |
msgstr ""
|
1664 |
|
1648 |
msgid "Get WPGlobus Plus now!"
|
1649 |
msgstr "Obtenez WPGlobus Plus maintenant !"
|
1650 |
|
1651 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:702
|
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:703
|
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:706
|
1662 |
msgid "WPGlobus warning: "
|
1663 |
msgstr ""
|
1664 |
|
languages/wpglobus-fr_CA.po
CHANGED
@@ -1650,17 +1650,17 @@ msgstr ""
|
|
1650 |
msgid "Get WPGlobus Plus now!"
|
1651 |
msgstr "Obtenez WPGlobus Plus maintenant !"
|
1652 |
|
1653 |
-
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:
|
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:
|
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:
|
1664 |
msgid "WPGlobus warning: "
|
1665 |
msgstr ""
|
1666 |
|
1650 |
msgid "Get WPGlobus Plus now!"
|
1651 |
msgstr "Obtenez WPGlobus Plus maintenant !"
|
1652 |
|
1653 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:702
|
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:703
|
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:706
|
1664 |
msgid "WPGlobus warning: "
|
1665 |
msgstr ""
|
1666 |
|
languages/wpglobus-fr_FR.po
CHANGED
@@ -1725,17 +1725,17 @@ msgstr ""
|
|
1725 |
msgid "Get WPGlobus Plus now!"
|
1726 |
msgstr "Obtenez WPGlobus Plus maintenant !"
|
1727 |
|
1728 |
-
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:
|
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:
|
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:
|
1739 |
msgid "WPGlobus warning: "
|
1740 |
msgstr ""
|
1741 |
|
1725 |
msgid "Get WPGlobus Plus now!"
|
1726 |
msgstr "Obtenez WPGlobus Plus maintenant !"
|
1727 |
|
1728 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:702
|
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:703
|
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:706
|
1739 |
msgid "WPGlobus warning: "
|
1740 |
msgstr ""
|
1741 |
|
languages/wpglobus-id_ID.po
CHANGED
@@ -1624,17 +1624,17 @@ msgstr ""
|
|
1624 |
msgid "Get WPGlobus Plus now!"
|
1625 |
msgstr "Dapatkan WPGlobus Ditambah sekarang!"
|
1626 |
|
1627 |
-
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:
|
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:
|
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:
|
1638 |
msgid "WPGlobus warning: "
|
1639 |
msgstr ""
|
1640 |
|
1624 |
msgid "Get WPGlobus Plus now!"
|
1625 |
msgstr "Dapatkan WPGlobus Ditambah sekarang!"
|
1626 |
|
1627 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:702
|
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:703
|
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:706
|
1638 |
msgid "WPGlobus warning: "
|
1639 |
msgstr ""
|
1640 |
|
languages/wpglobus-ko_KR.po
CHANGED
@@ -1542,17 +1542,17 @@ msgstr ""
|
|
1542 |
msgid "Get WPGlobus Plus now!"
|
1543 |
msgstr ""
|
1544 |
|
1545 |
-
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:
|
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:
|
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:
|
1556 |
msgid "WPGlobus warning: "
|
1557 |
msgstr ""
|
1558 |
|
1542 |
msgid "Get WPGlobus Plus now!"
|
1543 |
msgstr ""
|
1544 |
|
1545 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:702
|
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:703
|
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:706
|
1556 |
msgid "WPGlobus warning: "
|
1557 |
msgstr ""
|
1558 |
|
languages/wpglobus-pl_PL.po
CHANGED
@@ -1576,17 +1576,17 @@ msgstr ""
|
|
1576 |
msgid "Get WPGlobus Plus now!"
|
1577 |
msgstr "Uzyskaj już teraz WPGlobus Plus!"
|
1578 |
|
1579 |
-
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:
|
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:
|
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:
|
1590 |
msgid "WPGlobus warning: "
|
1591 |
msgstr ""
|
1592 |
|
1576 |
msgid "Get WPGlobus Plus now!"
|
1577 |
msgstr "Uzyskaj już teraz WPGlobus Plus!"
|
1578 |
|
1579 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:702
|
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:703
|
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:706
|
1590 |
msgid "WPGlobus warning: "
|
1591 |
msgstr ""
|
1592 |
|
languages/wpglobus-pt_BR.po
CHANGED
@@ -1542,17 +1542,17 @@ msgstr ""
|
|
1542 |
msgid "Get WPGlobus Plus now!"
|
1543 |
msgstr ""
|
1544 |
|
1545 |
-
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:
|
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:
|
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:
|
1556 |
msgid "WPGlobus warning: "
|
1557 |
msgstr ""
|
1558 |
|
1542 |
msgid "Get WPGlobus Plus now!"
|
1543 |
msgstr ""
|
1544 |
|
1545 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:702
|
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:703
|
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:706
|
1556 |
msgid "WPGlobus warning: "
|
1557 |
msgstr ""
|
1558 |
|
languages/wpglobus-pt_PT.po
CHANGED
@@ -1542,17 +1542,17 @@ msgstr ""
|
|
1542 |
msgid "Get WPGlobus Plus now!"
|
1543 |
msgstr ""
|
1544 |
|
1545 |
-
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:
|
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:
|
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:
|
1556 |
msgid "WPGlobus warning: "
|
1557 |
msgstr ""
|
1558 |
|
1542 |
msgid "Get WPGlobus Plus now!"
|
1543 |
msgstr ""
|
1544 |
|
1545 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:702
|
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:703
|
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:706
|
1556 |
msgid "WPGlobus warning: "
|
1557 |
msgstr ""
|
1558 |
|
languages/wpglobus-ro_RO.po
CHANGED
@@ -1579,17 +1579,17 @@ msgstr ""
|
|
1579 |
msgid "Get WPGlobus Plus now!"
|
1580 |
msgstr "Obține WPGlobus Plus acum!"
|
1581 |
|
1582 |
-
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:
|
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:
|
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:
|
1593 |
msgid "WPGlobus warning: "
|
1594 |
msgstr ""
|
1595 |
|
1579 |
msgid "Get WPGlobus Plus now!"
|
1580 |
msgstr "Obține WPGlobus Plus acum!"
|
1581 |
|
1582 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:702
|
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:703
|
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:706
|
1593 |
msgid "WPGlobus warning: "
|
1594 |
msgstr ""
|
1595 |
|
languages/wpglobus-ru_RU.po
CHANGED
@@ -1687,7 +1687,7 @@ msgstr ""
|
|
1687 |
msgid "Get WPGlobus Plus now!"
|
1688 |
msgstr "Установите WPGlobus Плюс прямо сейчас!"
|
1689 |
|
1690 |
-
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:
|
1691 |
msgid ""
|
1692 |
"Bulk editing of the multilingual titles and descriptions is not supported by "
|
1693 |
"the current version."
|
@@ -1695,12 +1695,12 @@ msgstr ""
|
|
1695 |
"Текущая версия не поддерживает возможность массового редактирования "
|
1696 |
"многоязычных заголовков и описаний."
|
1697 |
|
1698 |
-
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:
|
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:
|
1704 |
msgid "WPGlobus warning: "
|
1705 |
msgstr "Предупреждение WPGlobus: "
|
1706 |
|
1687 |
msgid "Get WPGlobus Plus now!"
|
1688 |
msgstr "Установите WPGlobus Плюс прямо сейчас!"
|
1689 |
|
1690 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:702
|
1691 |
msgid ""
|
1692 |
"Bulk editing of the multilingual titles and descriptions is not supported by "
|
1693 |
"the current version."
|
1695 |
"Текущая версия не поддерживает возможность массового редактирования "
|
1696 |
"многоязычных заголовков и описаний."
|
1697 |
|
1698 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:703
|
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:706
|
1704 |
msgid "WPGlobus warning: "
|
1705 |
msgstr "Предупреждение WPGlobus: "
|
1706 |
|
languages/wpglobus-sv_SE.po
CHANGED
@@ -1578,17 +1578,17 @@ msgstr ""
|
|
1578 |
msgid "Get WPGlobus Plus now!"
|
1579 |
msgstr "Hämta WPGlobus Plus nu!"
|
1580 |
|
1581 |
-
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:
|
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:
|
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:
|
1592 |
msgid "WPGlobus warning: "
|
1593 |
msgstr ""
|
1594 |
|
1578 |
msgid "Get WPGlobus Plus now!"
|
1579 |
msgstr "Hämta WPGlobus Plus nu!"
|
1580 |
|
1581 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:702
|
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:703
|
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:706
|
1592 |
msgid "WPGlobus warning: "
|
1593 |
msgstr ""
|
1594 |
|
languages/wpglobus-tr_TR.po
CHANGED
@@ -1574,17 +1574,17 @@ msgstr ""
|
|
1574 |
msgid "Get WPGlobus Plus now!"
|
1575 |
msgstr "WPGlobus Plus' ı şimdi edinin!"
|
1576 |
|
1577 |
-
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:
|
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:
|
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:
|
1588 |
msgid "WPGlobus warning: "
|
1589 |
msgstr ""
|
1590 |
|
1574 |
msgid "Get WPGlobus Plus now!"
|
1575 |
msgstr "WPGlobus Plus' ı şimdi edinin!"
|
1576 |
|
1577 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:702
|
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:703
|
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:706
|
1588 |
msgid "WPGlobus warning: "
|
1589 |
msgstr ""
|
1590 |
|
languages/wpglobus-uk.po
CHANGED
@@ -1677,17 +1677,17 @@ msgstr ""
|
|
1677 |
msgid "Get WPGlobus Plus now!"
|
1678 |
msgstr "Встановіть WPGlobus Плюс прямо зараз!"
|
1679 |
|
1680 |
-
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:
|
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:
|
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:
|
1691 |
msgid "WPGlobus warning: "
|
1692 |
msgstr ""
|
1693 |
|
1677 |
msgid "Get WPGlobus Plus now!"
|
1678 |
msgstr "Встановіть WPGlobus Плюс прямо зараз!"
|
1679 |
|
1680 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:702
|
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:703
|
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:706
|
1691 |
msgid "WPGlobus warning: "
|
1692 |
msgstr ""
|
1693 |
|
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"
|
@@ -1322,15 +1322,15 @@ msgstr ""
|
|
1322 |
msgid "Get WPGlobus Plus now!"
|
1323 |
msgstr ""
|
1324 |
|
1325 |
-
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:
|
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:
|
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:
|
1334 |
msgid "WPGlobus warning: "
|
1335 |
msgstr ""
|
1336 |
|
1 |
+
# Copyright (C) 2020 WPGlobus 2.4.6
|
2 |
+
# This file is distributed under the same license as the WPGlobus 2.4.6 package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: WPGlobus 2.4.6\n"
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
1322 |
msgid "Get WPGlobus Plus now!"
|
1323 |
msgstr ""
|
1324 |
|
1325 |
+
#: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:702
|
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:703
|
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:706
|
1334 |
msgid "WPGlobus warning: "
|
1335 |
msgstr ""
|
1336 |
|
readme.txt
CHANGED
@@ -216,6 +216,10 @@ WPGlobus Version 2 supports WordPress 5.x, with Gutenberg.
|
|
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.
|
@@ -249,12 +253,6 @@ WPGlobus Version 2 supports WordPress 5.x, with Gutenberg.
|
|
249 |
* (Core/Meta) Removed caching meta data.
|
250 |
* (Builders/Gutenberg) Prevent multiple clicking on language switcher.
|
251 |
|
252 |
-
= 2.3.12 =
|
253 |
-
|
254 |
-
* (Customizer) WPGlobus Customizer is switched off for `Gwangi` theme.
|
255 |
-
* (Core/Post Types) Added post type of `rtMedia` plugin to the hidden types array.
|
256 |
-
* (Core/Post Types) Added post types of `Divi` theme to the hidden types array.
|
257 |
-
|
258 |
= Earlier versions and Add-ons =
|
259 |
|
260 |
* [See the complete changelog here](https://github.com/WPGlobus/WPGlobus/blob/master/CHANGELOG.md)
|
216 |
|
217 |
== Changelog ==
|
218 |
|
219 |
+
= 2.4.6 =
|
220 |
+
|
221 |
+
* (Vendor/Yoast) Correct defining post type for frontend.
|
222 |
+
|
223 |
= 2.4.5 =
|
224 |
|
225 |
* (Core) Correct setting initial language tab in Standard/Classic mode on the `post.php` page.
|
253 |
* (Core/Meta) Removed caching meta data.
|
254 |
* (Builders/Gutenberg) Prevent multiple clicking on language switcher.
|
255 |
|
|
|
|
|
|
|
|
|
|
|
|
|
256 |
= Earlier versions and Add-ons =
|
257 |
|
258 |
* [See the complete changelog here](https://github.com/WPGlobus/WPGlobus/blob/master/CHANGELOG.md)
|
wpglobus.php
CHANGED
@@ -15,7 +15,7 @@
|
|
15 |
* Description: A WordPress Globalization / Multilingual Plugin. Posts, pages, menus, widgets and even custom fields - in multiple languages!
|
16 |
* Text Domain: wpglobus
|
17 |
* Domain Path: /languages/
|
18 |
-
* Version: 2.4.
|
19 |
* Author: WPGlobus
|
20 |
* Author URI: https://wpglobus.com/
|
21 |
* Network: false
|
@@ -42,7 +42,7 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
42 |
exit;
|
43 |
}
|
44 |
|
45 |
-
define( 'WPGLOBUS_VERSION', '2.4.
|
46 |
define( 'WPGLOBUS_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
|
47 |
define( 'WPGLOBUS_AJAX', 'wpglobus-ajax' );
|
48 |
|
15 |
* Description: A WordPress Globalization / Multilingual Plugin. Posts, pages, menus, widgets and even custom fields - in multiple languages!
|
16 |
* Text Domain: wpglobus
|
17 |
* Domain Path: /languages/
|
18 |
+
* Version: 2.4.6
|
19 |
* Author: WPGlobus
|
20 |
* Author URI: https://wpglobus.com/
|
21 |
* Network: false
|
42 |
exit;
|
43 |
}
|
44 |
|
45 |
+
define( 'WPGLOBUS_VERSION', '2.4.6' );
|
46 |
define( 'WPGLOBUS_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
|
47 |
define( 'WPGLOBUS_AJAX', 'wpglobus-ajax' );
|
48 |
|