WPGlobus – Multilingual Everything! - Version 2.5.11

Version Description

  • (Core/Post Types) Added post types of the FooGallery, Modula Image Gallery, and Kali Forms plugins to the hidden types array.
  • (Vendor/Yoast) Filtering the rel prev and next URLs generated by Yoast SEO.
Download this release

Release Info

Developer tivnet
Plugin Icon 128x128 WPGlobus – Multilingual Everything!
Version 2.5.11
Comparing to
See all releases

Code changes from version 2.5.10 to 2.5.11

includes/class-wpglobus-post-types.php CHANGED
@@ -85,7 +85,13 @@ class WPGlobus_Post_Types {
85
  // Molongui Author Box: https://wordpress.org/plugins/molongui-authorship/ @since 2.5.3
86
  'guest_author',
87
  // Comments – wpDiscuz: https://wordpress.org/plugins/wpdiscuz/ @since 2.5.4
88
- 'wpdiscuz_form'
 
 
 
 
 
 
89
  );
90
 
91
  /**
85
  // Molongui Author Box: https://wordpress.org/plugins/molongui-authorship/ @since 2.5.3
86
  'guest_author',
87
  // Comments – wpDiscuz: https://wordpress.org/plugins/wpdiscuz/ @since 2.5.4
88
+ 'wpdiscuz_form',
89
+ // FooGallery: https://wordpress.org/plugins/foogallery/ @since 2.5.11
90
+ 'foogallery',
91
+ // Customizable WordPress Gallery Plugin – Modula Image Gallery: https://wordpress.org/plugins/modula-best-grid-gallery/ @since 2.5.11
92
+ 'modula-gallery',
93
+ // Kali Forms - WordPress Forms Made Easy: https://wordpress.org/plugins/kali-forms/ @since 2.5.11
94
+ 'kaliforms_forms',
95
  );
96
 
97
  /**
includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php CHANGED
@@ -80,7 +80,15 @@ class WPGlobus_YoastSEO {
80
  * @var boolean|string
81
  */
82
  protected static $plus_module = false;
83
-
 
 
 
 
 
 
 
 
84
  /**
85
  * Static "controller"
86
  */
@@ -142,11 +150,17 @@ class WPGlobus_YoastSEO {
142
  add_filter( 'wpseo_opengraph_desc', array( __CLASS__, 'filter_front__description' ), 5, 2 );
143
 
144
  /**
145
- * Filter canonical URL and open graph URL
146
  * @since 2.4
147
  */
148
  add_filter( 'wpseo_canonical', array( __CLASS__, 'filter_front__localize_url' ), 5, 2 );
149
  add_filter( 'wpseo_opengraph_url', array( __CLASS__, 'filter_front__localize_url' ), 5, 2 );
 
 
 
 
 
 
150
 
151
  /**
152
  * Filter the HTML output of the Yoast SEO breadcrumbs class.
@@ -495,8 +509,13 @@ class WPGlobus_YoastSEO {
495
  } elseif ( is_tax() ) {
496
  $tag = 'tax';
497
  }
498
-
499
  if ( $tag ) {
 
 
 
 
 
500
  /**
501
  * Filters for a localized url.
502
  *
@@ -505,13 +524,49 @@ class WPGlobus_YoastSEO {
505
  * @param string $url Localized URL.
506
  * @param string $language Current language.
507
  * @param string $tag Conditional Tag.
508
- */
509
- return apply_filters( 'wpglobus_wpseo_localize_url', WPGlobus_Utils::localize_url( $url, WPGlobus::Config()->language ), WPGlobus::Config()->language, $tag );
 
 
 
 
510
  }
511
 
512
  return $url;
513
  }
514
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
515
  /**
516
  * Filter the HTML output of the Yoast SEO breadcrumbs class.
517
  *
80
  * @var boolean|string
81
  */
82
  protected static $plus_module = false;
83
+
84
+ /**
85
+ * Canonical URLs.
86
+ *
87
+ * @since 2.5.11
88
+ * @var array
89
+ */
90
+ protected static $canonical_url = array();
91
+
92
  /**
93
  * Static "controller"
94
  */
150
  add_filter( 'wpseo_opengraph_desc', array( __CLASS__, 'filter_front__description' ), 5, 2 );
151
 
152
  /**
153
+ * Filter canonical URL and open graph URL.
154
  * @since 2.4
155
  */
156
  add_filter( 'wpseo_canonical', array( __CLASS__, 'filter_front__localize_url' ), 5, 2 );
157
  add_filter( 'wpseo_opengraph_url', array( __CLASS__, 'filter_front__localize_url' ), 5, 2 );
158
+
159
+ /**
160
+ * Filter of the rel prev and next URL put out by Yoast SEO.
161
+ * @since 2.5.11
162
+ */
163
+ add_filter( 'wpseo_adjacent_rel_url', array( __CLASS__, 'filter_front__wpseo_adjacent_rel_url' ), 5, 3 );
164
 
165
  /**
166
  * Filter the HTML output of the Yoast SEO breadcrumbs class.
509
  } elseif ( is_tax() ) {
510
  $tag = 'tax';
511
  }
512
+
513
  if ( $tag ) {
514
+
515
+ $language =WPGlobus::Config()->language;
516
+
517
+ self::$canonical_url[ WPGlobus::Config()->default_language ] = $url;
518
+
519
  /**
520
  * Filters for a localized url.
521
  *
524
  * @param string $url Localized URL.
525
  * @param string $language Current language.
526
  * @param string $tag Conditional Tag.
527
+ */
528
+ self::$canonical_url[ $language ] = apply_filters( 'wpglobus_wpseo_localize_url', WPGlobus_Utils::localize_url( $url, $language ), $language, $tag );
529
+
530
+ self::$canonical_url[ $language ] = urldecode( self::$canonical_url[ $language ] );
531
+
532
+ return self::$canonical_url[ $language ];
533
  }
534
 
535
  return $url;
536
  }
537
 
538
+ /**
539
+ * Filtering of the rel `prev` and `next` URL put out by Yoast SEO.
540
+ *
541
+ * @see wordpress-seo\src\presenters\rel-prev-presenter.php
542
+ * @see wordpress-seo\src\presenters\rel-next-presenter.php
543
+ * @scope front
544
+ *
545
+ * @since 2.5.11
546
+ *
547
+ * @param string $url Link relationship, prev or next.
548
+ * @param string $relationship `prev` or `next`.
549
+ * @param Indexable_Presentation $presentation The presentation of an indexable.
550
+ *
551
+ * @return string
552
+ */
553
+ public static function filter_front__wpseo_adjacent_rel_url( $link, $relationship, $presentation ) {
554
+
555
+ if ( empty( $link ) || WPGlobus::Config()->language == WPGlobus::Config()->default_language ) {
556
+ return $link;
557
+ }
558
+
559
+ if ( empty( self::$canonical_url ) ) {
560
+ return $link;
561
+ }
562
+
563
+ return str_replace(
564
+ self::$canonical_url[ WPGlobus::Config()->default_language ],
565
+ self::$canonical_url[ WPGlobus::Config()->language ],
566
+ $link
567
+ );
568
+ }
569
+
570
  /**
571
  * Filter the HTML output of the Yoast SEO breadcrumbs class.
572
  *
languages/wpglobus-ar.po CHANGED
@@ -1632,17 +1632,17 @@ msgstr ""
1632
  msgid "Get WPGlobus Plus now!"
1633
  msgstr "أحصل علي WPGlobus الأضافي الأن!"
1634
 
1635
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:858
1636
  msgid ""
1637
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1638
  "the current version."
1639
  msgstr ""
1640
 
1641
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:859
1642
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1643
  msgstr ""
1644
 
1645
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:862
1646
  msgid "WPGlobus warning: "
1647
  msgstr ""
1648
 
1632
  msgid "Get WPGlobus Plus now!"
1633
  msgstr "أحصل علي WPGlobus الأضافي الأن!"
1634
 
1635
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:913
1636
  msgid ""
1637
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1638
  "the current version."
1639
  msgstr ""
1640
 
1641
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:914
1642
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1643
  msgstr ""
1644
 
1645
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:917
1646
  msgid "WPGlobus warning: "
1647
  msgstr ""
1648
 
languages/wpglobus-be.po CHANGED
@@ -1689,17 +1689,17 @@ msgstr ""
1689
  msgid "Get WPGlobus Plus now!"
1690
  msgstr "Установите WPGlobus Плюс прямо сейчас!"
1691
 
1692
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:858
1693
  msgid ""
1694
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1695
  "the current version."
1696
  msgstr ""
1697
 
1698
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:859
1699
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1700
  msgstr ""
1701
 
1702
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:862
1703
  msgid "WPGlobus warning: "
1704
  msgstr ""
1705
 
1689
  msgid "Get WPGlobus Plus now!"
1690
  msgstr "Установите WPGlobus Плюс прямо сейчас!"
1691
 
1692
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:913
1693
  msgid ""
1694
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1695
  "the current version."
1696
  msgstr ""
1697
 
1698
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:914
1699
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1700
  msgstr ""
1701
 
1702
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:917
1703
  msgid "WPGlobus warning: "
1704
  msgstr ""
1705
 
languages/wpglobus-bg_BG.po CHANGED
@@ -1608,17 +1608,17 @@ msgstr ""
1608
  msgid "Get WPGlobus Plus now!"
1609
  msgstr ""
1610
 
1611
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:858
1612
  msgid ""
1613
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1614
  "the current version."
1615
  msgstr ""
1616
 
1617
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:859
1618
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1619
  msgstr ""
1620
 
1621
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:862
1622
  msgid "WPGlobus warning: "
1623
  msgstr ""
1624
 
1608
  msgid "Get WPGlobus Plus now!"
1609
  msgstr ""
1610
 
1611
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:913
1612
  msgid ""
1613
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1614
  "the current version."
1615
  msgstr ""
1616
 
1617
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:914
1618
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1619
  msgstr ""
1620
 
1621
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:917
1622
  msgid "WPGlobus warning: "
1623
  msgstr ""
1624
 
languages/wpglobus-de_CH.po CHANGED
@@ -1653,17 +1653,17 @@ msgstr ""
1653
  msgid "Get WPGlobus Plus now!"
1654
  msgstr "Jetzt zu WPGlobus Plus wechseln!"
1655
 
1656
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:858
1657
  msgid ""
1658
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1659
  "the current version."
1660
  msgstr ""
1661
 
1662
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:859
1663
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1664
  msgstr ""
1665
 
1666
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:862
1667
  msgid "WPGlobus warning: "
1668
  msgstr ""
1669
 
1653
  msgid "Get WPGlobus Plus now!"
1654
  msgstr "Jetzt zu WPGlobus Plus wechseln!"
1655
 
1656
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:913
1657
  msgid ""
1658
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1659
  "the current version."
1660
  msgstr ""
1661
 
1662
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:914
1663
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1664
  msgstr ""
1665
 
1666
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:917
1667
  msgid "WPGlobus warning: "
1668
  msgstr ""
1669
 
languages/wpglobus-de_DE.po CHANGED
@@ -1654,17 +1654,17 @@ msgstr ""
1654
  msgid "Get WPGlobus Plus now!"
1655
  msgstr "Jetzt zu WPGlobus Plus wechseln!"
1656
 
1657
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:858
1658
  msgid ""
1659
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1660
  "the current version."
1661
  msgstr ""
1662
 
1663
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:859
1664
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1665
  msgstr ""
1666
 
1667
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:862
1668
  msgid "WPGlobus warning: "
1669
  msgstr ""
1670
 
1654
  msgid "Get WPGlobus Plus now!"
1655
  msgstr "Jetzt zu WPGlobus Plus wechseln!"
1656
 
1657
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:913
1658
  msgid ""
1659
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1660
  "the current version."
1661
  msgstr ""
1662
 
1663
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:914
1664
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1665
  msgstr ""
1666
 
1667
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:917
1668
  msgid "WPGlobus warning: "
1669
  msgstr ""
1670
 
languages/wpglobus-el.po CHANGED
@@ -1609,17 +1609,17 @@ msgstr ""
1609
  msgid "Get WPGlobus Plus now!"
1610
  msgstr ""
1611
 
1612
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:858
1613
  msgid ""
1614
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1615
  "the current version."
1616
  msgstr ""
1617
 
1618
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:859
1619
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1620
  msgstr ""
1621
 
1622
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:862
1623
  msgid "WPGlobus warning: "
1624
  msgstr ""
1625
 
1609
  msgid "Get WPGlobus Plus now!"
1610
  msgstr ""
1611
 
1612
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:913
1613
  msgid ""
1614
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1615
  "the current version."
1616
  msgstr ""
1617
 
1618
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:914
1619
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1620
  msgstr ""
1621
 
1622
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:917
1623
  msgid "WPGlobus warning: "
1624
  msgstr ""
1625
 
languages/wpglobus-en_AU.po CHANGED
@@ -1685,17 +1685,17 @@ msgstr ""
1685
  msgid "Get WPGlobus Plus now!"
1686
  msgstr "Get WPGlobus Plus now!"
1687
 
1688
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:858
1689
  msgid ""
1690
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1691
  "the current version."
1692
  msgstr ""
1693
 
1694
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:859
1695
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1696
  msgstr ""
1697
 
1698
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:862
1699
  msgid "WPGlobus warning: "
1700
  msgstr ""
1701
 
1685
  msgid "Get WPGlobus Plus now!"
1686
  msgstr "Get WPGlobus Plus now!"
1687
 
1688
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:913
1689
  msgid ""
1690
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1691
  "the current version."
1692
  msgstr ""
1693
 
1694
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:914
1695
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1696
  msgstr ""
1697
 
1698
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:917
1699
  msgid "WPGlobus warning: "
1700
  msgstr ""
1701
 
languages/wpglobus-en_CA.po CHANGED
@@ -1684,17 +1684,17 @@ msgstr ""
1684
  msgid "Get WPGlobus Plus now!"
1685
  msgstr "Get WPGlobus Plus now!"
1686
 
1687
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:858
1688
  msgid ""
1689
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1690
  "the current version."
1691
  msgstr ""
1692
 
1693
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:859
1694
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1695
  msgstr ""
1696
 
1697
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:862
1698
  msgid "WPGlobus warning: "
1699
  msgstr ""
1700
 
1684
  msgid "Get WPGlobus Plus now!"
1685
  msgstr "Get WPGlobus Plus now!"
1686
 
1687
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:913
1688
  msgid ""
1689
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1690
  "the current version."
1691
  msgstr ""
1692
 
1693
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:914
1694
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1695
  msgstr ""
1696
 
1697
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:917
1698
  msgid "WPGlobus warning: "
1699
  msgstr ""
1700
 
languages/wpglobus-en_GB.po CHANGED
@@ -1685,17 +1685,17 @@ msgstr ""
1685
  msgid "Get WPGlobus Plus now!"
1686
  msgstr "Get WPGlobus Plus now!"
1687
 
1688
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:858
1689
  msgid ""
1690
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1691
  "the current version."
1692
  msgstr ""
1693
 
1694
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:859
1695
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1696
  msgstr ""
1697
 
1698
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:862
1699
  msgid "WPGlobus warning: "
1700
  msgstr ""
1701
 
1685
  msgid "Get WPGlobus Plus now!"
1686
  msgstr "Get WPGlobus Plus now!"
1687
 
1688
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:913
1689
  msgid ""
1690
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1691
  "the current version."
1692
  msgstr ""
1693
 
1694
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:914
1695
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1696
  msgstr ""
1697
 
1698
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:917
1699
  msgid "WPGlobus warning: "
1700
  msgstr ""
1701
 
languages/wpglobus-en_NZ.po CHANGED
@@ -1684,17 +1684,17 @@ msgstr ""
1684
  msgid "Get WPGlobus Plus now!"
1685
  msgstr "Get WPGlobus Plus now!"
1686
 
1687
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:858
1688
  msgid ""
1689
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1690
  "the current version."
1691
  msgstr ""
1692
 
1693
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:859
1694
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1695
  msgstr ""
1696
 
1697
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:862
1698
  msgid "WPGlobus warning: "
1699
  msgstr ""
1700
 
1684
  msgid "Get WPGlobus Plus now!"
1685
  msgstr "Get WPGlobus Plus now!"
1686
 
1687
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:913
1688
  msgid ""
1689
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1690
  "the current version."
1691
  msgstr ""
1692
 
1693
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:914
1694
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1695
  msgstr ""
1696
 
1697
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:917
1698
  msgid "WPGlobus warning: "
1699
  msgstr ""
1700
 
languages/wpglobus-en_US.po CHANGED
@@ -1744,17 +1744,17 @@ msgstr ""
1744
  msgid "Get WPGlobus Plus now!"
1745
  msgstr "Get WPGlobus Plus now!"
1746
 
1747
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:858
1748
  msgid ""
1749
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1750
  "the current version."
1751
  msgstr ""
1752
 
1753
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:859
1754
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1755
  msgstr ""
1756
 
1757
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:862
1758
  msgid "WPGlobus warning: "
1759
  msgstr ""
1760
 
1744
  msgid "Get WPGlobus Plus now!"
1745
  msgstr "Get WPGlobus Plus now!"
1746
 
1747
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:913
1748
  msgid ""
1749
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1750
  "the current version."
1751
  msgstr ""
1752
 
1753
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:914
1754
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1755
  msgstr ""
1756
 
1757
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:917
1758
  msgid "WPGlobus warning: "
1759
  msgstr ""
1760
 
languages/wpglobus-en_ZA.po CHANGED
@@ -1684,17 +1684,17 @@ msgstr ""
1684
  msgid "Get WPGlobus Plus now!"
1685
  msgstr "Get WPGlobus Plus now!"
1686
 
1687
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:858
1688
  msgid ""
1689
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1690
  "the current version."
1691
  msgstr ""
1692
 
1693
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:859
1694
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1695
  msgstr ""
1696
 
1697
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:862
1698
  msgid "WPGlobus warning: "
1699
  msgstr ""
1700
 
1684
  msgid "Get WPGlobus Plus now!"
1685
  msgstr "Get WPGlobus Plus now!"
1686
 
1687
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:913
1688
  msgid ""
1689
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1690
  "the current version."
1691
  msgstr ""
1692
 
1693
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:914
1694
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1695
  msgstr ""
1696
 
1697
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:917
1698
  msgid "WPGlobus warning: "
1699
  msgstr ""
1700
 
languages/wpglobus-es_AR.po CHANGED
@@ -1646,17 +1646,17 @@ msgstr ""
1646
  msgid "Get WPGlobus Plus now!"
1647
  msgstr ""
1648
 
1649
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:858
1650
  msgid ""
1651
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1652
  "the current version."
1653
  msgstr ""
1654
 
1655
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:859
1656
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1657
  msgstr ""
1658
 
1659
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:862
1660
  msgid "WPGlobus warning: "
1661
  msgstr ""
1662
 
1646
  msgid "Get WPGlobus Plus now!"
1647
  msgstr ""
1648
 
1649
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:913
1650
  msgid ""
1651
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1652
  "the current version."
1653
  msgstr ""
1654
 
1655
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:914
1656
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1657
  msgstr ""
1658
 
1659
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:917
1660
  msgid "WPGlobus warning: "
1661
  msgstr ""
1662
 
languages/wpglobus-es_CL.po CHANGED
@@ -1646,17 +1646,17 @@ msgstr ""
1646
  msgid "Get WPGlobus Plus now!"
1647
  msgstr ""
1648
 
1649
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:858
1650
  msgid ""
1651
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1652
  "the current version."
1653
  msgstr ""
1654
 
1655
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:859
1656
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1657
  msgstr ""
1658
 
1659
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:862
1660
  msgid "WPGlobus warning: "
1661
  msgstr ""
1662
 
1646
  msgid "Get WPGlobus Plus now!"
1647
  msgstr ""
1648
 
1649
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:913
1650
  msgid ""
1651
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1652
  "the current version."
1653
  msgstr ""
1654
 
1655
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:914
1656
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1657
  msgstr ""
1658
 
1659
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:917
1660
  msgid "WPGlobus warning: "
1661
  msgstr ""
1662
 
languages/wpglobus-es_CO.po CHANGED
@@ -1646,17 +1646,17 @@ msgstr ""
1646
  msgid "Get WPGlobus Plus now!"
1647
  msgstr ""
1648
 
1649
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:858
1650
  msgid ""
1651
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1652
  "the current version."
1653
  msgstr ""
1654
 
1655
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:859
1656
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1657
  msgstr ""
1658
 
1659
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:862
1660
  msgid "WPGlobus warning: "
1661
  msgstr ""
1662
 
1646
  msgid "Get WPGlobus Plus now!"
1647
  msgstr ""
1648
 
1649
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:913
1650
  msgid ""
1651
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1652
  "the current version."
1653
  msgstr ""
1654
 
1655
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:914
1656
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1657
  msgstr ""
1658
 
1659
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:917
1660
  msgid "WPGlobus warning: "
1661
  msgstr ""
1662
 
languages/wpglobus-es_CR.po CHANGED
@@ -1646,17 +1646,17 @@ msgstr ""
1646
  msgid "Get WPGlobus Plus now!"
1647
  msgstr ""
1648
 
1649
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:858
1650
  msgid ""
1651
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1652
  "the current version."
1653
  msgstr ""
1654
 
1655
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:859
1656
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1657
  msgstr ""
1658
 
1659
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:862
1660
  msgid "WPGlobus warning: "
1661
  msgstr ""
1662
 
1646
  msgid "Get WPGlobus Plus now!"
1647
  msgstr ""
1648
 
1649
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:913
1650
  msgid ""
1651
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1652
  "the current version."
1653
  msgstr ""
1654
 
1655
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:914
1656
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1657
  msgstr ""
1658
 
1659
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:917
1660
  msgid "WPGlobus warning: "
1661
  msgstr ""
1662
 
languages/wpglobus-es_ES.po CHANGED
@@ -1646,17 +1646,17 @@ msgstr ""
1646
  msgid "Get WPGlobus Plus now!"
1647
  msgstr ""
1648
 
1649
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:858
1650
  msgid ""
1651
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1652
  "the current version."
1653
  msgstr ""
1654
 
1655
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:859
1656
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1657
  msgstr ""
1658
 
1659
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:862
1660
  msgid "WPGlobus warning: "
1661
  msgstr ""
1662
 
1646
  msgid "Get WPGlobus Plus now!"
1647
  msgstr ""
1648
 
1649
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:913
1650
  msgid ""
1651
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1652
  "the current version."
1653
  msgstr ""
1654
 
1655
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:914
1656
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1657
  msgstr ""
1658
 
1659
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:917
1660
  msgid "WPGlobus warning: "
1661
  msgstr ""
1662
 
languages/wpglobus-es_GT.po CHANGED
@@ -1646,17 +1646,17 @@ msgstr ""
1646
  msgid "Get WPGlobus Plus now!"
1647
  msgstr ""
1648
 
1649
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:858
1650
  msgid ""
1651
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1652
  "the current version."
1653
  msgstr ""
1654
 
1655
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:859
1656
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1657
  msgstr ""
1658
 
1659
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:862
1660
  msgid "WPGlobus warning: "
1661
  msgstr ""
1662
 
1646
  msgid "Get WPGlobus Plus now!"
1647
  msgstr ""
1648
 
1649
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:913
1650
  msgid ""
1651
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1652
  "the current version."
1653
  msgstr ""
1654
 
1655
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:914
1656
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1657
  msgstr ""
1658
 
1659
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:917
1660
  msgid "WPGlobus warning: "
1661
  msgstr ""
1662
 
languages/wpglobus-es_MX.po CHANGED
@@ -1646,17 +1646,17 @@ msgstr ""
1646
  msgid "Get WPGlobus Plus now!"
1647
  msgstr ""
1648
 
1649
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:858
1650
  msgid ""
1651
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1652
  "the current version."
1653
  msgstr ""
1654
 
1655
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:859
1656
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1657
  msgstr ""
1658
 
1659
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:862
1660
  msgid "WPGlobus warning: "
1661
  msgstr ""
1662
 
1646
  msgid "Get WPGlobus Plus now!"
1647
  msgstr ""
1648
 
1649
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:913
1650
  msgid ""
1651
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1652
  "the current version."
1653
  msgstr ""
1654
 
1655
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:914
1656
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1657
  msgstr ""
1658
 
1659
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:917
1660
  msgid "WPGlobus warning: "
1661
  msgstr ""
1662
 
languages/wpglobus-es_PE.po CHANGED
@@ -1646,17 +1646,17 @@ msgstr ""
1646
  msgid "Get WPGlobus Plus now!"
1647
  msgstr ""
1648
 
1649
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:858
1650
  msgid ""
1651
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1652
  "the current version."
1653
  msgstr ""
1654
 
1655
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:859
1656
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1657
  msgstr ""
1658
 
1659
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:862
1660
  msgid "WPGlobus warning: "
1661
  msgstr ""
1662
 
1646
  msgid "Get WPGlobus Plus now!"
1647
  msgstr ""
1648
 
1649
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:913
1650
  msgid ""
1651
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1652
  "the current version."
1653
  msgstr ""
1654
 
1655
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:914
1656
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1657
  msgstr ""
1658
 
1659
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:917
1660
  msgid "WPGlobus warning: "
1661
  msgstr ""
1662
 
languages/wpglobus-es_PR.po CHANGED
@@ -1646,17 +1646,17 @@ msgstr ""
1646
  msgid "Get WPGlobus Plus now!"
1647
  msgstr ""
1648
 
1649
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:858
1650
  msgid ""
1651
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1652
  "the current version."
1653
  msgstr ""
1654
 
1655
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:859
1656
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1657
  msgstr ""
1658
 
1659
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:862
1660
  msgid "WPGlobus warning: "
1661
  msgstr ""
1662
 
1646
  msgid "Get WPGlobus Plus now!"
1647
  msgstr ""
1648
 
1649
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:913
1650
  msgid ""
1651
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1652
  "the current version."
1653
  msgstr ""
1654
 
1655
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:914
1656
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1657
  msgstr ""
1658
 
1659
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:917
1660
  msgid "WPGlobus warning: "
1661
  msgstr ""
1662
 
languages/wpglobus-es_VE.po CHANGED
@@ -1646,17 +1646,17 @@ msgstr ""
1646
  msgid "Get WPGlobus Plus now!"
1647
  msgstr ""
1648
 
1649
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:858
1650
  msgid ""
1651
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1652
  "the current version."
1653
  msgstr ""
1654
 
1655
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:859
1656
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1657
  msgstr ""
1658
 
1659
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:862
1660
  msgid "WPGlobus warning: "
1661
  msgstr ""
1662
 
1646
  msgid "Get WPGlobus Plus now!"
1647
  msgstr ""
1648
 
1649
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:913
1650
  msgid ""
1651
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1652
  "the current version."
1653
  msgstr ""
1654
 
1655
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:914
1656
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1657
  msgstr ""
1658
 
1659
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:917
1660
  msgid "WPGlobus warning: "
1661
  msgstr ""
1662
 
languages/wpglobus-et.po CHANGED
@@ -1609,17 +1609,17 @@ msgstr ""
1609
  msgid "Get WPGlobus Plus now!"
1610
  msgstr ""
1611
 
1612
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:858
1613
  msgid ""
1614
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1615
  "the current version."
1616
  msgstr ""
1617
 
1618
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:859
1619
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1620
  msgstr ""
1621
 
1622
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:862
1623
  msgid "WPGlobus warning: "
1624
  msgstr ""
1625
 
1609
  msgid "Get WPGlobus Plus now!"
1610
  msgstr ""
1611
 
1612
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:913
1613
  msgid ""
1614
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1615
  "the current version."
1616
  msgstr ""
1617
 
1618
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:914
1619
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1620
  msgstr ""
1621
 
1622
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:917
1623
  msgid "WPGlobus warning: "
1624
  msgstr ""
1625
 
languages/wpglobus-fr_BE.po CHANGED
@@ -1711,17 +1711,17 @@ msgstr ""
1711
  msgid "Get WPGlobus Plus now!"
1712
  msgstr "Obtenez WPGlobus Plus maintenant !"
1713
 
1714
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:858
1715
  msgid ""
1716
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1717
  "the current version."
1718
  msgstr ""
1719
 
1720
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:859
1721
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1722
  msgstr ""
1723
 
1724
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:862
1725
  msgid "WPGlobus warning: "
1726
  msgstr ""
1727
 
1711
  msgid "Get WPGlobus Plus now!"
1712
  msgstr "Obtenez WPGlobus Plus maintenant !"
1713
 
1714
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:913
1715
  msgid ""
1716
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1717
  "the current version."
1718
  msgstr ""
1719
 
1720
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:914
1721
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1722
  msgstr ""
1723
 
1724
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:917
1725
  msgid "WPGlobus warning: "
1726
  msgstr ""
1727
 
languages/wpglobus-fr_CA.po CHANGED
@@ -1713,17 +1713,17 @@ msgstr ""
1713
  msgid "Get WPGlobus Plus now!"
1714
  msgstr "Obtenez WPGlobus Plus maintenant !"
1715
 
1716
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:858
1717
  msgid ""
1718
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1719
  "the current version."
1720
  msgstr ""
1721
 
1722
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:859
1723
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1724
  msgstr ""
1725
 
1726
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:862
1727
  msgid "WPGlobus warning: "
1728
  msgstr ""
1729
 
1713
  msgid "Get WPGlobus Plus now!"
1714
  msgstr "Obtenez WPGlobus Plus maintenant !"
1715
 
1716
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:913
1717
  msgid ""
1718
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1719
  "the current version."
1720
  msgstr ""
1721
 
1722
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:914
1723
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1724
  msgstr ""
1725
 
1726
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:917
1727
  msgid "WPGlobus warning: "
1728
  msgstr ""
1729
 
languages/wpglobus-fr_FR.po CHANGED
@@ -1788,17 +1788,17 @@ msgstr ""
1788
  msgid "Get WPGlobus Plus now!"
1789
  msgstr "Obtenez WPGlobus Plus maintenant !"
1790
 
1791
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:858
1792
  msgid ""
1793
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1794
  "the current version."
1795
  msgstr ""
1796
 
1797
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:859
1798
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1799
  msgstr ""
1800
 
1801
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:862
1802
  msgid "WPGlobus warning: "
1803
  msgstr ""
1804
 
1788
  msgid "Get WPGlobus Plus now!"
1789
  msgstr "Obtenez WPGlobus Plus maintenant !"
1790
 
1791
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:913
1792
  msgid ""
1793
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1794
  "the current version."
1795
  msgstr ""
1796
 
1797
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:914
1798
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1799
  msgstr ""
1800
 
1801
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:917
1802
  msgid "WPGlobus warning: "
1803
  msgstr ""
1804
 
languages/wpglobus-id_ID.po CHANGED
@@ -1688,17 +1688,17 @@ msgstr ""
1688
  msgid "Get WPGlobus Plus now!"
1689
  msgstr "Dapatkan WPGlobus Ditambah sekarang!"
1690
 
1691
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:858
1692
  msgid ""
1693
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1694
  "the current version."
1695
  msgstr ""
1696
 
1697
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:859
1698
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1699
  msgstr ""
1700
 
1701
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:862
1702
  msgid "WPGlobus warning: "
1703
  msgstr ""
1704
 
1688
  msgid "Get WPGlobus Plus now!"
1689
  msgstr "Dapatkan WPGlobus Ditambah sekarang!"
1690
 
1691
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:913
1692
  msgid ""
1693
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1694
  "the current version."
1695
  msgstr ""
1696
 
1697
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:914
1698
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1699
  msgstr ""
1700
 
1701
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:917
1702
  msgid "WPGlobus warning: "
1703
  msgstr ""
1704
 
languages/wpglobus-ko_KR.po CHANGED
@@ -1608,17 +1608,17 @@ msgstr ""
1608
  msgid "Get WPGlobus Plus now!"
1609
  msgstr ""
1610
 
1611
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:858
1612
  msgid ""
1613
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1614
  "the current version."
1615
  msgstr ""
1616
 
1617
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:859
1618
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1619
  msgstr ""
1620
 
1621
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:862
1622
  msgid "WPGlobus warning: "
1623
  msgstr ""
1624
 
1608
  msgid "Get WPGlobus Plus now!"
1609
  msgstr ""
1610
 
1611
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:913
1612
  msgid ""
1613
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1614
  "the current version."
1615
  msgstr ""
1616
 
1617
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:914
1618
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1619
  msgstr ""
1620
 
1621
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:917
1622
  msgid "WPGlobus warning: "
1623
  msgstr ""
1624
 
languages/wpglobus-pl_PL.po CHANGED
@@ -1642,17 +1642,17 @@ msgstr ""
1642
  msgid "Get WPGlobus Plus now!"
1643
  msgstr "Uzyskaj już teraz WPGlobus Plus!"
1644
 
1645
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:858
1646
  msgid ""
1647
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1648
  "the current version."
1649
  msgstr ""
1650
 
1651
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:859
1652
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1653
  msgstr ""
1654
 
1655
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:862
1656
  msgid "WPGlobus warning: "
1657
  msgstr ""
1658
 
1642
  msgid "Get WPGlobus Plus now!"
1643
  msgstr "Uzyskaj już teraz WPGlobus Plus!"
1644
 
1645
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:913
1646
  msgid ""
1647
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1648
  "the current version."
1649
  msgstr ""
1650
 
1651
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:914
1652
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1653
  msgstr ""
1654
 
1655
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:917
1656
  msgid "WPGlobus warning: "
1657
  msgstr ""
1658
 
languages/wpglobus-pt_BR.po CHANGED
@@ -1608,17 +1608,17 @@ msgstr ""
1608
  msgid "Get WPGlobus Plus now!"
1609
  msgstr ""
1610
 
1611
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:858
1612
  msgid ""
1613
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1614
  "the current version."
1615
  msgstr ""
1616
 
1617
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:859
1618
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1619
  msgstr ""
1620
 
1621
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:862
1622
  msgid "WPGlobus warning: "
1623
  msgstr ""
1624
 
1608
  msgid "Get WPGlobus Plus now!"
1609
  msgstr ""
1610
 
1611
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:913
1612
  msgid ""
1613
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1614
  "the current version."
1615
  msgstr ""
1616
 
1617
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:914
1618
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1619
  msgstr ""
1620
 
1621
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:917
1622
  msgid "WPGlobus warning: "
1623
  msgstr ""
1624
 
languages/wpglobus-pt_PT.po CHANGED
@@ -1608,17 +1608,17 @@ msgstr ""
1608
  msgid "Get WPGlobus Plus now!"
1609
  msgstr ""
1610
 
1611
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:858
1612
  msgid ""
1613
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1614
  "the current version."
1615
  msgstr ""
1616
 
1617
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:859
1618
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1619
  msgstr ""
1620
 
1621
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:862
1622
  msgid "WPGlobus warning: "
1623
  msgstr ""
1624
 
1608
  msgid "Get WPGlobus Plus now!"
1609
  msgstr ""
1610
 
1611
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:913
1612
  msgid ""
1613
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1614
  "the current version."
1615
  msgstr ""
1616
 
1617
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:914
1618
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1619
  msgstr ""
1620
 
1621
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:917
1622
  msgid "WPGlobus warning: "
1623
  msgstr ""
1624
 
languages/wpglobus-ro_RO.po CHANGED
@@ -1645,17 +1645,17 @@ msgstr ""
1645
  msgid "Get WPGlobus Plus now!"
1646
  msgstr "Obține WPGlobus Plus acum!"
1647
 
1648
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:858
1649
  msgid ""
1650
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1651
  "the current version."
1652
  msgstr ""
1653
 
1654
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:859
1655
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1656
  msgstr ""
1657
 
1658
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:862
1659
  msgid "WPGlobus warning: "
1660
  msgstr ""
1661
 
1645
  msgid "Get WPGlobus Plus now!"
1646
  msgstr "Obține WPGlobus Plus acum!"
1647
 
1648
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:913
1649
  msgid ""
1650
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1651
  "the current version."
1652
  msgstr ""
1653
 
1654
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:914
1655
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1656
  msgstr ""
1657
 
1658
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:917
1659
  msgid "WPGlobus warning: "
1660
  msgstr ""
1661
 
languages/wpglobus-ru_RU.po CHANGED
@@ -1767,7 +1767,7 @@ msgstr ""
1767
  msgid "Get WPGlobus Plus now!"
1768
  msgstr "Установите WPGlobus Плюс прямо сейчас!"
1769
 
1770
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:858
1771
  msgid ""
1772
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1773
  "the current version."
@@ -1775,12 +1775,12 @@ msgstr ""
1775
  "Текущая версия не поддерживает возможность массового редактирования "
1776
  "многоязычных заголовков и описаний."
1777
 
1778
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:859
1779
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1780
  msgstr ""
1781
  "Поэтому не рекомендуем использовать этот режим во избежание потери данных."
1782
 
1783
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:862
1784
  msgid "WPGlobus warning: "
1785
  msgstr "Предупреждение WPGlobus: "
1786
 
1767
  msgid "Get WPGlobus Plus now!"
1768
  msgstr "Установите WPGlobus Плюс прямо сейчас!"
1769
 
1770
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:913
1771
  msgid ""
1772
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1773
  "the current version."
1775
  "Текущая версия не поддерживает возможность массового редактирования "
1776
  "многоязычных заголовков и описаний."
1777
 
1778
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:914
1779
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1780
  msgstr ""
1781
  "Поэтому не рекомендуем использовать этот режим во избежание потери данных."
1782
 
1783
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:917
1784
  msgid "WPGlobus warning: "
1785
  msgstr "Предупреждение WPGlobus: "
1786
 
languages/wpglobus-sv_SE.po CHANGED
@@ -1644,17 +1644,17 @@ msgstr ""
1644
  msgid "Get WPGlobus Plus now!"
1645
  msgstr "Hämta WPGlobus Plus nu!"
1646
 
1647
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:858
1648
  msgid ""
1649
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1650
  "the current version."
1651
  msgstr ""
1652
 
1653
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:859
1654
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1655
  msgstr ""
1656
 
1657
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:862
1658
  msgid "WPGlobus warning: "
1659
  msgstr ""
1660
 
1644
  msgid "Get WPGlobus Plus now!"
1645
  msgstr "Hämta WPGlobus Plus nu!"
1646
 
1647
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:913
1648
  msgid ""
1649
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1650
  "the current version."
1651
  msgstr ""
1652
 
1653
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:914
1654
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1655
  msgstr ""
1656
 
1657
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:917
1658
  msgid "WPGlobus warning: "
1659
  msgstr ""
1660
 
languages/wpglobus-tr_TR.po CHANGED
@@ -1640,17 +1640,17 @@ msgstr ""
1640
  msgid "Get WPGlobus Plus now!"
1641
  msgstr "WPGlobus Plus' ı şimdi edinin!"
1642
 
1643
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:858
1644
  msgid ""
1645
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1646
  "the current version."
1647
  msgstr ""
1648
 
1649
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:859
1650
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1651
  msgstr ""
1652
 
1653
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:862
1654
  msgid "WPGlobus warning: "
1655
  msgstr ""
1656
 
1640
  msgid "Get WPGlobus Plus now!"
1641
  msgstr "WPGlobus Plus' ı şimdi edinin!"
1642
 
1643
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:913
1644
  msgid ""
1645
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1646
  "the current version."
1647
  msgstr ""
1648
 
1649
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:914
1650
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1651
  msgstr ""
1652
 
1653
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:917
1654
  msgid "WPGlobus warning: "
1655
  msgstr ""
1656
 
languages/wpglobus-uk.po CHANGED
@@ -1740,17 +1740,17 @@ msgstr ""
1740
  msgid "Get WPGlobus Plus now!"
1741
  msgstr "Встановіть WPGlobus Плюс прямо зараз!"
1742
 
1743
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:858
1744
  msgid ""
1745
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1746
  "the current version."
1747
  msgstr ""
1748
 
1749
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:859
1750
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1751
  msgstr ""
1752
 
1753
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:862
1754
  msgid "WPGlobus warning: "
1755
  msgstr ""
1756
 
1740
  msgid "Get WPGlobus Plus now!"
1741
  msgstr "Встановіть WPGlobus Плюс прямо зараз!"
1742
 
1743
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:913
1744
  msgid ""
1745
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1746
  "the current version."
1747
  msgstr ""
1748
 
1749
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:914
1750
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1751
  msgstr ""
1752
 
1753
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:917
1754
  msgid "WPGlobus warning: "
1755
  msgstr ""
1756
 
languages/wpglobus.pot CHANGED
@@ -1,8 +1,8 @@
1
- # Copyright (C) 2020 WPGlobus 2.5.10
2
- # This file is distributed under the same license as the WPGlobus 2.5.10 package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: WPGlobus 2.5.10\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -1366,15 +1366,15 @@ msgstr ""
1366
  msgid "Get WPGlobus Plus now!"
1367
  msgstr ""
1368
 
1369
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:858
1370
  msgid "Bulk editing of the multilingual titles and descriptions is not supported by the current version."
1371
  msgstr ""
1372
 
1373
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:859
1374
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1375
  msgstr ""
1376
 
1377
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:862
1378
  msgid "WPGlobus warning: "
1379
  msgstr ""
1380
 
1
+ # Copyright (C) 2020 WPGlobus 2.5.11
2
+ # This file is distributed under the same license as the WPGlobus 2.5.11 package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: WPGlobus 2.5.11\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
1366
  msgid "Get WPGlobus Plus now!"
1367
  msgstr ""
1368
 
1369
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:913
1370
  msgid "Bulk editing of the multilingual titles and descriptions is not supported by the current version."
1371
  msgstr ""
1372
 
1373
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:914
1374
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1375
  msgstr ""
1376
 
1377
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:917
1378
  msgid "WPGlobus warning: "
1379
  msgstr ""
1380
 
readme.txt CHANGED
@@ -217,6 +217,11 @@ WPGlobus Version 2 supports WordPress 5.x, with Gutenberg.
217
 
218
  == Changelog ==
219
 
 
 
 
 
 
220
  = 2.5.10 =
221
 
222
  * (Core/Options) Start the sections settings function on the WPGlobus Options page only.
217
 
218
  == Changelog ==
219
 
220
+ = 2.5.11 =
221
+
222
+ * (Core/Post Types) Added post types of the `FooGallery`, `Modula Image Gallery`, and `Kali Forms` plugins to the hidden types array.
223
+ * (Vendor/Yoast) Filtering the `rel` `prev` and `next` URLs generated by `Yoast SEO`.
224
+
225
  = 2.5.10 =
226
 
227
  * (Core/Options) Start the sections settings function on the WPGlobus Options page only.
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.5.10
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.5.10' );
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.5.11
19
  * Author: WPGlobus
20
  * Author URI: https://wpglobus.com/
21
  * Network: false
42
  exit;
43
  }
44
 
45
+ define( 'WPGLOBUS_VERSION', '2.5.11' );
46
  define( 'WPGLOBUS_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
47
  define( 'WPGLOBUS_AJAX', 'wpglobus-ajax' );
48