WPGlobus – Multilingual Everything! - Version 2.4.7

Version Description

  • (Vendor/Yoast) Added filter of schema generator.
  • (Vendor/Yoast) Updated filter for the post title that has no multilingual value for the frontend.
Download this release

Release Info

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

Code changes from version 2.4.6 to 2.4.7

includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php CHANGED
@@ -56,6 +56,14 @@ class WPGlobus_YoastSEO {
56
  * @var null|array
57
  */
58
  protected static $wpseo_meta = null;
 
 
 
 
 
 
 
 
59
 
60
  /**
61
  * Plus access.
@@ -150,6 +158,12 @@ class WPGlobus_YoastSEO {
150
  * @from 1.8.8
151
  */
152
  add_filter( 'wpseo_metakeywords', array( __CLASS__, 'filter__metakeywords' ), 0 );
 
 
 
 
 
 
153
 
154
  }
155
  }
@@ -159,19 +173,55 @@ class WPGlobus_YoastSEO {
159
  *
160
  * @scope front
161
  * @since 1.9.18
 
162
  *
163
  * @param string $title Post title.
164
  *
165
  * @return string.
166
  */
167
  public static function filter__title( $title ) {
 
168
  /**
169
  * In some cases we can get $title like {:en}En title{:}{:ru}Ru title{:}{:fr}Fr title{:} - SiteTitle
170
  * so, let's filter.
171
  */
172
  if ( WPGlobus_Core::has_translations($title) ) {
173
- return WPGlobus_Core::extract_text( $title, WPGlobus::Config()->language );
 
 
 
 
 
 
 
 
 
 
 
 
 
174
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
175
  return $title;
176
  }
177
 
@@ -961,6 +1011,35 @@ class WPGlobus_YoastSEO {
961
  return $result;
962
  }
963
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
964
  } // class
965
 
966
  # --- EOF
56
  * @var null|array
57
  */
58
  protected static $wpseo_meta = null;
59
+
60
+ /**
61
+ * Contains document title.
62
+ *
63
+ * @since 2.4.7
64
+ * @var null|string
65
+ */
66
+ protected static $title = null;
67
 
68
  /**
69
  * Plus access.
158
  * @from 1.8.8
159
  */
160
  add_filter( 'wpseo_metakeywords', array( __CLASS__, 'filter__metakeywords' ), 0 );
161
+
162
+ /**
163
+ * Filter schema generator.
164
+ * @from 2.4.7
165
+ */
166
+ add_filter( 'wpseo_schema_breadcrumb', array( __CLASS__, 'filter__wpseo_schema_breadcrumb' ), 5, 2 );
167
 
168
  }
169
  }
173
  *
174
  * @scope front
175
  * @since 1.9.18
176
+ * @since 2.4.7 Handle multilingual title from `postmeta` table.
177
  *
178
  * @param string $title Post title.
179
  *
180
  * @return string.
181
  */
182
  public static function filter__title( $title ) {
183
+
184
  /**
185
  * In some cases we can get $title like {:en}En title{:}{:ru}Ru title{:}{:fr}Fr title{:} - SiteTitle
186
  * so, let's filter.
187
  */
188
  if ( WPGlobus_Core::has_translations($title) ) {
189
+
190
+ if ( is_null( self::$title ) ) {
191
+ self::$title = $title;
192
+ }
193
+ return WPGlobus_Core::extract_text( self::$title, WPGlobus::Config()->language );
194
+ }
195
+
196
+ /**
197
+ * We can get title in last saved language (has no multilingual) from @see `wp_yoast_indexable` table.
198
+ * So, we need get multilingual title from `postmeta` table.
199
+ * @since 2.4.7
200
+ */
201
+ if ( ! is_null( self::$title ) ) {
202
+ return WPGlobus_Core::extract_text( self::$title, WPGlobus::Config()->language );
203
  }
204
+
205
+ /** @global wpdb $wpdb */
206
+ global $wpdb;
207
+
208
+ /** @global WP_Post $post */
209
+ global $post;
210
+
211
+ if ( (int) $post->ID > 0 ) {
212
+ $query = $wpdb->prepare(
213
+ "SELECT meta_value FROM {$wpdb->prefix}postmeta AS m WHERE m.post_id = %s AND m.meta_key = %s",
214
+ $post->ID,
215
+ '_yoast_wpseo_title'
216
+ );
217
+
218
+ $meta = $wpdb->get_var($query);
219
+ if ( ! empty($meta) && false != mb_strpos($meta, $title) && WPGlobus_Core::has_translations($meta) ) {
220
+ self::$title = $meta;
221
+ return WPGlobus_Core::extract_text( self::$title, WPGlobus::Config()->language );
222
+ }
223
+ }
224
+
225
  return $title;
226
  }
227
 
1011
  return $result;
1012
  }
1013
 
1014
+ /**
1015
+ * Filter allows changing graph breadcrumb output.
1016
+ *
1017
+ * @see wordpress-seo\src\generators\schema-generator.php
1018
+ * @see "application/ld+json" in html code on front.
1019
+ *
1020
+ * @since 2.4.7
1021
+ *
1022
+ * @scope front
1023
+ * @param array $graph_piece Array of graph piece.
1024
+ * @param Meta_Tags_Context $context A value object with context variables.
1025
+ * @return string
1026
+ */
1027
+ public static function filter__wpseo_schema_breadcrumb( $graph_piece, $context ) {
1028
+
1029
+ if ( empty( $graph_piece['itemListElement'] ) ) {
1030
+ return $graph_piece;
1031
+ }
1032
+
1033
+ $itemListElement = $graph_piece['itemListElement'];
1034
+
1035
+ foreach( $itemListElement as $_key=>$_item ) {
1036
+ if ( ! empty( $_item['item']['name'] ) && WPGlobus_Core::has_translations( $_item['item']['name'] ) ) {
1037
+ $graph_piece['itemListElement'][$_key]['item']['name'] = WPGlobus_Core::extract_text( $graph_piece['itemListElement'][$_key]['item']['name'], WPGlobus::Config()->language );
1038
+ }
1039
+ }
1040
+
1041
+ return $graph_piece;
1042
+ }
1043
  } // class
1044
 
1045
  # --- EOF
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: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
 
1566
  msgid "Get WPGlobus Plus now!"
1567
  msgstr "أحصل علي WPGlobus الأضافي الأن!"
1568
 
1569
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:752
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:753
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:756
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: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
 
1626
  msgid "Get WPGlobus Plus now!"
1627
  msgstr "Установите WPGlobus Плюс прямо сейчас!"
1628
 
1629
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:752
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:753
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:756
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: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
 
1542
  msgid "Get WPGlobus Plus now!"
1543
  msgstr ""
1544
 
1545
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:752
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:753
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:756
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: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
 
1587
  msgid "Get WPGlobus Plus now!"
1588
  msgstr "Jetzt zu WPGlobus Plus wechseln!"
1589
 
1590
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:752
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:753
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:756
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: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
 
1588
  msgid "Get WPGlobus Plus now!"
1589
  msgstr "Jetzt zu WPGlobus Plus wechseln!"
1590
 
1591
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:752
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:753
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:756
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: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
 
1543
  msgid "Get WPGlobus Plus now!"
1544
  msgstr ""
1545
 
1546
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:752
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:753
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:756
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: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
 
1621
  msgid "Get WPGlobus Plus now!"
1622
  msgstr "Get WPGlobus Plus now!"
1623
 
1624
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:752
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:753
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:756
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: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
 
1620
  msgid "Get WPGlobus Plus now!"
1621
  msgstr "Get WPGlobus Plus now!"
1622
 
1623
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:752
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:753
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:756
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: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
 
1621
  msgid "Get WPGlobus Plus now!"
1622
  msgstr "Get WPGlobus Plus now!"
1623
 
1624
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:752
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:753
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:756
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: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
 
1620
  msgid "Get WPGlobus Plus now!"
1621
  msgstr "Get WPGlobus Plus now!"
1622
 
1623
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:752
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:753
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:756
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: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
 
1680
  msgid "Get WPGlobus Plus now!"
1681
  msgstr "Get WPGlobus Plus now!"
1682
 
1683
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:752
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:753
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:756
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: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
 
1620
  msgid "Get WPGlobus Plus now!"
1621
  msgstr "Get WPGlobus Plus now!"
1622
 
1623
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:752
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:753
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:756
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: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
 
1580
  msgid "Get WPGlobus Plus now!"
1581
  msgstr ""
1582
 
1583
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:752
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:753
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:756
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: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
 
1580
  msgid "Get WPGlobus Plus now!"
1581
  msgstr ""
1582
 
1583
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:752
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:753
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:756
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: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
 
1580
  msgid "Get WPGlobus Plus now!"
1581
  msgstr ""
1582
 
1583
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:752
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:753
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:756
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: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
 
1580
  msgid "Get WPGlobus Plus now!"
1581
  msgstr ""
1582
 
1583
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:752
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:753
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:756
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: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
 
1580
  msgid "Get WPGlobus Plus now!"
1581
  msgstr ""
1582
 
1583
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:752
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:753
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:756
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: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
 
1580
  msgid "Get WPGlobus Plus now!"
1581
  msgstr ""
1582
 
1583
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:752
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:753
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:756
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: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
 
1580
  msgid "Get WPGlobus Plus now!"
1581
  msgstr ""
1582
 
1583
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:752
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:753
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:756
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: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
 
1580
  msgid "Get WPGlobus Plus now!"
1581
  msgstr ""
1582
 
1583
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:752
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:753
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:756
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: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
 
1580
  msgid "Get WPGlobus Plus now!"
1581
  msgstr ""
1582
 
1583
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:752
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:753
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:756
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: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
 
1580
  msgid "Get WPGlobus Plus now!"
1581
  msgstr ""
1582
 
1583
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:752
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:753
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:756
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: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
 
1543
  msgid "Get WPGlobus Plus now!"
1544
  msgstr ""
1545
 
1546
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:752
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:753
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:756
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: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
 
1648
  msgid "Get WPGlobus Plus now!"
1649
  msgstr "Obtenez WPGlobus Plus maintenant !"
1650
 
1651
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:752
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:753
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:756
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: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
 
1650
  msgid "Get WPGlobus Plus now!"
1651
  msgstr "Obtenez WPGlobus Plus maintenant !"
1652
 
1653
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:752
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:753
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:756
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: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
 
1725
  msgid "Get WPGlobus Plus now!"
1726
  msgstr "Obtenez WPGlobus Plus maintenant !"
1727
 
1728
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:752
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:753
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:756
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: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
 
1624
  msgid "Get WPGlobus Plus now!"
1625
  msgstr "Dapatkan WPGlobus Ditambah sekarang!"
1626
 
1627
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:752
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:753
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:756
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: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
 
1542
  msgid "Get WPGlobus Plus now!"
1543
  msgstr ""
1544
 
1545
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:752
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:753
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:756
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: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
 
1576
  msgid "Get WPGlobus Plus now!"
1577
  msgstr "Uzyskaj już teraz WPGlobus Plus!"
1578
 
1579
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:752
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:753
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:756
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: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
 
1542
  msgid "Get WPGlobus Plus now!"
1543
  msgstr ""
1544
 
1545
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:752
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:753
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:756
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: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
 
1542
  msgid "Get WPGlobus Plus now!"
1543
  msgstr ""
1544
 
1545
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:752
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:753
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:756
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: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
 
1579
  msgid "Get WPGlobus Plus now!"
1580
  msgstr "Obține WPGlobus Plus acum!"
1581
 
1582
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:752
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:753
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:756
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:702
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: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
 
1687
  msgid "Get WPGlobus Plus now!"
1688
  msgstr "Установите WPGlobus Плюс прямо сейчас!"
1689
 
1690
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:752
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:753
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:756
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: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
 
1578
  msgid "Get WPGlobus Plus now!"
1579
  msgstr "Hämta WPGlobus Plus nu!"
1580
 
1581
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:752
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:753
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:756
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: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
 
1574
  msgid "Get WPGlobus Plus now!"
1575
  msgstr "WPGlobus Plus' ı şimdi edinin!"
1576
 
1577
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:752
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:753
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:756
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: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
 
1677
  msgid "Get WPGlobus Plus now!"
1678
  msgstr "Встановіть WPGlobus Плюс прямо зараз!"
1679
 
1680
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:752
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:753
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:756
1691
  msgid "WPGlobus warning: "
1692
  msgstr ""
1693
 
languages/wpglobus.pot CHANGED
@@ -1,8 +1,8 @@
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,15 +1322,15 @@ msgstr ""
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
 
1
+ # Copyright (C) 2020 WPGlobus 2.4.7
2
+ # This file is distributed under the same license as the WPGlobus 2.4.7 package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: WPGlobus 2.4.7\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:752
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:753
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:756
1334
  msgid "WPGlobus warning: "
1335
  msgstr ""
1336
 
readme.txt CHANGED
@@ -216,6 +216,11 @@ WPGlobus Version 2 supports WordPress 5.x, with Gutenberg.
216
 
217
  == Changelog ==
218
 
 
 
 
 
 
219
  = 2.4.6 =
220
 
221
  * (Vendor/Yoast) Correct defining post type for frontend.
216
 
217
  == Changelog ==
218
 
219
+ = 2.4.7 =
220
+
221
+ * (Vendor/Yoast) Added filter of schema generator.
222
+ * (Vendor/Yoast) Updated filter for the post title that has no multilingual value for the frontend.
223
+
224
  = 2.4.6 =
225
 
226
  * (Vendor/Yoast) Correct defining post type for frontend.
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.6
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.6' );
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.7
19
  * Author: WPGlobus
20
  * Author URI: https://wpglobus.com/
21
  * Network: false
42
  exit;
43
  }
44
 
45
+ define( 'WPGLOBUS_VERSION', '2.4.7' );
46
  define( 'WPGLOBUS_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
47
  define( 'WPGLOBUS_AJAX', 'wpglobus-ajax' );
48