WPGlobus – Multilingual Everything! - Version 2.2.35

Version Description

  • Added: (Core/Builders) WPGlobus_Builder_Update_Post class.
  • Internal: (Debug) Updated WPGlobus_Admin_Debug class.
Download this release

Release Info

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

Code changes from version 2.2.34 to 2.2.35

Files changed (49) hide show
  1. includes/admin/debug/class-wpglobus-admin-debug.php +227 -96
  2. includes/admin/wpglobus-admin.php +4 -1
  3. includes/builders/class-wpglobus-builder-update-post.php +62 -0
  4. includes/builders/elementor/class-wpglobus-elementor-update-post.php +4 -2
  5. includes/builders/gutenberg/class-wpglobus-gutenberg-update-post.php +3 -1
  6. includes/builders/js_composer/class-wpglobus-js_composer-update-post.php +3 -1
  7. includes/builders/yoast_seo/class-wpglobus-yoast_seo-update-post.php +3 -1
  8. includes/class-wpglobus.php +10 -0
  9. includes/js/wpglobus-admin-debug.js +16 -3
  10. includes/js/wpglobus-admin-debug.min.js +1 -1
  11. languages/wpglobus-ar.po +11 -11
  12. languages/wpglobus-be.po +11 -11
  13. languages/wpglobus-bg_BG.po +11 -11
  14. languages/wpglobus-de_CH.po +11 -11
  15. languages/wpglobus-de_DE.po +11 -11
  16. languages/wpglobus-el.po +11 -11
  17. languages/wpglobus-en_AU.po +11 -11
  18. languages/wpglobus-en_CA.po +11 -11
  19. languages/wpglobus-en_GB.po +11 -11
  20. languages/wpglobus-en_NZ.po +11 -11
  21. languages/wpglobus-en_US.po +11 -11
  22. languages/wpglobus-en_ZA.po +11 -11
  23. languages/wpglobus-es_AR.po +11 -11
  24. languages/wpglobus-es_CL.po +11 -11
  25. languages/wpglobus-es_CO.po +11 -11
  26. languages/wpglobus-es_CR.po +11 -11
  27. languages/wpglobus-es_ES.po +11 -11
  28. languages/wpglobus-es_GT.po +11 -11
  29. languages/wpglobus-es_MX.po +11 -11
  30. languages/wpglobus-es_PE.po +11 -11
  31. languages/wpglobus-es_PR.po +11 -11
  32. languages/wpglobus-es_VE.po +11 -11
  33. languages/wpglobus-et.po +11 -11
  34. languages/wpglobus-fr_BE.po +11 -11
  35. languages/wpglobus-fr_CA.po +11 -11
  36. languages/wpglobus-fr_FR.po +11 -11
  37. languages/wpglobus-id_ID.po +11 -11
  38. languages/wpglobus-ko_KR.po +11 -11
  39. languages/wpglobus-pl_PL.po +11 -11
  40. languages/wpglobus-pt_BR.po +11 -11
  41. languages/wpglobus-pt_PT.po +11 -11
  42. languages/wpglobus-ro_RO.po +11 -11
  43. languages/wpglobus-ru_RU.po +11 -11
  44. languages/wpglobus-sv_SE.po +11 -11
  45. languages/wpglobus-tr_TR.po +11 -11
  46. languages/wpglobus-uk.po +11 -11
  47. languages/wpglobus.pot +14 -14
  48. readme.txt +8 -8
  49. wpglobus.php +2 -2
includes/admin/debug/class-wpglobus-admin-debug.php CHANGED
@@ -1,11 +1,10 @@
1
  <?php
2
  /**
3
- * WPGlobus / Admin / Debug
4
  *
5
  * @package WPGlobus\Admin
6
  */
7
 
8
- // .
9
  if ( ! class_exists( 'WPGlobus_Admin_Debug' ) ) :
10
 
11
  /**
@@ -21,6 +20,18 @@ if ( ! class_exists( 'WPGlobus_Admin_Debug' ) ) :
21
  * @var WPGlobus_Admin_Debug
22
  */
23
  protected static $instance;
 
 
 
 
 
 
 
 
 
 
 
 
24
 
25
  /**
26
  * Get instance.
@@ -38,6 +49,20 @@ if ( ! class_exists( 'WPGlobus_Admin_Debug' ) ) :
38
  */
39
  public function __construct() {
40
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
41
  /**
42
  * Action.
43
  *
@@ -63,6 +88,19 @@ if ( ! class_exists( 'WPGlobus_Admin_Debug' ) ) :
63
  add_action( 'admin_footer', array( $this, 'on__admin_footer' ), 9999 );
64
 
65
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
66
 
67
  /**
68
  * Enqueue admin styles.
@@ -117,114 +155,207 @@ if ( ! class_exists( 'WPGlobus_Admin_Debug' ) ) :
117
  */
118
  public function on__admin_footer() {
119
 
120
- global $wpdb, $post;
121
-
122
- if ( ! is_object( $post ) ) {
123
- return;
124
- }
125
 
126
- if ( empty( $post->ID ) || 0 === (int) $post->ID ) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
127
  return;
128
  }
129
 
130
- /**
131
- * Get metadata.
132
- *
133
- * @var array $metas
134
- */
135
- $query = $wpdb->prepare( "SELECT meta_key, meta_value FROM $wpdb->postmeta WHERE post_id = %d", $post->ID );
136
- $metas = $wpdb->get_results( $query, ARRAY_A );
137
-
138
  ?>
139
  <div id="wpglobus-admin-debug-box" class="" style="display:none;">
140
  <h4>WPGlobus debug box</h4>
141
  <?php
142
- /**
143
- * Output metadata.
144
- */
145
- ?>
146
- <table class="table1" cellspacing="0">
147
- <caption><strong><?php echo '"' . $query . '"'; ?></strong></caption>
148
- <thead>
149
- <tr>
150
- <th><strong>№</strong></th>
151
- <th><strong>meta</strong></th>
152
- <th><strong>value</strong></th>
153
- </tr>
154
- </thead>
155
- <tbody>
156
- <?php
157
- $order = 1;
158
-
159
- foreach ( $metas as $key=>$meta ) {
160
- $code = false;
161
- if ( is_array( $meta ) ) {
162
- $metas[$key]['meta_key'] = htmlspecialchars( $meta['meta_value'] );
163
- }
164
- ?>
165
  <tr>
166
- <td><?php echo esc_html( $order ); ?></td>
167
- <td><?php echo esc_html( print_r( $meta[ 'meta_key' ], true ) ); ?></td>
168
- <?php if ( $code ) { ?>
169
- <td>
170
- <pre><?php echo esc_html( print_r( $meta[ 'meta_value' ], true ) ); ?></pre>
171
- </td>
172
- <?php } else { ?>
173
- <td><?php echo esc_html( print_r( $meta[ 'meta_value' ], true ) ); ?></td>
174
- <?php } ?>
175
  </tr>
176
- <?php $order ++; ?>
177
- <?php } ?>
178
- </tbody>
179
- </table>
180
- <?php
181
- /**
182
- * Get options.
183
- */
184
- global $wpdb;
185
- $query = "SELECT * FROM $wpdb->options WHERE option_name LIKE '%wpglobus%'";
186
- $results = $wpdb->get_results( $query );
187
- ?>
188
- <table class="table2" cellspacing="0">
189
- <caption><strong><?php echo '"SELECT * FROM $wpdb->options WHERE option_name LIKE \'%wpglobus%\'"'; ?></strong></caption>
190
- <caption><?php echo 'Option count: ' . count( $results ); ?></caption>
191
- <thead>
192
- <tr>
193
- <th><strong>Option ID</strong></th>
194
- <th><strong>Option Name</strong></th>
195
- <th><strong>Option Value</strong></th>
196
- </tr>
197
- </thead>
198
- <tbody>
199
- <?php
200
 
201
- $order = 1;
202
-
203
- foreach ( $results as $option_key => $option ) {
204
- $code = false;
205
- if ( is_array( $option->option_value ) ) {
206
- foreach ( $option->option_value as $key => $value ) {
207
- $option->option_value[ $key ] = htmlspecialchars( $value );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
208
  }
209
- } elseif ( is_string( $option->option_value ) ) {
210
- $option->option_value = htmlspecialchars( $option->option_value );
211
- }
212
- ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
213
  <tr>
214
- <td><?php echo esc_html( $option->option_id ); ?></td>
215
- <td><?php echo esc_html( print_r( $option->option_name, true ) ); ?></td>
216
- <?php if ( $code ) { ?>
217
- <td>
218
- <pre><?php echo esc_html( print_r( $option->option_value, true ) ); ?></pre>
219
- </td>
220
- <?php } else { ?>
221
- <td><?php echo esc_html( print_r( $option->option_value, true ) ); ?></td>
222
- <?php } ?>
223
  </tr>
224
- <?php $order ++; ?>
225
- <?php } ?>
226
- </tbody>
227
- </table>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
228
  </div>
229
 
230
  <?php
1
  <?php
2
  /**
3
+ * WPGlobus/Admin/Debug.
4
  *
5
  * @package WPGlobus\Admin
6
  */
7
 
 
8
  if ( ! class_exists( 'WPGlobus_Admin_Debug' ) ) :
9
 
10
  /**
20
  * @var WPGlobus_Admin_Debug
21
  */
22
  protected static $instance;
23
+
24
+ /**
25
+ * Debug mode.
26
+ * @since 2.2.35
27
+ */
28
+ protected static $mode = 'godmode';
29
+
30
+ /**
31
+ * Key.
32
+ * @since 2.2.35
33
+ */
34
+ protected static $key = '';
35
 
36
  /**
37
  * Get instance.
49
  */
50
  public function __construct() {
51
 
52
+ if ( 'meta' == $_GET['wpglobus-debug'] ) { // WPCS: input var ok, sanitization ok.
53
+ self::$mode = 'meta';
54
+ } else if ( 'wpglobus_options' == $_GET['wpglobus-debug'] || 'wpglobus-options' == $_GET['wpglobus-debug'] ) { // WPCS: input var ok, sanitization ok.
55
+ self::$mode = 'wpglobus_options';
56
+ } else if ( 'yoast' == $_GET['wpglobus-debug'] ) { // WPCS: input var ok, sanitization ok.
57
+ self::$mode = 'yoast';
58
+ }
59
+
60
+ if ( 'godmode' !== self::$mode ) {
61
+ if ( ! empty( $_GET['key'] ) ) { // WPCS: input var ok, sanitization ok. )
62
+ self::$key = sanitize_text_field($_GET['key']);
63
+ }
64
+ }
65
+
66
  /**
67
  * Action.
68
  *
88
  add_action( 'admin_footer', array( $this, 'on__admin_footer' ), 9999 );
89
 
90
  }
91
+
92
+ /**
93
+ * @since 2.2.35
94
+ */
95
+ public function is_enabled_section($section) {
96
+ if ( 'godmode' == self::$mode ) {
97
+ return true;
98
+ }
99
+ if ( $section == self::$mode ) {
100
+ return true;
101
+ }
102
+ return false;
103
+ }
104
 
105
  /**
106
  * Enqueue admin styles.
155
  */
156
  public function on__admin_footer() {
157
 
158
+ global $wpdb, $post, $pagenow;
 
 
 
 
159
 
160
+ if ( 'post.php' == $pagenow ) {
161
+ if ( is_object( $post ) ) {
162
+ /**
163
+ * post.php page.
164
+ */
165
+ if ( empty( $post->ID ) || 0 === (int) $post->ID ) {
166
+ return;
167
+ }
168
+
169
+ /**
170
+ * Get metadata.
171
+ *
172
+ * @var array $metas
173
+ */
174
+ $meta_query = $wpdb->prepare( "SELECT meta_key, meta_value FROM $wpdb->postmeta WHERE post_id = %d", $post->ID );
175
+ $_id = $post->ID;
176
+ $meta_query_caption = "SELECT meta_key, meta_value FROM $wpdb->postmeta WHERE post_id = $_id";
177
+ $metas = $wpdb->get_results( $meta_query, ARRAY_A );
178
+ }
179
+ } else if ( 'term.php' == $pagenow ) {
180
+
181
+ if ( empty( $_GET['tag_ID'] ) ) {
182
+ return;
183
+ }
184
+
185
+ $_id = sanitize_text_field( $_GET['tag_ID'] );
186
+
187
+ /**
188
+ * Get metadata.
189
+ *
190
+ * @var array $metas
191
+ */
192
+ $meta_query = $wpdb->prepare( "SELECT meta_key, meta_value FROM $wpdb->termmeta WHERE term_id = %d", $_id );
193
+ $meta_query_caption = "SELECT meta_key, meta_value FROM $wpdb->termmeta WHERE term_id = $_id";
194
+ $metas = $wpdb->get_results( $meta_query, ARRAY_A );
195
+ } else {
196
  return;
197
  }
198
 
 
 
 
 
 
 
 
 
199
  ?>
200
  <div id="wpglobus-admin-debug-box" class="" style="display:none;">
201
  <h4>WPGlobus debug box</h4>
202
  <?php
203
+ if ( $this->is_enabled_section('yoast') ) :
204
+ /**
205
+ * Output yoast options.
206
+ */
207
+ if ( empty( self::$key ) ) {
208
+ $query = $wpdb->prepare( "SELECT * FROM $wpdb->options WHERE option_name LIKE '%s' OR option_name LIKE '%s'", '%wpseo%', '%yoast%' );
209
+ $query_caption = "SELECT * FROM $wpdb->options WHERE option_name LIKE '%wpseo%' OR option_name LIKE '%yoast%'";
210
+ } else {
211
+ $query = $wpdb->prepare( "SELECT * FROM $wpdb->options WHERE option_name = %s", self::$key );
212
+ $_key = self::$key;
213
+ $query_caption = "SELECT * FROM $wpdb->options WHERE option_name = $_key";
214
+ }
215
+ $results = $wpdb->get_results( $query );
216
+ ?>
217
+ <table class="table1" cellspacing="0">
218
+ <caption><strong><?php echo '"' . $query_caption . '"'; ?></strong></caption>
219
+ <thead>
 
 
 
 
 
 
220
  <tr>
221
+ <th><strong>№</strong></th>
222
+ <th><strong>option name</strong></th>
223
+ <th><strong>value</strong></th>
 
 
 
 
 
 
224
  </tr>
225
+ </thead>
226
+ <tbody>
227
+ <?php
228
+ $order = 1;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
229
 
230
+ foreach ( $results as $key=>$value ) {
231
+ $code = false;
232
+ //if ( is_array( $meta ) ) {
233
+ //$results[$key]['meta_key'] = htmlspecialchars( $meta['meta_value'] );
234
+ //}
235
+ $args = $_GET;
236
+ if ( empty( self::$key ) ) {
237
+ $args['wpglobus-debug'] = 'yoast';
238
+ $args = array_merge( $args, array('key'=>$value->option_name) );
239
+ $_url = admin_url( add_query_arg( $args, $pagenow ) );
240
+ } else {
241
+ $_url = admin_url( add_query_arg( $args, $pagenow ) );
242
+ }
243
+ ?>
244
+ <tr>
245
+ <td><?php echo esc_html( $order ); ?></td>
246
+ <td><?php echo sprintf( '<a href="%s">%s</a>', $_url, esc_html( $value->option_name ) ); ?></td>
247
+ <?php if ( $code ) { ?>
248
+ <td>
249
+ <pre><?php echo esc_html( print_r( $value->option_value, true ) ); ?></pre>
250
+ </td>
251
+ <?php } else { ?>
252
+ <td><?php echo esc_html( print_r( $value->option_value, true ) ); ?></td>
253
+ <?php } ?>
254
+ </tr>
255
+ <?php $order ++; ?>
256
+ <?php } ?>
257
+ </tbody>
258
+ </table>
259
+ <?php
260
+ endif;
261
+
262
+ if ( $this->is_enabled_section('meta') ) :
263
+ /**
264
+ * Output metadata.
265
+ */
266
+ ?>
267
+ <table class="table2" cellspacing="0">
268
+ <caption><strong><?php echo '"' . $meta_query_caption . '"'; ?></strong></caption>
269
+ <thead>
270
+ <tr>
271
+ <th><strong>№</strong></th>
272
+ <th><strong>meta</strong></th>
273
+ <th><strong>value</strong></th>
274
+ </tr>
275
+ </thead>
276
+ <tbody>
277
+ <?php
278
+ if ( empty($metas) ) { ?>
279
+ <tr>
280
+ <td></td>
281
+ <td>No data</td>
282
+ <td>No data</td>
283
+ </tr> <?php
284
+ } else {
285
+ $order = 1;
286
+ foreach ( $metas as $key=>$meta ) {
287
+ $code = false;
288
+ if ( is_array( $meta ) ) {
289
+ $metas[$key]['meta_key'] = htmlspecialchars( $meta['meta_value'] );
290
+ }
291
+ ?>
292
+ <tr>
293
+ <td><?php echo esc_html( $order ); ?></td>
294
+ <td><?php echo esc_html( print_r( $meta[ 'meta_key' ], true ) ); ?></td>
295
+ <?php if ( $code ) { ?>
296
+ <td>
297
+ <pre><?php echo esc_html( print_r( $meta[ 'meta_value' ], true ) ); ?></pre>
298
+ </td>
299
+ <?php } else { ?>
300
+ <td><?php echo esc_html( print_r( $meta[ 'meta_value' ], true ) ); ?></td>
301
+ <?php } ?>
302
+ </tr>
303
+ <?php $order ++;
304
  }
305
+ } ?>
306
+ </tbody>
307
+ </table>
308
+ <?php
309
+ endif;
310
+
311
+ if ( $this->is_enabled_section('wpglobus_options') ) :
312
+ /**
313
+ * Output WPGlobus options.
314
+ */
315
+ $query = "SELECT * FROM $wpdb->options WHERE option_name LIKE '%wpglobus%'";
316
+ $results = $wpdb->get_results( $query );
317
+ ?>
318
+ <table class="table3" cellspacing="0">
319
+ <caption><strong><?php echo '"SELECT * FROM $wpdb->options WHERE option_name LIKE \'%wpglobus%\'"'; ?></strong></caption>
320
+ <caption><?php echo 'Option count: ' . count( $results ); ?></caption>
321
+ <thead>
322
  <tr>
323
+ <th><strong>Option ID</strong></th>
324
+ <th><strong>Option Name</strong></th>
325
+ <th><strong>Option Value</strong></th>
 
 
 
 
 
 
326
  </tr>
327
+ </thead>
328
+ <tbody>
329
+ <?php
330
+
331
+ $order = 1;
332
+
333
+ foreach ( $results as $option_key => $option ) {
334
+ $code = false;
335
+ if ( is_array( $option->option_value ) ) {
336
+ foreach ( $option->option_value as $key => $value ) {
337
+ $option->option_value[ $key ] = htmlspecialchars( $value );
338
+ }
339
+ } elseif ( is_string( $option->option_value ) ) {
340
+ $option->option_value = htmlspecialchars( $option->option_value );
341
+ }
342
+ ?>
343
+ <tr>
344
+ <td><?php echo esc_html( $option->option_id ); ?></td>
345
+ <td><?php echo esc_html( print_r( $option->option_name, true ) ); ?></td>
346
+ <?php if ( $code ) { ?>
347
+ <td>
348
+ <pre><?php echo esc_html( print_r( $option->option_value, true ) ); ?></pre>
349
+ </td>
350
+ <?php } else { ?>
351
+ <td><?php echo esc_html( print_r( $option->option_value, true ) ); ?></td>
352
+ <?php } ?>
353
+ </tr>
354
+ <?php $order ++; ?>
355
+ <?php } ?>
356
+ </tbody>
357
+ </table><?php
358
+ endif; ?>
359
  </div>
360
 
361
  <?php
includes/admin/wpglobus-admin.php CHANGED
@@ -18,11 +18,14 @@ WPGlobus_Admin_Central::construct();
18
  require_once dirname( __FILE__ ) . '/register-post-types/class-wpglobus-register-post-types.php';
19
  WPGlobus_Register_Post_Types::construct();
20
 
21
- if ( ! empty( $_GET['wpglobus-debug'] ) && 'godmode' === $_GET['wpglobus-debug'] ) { // WPCS: input var ok, sanitization ok.
22
  /**
23
  * To load debug info
24
  * site/wp-admin/post.php?post={{post_ID}}&action=edit&wpglobus-debug=godmode
 
 
25
  */
26
  require_once dirname( __FILE__ ) . '/debug/class-wpglobus-admin-debug.php';
27
  WPGlobus_Admin_Debug::get_instance();
28
  }
 
18
  require_once dirname( __FILE__ ) . '/register-post-types/class-wpglobus-register-post-types.php';
19
  WPGlobus_Register_Post_Types::construct();
20
 
21
+ if ( isset( $_GET['wpglobus-debug'] ) ) { // WPCS: input var ok, sanitization ok.
22
  /**
23
  * To load debug info
24
  * site/wp-admin/post.php?post={{post_ID}}&action=edit&wpglobus-debug=godmode
25
+ * or
26
+ * site/wp-admin/post.php?post={{post_ID}}&action=edit&wpglobus-debug=meta
27
  */
28
  require_once dirname( __FILE__ ) . '/debug/class-wpglobus-admin-debug.php';
29
  WPGlobus_Admin_Debug::get_instance();
30
  }
31
+
includes/builders/class-wpglobus-builder-update-post.php ADDED
@@ -0,0 +1,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * File: class-wpglobus-builder-update-post.php
4
+ *
5
+ * @since 2.2.35
6
+ *
7
+ * @package WPGlobus\Builders
8
+ * @author Alex Gor(alexgff)
9
+ */
10
+
11
+ /**
12
+ * Class WPGlobus_Builder_Update_Post.
13
+ */
14
+ if ( ! class_exists( 'WPGlobus_Builder_Update_Post' ) ) :
15
+
16
+ class WPGlobus_Builder_Update_Post {
17
+
18
+ /**
19
+ * Builder ID.
20
+ */
21
+ protected $id = null;
22
+
23
+ /**
24
+ * Constructor.
25
+ */
26
+ public function __construct( $id ) {
27
+
28
+ $this->id = $id;
29
+
30
+ /**
31
+ * Do not start for `gutenberg`.
32
+ * The block editor prohibits saving post with an empty post title from post edit page.
33
+ */
34
+ if ( 'gutenberg' == $this->id ) {
35
+ return;
36
+ }
37
+
38
+ add_filter( 'wp_insert_post_empty_content', array( $this, 'filter__post_empty_content' ), 10, 2);
39
+ }
40
+
41
+ /**
42
+ * Filters whether the post should be considered "empty".
43
+ *
44
+ * @see wp-includes\post.php
45
+ *
46
+ * @param bool $maybe_empty Whether the post should be considered "empty".
47
+ * @param array $postarr Array of post data.
48
+ */
49
+ public function filter__post_empty_content( $maybe_empty, $postarr ) {
50
+
51
+ if ( WPGlobus::Config()->builder->is_default_language() ) {
52
+ return $maybe_empty;
53
+ }
54
+
55
+ /**
56
+ * Don't return a truthy value for extra language.
57
+ */
58
+ return false;
59
+ }
60
+ }
61
+
62
+ endif;
includes/builders/elementor/class-wpglobus-elementor-update-post.php CHANGED
@@ -12,13 +12,15 @@
12
  if ( ! class_exists( 'WPGlobus_elementor_Update_Post' ) ) :
13
 
14
  // phpcs:ignore PEAR.NamingConventions
15
- class WPGlobus_elementor_Update_Post {
16
-
17
  /**
18
  * Constructor.
19
  */
20
  public function __construct() {
21
 
 
 
22
  /**
23
  * @see_file wpglobus\includes\class-wpglobus.php
24
  */
12
  if ( ! class_exists( 'WPGlobus_elementor_Update_Post' ) ) :
13
 
14
  // phpcs:ignore PEAR.NamingConventions
15
+ class WPGlobus_elementor_Update_Post extends WPGlobus_Builder_Update_Post {
16
+
17
  /**
18
  * Constructor.
19
  */
20
  public function __construct() {
21
 
22
+ parent::__construct( 'elementor' );
23
+
24
  /**
25
  * @see_file wpglobus\includes\class-wpglobus.php
26
  */
includes/builders/gutenberg/class-wpglobus-gutenberg-update-post.php CHANGED
@@ -11,7 +11,7 @@ if ( ! class_exists( 'WPGlobus_Gutenberg_Update_Post' ) ) :
11
  /**
12
  * Class WPGlobus_Gutenberg_Update_Post.
13
  */
14
- class WPGlobus_Gutenberg_Update_Post {
15
 
16
  /** @var string */
17
  protected $language = null;
@@ -24,6 +24,8 @@ if ( ! class_exists( 'WPGlobus_Gutenberg_Update_Post' ) ) :
24
  */
25
  public function __construct() {
26
 
 
 
27
  /**
28
  * @todo to save meta see request ($_REQUEST)
29
  * post.php?post=259&action=edit&classic-editor=1&meta_box=1
11
  /**
12
  * Class WPGlobus_Gutenberg_Update_Post.
13
  */
14
+ class WPGlobus_Gutenberg_Update_Post extends WPGlobus_Builder_Update_Post {
15
 
16
  /** @var string */
17
  protected $language = null;
24
  */
25
  public function __construct() {
26
 
27
+ parent::__construct( 'gutenberg' );
28
+
29
  /**
30
  * @todo to save meta see request ($_REQUEST)
31
  * post.php?post=259&action=edit&classic-editor=1&meta_box=1
includes/builders/js_composer/class-wpglobus-js_composer-update-post.php CHANGED
@@ -13,13 +13,15 @@
13
  if ( ! class_exists( 'WPGlobus_js_composer_Update_Post' ) ) :
14
 
15
  // phpcs:ignore PEAR.NamingConventions
16
- class WPGlobus_js_composer_Update_Post {
17
 
18
  /**
19
  * Constructor.
20
  */
21
  public function __construct() {
22
 
 
 
23
  /**
24
  * @see_file wpglobus\includes\class-wpglobus.php
25
  */
13
  if ( ! class_exists( 'WPGlobus_js_composer_Update_Post' ) ) :
14
 
15
  // phpcs:ignore PEAR.NamingConventions
16
+ class WPGlobus_js_composer_Update_Post extends WPGlobus_Builder_Update_Post {
17
 
18
  /**
19
  * Constructor.
20
  */
21
  public function __construct() {
22
 
23
+ parent::__construct( 'js_composer' );
24
+
25
  /**
26
  * @see_file wpglobus\includes\class-wpglobus.php
27
  */
includes/builders/yoast_seo/class-wpglobus-yoast_seo-update-post.php CHANGED
@@ -13,7 +13,7 @@
13
  if ( ! class_exists( 'WPGlobus_yoast_seo_Update_Post' ) ) :
14
 
15
  // phpcs:ignore PEAR.NamingConventions
16
- class WPGlobus_yoast_seo_Update_Post {
17
 
18
  /**
19
  * Current taxonomy.
@@ -30,6 +30,8 @@ if ( ! class_exists( 'WPGlobus_yoast_seo_Update_Post' ) ) :
30
  */
31
  public function __construct() {
32
 
 
 
33
  global $pagenow;
34
 
35
  if ( 'edit-tags.php' === $pagenow && 'editedtag' === $_POST['action'] ) { // phpcs:ignore WordPress.CSRF.NonceVerification
13
  if ( ! class_exists( 'WPGlobus_yoast_seo_Update_Post' ) ) :
14
 
15
  // phpcs:ignore PEAR.NamingConventions
16
+ class WPGlobus_yoast_seo_Update_Post extends WPGlobus_Builder_Update_Post {
17
 
18
  /**
19
  * Current taxonomy.
30
  */
31
  public function __construct() {
32
 
33
+ parent::__construct( 'yoast_seo' );
34
+
35
  global $pagenow;
36
 
37
  if ( 'edit-tags.php' === $pagenow && 'editedtag' === $_POST['action'] ) { // phpcs:ignore WordPress.CSRF.NonceVerification
includes/class-wpglobus.php CHANGED
@@ -355,6 +355,11 @@ class WPGlobus {
355
 
356
  if ( 'gutenberg' === self::Config()->builder->get_id() ) {
357
 
 
 
 
 
 
358
  require_once dirname( __FILE__ ) . '/builders/gutenberg/class-wpglobus-gutenberg-update-post.php';
359
  new WPGlobus_Gutenberg_Update_Post();
360
 
@@ -366,6 +371,11 @@ class WPGlobus {
366
 
367
  $_file = dirname( __FILE__ ) . '/builders/' . $id . '/class-wpglobus-' . $id . '-update-post.php';
368
  if ( file_exists( $_file ) ) {
 
 
 
 
 
369
  /** @noinspection PhpIncludeInspection */
370
  require_once $_file;
371
  $class_update_post = "WPGlobus_${id}_Update_Post";
355
 
356
  if ( 'gutenberg' === self::Config()->builder->get_id() ) {
357
 
358
+ /**
359
+ * @since 2.2.35
360
+ */
361
+ require_once dirname( __FILE__ ) . '/builders/class-wpglobus-builder-update-post.php';
362
+
363
  require_once dirname( __FILE__ ) . '/builders/gutenberg/class-wpglobus-gutenberg-update-post.php';
364
  new WPGlobus_Gutenberg_Update_Post();
365
 
371
 
372
  $_file = dirname( __FILE__ ) . '/builders/' . $id . '/class-wpglobus-' . $id . '-update-post.php';
373
  if ( file_exists( $_file ) ) {
374
+ /**
375
+ * @since 2.2.35
376
+ */
377
+ require_once dirname( __FILE__ ) . '/builders/class-wpglobus-builder-update-post.php';
378
+
379
  /** @noinspection PhpIncludeInspection */
380
  require_once $_file;
381
  $class_update_post = "WPGlobus_${id}_Update_Post";
includes/js/wpglobus-admin-debug.js CHANGED
@@ -25,9 +25,22 @@
25
  }, 1000);
26
 
27
  setTimeout(function(){
28
- var h = $('#wpglobus-admin-debug-box .table1').css('height').replace('px', '') * 1;
29
- h += 50;
30
- $('#wpglobus-admin-debug-box .table2').css({'margin-top':h+'px'});
 
 
 
 
 
 
 
 
 
 
 
 
 
31
  }, 1200);
32
  }
33
  };
25
  }, 1000);
26
 
27
  setTimeout(function(){
28
+ var marginTop=0,h1=0,h2=0;
29
+ var $table1 = jQuery('#wpglobus-admin-debug-box .table1');
30
+ if ( $table1.length == 1 ) {
31
+ h1 = $table1.css('height').replace('px', '') * 1;
32
+ marginTop = h1+50;
33
+ }
34
+ var $table2 = jQuery('#wpglobus-admin-debug-box .table2');
35
+ if ( $table2.length == 1 ) {
36
+ $table2.css({'margin-top':marginTop+'px'});
37
+ h2 = $table2.css('height').replace('px', '') * 1;
38
+ marginTop = h1+h2+100;
39
+ }
40
+ var $table3 = jQuery('#wpglobus-admin-debug-box .table3');
41
+ if ( $table3.length == 1 ) {
42
+ $table3.css({'margin-top':marginTop+'px'});
43
+ }
44
  }, 1200);
45
  }
46
  };
includes/js/wpglobus-admin-debug.min.js CHANGED
@@ -1 +1 @@
1
- !function(u){"use strict";if("undefined"!=typeof WPGlobusAdminDebug){var e={init:function(e){setTimeout(function(){u('<a name="debug-box"></a>').appendTo("#wpwrap"),u("#wpglobus-admin-debug-box").detach().appendTo("#wpwrap"),u("#wpglobus-admin-debug-box").css({display:"block"})},1e3),setTimeout(function(){var e=1*u("#wpglobus-admin-debug-box .table1").css("height").replace("px","");e+=50,u("#wpglobus-admin-debug-box .table2").css({"margin-top":e+"px"})},1200)}};WPGlobusAdminDebug=u.extend({},WPGlobusAdminDebug,e),WPGlobusAdminDebug.init()}}(jQuery);
1
+ !function(u){"use strict";if("undefined"!=typeof WPGlobusAdminDebug){var e={init:function(e){setTimeout(function(){u('<a name="debug-box"></a>').appendTo("#wpwrap"),u("#wpglobus-admin-debug-box").detach().appendTo("#wpwrap"),u("#wpglobus-admin-debug-box").css({display:"block"})},1e3),setTimeout(function(){var e=0,u=0,n=jQuery("#wpglobus-admin-debug-box .table1");1==n.length&&(e=(u=1*n.css("height").replace("px",""))+50);var b=jQuery("#wpglobus-admin-debug-box .table2");1==b.length&&(b.css({"margin-top":e+"px"}),e=u+1*b.css("height").replace("px","")+100);var i=jQuery("#wpglobus-admin-debug-box .table3");1==i.length&&i.css({"margin-top":e+"px"})},1200)}};WPGlobusAdminDebug=u.extend({},WPGlobusAdminDebug,e),WPGlobusAdminDebug.init()}}(jQuery);
languages/wpglobus-ar.po CHANGED
@@ -297,7 +297,7 @@ msgstr ""
297
 
298
  #: includes/admin/class-wpglobus-customize-options.php:546,
299
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
300
- #: includes/class-wpglobus.php:1346, wpglobus.php:12, wpglobus.php:18
301
  msgid "WPGlobus"
302
  msgstr "WPGlobus"
303
 
@@ -816,7 +816,7 @@ msgid "To translate permalinks, please activate the module Slug."
816
  msgstr ""
817
 
818
  #: includes/builders/class-wpglobus-builder.php:277,
819
- #: includes/class-wpglobus.php:3612
820
  msgid "Save draft before using extra language."
821
  msgstr ""
822
 
@@ -903,40 +903,40 @@ msgid "Selector type"
903
  msgstr ""
904
 
905
  #. translators: ON/OFF status of WPGlobus on the edit pages.
906
- #: includes/class-wpglobus.php:1320
907
  msgid "OFF"
908
  msgstr ""
909
 
910
- #: includes/class-wpglobus.php:1321
911
  msgid "Turn on"
912
  msgstr ""
913
 
914
  #. translators: ON/OFF status of WPGlobus on the edit pages.
915
- #: includes/class-wpglobus.php:1325
916
  msgid "ON"
917
  msgstr ""
918
 
919
- #: includes/class-wpglobus.php:1326
920
  msgid "Turn off"
921
  msgstr ""
922
 
923
- #: includes/class-wpglobus.php:1509
924
  msgid "You cannot disable the main language."
925
  msgstr ""
926
 
927
- #: includes/class-wpglobus.php:1710
928
  msgid "*) Available after the menu is saved."
929
  msgstr ""
930
 
931
- #: includes/class-wpglobus.php:1727
932
  msgid "Need a multilingual slug?"
933
  msgstr ""
934
 
935
- #: includes/class-wpglobus.php:4051
936
  msgid "You must enable Pretty Permalinks to use WPGlobus."
937
  msgstr ""
938
 
939
- #: includes/class-wpglobus.php:4053
940
  msgid ""
941
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
942
  "default option."
297
 
298
  #: includes/admin/class-wpglobus-customize-options.php:546,
299
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
300
+ #: includes/class-wpglobus.php:1356, wpglobus.php:12, wpglobus.php:18
301
  msgid "WPGlobus"
302
  msgstr "WPGlobus"
303
 
816
  msgstr ""
817
 
818
  #: includes/builders/class-wpglobus-builder.php:277,
819
+ #: includes/class-wpglobus.php:3622
820
  msgid "Save draft before using extra language."
821
  msgstr ""
822
 
903
  msgstr ""
904
 
905
  #. translators: ON/OFF status of WPGlobus on the edit pages.
906
+ #: includes/class-wpglobus.php:1330
907
  msgid "OFF"
908
  msgstr ""
909
 
910
+ #: includes/class-wpglobus.php:1331
911
  msgid "Turn on"
912
  msgstr ""
913
 
914
  #. translators: ON/OFF status of WPGlobus on the edit pages.
915
+ #: includes/class-wpglobus.php:1335
916
  msgid "ON"
917
  msgstr ""
918
 
919
+ #: includes/class-wpglobus.php:1336
920
  msgid "Turn off"
921
  msgstr ""
922
 
923
+ #: includes/class-wpglobus.php:1519
924
  msgid "You cannot disable the main language."
925
  msgstr ""
926
 
927
+ #: includes/class-wpglobus.php:1720
928
  msgid "*) Available after the menu is saved."
929
  msgstr ""
930
 
931
+ #: includes/class-wpglobus.php:1737
932
  msgid "Need a multilingual slug?"
933
  msgstr ""
934
 
935
+ #: includes/class-wpglobus.php:4061
936
  msgid "You must enable Pretty Permalinks to use WPGlobus."
937
  msgstr ""
938
 
939
+ #: includes/class-wpglobus.php:4063
940
  msgid ""
941
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
942
  "default option."
languages/wpglobus-be.po CHANGED
@@ -322,7 +322,7 @@ msgstr "Сохранить и перезагрузить"
322
 
323
  #: includes/admin/class-wpglobus-customize-options.php:546,
324
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
325
- #: includes/class-wpglobus.php:1346, wpglobus.php:12, wpglobus.php:18
326
  msgid "WPGlobus"
327
  msgstr "WPGlobus"
328
 
@@ -867,7 +867,7 @@ msgid "To translate permalinks, please activate the module Slug."
867
  msgstr ""
868
 
869
  #: includes/builders/class-wpglobus-builder.php:277,
870
- #: includes/class-wpglobus.php:3612
871
  msgid "Save draft before using extra language."
872
  msgstr ""
873
 
@@ -954,42 +954,42 @@ msgid "Selector type"
954
  msgstr "Способ выбора языка"
955
 
956
  #. translators: ON/OFF status of WPGlobus on the edit pages.
957
- #: includes/class-wpglobus.php:1320
958
  msgid "OFF"
959
  msgstr ""
960
 
961
- #: includes/class-wpglobus.php:1321
962
  msgid "Turn on"
963
  msgstr ""
964
 
965
  #. translators: ON/OFF status of WPGlobus on the edit pages.
966
- #: includes/class-wpglobus.php:1325
967
  msgid "ON"
968
  msgstr ""
969
 
970
- #: includes/class-wpglobus.php:1326
971
  msgid "Turn off"
972
  msgstr ""
973
 
974
- #: includes/class-wpglobus.php:1509
975
  msgid "You cannot disable the main language."
976
  msgstr "Нельзя отключить основной язык."
977
 
978
- #: includes/class-wpglobus.php:1710
979
  msgid "*) Available after the menu is saved."
980
  msgstr "*) Доступно после сохранения меню."
981
 
982
- #: includes/class-wpglobus.php:1727
983
  msgid "Need a multilingual slug?"
984
  msgstr "Нужен мультиязычный ярлык?"
985
 
986
- #: includes/class-wpglobus.php:4051
987
  msgid "You must enable Pretty Permalinks to use WPGlobus."
988
  msgstr ""
989
  "Чтобы использовать плагин WPGlobus, необходимо включить ЧПУ - постоянные "
990
  "ссылки."
991
 
992
- #: includes/class-wpglobus.php:4053
993
  msgid ""
994
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
995
  "default option."
322
 
323
  #: includes/admin/class-wpglobus-customize-options.php:546,
324
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
325
+ #: includes/class-wpglobus.php:1356, wpglobus.php:12, wpglobus.php:18
326
  msgid "WPGlobus"
327
  msgstr "WPGlobus"
328
 
867
  msgstr ""
868
 
869
  #: includes/builders/class-wpglobus-builder.php:277,
870
+ #: includes/class-wpglobus.php:3622
871
  msgid "Save draft before using extra language."
872
  msgstr ""
873
 
954
  msgstr "Способ выбора языка"
955
 
956
  #. translators: ON/OFF status of WPGlobus on the edit pages.
957
+ #: includes/class-wpglobus.php:1330
958
  msgid "OFF"
959
  msgstr ""
960
 
961
+ #: includes/class-wpglobus.php:1331
962
  msgid "Turn on"
963
  msgstr ""
964
 
965
  #. translators: ON/OFF status of WPGlobus on the edit pages.
966
+ #: includes/class-wpglobus.php:1335
967
  msgid "ON"
968
  msgstr ""
969
 
970
+ #: includes/class-wpglobus.php:1336
971
  msgid "Turn off"
972
  msgstr ""
973
 
974
+ #: includes/class-wpglobus.php:1519
975
  msgid "You cannot disable the main language."
976
  msgstr "Нельзя отключить основной язык."
977
 
978
+ #: includes/class-wpglobus.php:1720
979
  msgid "*) Available after the menu is saved."
980
  msgstr "*) Доступно после сохранения меню."
981
 
982
+ #: includes/class-wpglobus.php:1737
983
  msgid "Need a multilingual slug?"
984
  msgstr "Нужен мультиязычный ярлык?"
985
 
986
+ #: includes/class-wpglobus.php:4061
987
  msgid "You must enable Pretty Permalinks to use WPGlobus."
988
  msgstr ""
989
  "Чтобы использовать плагин WPGlobus, необходимо включить ЧПУ - постоянные "
990
  "ссылки."
991
 
992
+ #: includes/class-wpglobus.php:4063
993
  msgid ""
994
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
995
  "default option."
languages/wpglobus-bg_BG.po CHANGED
@@ -273,7 +273,7 @@ msgstr ""
273
 
274
  #: includes/admin/class-wpglobus-customize-options.php:546,
275
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
276
- #: includes/class-wpglobus.php:1346, wpglobus.php:12, wpglobus.php:18
277
  msgid "WPGlobus"
278
  msgstr ""
279
 
@@ -792,7 +792,7 @@ msgid "To translate permalinks, please activate the module Slug."
792
  msgstr ""
793
 
794
  #: includes/builders/class-wpglobus-builder.php:277,
795
- #: includes/class-wpglobus.php:3612
796
  msgid "Save draft before using extra language."
797
  msgstr ""
798
 
@@ -879,40 +879,40 @@ msgid "Selector type"
879
  msgstr ""
880
 
881
  #. translators: ON/OFF status of WPGlobus on the edit pages.
882
- #: includes/class-wpglobus.php:1320
883
  msgid "OFF"
884
  msgstr ""
885
 
886
- #: includes/class-wpglobus.php:1321
887
  msgid "Turn on"
888
  msgstr ""
889
 
890
  #. translators: ON/OFF status of WPGlobus on the edit pages.
891
- #: includes/class-wpglobus.php:1325
892
  msgid "ON"
893
  msgstr ""
894
 
895
- #: includes/class-wpglobus.php:1326
896
  msgid "Turn off"
897
  msgstr ""
898
 
899
- #: includes/class-wpglobus.php:1509
900
  msgid "You cannot disable the main language."
901
  msgstr ""
902
 
903
- #: includes/class-wpglobus.php:1710
904
  msgid "*) Available after the menu is saved."
905
  msgstr ""
906
 
907
- #: includes/class-wpglobus.php:1727
908
  msgid "Need a multilingual slug?"
909
  msgstr ""
910
 
911
- #: includes/class-wpglobus.php:4051
912
  msgid "You must enable Pretty Permalinks to use WPGlobus."
913
  msgstr ""
914
 
915
- #: includes/class-wpglobus.php:4053
916
  msgid ""
917
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
918
  "default option."
273
 
274
  #: includes/admin/class-wpglobus-customize-options.php:546,
275
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
276
+ #: includes/class-wpglobus.php:1356, wpglobus.php:12, wpglobus.php:18
277
  msgid "WPGlobus"
278
  msgstr ""
279
 
792
  msgstr ""
793
 
794
  #: includes/builders/class-wpglobus-builder.php:277,
795
+ #: includes/class-wpglobus.php:3622
796
  msgid "Save draft before using extra language."
797
  msgstr ""
798
 
879
  msgstr ""
880
 
881
  #. translators: ON/OFF status of WPGlobus on the edit pages.
882
+ #: includes/class-wpglobus.php:1330
883
  msgid "OFF"
884
  msgstr ""
885
 
886
+ #: includes/class-wpglobus.php:1331
887
  msgid "Turn on"
888
  msgstr ""
889
 
890
  #. translators: ON/OFF status of WPGlobus on the edit pages.
891
+ #: includes/class-wpglobus.php:1335
892
  msgid "ON"
893
  msgstr ""
894
 
895
+ #: includes/class-wpglobus.php:1336
896
  msgid "Turn off"
897
  msgstr ""
898
 
899
+ #: includes/class-wpglobus.php:1519
900
  msgid "You cannot disable the main language."
901
  msgstr ""
902
 
903
+ #: includes/class-wpglobus.php:1720
904
  msgid "*) Available after the menu is saved."
905
  msgstr ""
906
 
907
+ #: includes/class-wpglobus.php:1737
908
  msgid "Need a multilingual slug?"
909
  msgstr ""
910
 
911
+ #: includes/class-wpglobus.php:4061
912
  msgid "You must enable Pretty Permalinks to use WPGlobus."
913
  msgstr ""
914
 
915
+ #: includes/class-wpglobus.php:4063
916
  msgid ""
917
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
918
  "default option."
languages/wpglobus-de_CH.po CHANGED
@@ -293,7 +293,7 @@ msgstr ""
293
 
294
  #: includes/admin/class-wpglobus-customize-options.php:546,
295
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
296
- #: includes/class-wpglobus.php:1346, wpglobus.php:12, wpglobus.php:18
297
  msgid "WPGlobus"
298
  msgstr "WPGlobus"
299
 
@@ -828,7 +828,7 @@ msgid "To translate permalinks, please activate the module Slug."
828
  msgstr ""
829
 
830
  #: includes/builders/class-wpglobus-builder.php:277,
831
- #: includes/class-wpglobus.php:3612
832
  msgid "Save draft before using extra language."
833
  msgstr ""
834
 
@@ -915,41 +915,41 @@ msgid "Selector type"
915
  msgstr "Selektor-Typ"
916
 
917
  #. translators: ON/OFF status of WPGlobus on the edit pages.
918
- #: includes/class-wpglobus.php:1320
919
  msgid "OFF"
920
  msgstr ""
921
 
922
- #: includes/class-wpglobus.php:1321
923
  msgid "Turn on"
924
  msgstr ""
925
 
926
  #. translators: ON/OFF status of WPGlobus on the edit pages.
927
- #: includes/class-wpglobus.php:1325
928
  msgid "ON"
929
  msgstr ""
930
 
931
- #: includes/class-wpglobus.php:1326
932
  msgid "Turn off"
933
  msgstr ""
934
 
935
- #: includes/class-wpglobus.php:1509
936
  msgid "You cannot disable the main language."
937
  msgstr "Die Hauptsprache kann nicht deaktiviert werden."
938
 
939
- #: includes/class-wpglobus.php:1710
940
  msgid "*) Available after the menu is saved."
941
  msgstr "*) Verfügbar nachdem das Menü gespeichert wurde."
942
 
943
- #: includes/class-wpglobus.php:1727
944
  msgid "Need a multilingual slug?"
945
  msgstr ""
946
 
947
- #: includes/class-wpglobus.php:4051
948
  msgid "You must enable Pretty Permalinks to use WPGlobus."
949
  msgstr ""
950
  "Sie müssen schöne Permalinks aktivieren um WPGlobus verwenden zu können."
951
 
952
- #: includes/class-wpglobus.php:4053
953
  msgid ""
954
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
955
  "default option."
293
 
294
  #: includes/admin/class-wpglobus-customize-options.php:546,
295
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
296
+ #: includes/class-wpglobus.php:1356, wpglobus.php:12, wpglobus.php:18
297
  msgid "WPGlobus"
298
  msgstr "WPGlobus"
299
 
828
  msgstr ""
829
 
830
  #: includes/builders/class-wpglobus-builder.php:277,
831
+ #: includes/class-wpglobus.php:3622
832
  msgid "Save draft before using extra language."
833
  msgstr ""
834
 
915
  msgstr "Selektor-Typ"
916
 
917
  #. translators: ON/OFF status of WPGlobus on the edit pages.
918
+ #: includes/class-wpglobus.php:1330
919
  msgid "OFF"
920
  msgstr ""
921
 
922
+ #: includes/class-wpglobus.php:1331
923
  msgid "Turn on"
924
  msgstr ""
925
 
926
  #. translators: ON/OFF status of WPGlobus on the edit pages.
927
+ #: includes/class-wpglobus.php:1335
928
  msgid "ON"
929
  msgstr ""
930
 
931
+ #: includes/class-wpglobus.php:1336
932
  msgid "Turn off"
933
  msgstr ""
934
 
935
+ #: includes/class-wpglobus.php:1519
936
  msgid "You cannot disable the main language."
937
  msgstr "Die Hauptsprache kann nicht deaktiviert werden."
938
 
939
+ #: includes/class-wpglobus.php:1720
940
  msgid "*) Available after the menu is saved."
941
  msgstr "*) Verfügbar nachdem das Menü gespeichert wurde."
942
 
943
+ #: includes/class-wpglobus.php:1737
944
  msgid "Need a multilingual slug?"
945
  msgstr ""
946
 
947
+ #: includes/class-wpglobus.php:4061
948
  msgid "You must enable Pretty Permalinks to use WPGlobus."
949
  msgstr ""
950
  "Sie müssen schöne Permalinks aktivieren um WPGlobus verwenden zu können."
951
 
952
+ #: includes/class-wpglobus.php:4063
953
  msgid ""
954
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
955
  "default option."
languages/wpglobus-de_DE.po CHANGED
@@ -293,7 +293,7 @@ msgstr ""
293
 
294
  #: includes/admin/class-wpglobus-customize-options.php:546,
295
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
296
- #: includes/class-wpglobus.php:1346, wpglobus.php:12, wpglobus.php:18
297
  msgid "WPGlobus"
298
  msgstr "WPGlobus"
299
 
@@ -829,7 +829,7 @@ msgid "To translate permalinks, please activate the module Slug."
829
  msgstr ""
830
 
831
  #: includes/builders/class-wpglobus-builder.php:277,
832
- #: includes/class-wpglobus.php:3612
833
  msgid "Save draft before using extra language."
834
  msgstr ""
835
 
@@ -916,41 +916,41 @@ msgid "Selector type"
916
  msgstr "Selektor-Typ"
917
 
918
  #. translators: ON/OFF status of WPGlobus on the edit pages.
919
- #: includes/class-wpglobus.php:1320
920
  msgid "OFF"
921
  msgstr "AUS"
922
 
923
- #: includes/class-wpglobus.php:1321
924
  msgid "Turn on"
925
  msgstr ""
926
 
927
  #. translators: ON/OFF status of WPGlobus on the edit pages.
928
- #: includes/class-wpglobus.php:1325
929
  msgid "ON"
930
  msgstr "EIN"
931
 
932
- #: includes/class-wpglobus.php:1326
933
  msgid "Turn off"
934
  msgstr ""
935
 
936
- #: includes/class-wpglobus.php:1509
937
  msgid "You cannot disable the main language."
938
  msgstr "Die Hauptsprache kann nicht deaktiviert werden."
939
 
940
- #: includes/class-wpglobus.php:1710
941
  msgid "*) Available after the menu is saved."
942
  msgstr "*) Verfügbar nachdem das Menü gespeichert wurde."
943
 
944
- #: includes/class-wpglobus.php:1727
945
  msgid "Need a multilingual slug?"
946
  msgstr ""
947
 
948
- #: includes/class-wpglobus.php:4051
949
  msgid "You must enable Pretty Permalinks to use WPGlobus."
950
  msgstr ""
951
  "Sie müssen schöne Permalinks aktivieren um WPGlobus verwenden zu können."
952
 
953
- #: includes/class-wpglobus.php:4053
954
  msgid ""
955
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
956
  "default option."
293
 
294
  #: includes/admin/class-wpglobus-customize-options.php:546,
295
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
296
+ #: includes/class-wpglobus.php:1356, wpglobus.php:12, wpglobus.php:18
297
  msgid "WPGlobus"
298
  msgstr "WPGlobus"
299
 
829
  msgstr ""
830
 
831
  #: includes/builders/class-wpglobus-builder.php:277,
832
+ #: includes/class-wpglobus.php:3622
833
  msgid "Save draft before using extra language."
834
  msgstr ""
835
 
916
  msgstr "Selektor-Typ"
917
 
918
  #. translators: ON/OFF status of WPGlobus on the edit pages.
919
+ #: includes/class-wpglobus.php:1330
920
  msgid "OFF"
921
  msgstr "AUS"
922
 
923
+ #: includes/class-wpglobus.php:1331
924
  msgid "Turn on"
925
  msgstr ""
926
 
927
  #. translators: ON/OFF status of WPGlobus on the edit pages.
928
+ #: includes/class-wpglobus.php:1335
929
  msgid "ON"
930
  msgstr "EIN"
931
 
932
+ #: includes/class-wpglobus.php:1336
933
  msgid "Turn off"
934
  msgstr ""
935
 
936
+ #: includes/class-wpglobus.php:1519
937
  msgid "You cannot disable the main language."
938
  msgstr "Die Hauptsprache kann nicht deaktiviert werden."
939
 
940
+ #: includes/class-wpglobus.php:1720
941
  msgid "*) Available after the menu is saved."
942
  msgstr "*) Verfügbar nachdem das Menü gespeichert wurde."
943
 
944
+ #: includes/class-wpglobus.php:1737
945
  msgid "Need a multilingual slug?"
946
  msgstr ""
947
 
948
+ #: includes/class-wpglobus.php:4061
949
  msgid "You must enable Pretty Permalinks to use WPGlobus."
950
  msgstr ""
951
  "Sie müssen schöne Permalinks aktivieren um WPGlobus verwenden zu können."
952
 
953
+ #: includes/class-wpglobus.php:4063
954
  msgid ""
955
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
956
  "default option."
languages/wpglobus-el.po CHANGED
@@ -274,7 +274,7 @@ msgstr ""
274
 
275
  #: includes/admin/class-wpglobus-customize-options.php:546,
276
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
277
- #: includes/class-wpglobus.php:1346, wpglobus.php:12, wpglobus.php:18
278
  msgid "WPGlobus"
279
  msgstr "WPGlobus"
280
 
@@ -793,7 +793,7 @@ msgid "To translate permalinks, please activate the module Slug."
793
  msgstr ""
794
 
795
  #: includes/builders/class-wpglobus-builder.php:277,
796
- #: includes/class-wpglobus.php:3612
797
  msgid "Save draft before using extra language."
798
  msgstr ""
799
 
@@ -880,40 +880,40 @@ msgid "Selector type"
880
  msgstr ""
881
 
882
  #. translators: ON/OFF status of WPGlobus on the edit pages.
883
- #: includes/class-wpglobus.php:1320
884
  msgid "OFF"
885
  msgstr ""
886
 
887
- #: includes/class-wpglobus.php:1321
888
  msgid "Turn on"
889
  msgstr ""
890
 
891
  #. translators: ON/OFF status of WPGlobus on the edit pages.
892
- #: includes/class-wpglobus.php:1325
893
  msgid "ON"
894
  msgstr ""
895
 
896
- #: includes/class-wpglobus.php:1326
897
  msgid "Turn off"
898
  msgstr ""
899
 
900
- #: includes/class-wpglobus.php:1509
901
  msgid "You cannot disable the main language."
902
  msgstr ""
903
 
904
- #: includes/class-wpglobus.php:1710
905
  msgid "*) Available after the menu is saved."
906
  msgstr ""
907
 
908
- #: includes/class-wpglobus.php:1727
909
  msgid "Need a multilingual slug?"
910
  msgstr ""
911
 
912
- #: includes/class-wpglobus.php:4051
913
  msgid "You must enable Pretty Permalinks to use WPGlobus."
914
  msgstr ""
915
 
916
- #: includes/class-wpglobus.php:4053
917
  msgid ""
918
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
919
  "default option."
274
 
275
  #: includes/admin/class-wpglobus-customize-options.php:546,
276
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
277
+ #: includes/class-wpglobus.php:1356, wpglobus.php:12, wpglobus.php:18
278
  msgid "WPGlobus"
279
  msgstr "WPGlobus"
280
 
793
  msgstr ""
794
 
795
  #: includes/builders/class-wpglobus-builder.php:277,
796
+ #: includes/class-wpglobus.php:3622
797
  msgid "Save draft before using extra language."
798
  msgstr ""
799
 
880
  msgstr ""
881
 
882
  #. translators: ON/OFF status of WPGlobus on the edit pages.
883
+ #: includes/class-wpglobus.php:1330
884
  msgid "OFF"
885
  msgstr ""
886
 
887
+ #: includes/class-wpglobus.php:1331
888
  msgid "Turn on"
889
  msgstr ""
890
 
891
  #. translators: ON/OFF status of WPGlobus on the edit pages.
892
+ #: includes/class-wpglobus.php:1335
893
  msgid "ON"
894
  msgstr ""
895
 
896
+ #: includes/class-wpglobus.php:1336
897
  msgid "Turn off"
898
  msgstr ""
899
 
900
+ #: includes/class-wpglobus.php:1519
901
  msgid "You cannot disable the main language."
902
  msgstr ""
903
 
904
+ #: includes/class-wpglobus.php:1720
905
  msgid "*) Available after the menu is saved."
906
  msgstr ""
907
 
908
+ #: includes/class-wpglobus.php:1737
909
  msgid "Need a multilingual slug?"
910
  msgstr ""
911
 
912
+ #: includes/class-wpglobus.php:4061
913
  msgid "You must enable Pretty Permalinks to use WPGlobus."
914
  msgstr ""
915
 
916
+ #: includes/class-wpglobus.php:4063
917
  msgid ""
918
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
919
  "default option."
languages/wpglobus-en_AU.po CHANGED
@@ -319,7 +319,7 @@ msgstr "Save &amp; Reload"
319
 
320
  #: includes/admin/class-wpglobus-customize-options.php:546,
321
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
322
- #: includes/class-wpglobus.php:1346, wpglobus.php:12, wpglobus.php:18
323
  msgid "WPGlobus"
324
  msgstr "WPGlobus"
325
 
@@ -867,7 +867,7 @@ msgid "To translate permalinks, please activate the module Slug."
867
  msgstr ""
868
 
869
  #: includes/builders/class-wpglobus-builder.php:277,
870
- #: includes/class-wpglobus.php:3612
871
  msgid "Save draft before using extra language."
872
  msgstr ""
873
 
@@ -954,40 +954,40 @@ msgid "Selector type"
954
  msgstr "Selector type"
955
 
956
  #. translators: ON/OFF status of WPGlobus on the edit pages.
957
- #: includes/class-wpglobus.php:1320
958
  msgid "OFF"
959
  msgstr ""
960
 
961
- #: includes/class-wpglobus.php:1321
962
  msgid "Turn on"
963
  msgstr ""
964
 
965
  #. translators: ON/OFF status of WPGlobus on the edit pages.
966
- #: includes/class-wpglobus.php:1325
967
  msgid "ON"
968
  msgstr ""
969
 
970
- #: includes/class-wpglobus.php:1326
971
  msgid "Turn off"
972
  msgstr ""
973
 
974
- #: includes/class-wpglobus.php:1509
975
  msgid "You cannot disable the main language."
976
  msgstr "You cannot disable the main language."
977
 
978
- #: includes/class-wpglobus.php:1710
979
  msgid "*) Available after the menu is saved."
980
  msgstr "*) Available after the menu is saved."
981
 
982
- #: includes/class-wpglobus.php:1727
983
  msgid "Need a multilingual slug?"
984
  msgstr "Need a multilingual slug?"
985
 
986
- #: includes/class-wpglobus.php:4051
987
  msgid "You must enable Pretty Permalinks to use WPGlobus."
988
  msgstr "You must enable Pretty Permalinks to use WPGlobus."
989
 
990
- #: includes/class-wpglobus.php:4053
991
  msgid ""
992
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
993
  "default option."
319
 
320
  #: includes/admin/class-wpglobus-customize-options.php:546,
321
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
322
+ #: includes/class-wpglobus.php:1356, wpglobus.php:12, wpglobus.php:18
323
  msgid "WPGlobus"
324
  msgstr "WPGlobus"
325
 
867
  msgstr ""
868
 
869
  #: includes/builders/class-wpglobus-builder.php:277,
870
+ #: includes/class-wpglobus.php:3622
871
  msgid "Save draft before using extra language."
872
  msgstr ""
873
 
954
  msgstr "Selector type"
955
 
956
  #. translators: ON/OFF status of WPGlobus on the edit pages.
957
+ #: includes/class-wpglobus.php:1330
958
  msgid "OFF"
959
  msgstr ""
960
 
961
+ #: includes/class-wpglobus.php:1331
962
  msgid "Turn on"
963
  msgstr ""
964
 
965
  #. translators: ON/OFF status of WPGlobus on the edit pages.
966
+ #: includes/class-wpglobus.php:1335
967
  msgid "ON"
968
  msgstr ""
969
 
970
+ #: includes/class-wpglobus.php:1336
971
  msgid "Turn off"
972
  msgstr ""
973
 
974
+ #: includes/class-wpglobus.php:1519
975
  msgid "You cannot disable the main language."
976
  msgstr "You cannot disable the main language."
977
 
978
+ #: includes/class-wpglobus.php:1720
979
  msgid "*) Available after the menu is saved."
980
  msgstr "*) Available after the menu is saved."
981
 
982
+ #: includes/class-wpglobus.php:1737
983
  msgid "Need a multilingual slug?"
984
  msgstr "Need a multilingual slug?"
985
 
986
+ #: includes/class-wpglobus.php:4061
987
  msgid "You must enable Pretty Permalinks to use WPGlobus."
988
  msgstr "You must enable Pretty Permalinks to use WPGlobus."
989
 
990
+ #: includes/class-wpglobus.php:4063
991
  msgid ""
992
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
993
  "default option."
languages/wpglobus-en_CA.po CHANGED
@@ -318,7 +318,7 @@ msgstr "Save &amp; Reload"
318
 
319
  #: includes/admin/class-wpglobus-customize-options.php:546,
320
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
321
- #: includes/class-wpglobus.php:1346, wpglobus.php:12, wpglobus.php:18
322
  msgid "WPGlobus"
323
  msgstr "WPGlobus"
324
 
@@ -866,7 +866,7 @@ msgid "To translate permalinks, please activate the module Slug."
866
  msgstr ""
867
 
868
  #: includes/builders/class-wpglobus-builder.php:277,
869
- #: includes/class-wpglobus.php:3612
870
  msgid "Save draft before using extra language."
871
  msgstr ""
872
 
@@ -953,40 +953,40 @@ msgid "Selector type"
953
  msgstr "Selector type"
954
 
955
  #. translators: ON/OFF status of WPGlobus on the edit pages.
956
- #: includes/class-wpglobus.php:1320
957
  msgid "OFF"
958
  msgstr ""
959
 
960
- #: includes/class-wpglobus.php:1321
961
  msgid "Turn on"
962
  msgstr ""
963
 
964
  #. translators: ON/OFF status of WPGlobus on the edit pages.
965
- #: includes/class-wpglobus.php:1325
966
  msgid "ON"
967
  msgstr ""
968
 
969
- #: includes/class-wpglobus.php:1326
970
  msgid "Turn off"
971
  msgstr ""
972
 
973
- #: includes/class-wpglobus.php:1509
974
  msgid "You cannot disable the main language."
975
  msgstr "You cannot disable the main language."
976
 
977
- #: includes/class-wpglobus.php:1710
978
  msgid "*) Available after the menu is saved."
979
  msgstr "*) Available after the menu is saved."
980
 
981
- #: includes/class-wpglobus.php:1727
982
  msgid "Need a multilingual slug?"
983
  msgstr "Need a multilingual slug?"
984
 
985
- #: includes/class-wpglobus.php:4051
986
  msgid "You must enable Pretty Permalinks to use WPGlobus."
987
  msgstr "You must enable Pretty Permalinks to use WPGlobus."
988
 
989
- #: includes/class-wpglobus.php:4053
990
  msgid ""
991
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
992
  "default option."
318
 
319
  #: includes/admin/class-wpglobus-customize-options.php:546,
320
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
321
+ #: includes/class-wpglobus.php:1356, wpglobus.php:12, wpglobus.php:18
322
  msgid "WPGlobus"
323
  msgstr "WPGlobus"
324
 
866
  msgstr ""
867
 
868
  #: includes/builders/class-wpglobus-builder.php:277,
869
+ #: includes/class-wpglobus.php:3622
870
  msgid "Save draft before using extra language."
871
  msgstr ""
872
 
953
  msgstr "Selector type"
954
 
955
  #. translators: ON/OFF status of WPGlobus on the edit pages.
956
+ #: includes/class-wpglobus.php:1330
957
  msgid "OFF"
958
  msgstr ""
959
 
960
+ #: includes/class-wpglobus.php:1331
961
  msgid "Turn on"
962
  msgstr ""
963
 
964
  #. translators: ON/OFF status of WPGlobus on the edit pages.
965
+ #: includes/class-wpglobus.php:1335
966
  msgid "ON"
967
  msgstr ""
968
 
969
+ #: includes/class-wpglobus.php:1336
970
  msgid "Turn off"
971
  msgstr ""
972
 
973
+ #: includes/class-wpglobus.php:1519
974
  msgid "You cannot disable the main language."
975
  msgstr "You cannot disable the main language."
976
 
977
+ #: includes/class-wpglobus.php:1720
978
  msgid "*) Available after the menu is saved."
979
  msgstr "*) Available after the menu is saved."
980
 
981
+ #: includes/class-wpglobus.php:1737
982
  msgid "Need a multilingual slug?"
983
  msgstr "Need a multilingual slug?"
984
 
985
+ #: includes/class-wpglobus.php:4061
986
  msgid "You must enable Pretty Permalinks to use WPGlobus."
987
  msgstr "You must enable Pretty Permalinks to use WPGlobus."
988
 
989
+ #: includes/class-wpglobus.php:4063
990
  msgid ""
991
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
992
  "default option."
languages/wpglobus-en_GB.po CHANGED
@@ -319,7 +319,7 @@ msgstr "Save &amp; Reload"
319
 
320
  #: includes/admin/class-wpglobus-customize-options.php:546,
321
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
322
- #: includes/class-wpglobus.php:1346, wpglobus.php:12, wpglobus.php:18
323
  msgid "WPGlobus"
324
  msgstr "WPGlobus"
325
 
@@ -867,7 +867,7 @@ msgid "To translate permalinks, please activate the module Slug."
867
  msgstr ""
868
 
869
  #: includes/builders/class-wpglobus-builder.php:277,
870
- #: includes/class-wpglobus.php:3612
871
  msgid "Save draft before using extra language."
872
  msgstr ""
873
 
@@ -954,40 +954,40 @@ msgid "Selector type"
954
  msgstr "Selector type"
955
 
956
  #. translators: ON/OFF status of WPGlobus on the edit pages.
957
- #: includes/class-wpglobus.php:1320
958
  msgid "OFF"
959
  msgstr "OFF"
960
 
961
- #: includes/class-wpglobus.php:1321
962
  msgid "Turn on"
963
  msgstr ""
964
 
965
  #. translators: ON/OFF status of WPGlobus on the edit pages.
966
- #: includes/class-wpglobus.php:1325
967
  msgid "ON"
968
  msgstr "ON"
969
 
970
- #: includes/class-wpglobus.php:1326
971
  msgid "Turn off"
972
  msgstr ""
973
 
974
- #: includes/class-wpglobus.php:1509
975
  msgid "You cannot disable the main language."
976
  msgstr "You cannot disable the main language."
977
 
978
- #: includes/class-wpglobus.php:1710
979
  msgid "*) Available after the menu is saved."
980
  msgstr "*) Available after the menu is saved."
981
 
982
- #: includes/class-wpglobus.php:1727
983
  msgid "Need a multilingual slug?"
984
  msgstr "Need a multilingual slug?"
985
 
986
- #: includes/class-wpglobus.php:4051
987
  msgid "You must enable Pretty Permalinks to use WPGlobus."
988
  msgstr "You must enable Pretty Permalinks to use WPGlobus."
989
 
990
- #: includes/class-wpglobus.php:4053
991
  msgid ""
992
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
993
  "default option."
319
 
320
  #: includes/admin/class-wpglobus-customize-options.php:546,
321
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
322
+ #: includes/class-wpglobus.php:1356, wpglobus.php:12, wpglobus.php:18
323
  msgid "WPGlobus"
324
  msgstr "WPGlobus"
325
 
867
  msgstr ""
868
 
869
  #: includes/builders/class-wpglobus-builder.php:277,
870
+ #: includes/class-wpglobus.php:3622
871
  msgid "Save draft before using extra language."
872
  msgstr ""
873
 
954
  msgstr "Selector type"
955
 
956
  #. translators: ON/OFF status of WPGlobus on the edit pages.
957
+ #: includes/class-wpglobus.php:1330
958
  msgid "OFF"
959
  msgstr "OFF"
960
 
961
+ #: includes/class-wpglobus.php:1331
962
  msgid "Turn on"
963
  msgstr ""
964
 
965
  #. translators: ON/OFF status of WPGlobus on the edit pages.
966
+ #: includes/class-wpglobus.php:1335
967
  msgid "ON"
968
  msgstr "ON"
969
 
970
+ #: includes/class-wpglobus.php:1336
971
  msgid "Turn off"
972
  msgstr ""
973
 
974
+ #: includes/class-wpglobus.php:1519
975
  msgid "You cannot disable the main language."
976
  msgstr "You cannot disable the main language."
977
 
978
+ #: includes/class-wpglobus.php:1720
979
  msgid "*) Available after the menu is saved."
980
  msgstr "*) Available after the menu is saved."
981
 
982
+ #: includes/class-wpglobus.php:1737
983
  msgid "Need a multilingual slug?"
984
  msgstr "Need a multilingual slug?"
985
 
986
+ #: includes/class-wpglobus.php:4061
987
  msgid "You must enable Pretty Permalinks to use WPGlobus."
988
  msgstr "You must enable Pretty Permalinks to use WPGlobus."
989
 
990
+ #: includes/class-wpglobus.php:4063
991
  msgid ""
992
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
993
  "default option."
languages/wpglobus-en_NZ.po CHANGED
@@ -318,7 +318,7 @@ msgstr "Save &amp; Reload"
318
 
319
  #: includes/admin/class-wpglobus-customize-options.php:546,
320
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
321
- #: includes/class-wpglobus.php:1346, wpglobus.php:12, wpglobus.php:18
322
  msgid "WPGlobus"
323
  msgstr "WPGlobus"
324
 
@@ -866,7 +866,7 @@ msgid "To translate permalinks, please activate the module Slug."
866
  msgstr ""
867
 
868
  #: includes/builders/class-wpglobus-builder.php:277,
869
- #: includes/class-wpglobus.php:3612
870
  msgid "Save draft before using extra language."
871
  msgstr ""
872
 
@@ -953,40 +953,40 @@ msgid "Selector type"
953
  msgstr "Selector type"
954
 
955
  #. translators: ON/OFF status of WPGlobus on the edit pages.
956
- #: includes/class-wpglobus.php:1320
957
  msgid "OFF"
958
  msgstr ""
959
 
960
- #: includes/class-wpglobus.php:1321
961
  msgid "Turn on"
962
  msgstr ""
963
 
964
  #. translators: ON/OFF status of WPGlobus on the edit pages.
965
- #: includes/class-wpglobus.php:1325
966
  msgid "ON"
967
  msgstr ""
968
 
969
- #: includes/class-wpglobus.php:1326
970
  msgid "Turn off"
971
  msgstr ""
972
 
973
- #: includes/class-wpglobus.php:1509
974
  msgid "You cannot disable the main language."
975
  msgstr "You cannot disable the main language."
976
 
977
- #: includes/class-wpglobus.php:1710
978
  msgid "*) Available after the menu is saved."
979
  msgstr "*) Available after the menu is saved."
980
 
981
- #: includes/class-wpglobus.php:1727
982
  msgid "Need a multilingual slug?"
983
  msgstr "Need a multilingual slug?"
984
 
985
- #: includes/class-wpglobus.php:4051
986
  msgid "You must enable Pretty Permalinks to use WPGlobus."
987
  msgstr "You must enable Pretty Permalinks to use WPGlobus."
988
 
989
- #: includes/class-wpglobus.php:4053
990
  msgid ""
991
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
992
  "default option."
318
 
319
  #: includes/admin/class-wpglobus-customize-options.php:546,
320
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
321
+ #: includes/class-wpglobus.php:1356, wpglobus.php:12, wpglobus.php:18
322
  msgid "WPGlobus"
323
  msgstr "WPGlobus"
324
 
866
  msgstr ""
867
 
868
  #: includes/builders/class-wpglobus-builder.php:277,
869
+ #: includes/class-wpglobus.php:3622
870
  msgid "Save draft before using extra language."
871
  msgstr ""
872
 
953
  msgstr "Selector type"
954
 
955
  #. translators: ON/OFF status of WPGlobus on the edit pages.
956
+ #: includes/class-wpglobus.php:1330
957
  msgid "OFF"
958
  msgstr ""
959
 
960
+ #: includes/class-wpglobus.php:1331
961
  msgid "Turn on"
962
  msgstr ""
963
 
964
  #. translators: ON/OFF status of WPGlobus on the edit pages.
965
+ #: includes/class-wpglobus.php:1335
966
  msgid "ON"
967
  msgstr ""
968
 
969
+ #: includes/class-wpglobus.php:1336
970
  msgid "Turn off"
971
  msgstr ""
972
 
973
+ #: includes/class-wpglobus.php:1519
974
  msgid "You cannot disable the main language."
975
  msgstr "You cannot disable the main language."
976
 
977
+ #: includes/class-wpglobus.php:1720
978
  msgid "*) Available after the menu is saved."
979
  msgstr "*) Available after the menu is saved."
980
 
981
+ #: includes/class-wpglobus.php:1737
982
  msgid "Need a multilingual slug?"
983
  msgstr "Need a multilingual slug?"
984
 
985
+ #: includes/class-wpglobus.php:4061
986
  msgid "You must enable Pretty Permalinks to use WPGlobus."
987
  msgstr "You must enable Pretty Permalinks to use WPGlobus."
988
 
989
+ #: includes/class-wpglobus.php:4063
990
  msgid ""
991
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
992
  "default option."
languages/wpglobus-en_US.po CHANGED
@@ -317,7 +317,7 @@ msgstr "Save &amp; Reload"
317
 
318
  #: includes/admin/class-wpglobus-customize-options.php:546,
319
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
320
- #: includes/class-wpglobus.php:1346, wpglobus.php:12, wpglobus.php:18
321
  msgid "WPGlobus"
322
  msgstr "WPGlobus"
323
 
@@ -870,7 +870,7 @@ msgid "To translate permalinks, please activate the module Slug."
870
  msgstr "To translate permalinks, please activate the module Slug."
871
 
872
  #: includes/builders/class-wpglobus-builder.php:277,
873
- #: includes/class-wpglobus.php:3612
874
  msgid "Save draft before using extra language."
875
  msgstr "Save draft before using extra language."
876
 
@@ -961,40 +961,40 @@ msgid "Selector type"
961
  msgstr "Selector type"
962
 
963
  #. translators: ON/OFF status of WPGlobus on the edit pages.
964
- #: includes/class-wpglobus.php:1320
965
  msgid "OFF"
966
  msgstr "OFF"
967
 
968
- #: includes/class-wpglobus.php:1321
969
  msgid "Turn on"
970
  msgstr "Turn on"
971
 
972
  #. translators: ON/OFF status of WPGlobus on the edit pages.
973
- #: includes/class-wpglobus.php:1325
974
  msgid "ON"
975
  msgstr "ON"
976
 
977
- #: includes/class-wpglobus.php:1326
978
  msgid "Turn off"
979
  msgstr "Turn off"
980
 
981
- #: includes/class-wpglobus.php:1509
982
  msgid "You cannot disable the main language."
983
  msgstr "You cannot disable the main language."
984
 
985
- #: includes/class-wpglobus.php:1710
986
  msgid "*) Available after the menu is saved."
987
  msgstr "*) Available after the menu is saved."
988
 
989
- #: includes/class-wpglobus.php:1727
990
  msgid "Need a multilingual slug?"
991
  msgstr "Need a multilingual slug?"
992
 
993
- #: includes/class-wpglobus.php:4051
994
  msgid "You must enable Pretty Permalinks to use WPGlobus."
995
  msgstr "You must enable Pretty Permalinks to use WPGlobus."
996
 
997
- #: includes/class-wpglobus.php:4053
998
  msgid ""
999
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
1000
  "default option."
317
 
318
  #: includes/admin/class-wpglobus-customize-options.php:546,
319
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
320
+ #: includes/class-wpglobus.php:1356, wpglobus.php:12, wpglobus.php:18
321
  msgid "WPGlobus"
322
  msgstr "WPGlobus"
323
 
870
  msgstr "To translate permalinks, please activate the module Slug."
871
 
872
  #: includes/builders/class-wpglobus-builder.php:277,
873
+ #: includes/class-wpglobus.php:3622
874
  msgid "Save draft before using extra language."
875
  msgstr "Save draft before using extra language."
876
 
961
  msgstr "Selector type"
962
 
963
  #. translators: ON/OFF status of WPGlobus on the edit pages.
964
+ #: includes/class-wpglobus.php:1330
965
  msgid "OFF"
966
  msgstr "OFF"
967
 
968
+ #: includes/class-wpglobus.php:1331
969
  msgid "Turn on"
970
  msgstr "Turn on"
971
 
972
  #. translators: ON/OFF status of WPGlobus on the edit pages.
973
+ #: includes/class-wpglobus.php:1335
974
  msgid "ON"
975
  msgstr "ON"
976
 
977
+ #: includes/class-wpglobus.php:1336
978
  msgid "Turn off"
979
  msgstr "Turn off"
980
 
981
+ #: includes/class-wpglobus.php:1519
982
  msgid "You cannot disable the main language."
983
  msgstr "You cannot disable the main language."
984
 
985
+ #: includes/class-wpglobus.php:1720
986
  msgid "*) Available after the menu is saved."
987
  msgstr "*) Available after the menu is saved."
988
 
989
+ #: includes/class-wpglobus.php:1737
990
  msgid "Need a multilingual slug?"
991
  msgstr "Need a multilingual slug?"
992
 
993
+ #: includes/class-wpglobus.php:4061
994
  msgid "You must enable Pretty Permalinks to use WPGlobus."
995
  msgstr "You must enable Pretty Permalinks to use WPGlobus."
996
 
997
+ #: includes/class-wpglobus.php:4063
998
  msgid ""
999
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
1000
  "default option."
languages/wpglobus-en_ZA.po CHANGED
@@ -318,7 +318,7 @@ msgstr "Save &amp; Reload"
318
 
319
  #: includes/admin/class-wpglobus-customize-options.php:546,
320
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
321
- #: includes/class-wpglobus.php:1346, wpglobus.php:12, wpglobus.php:18
322
  msgid "WPGlobus"
323
  msgstr "WPGlobus"
324
 
@@ -866,7 +866,7 @@ msgid "To translate permalinks, please activate the module Slug."
866
  msgstr ""
867
 
868
  #: includes/builders/class-wpglobus-builder.php:277,
869
- #: includes/class-wpglobus.php:3612
870
  msgid "Save draft before using extra language."
871
  msgstr ""
872
 
@@ -953,40 +953,40 @@ msgid "Selector type"
953
  msgstr "Selector type"
954
 
955
  #. translators: ON/OFF status of WPGlobus on the edit pages.
956
- #: includes/class-wpglobus.php:1320
957
  msgid "OFF"
958
  msgstr ""
959
 
960
- #: includes/class-wpglobus.php:1321
961
  msgid "Turn on"
962
  msgstr ""
963
 
964
  #. translators: ON/OFF status of WPGlobus on the edit pages.
965
- #: includes/class-wpglobus.php:1325
966
  msgid "ON"
967
  msgstr ""
968
 
969
- #: includes/class-wpglobus.php:1326
970
  msgid "Turn off"
971
  msgstr ""
972
 
973
- #: includes/class-wpglobus.php:1509
974
  msgid "You cannot disable the main language."
975
  msgstr "You cannot disable the main language."
976
 
977
- #: includes/class-wpglobus.php:1710
978
  msgid "*) Available after the menu is saved."
979
  msgstr "*) Available after the menu is saved."
980
 
981
- #: includes/class-wpglobus.php:1727
982
  msgid "Need a multilingual slug?"
983
  msgstr "Need a multilingual slug?"
984
 
985
- #: includes/class-wpglobus.php:4051
986
  msgid "You must enable Pretty Permalinks to use WPGlobus."
987
  msgstr "You must enable Pretty Permalinks to use WPGlobus."
988
 
989
- #: includes/class-wpglobus.php:4053
990
  msgid ""
991
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
992
  "default option."
318
 
319
  #: includes/admin/class-wpglobus-customize-options.php:546,
320
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
321
+ #: includes/class-wpglobus.php:1356, wpglobus.php:12, wpglobus.php:18
322
  msgid "WPGlobus"
323
  msgstr "WPGlobus"
324
 
866
  msgstr ""
867
 
868
  #: includes/builders/class-wpglobus-builder.php:277,
869
+ #: includes/class-wpglobus.php:3622
870
  msgid "Save draft before using extra language."
871
  msgstr ""
872
 
953
  msgstr "Selector type"
954
 
955
  #. translators: ON/OFF status of WPGlobus on the edit pages.
956
+ #: includes/class-wpglobus.php:1330
957
  msgid "OFF"
958
  msgstr ""
959
 
960
+ #: includes/class-wpglobus.php:1331
961
  msgid "Turn on"
962
  msgstr ""
963
 
964
  #. translators: ON/OFF status of WPGlobus on the edit pages.
965
+ #: includes/class-wpglobus.php:1335
966
  msgid "ON"
967
  msgstr ""
968
 
969
+ #: includes/class-wpglobus.php:1336
970
  msgid "Turn off"
971
  msgstr ""
972
 
973
+ #: includes/class-wpglobus.php:1519
974
  msgid "You cannot disable the main language."
975
  msgstr "You cannot disable the main language."
976
 
977
+ #: includes/class-wpglobus.php:1720
978
  msgid "*) Available after the menu is saved."
979
  msgstr "*) Available after the menu is saved."
980
 
981
+ #: includes/class-wpglobus.php:1737
982
  msgid "Need a multilingual slug?"
983
  msgstr "Need a multilingual slug?"
984
 
985
+ #: includes/class-wpglobus.php:4061
986
  msgid "You must enable Pretty Permalinks to use WPGlobus."
987
  msgstr "You must enable Pretty Permalinks to use WPGlobus."
988
 
989
+ #: includes/class-wpglobus.php:4063
990
  msgid ""
991
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
992
  "default option."
languages/wpglobus-es_AR.po CHANGED
@@ -290,7 +290,7 @@ msgstr ""
290
 
291
  #: includes/admin/class-wpglobus-customize-options.php:546,
292
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
293
- #: includes/class-wpglobus.php:1346, wpglobus.php:12, wpglobus.php:18
294
  msgid "WPGlobus"
295
  msgstr ""
296
 
@@ -827,7 +827,7 @@ msgid "To translate permalinks, please activate the module Slug."
827
  msgstr ""
828
 
829
  #: includes/builders/class-wpglobus-builder.php:277,
830
- #: includes/class-wpglobus.php:3612
831
  msgid "Save draft before using extra language."
832
  msgstr ""
833
 
@@ -914,41 +914,41 @@ msgid "Selector type"
914
  msgstr "Tipo de selector"
915
 
916
  #. translators: ON/OFF status of WPGlobus on the edit pages.
917
- #: includes/class-wpglobus.php:1320
918
  msgid "OFF"
919
  msgstr ""
920
 
921
- #: includes/class-wpglobus.php:1321
922
  msgid "Turn on"
923
  msgstr ""
924
 
925
  #. translators: ON/OFF status of WPGlobus on the edit pages.
926
- #: includes/class-wpglobus.php:1325
927
  msgid "ON"
928
  msgstr ""
929
 
930
- #: includes/class-wpglobus.php:1326
931
  msgid "Turn off"
932
  msgstr ""
933
 
934
- #: includes/class-wpglobus.php:1509
935
  msgid "You cannot disable the main language."
936
  msgstr "No se puede desactivar el idioma principal."
937
 
938
- #: includes/class-wpglobus.php:1710
939
  msgid "*) Available after the menu is saved."
940
  msgstr "No Se Puede Desactivar el director idioma."
941
 
942
- #: includes/class-wpglobus.php:1727
943
  msgid "Need a multilingual slug?"
944
  msgstr ""
945
 
946
- #: includes/class-wpglobus.php:4051
947
  msgid "You must enable Pretty Permalinks to use WPGlobus."
948
  msgstr ""
949
  "Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
950
 
951
- #: includes/class-wpglobus.php:4053
952
  msgid ""
953
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
954
  "default option."
290
 
291
  #: includes/admin/class-wpglobus-customize-options.php:546,
292
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
293
+ #: includes/class-wpglobus.php:1356, wpglobus.php:12, wpglobus.php:18
294
  msgid "WPGlobus"
295
  msgstr ""
296
 
827
  msgstr ""
828
 
829
  #: includes/builders/class-wpglobus-builder.php:277,
830
+ #: includes/class-wpglobus.php:3622
831
  msgid "Save draft before using extra language."
832
  msgstr ""
833
 
914
  msgstr "Tipo de selector"
915
 
916
  #. translators: ON/OFF status of WPGlobus on the edit pages.
917
+ #: includes/class-wpglobus.php:1330
918
  msgid "OFF"
919
  msgstr ""
920
 
921
+ #: includes/class-wpglobus.php:1331
922
  msgid "Turn on"
923
  msgstr ""
924
 
925
  #. translators: ON/OFF status of WPGlobus on the edit pages.
926
+ #: includes/class-wpglobus.php:1335
927
  msgid "ON"
928
  msgstr ""
929
 
930
+ #: includes/class-wpglobus.php:1336
931
  msgid "Turn off"
932
  msgstr ""
933
 
934
+ #: includes/class-wpglobus.php:1519
935
  msgid "You cannot disable the main language."
936
  msgstr "No se puede desactivar el idioma principal."
937
 
938
+ #: includes/class-wpglobus.php:1720
939
  msgid "*) Available after the menu is saved."
940
  msgstr "No Se Puede Desactivar el director idioma."
941
 
942
+ #: includes/class-wpglobus.php:1737
943
  msgid "Need a multilingual slug?"
944
  msgstr ""
945
 
946
+ #: includes/class-wpglobus.php:4061
947
  msgid "You must enable Pretty Permalinks to use WPGlobus."
948
  msgstr ""
949
  "Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
950
 
951
+ #: includes/class-wpglobus.php:4063
952
  msgid ""
953
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
954
  "default option."
languages/wpglobus-es_CL.po CHANGED
@@ -290,7 +290,7 @@ msgstr ""
290
 
291
  #: includes/admin/class-wpglobus-customize-options.php:546,
292
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
293
- #: includes/class-wpglobus.php:1346, wpglobus.php:12, wpglobus.php:18
294
  msgid "WPGlobus"
295
  msgstr ""
296
 
@@ -827,7 +827,7 @@ msgid "To translate permalinks, please activate the module Slug."
827
  msgstr ""
828
 
829
  #: includes/builders/class-wpglobus-builder.php:277,
830
- #: includes/class-wpglobus.php:3612
831
  msgid "Save draft before using extra language."
832
  msgstr ""
833
 
@@ -914,41 +914,41 @@ msgid "Selector type"
914
  msgstr "Tipo de selector"
915
 
916
  #. translators: ON/OFF status of WPGlobus on the edit pages.
917
- #: includes/class-wpglobus.php:1320
918
  msgid "OFF"
919
  msgstr ""
920
 
921
- #: includes/class-wpglobus.php:1321
922
  msgid "Turn on"
923
  msgstr ""
924
 
925
  #. translators: ON/OFF status of WPGlobus on the edit pages.
926
- #: includes/class-wpglobus.php:1325
927
  msgid "ON"
928
  msgstr ""
929
 
930
- #: includes/class-wpglobus.php:1326
931
  msgid "Turn off"
932
  msgstr ""
933
 
934
- #: includes/class-wpglobus.php:1509
935
  msgid "You cannot disable the main language."
936
  msgstr "No se puede desactivar el idioma principal."
937
 
938
- #: includes/class-wpglobus.php:1710
939
  msgid "*) Available after the menu is saved."
940
  msgstr "No Se Puede Desactivar el director idioma."
941
 
942
- #: includes/class-wpglobus.php:1727
943
  msgid "Need a multilingual slug?"
944
  msgstr ""
945
 
946
- #: includes/class-wpglobus.php:4051
947
  msgid "You must enable Pretty Permalinks to use WPGlobus."
948
  msgstr ""
949
  "Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
950
 
951
- #: includes/class-wpglobus.php:4053
952
  msgid ""
953
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
954
  "default option."
290
 
291
  #: includes/admin/class-wpglobus-customize-options.php:546,
292
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
293
+ #: includes/class-wpglobus.php:1356, wpglobus.php:12, wpglobus.php:18
294
  msgid "WPGlobus"
295
  msgstr ""
296
 
827
  msgstr ""
828
 
829
  #: includes/builders/class-wpglobus-builder.php:277,
830
+ #: includes/class-wpglobus.php:3622
831
  msgid "Save draft before using extra language."
832
  msgstr ""
833
 
914
  msgstr "Tipo de selector"
915
 
916
  #. translators: ON/OFF status of WPGlobus on the edit pages.
917
+ #: includes/class-wpglobus.php:1330
918
  msgid "OFF"
919
  msgstr ""
920
 
921
+ #: includes/class-wpglobus.php:1331
922
  msgid "Turn on"
923
  msgstr ""
924
 
925
  #. translators: ON/OFF status of WPGlobus on the edit pages.
926
+ #: includes/class-wpglobus.php:1335
927
  msgid "ON"
928
  msgstr ""
929
 
930
+ #: includes/class-wpglobus.php:1336
931
  msgid "Turn off"
932
  msgstr ""
933
 
934
+ #: includes/class-wpglobus.php:1519
935
  msgid "You cannot disable the main language."
936
  msgstr "No se puede desactivar el idioma principal."
937
 
938
+ #: includes/class-wpglobus.php:1720
939
  msgid "*) Available after the menu is saved."
940
  msgstr "No Se Puede Desactivar el director idioma."
941
 
942
+ #: includes/class-wpglobus.php:1737
943
  msgid "Need a multilingual slug?"
944
  msgstr ""
945
 
946
+ #: includes/class-wpglobus.php:4061
947
  msgid "You must enable Pretty Permalinks to use WPGlobus."
948
  msgstr ""
949
  "Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
950
 
951
+ #: includes/class-wpglobus.php:4063
952
  msgid ""
953
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
954
  "default option."
languages/wpglobus-es_CO.po CHANGED
@@ -290,7 +290,7 @@ msgstr ""
290
 
291
  #: includes/admin/class-wpglobus-customize-options.php:546,
292
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
293
- #: includes/class-wpglobus.php:1346, wpglobus.php:12, wpglobus.php:18
294
  msgid "WPGlobus"
295
  msgstr ""
296
 
@@ -827,7 +827,7 @@ msgid "To translate permalinks, please activate the module Slug."
827
  msgstr ""
828
 
829
  #: includes/builders/class-wpglobus-builder.php:277,
830
- #: includes/class-wpglobus.php:3612
831
  msgid "Save draft before using extra language."
832
  msgstr ""
833
 
@@ -914,41 +914,41 @@ msgid "Selector type"
914
  msgstr "Tipo de selector"
915
 
916
  #. translators: ON/OFF status of WPGlobus on the edit pages.
917
- #: includes/class-wpglobus.php:1320
918
  msgid "OFF"
919
  msgstr ""
920
 
921
- #: includes/class-wpglobus.php:1321
922
  msgid "Turn on"
923
  msgstr ""
924
 
925
  #. translators: ON/OFF status of WPGlobus on the edit pages.
926
- #: includes/class-wpglobus.php:1325
927
  msgid "ON"
928
  msgstr ""
929
 
930
- #: includes/class-wpglobus.php:1326
931
  msgid "Turn off"
932
  msgstr ""
933
 
934
- #: includes/class-wpglobus.php:1509
935
  msgid "You cannot disable the main language."
936
  msgstr "No se puede desactivar el idioma principal."
937
 
938
- #: includes/class-wpglobus.php:1710
939
  msgid "*) Available after the menu is saved."
940
  msgstr "No Se Puede Desactivar el director idioma."
941
 
942
- #: includes/class-wpglobus.php:1727
943
  msgid "Need a multilingual slug?"
944
  msgstr ""
945
 
946
- #: includes/class-wpglobus.php:4051
947
  msgid "You must enable Pretty Permalinks to use WPGlobus."
948
  msgstr ""
949
  "Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
950
 
951
- #: includes/class-wpglobus.php:4053
952
  msgid ""
953
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
954
  "default option."
290
 
291
  #: includes/admin/class-wpglobus-customize-options.php:546,
292
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
293
+ #: includes/class-wpglobus.php:1356, wpglobus.php:12, wpglobus.php:18
294
  msgid "WPGlobus"
295
  msgstr ""
296
 
827
  msgstr ""
828
 
829
  #: includes/builders/class-wpglobus-builder.php:277,
830
+ #: includes/class-wpglobus.php:3622
831
  msgid "Save draft before using extra language."
832
  msgstr ""
833
 
914
  msgstr "Tipo de selector"
915
 
916
  #. translators: ON/OFF status of WPGlobus on the edit pages.
917
+ #: includes/class-wpglobus.php:1330
918
  msgid "OFF"
919
  msgstr ""
920
 
921
+ #: includes/class-wpglobus.php:1331
922
  msgid "Turn on"
923
  msgstr ""
924
 
925
  #. translators: ON/OFF status of WPGlobus on the edit pages.
926
+ #: includes/class-wpglobus.php:1335
927
  msgid "ON"
928
  msgstr ""
929
 
930
+ #: includes/class-wpglobus.php:1336
931
  msgid "Turn off"
932
  msgstr ""
933
 
934
+ #: includes/class-wpglobus.php:1519
935
  msgid "You cannot disable the main language."
936
  msgstr "No se puede desactivar el idioma principal."
937
 
938
+ #: includes/class-wpglobus.php:1720
939
  msgid "*) Available after the menu is saved."
940
  msgstr "No Se Puede Desactivar el director idioma."
941
 
942
+ #: includes/class-wpglobus.php:1737
943
  msgid "Need a multilingual slug?"
944
  msgstr ""
945
 
946
+ #: includes/class-wpglobus.php:4061
947
  msgid "You must enable Pretty Permalinks to use WPGlobus."
948
  msgstr ""
949
  "Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
950
 
951
+ #: includes/class-wpglobus.php:4063
952
  msgid ""
953
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
954
  "default option."
languages/wpglobus-es_CR.po CHANGED
@@ -290,7 +290,7 @@ msgstr ""
290
 
291
  #: includes/admin/class-wpglobus-customize-options.php:546,
292
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
293
- #: includes/class-wpglobus.php:1346, wpglobus.php:12, wpglobus.php:18
294
  msgid "WPGlobus"
295
  msgstr ""
296
 
@@ -827,7 +827,7 @@ msgid "To translate permalinks, please activate the module Slug."
827
  msgstr ""
828
 
829
  #: includes/builders/class-wpglobus-builder.php:277,
830
- #: includes/class-wpglobus.php:3612
831
  msgid "Save draft before using extra language."
832
  msgstr ""
833
 
@@ -914,41 +914,41 @@ msgid "Selector type"
914
  msgstr "Tipo de selector"
915
 
916
  #. translators: ON/OFF status of WPGlobus on the edit pages.
917
- #: includes/class-wpglobus.php:1320
918
  msgid "OFF"
919
  msgstr ""
920
 
921
- #: includes/class-wpglobus.php:1321
922
  msgid "Turn on"
923
  msgstr ""
924
 
925
  #. translators: ON/OFF status of WPGlobus on the edit pages.
926
- #: includes/class-wpglobus.php:1325
927
  msgid "ON"
928
  msgstr ""
929
 
930
- #: includes/class-wpglobus.php:1326
931
  msgid "Turn off"
932
  msgstr ""
933
 
934
- #: includes/class-wpglobus.php:1509
935
  msgid "You cannot disable the main language."
936
  msgstr "No se puede desactivar el idioma principal."
937
 
938
- #: includes/class-wpglobus.php:1710
939
  msgid "*) Available after the menu is saved."
940
  msgstr "No Se Puede Desactivar el director idioma."
941
 
942
- #: includes/class-wpglobus.php:1727
943
  msgid "Need a multilingual slug?"
944
  msgstr ""
945
 
946
- #: includes/class-wpglobus.php:4051
947
  msgid "You must enable Pretty Permalinks to use WPGlobus."
948
  msgstr ""
949
  "Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
950
 
951
- #: includes/class-wpglobus.php:4053
952
  msgid ""
953
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
954
  "default option."
290
 
291
  #: includes/admin/class-wpglobus-customize-options.php:546,
292
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
293
+ #: includes/class-wpglobus.php:1356, wpglobus.php:12, wpglobus.php:18
294
  msgid "WPGlobus"
295
  msgstr ""
296
 
827
  msgstr ""
828
 
829
  #: includes/builders/class-wpglobus-builder.php:277,
830
+ #: includes/class-wpglobus.php:3622
831
  msgid "Save draft before using extra language."
832
  msgstr ""
833
 
914
  msgstr "Tipo de selector"
915
 
916
  #. translators: ON/OFF status of WPGlobus on the edit pages.
917
+ #: includes/class-wpglobus.php:1330
918
  msgid "OFF"
919
  msgstr ""
920
 
921
+ #: includes/class-wpglobus.php:1331
922
  msgid "Turn on"
923
  msgstr ""
924
 
925
  #. translators: ON/OFF status of WPGlobus on the edit pages.
926
+ #: includes/class-wpglobus.php:1335
927
  msgid "ON"
928
  msgstr ""
929
 
930
+ #: includes/class-wpglobus.php:1336
931
  msgid "Turn off"
932
  msgstr ""
933
 
934
+ #: includes/class-wpglobus.php:1519
935
  msgid "You cannot disable the main language."
936
  msgstr "No se puede desactivar el idioma principal."
937
 
938
+ #: includes/class-wpglobus.php:1720
939
  msgid "*) Available after the menu is saved."
940
  msgstr "No Se Puede Desactivar el director idioma."
941
 
942
+ #: includes/class-wpglobus.php:1737
943
  msgid "Need a multilingual slug?"
944
  msgstr ""
945
 
946
+ #: includes/class-wpglobus.php:4061
947
  msgid "You must enable Pretty Permalinks to use WPGlobus."
948
  msgstr ""
949
  "Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
950
 
951
+ #: includes/class-wpglobus.php:4063
952
  msgid ""
953
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
954
  "default option."
languages/wpglobus-es_ES.po CHANGED
@@ -290,7 +290,7 @@ msgstr ""
290
 
291
  #: includes/admin/class-wpglobus-customize-options.php:546,
292
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
293
- #: includes/class-wpglobus.php:1346, wpglobus.php:12, wpglobus.php:18
294
  msgid "WPGlobus"
295
  msgstr ""
296
 
@@ -827,7 +827,7 @@ msgid "To translate permalinks, please activate the module Slug."
827
  msgstr ""
828
 
829
  #: includes/builders/class-wpglobus-builder.php:277,
830
- #: includes/class-wpglobus.php:3612
831
  msgid "Save draft before using extra language."
832
  msgstr ""
833
 
@@ -914,41 +914,41 @@ msgid "Selector type"
914
  msgstr "Tipo de selector"
915
 
916
  #. translators: ON/OFF status of WPGlobus on the edit pages.
917
- #: includes/class-wpglobus.php:1320
918
  msgid "OFF"
919
  msgstr ""
920
 
921
- #: includes/class-wpglobus.php:1321
922
  msgid "Turn on"
923
  msgstr ""
924
 
925
  #. translators: ON/OFF status of WPGlobus on the edit pages.
926
- #: includes/class-wpglobus.php:1325
927
  msgid "ON"
928
  msgstr "ON"
929
 
930
- #: includes/class-wpglobus.php:1326
931
  msgid "Turn off"
932
  msgstr ""
933
 
934
- #: includes/class-wpglobus.php:1509
935
  msgid "You cannot disable the main language."
936
  msgstr "No se puede desactivar el idioma principal."
937
 
938
- #: includes/class-wpglobus.php:1710
939
  msgid "*) Available after the menu is saved."
940
  msgstr "No Se Puede Desactivar el director idioma."
941
 
942
- #: includes/class-wpglobus.php:1727
943
  msgid "Need a multilingual slug?"
944
  msgstr ""
945
 
946
- #: includes/class-wpglobus.php:4051
947
  msgid "You must enable Pretty Permalinks to use WPGlobus."
948
  msgstr ""
949
  "Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
950
 
951
- #: includes/class-wpglobus.php:4053
952
  msgid ""
953
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
954
  "default option."
290
 
291
  #: includes/admin/class-wpglobus-customize-options.php:546,
292
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
293
+ #: includes/class-wpglobus.php:1356, wpglobus.php:12, wpglobus.php:18
294
  msgid "WPGlobus"
295
  msgstr ""
296
 
827
  msgstr ""
828
 
829
  #: includes/builders/class-wpglobus-builder.php:277,
830
+ #: includes/class-wpglobus.php:3622
831
  msgid "Save draft before using extra language."
832
  msgstr ""
833
 
914
  msgstr "Tipo de selector"
915
 
916
  #. translators: ON/OFF status of WPGlobus on the edit pages.
917
+ #: includes/class-wpglobus.php:1330
918
  msgid "OFF"
919
  msgstr ""
920
 
921
+ #: includes/class-wpglobus.php:1331
922
  msgid "Turn on"
923
  msgstr ""
924
 
925
  #. translators: ON/OFF status of WPGlobus on the edit pages.
926
+ #: includes/class-wpglobus.php:1335
927
  msgid "ON"
928
  msgstr "ON"
929
 
930
+ #: includes/class-wpglobus.php:1336
931
  msgid "Turn off"
932
  msgstr ""
933
 
934
+ #: includes/class-wpglobus.php:1519
935
  msgid "You cannot disable the main language."
936
  msgstr "No se puede desactivar el idioma principal."
937
 
938
+ #: includes/class-wpglobus.php:1720
939
  msgid "*) Available after the menu is saved."
940
  msgstr "No Se Puede Desactivar el director idioma."
941
 
942
+ #: includes/class-wpglobus.php:1737
943
  msgid "Need a multilingual slug?"
944
  msgstr ""
945
 
946
+ #: includes/class-wpglobus.php:4061
947
  msgid "You must enable Pretty Permalinks to use WPGlobus."
948
  msgstr ""
949
  "Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
950
 
951
+ #: includes/class-wpglobus.php:4063
952
  msgid ""
953
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
954
  "default option."
languages/wpglobus-es_GT.po CHANGED
@@ -290,7 +290,7 @@ msgstr ""
290
 
291
  #: includes/admin/class-wpglobus-customize-options.php:546,
292
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
293
- #: includes/class-wpglobus.php:1346, wpglobus.php:12, wpglobus.php:18
294
  msgid "WPGlobus"
295
  msgstr ""
296
 
@@ -827,7 +827,7 @@ msgid "To translate permalinks, please activate the module Slug."
827
  msgstr ""
828
 
829
  #: includes/builders/class-wpglobus-builder.php:277,
830
- #: includes/class-wpglobus.php:3612
831
  msgid "Save draft before using extra language."
832
  msgstr ""
833
 
@@ -914,41 +914,41 @@ msgid "Selector type"
914
  msgstr "Tipo de selector"
915
 
916
  #. translators: ON/OFF status of WPGlobus on the edit pages.
917
- #: includes/class-wpglobus.php:1320
918
  msgid "OFF"
919
  msgstr ""
920
 
921
- #: includes/class-wpglobus.php:1321
922
  msgid "Turn on"
923
  msgstr ""
924
 
925
  #. translators: ON/OFF status of WPGlobus on the edit pages.
926
- #: includes/class-wpglobus.php:1325
927
  msgid "ON"
928
  msgstr ""
929
 
930
- #: includes/class-wpglobus.php:1326
931
  msgid "Turn off"
932
  msgstr ""
933
 
934
- #: includes/class-wpglobus.php:1509
935
  msgid "You cannot disable the main language."
936
  msgstr "No se puede desactivar el idioma principal."
937
 
938
- #: includes/class-wpglobus.php:1710
939
  msgid "*) Available after the menu is saved."
940
  msgstr "No Se Puede Desactivar el director idioma."
941
 
942
- #: includes/class-wpglobus.php:1727
943
  msgid "Need a multilingual slug?"
944
  msgstr ""
945
 
946
- #: includes/class-wpglobus.php:4051
947
  msgid "You must enable Pretty Permalinks to use WPGlobus."
948
  msgstr ""
949
  "Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
950
 
951
- #: includes/class-wpglobus.php:4053
952
  msgid ""
953
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
954
  "default option."
290
 
291
  #: includes/admin/class-wpglobus-customize-options.php:546,
292
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
293
+ #: includes/class-wpglobus.php:1356, wpglobus.php:12, wpglobus.php:18
294
  msgid "WPGlobus"
295
  msgstr ""
296
 
827
  msgstr ""
828
 
829
  #: includes/builders/class-wpglobus-builder.php:277,
830
+ #: includes/class-wpglobus.php:3622
831
  msgid "Save draft before using extra language."
832
  msgstr ""
833
 
914
  msgstr "Tipo de selector"
915
 
916
  #. translators: ON/OFF status of WPGlobus on the edit pages.
917
+ #: includes/class-wpglobus.php:1330
918
  msgid "OFF"
919
  msgstr ""
920
 
921
+ #: includes/class-wpglobus.php:1331
922
  msgid "Turn on"
923
  msgstr ""
924
 
925
  #. translators: ON/OFF status of WPGlobus on the edit pages.
926
+ #: includes/class-wpglobus.php:1335
927
  msgid "ON"
928
  msgstr ""
929
 
930
+ #: includes/class-wpglobus.php:1336
931
  msgid "Turn off"
932
  msgstr ""
933
 
934
+ #: includes/class-wpglobus.php:1519
935
  msgid "You cannot disable the main language."
936
  msgstr "No se puede desactivar el idioma principal."
937
 
938
+ #: includes/class-wpglobus.php:1720
939
  msgid "*) Available after the menu is saved."
940
  msgstr "No Se Puede Desactivar el director idioma."
941
 
942
+ #: includes/class-wpglobus.php:1737
943
  msgid "Need a multilingual slug?"
944
  msgstr ""
945
 
946
+ #: includes/class-wpglobus.php:4061
947
  msgid "You must enable Pretty Permalinks to use WPGlobus."
948
  msgstr ""
949
  "Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
950
 
951
+ #: includes/class-wpglobus.php:4063
952
  msgid ""
953
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
954
  "default option."
languages/wpglobus-es_MX.po CHANGED
@@ -290,7 +290,7 @@ msgstr ""
290
 
291
  #: includes/admin/class-wpglobus-customize-options.php:546,
292
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
293
- #: includes/class-wpglobus.php:1346, wpglobus.php:12, wpglobus.php:18
294
  msgid "WPGlobus"
295
  msgstr ""
296
 
@@ -827,7 +827,7 @@ msgid "To translate permalinks, please activate the module Slug."
827
  msgstr ""
828
 
829
  #: includes/builders/class-wpglobus-builder.php:277,
830
- #: includes/class-wpglobus.php:3612
831
  msgid "Save draft before using extra language."
832
  msgstr ""
833
 
@@ -914,41 +914,41 @@ msgid "Selector type"
914
  msgstr "Tipo de selector"
915
 
916
  #. translators: ON/OFF status of WPGlobus on the edit pages.
917
- #: includes/class-wpglobus.php:1320
918
  msgid "OFF"
919
  msgstr "APAGADO"
920
 
921
- #: includes/class-wpglobus.php:1321
922
  msgid "Turn on"
923
  msgstr ""
924
 
925
  #. translators: ON/OFF status of WPGlobus on the edit pages.
926
- #: includes/class-wpglobus.php:1325
927
  msgid "ON"
928
  msgstr "ON"
929
 
930
- #: includes/class-wpglobus.php:1326
931
  msgid "Turn off"
932
  msgstr ""
933
 
934
- #: includes/class-wpglobus.php:1509
935
  msgid "You cannot disable the main language."
936
  msgstr "No se puede desactivar el idioma principal."
937
 
938
- #: includes/class-wpglobus.php:1710
939
  msgid "*) Available after the menu is saved."
940
  msgstr "No Se Puede Desactivar el director idioma."
941
 
942
- #: includes/class-wpglobus.php:1727
943
  msgid "Need a multilingual slug?"
944
  msgstr ""
945
 
946
- #: includes/class-wpglobus.php:4051
947
  msgid "You must enable Pretty Permalinks to use WPGlobus."
948
  msgstr ""
949
  "Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
950
 
951
- #: includes/class-wpglobus.php:4053
952
  msgid ""
953
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
954
  "default option."
290
 
291
  #: includes/admin/class-wpglobus-customize-options.php:546,
292
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
293
+ #: includes/class-wpglobus.php:1356, wpglobus.php:12, wpglobus.php:18
294
  msgid "WPGlobus"
295
  msgstr ""
296
 
827
  msgstr ""
828
 
829
  #: includes/builders/class-wpglobus-builder.php:277,
830
+ #: includes/class-wpglobus.php:3622
831
  msgid "Save draft before using extra language."
832
  msgstr ""
833
 
914
  msgstr "Tipo de selector"
915
 
916
  #. translators: ON/OFF status of WPGlobus on the edit pages.
917
+ #: includes/class-wpglobus.php:1330
918
  msgid "OFF"
919
  msgstr "APAGADO"
920
 
921
+ #: includes/class-wpglobus.php:1331
922
  msgid "Turn on"
923
  msgstr ""
924
 
925
  #. translators: ON/OFF status of WPGlobus on the edit pages.
926
+ #: includes/class-wpglobus.php:1335
927
  msgid "ON"
928
  msgstr "ON"
929
 
930
+ #: includes/class-wpglobus.php:1336
931
  msgid "Turn off"
932
  msgstr ""
933
 
934
+ #: includes/class-wpglobus.php:1519
935
  msgid "You cannot disable the main language."
936
  msgstr "No se puede desactivar el idioma principal."
937
 
938
+ #: includes/class-wpglobus.php:1720
939
  msgid "*) Available after the menu is saved."
940
  msgstr "No Se Puede Desactivar el director idioma."
941
 
942
+ #: includes/class-wpglobus.php:1737
943
  msgid "Need a multilingual slug?"
944
  msgstr ""
945
 
946
+ #: includes/class-wpglobus.php:4061
947
  msgid "You must enable Pretty Permalinks to use WPGlobus."
948
  msgstr ""
949
  "Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
950
 
951
+ #: includes/class-wpglobus.php:4063
952
  msgid ""
953
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
954
  "default option."
languages/wpglobus-es_PE.po CHANGED
@@ -290,7 +290,7 @@ msgstr ""
290
 
291
  #: includes/admin/class-wpglobus-customize-options.php:546,
292
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
293
- #: includes/class-wpglobus.php:1346, wpglobus.php:12, wpglobus.php:18
294
  msgid "WPGlobus"
295
  msgstr ""
296
 
@@ -827,7 +827,7 @@ msgid "To translate permalinks, please activate the module Slug."
827
  msgstr ""
828
 
829
  #: includes/builders/class-wpglobus-builder.php:277,
830
- #: includes/class-wpglobus.php:3612
831
  msgid "Save draft before using extra language."
832
  msgstr ""
833
 
@@ -914,41 +914,41 @@ msgid "Selector type"
914
  msgstr "Tipo de selector"
915
 
916
  #. translators: ON/OFF status of WPGlobus on the edit pages.
917
- #: includes/class-wpglobus.php:1320
918
  msgid "OFF"
919
  msgstr ""
920
 
921
- #: includes/class-wpglobus.php:1321
922
  msgid "Turn on"
923
  msgstr ""
924
 
925
  #. translators: ON/OFF status of WPGlobus on the edit pages.
926
- #: includes/class-wpglobus.php:1325
927
  msgid "ON"
928
  msgstr ""
929
 
930
- #: includes/class-wpglobus.php:1326
931
  msgid "Turn off"
932
  msgstr ""
933
 
934
- #: includes/class-wpglobus.php:1509
935
  msgid "You cannot disable the main language."
936
  msgstr "No se puede desactivar el idioma principal."
937
 
938
- #: includes/class-wpglobus.php:1710
939
  msgid "*) Available after the menu is saved."
940
  msgstr "No Se Puede Desactivar el director idioma."
941
 
942
- #: includes/class-wpglobus.php:1727
943
  msgid "Need a multilingual slug?"
944
  msgstr ""
945
 
946
- #: includes/class-wpglobus.php:4051
947
  msgid "You must enable Pretty Permalinks to use WPGlobus."
948
  msgstr ""
949
  "Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
950
 
951
- #: includes/class-wpglobus.php:4053
952
  msgid ""
953
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
954
  "default option."
290
 
291
  #: includes/admin/class-wpglobus-customize-options.php:546,
292
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
293
+ #: includes/class-wpglobus.php:1356, wpglobus.php:12, wpglobus.php:18
294
  msgid "WPGlobus"
295
  msgstr ""
296
 
827
  msgstr ""
828
 
829
  #: includes/builders/class-wpglobus-builder.php:277,
830
+ #: includes/class-wpglobus.php:3622
831
  msgid "Save draft before using extra language."
832
  msgstr ""
833
 
914
  msgstr "Tipo de selector"
915
 
916
  #. translators: ON/OFF status of WPGlobus on the edit pages.
917
+ #: includes/class-wpglobus.php:1330
918
  msgid "OFF"
919
  msgstr ""
920
 
921
+ #: includes/class-wpglobus.php:1331
922
  msgid "Turn on"
923
  msgstr ""
924
 
925
  #. translators: ON/OFF status of WPGlobus on the edit pages.
926
+ #: includes/class-wpglobus.php:1335
927
  msgid "ON"
928
  msgstr ""
929
 
930
+ #: includes/class-wpglobus.php:1336
931
  msgid "Turn off"
932
  msgstr ""
933
 
934
+ #: includes/class-wpglobus.php:1519
935
  msgid "You cannot disable the main language."
936
  msgstr "No se puede desactivar el idioma principal."
937
 
938
+ #: includes/class-wpglobus.php:1720
939
  msgid "*) Available after the menu is saved."
940
  msgstr "No Se Puede Desactivar el director idioma."
941
 
942
+ #: includes/class-wpglobus.php:1737
943
  msgid "Need a multilingual slug?"
944
  msgstr ""
945
 
946
+ #: includes/class-wpglobus.php:4061
947
  msgid "You must enable Pretty Permalinks to use WPGlobus."
948
  msgstr ""
949
  "Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
950
 
951
+ #: includes/class-wpglobus.php:4063
952
  msgid ""
953
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
954
  "default option."
languages/wpglobus-es_PR.po CHANGED
@@ -290,7 +290,7 @@ msgstr ""
290
 
291
  #: includes/admin/class-wpglobus-customize-options.php:546,
292
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
293
- #: includes/class-wpglobus.php:1346, wpglobus.php:12, wpglobus.php:18
294
  msgid "WPGlobus"
295
  msgstr ""
296
 
@@ -827,7 +827,7 @@ msgid "To translate permalinks, please activate the module Slug."
827
  msgstr ""
828
 
829
  #: includes/builders/class-wpglobus-builder.php:277,
830
- #: includes/class-wpglobus.php:3612
831
  msgid "Save draft before using extra language."
832
  msgstr ""
833
 
@@ -914,41 +914,41 @@ msgid "Selector type"
914
  msgstr "Tipo de selector"
915
 
916
  #. translators: ON/OFF status of WPGlobus on the edit pages.
917
- #: includes/class-wpglobus.php:1320
918
  msgid "OFF"
919
  msgstr ""
920
 
921
- #: includes/class-wpglobus.php:1321
922
  msgid "Turn on"
923
  msgstr ""
924
 
925
  #. translators: ON/OFF status of WPGlobus on the edit pages.
926
- #: includes/class-wpglobus.php:1325
927
  msgid "ON"
928
  msgstr ""
929
 
930
- #: includes/class-wpglobus.php:1326
931
  msgid "Turn off"
932
  msgstr ""
933
 
934
- #: includes/class-wpglobus.php:1509
935
  msgid "You cannot disable the main language."
936
  msgstr "No se puede desactivar el idioma principal."
937
 
938
- #: includes/class-wpglobus.php:1710
939
  msgid "*) Available after the menu is saved."
940
  msgstr "No Se Puede Desactivar el director idioma."
941
 
942
- #: includes/class-wpglobus.php:1727
943
  msgid "Need a multilingual slug?"
944
  msgstr ""
945
 
946
- #: includes/class-wpglobus.php:4051
947
  msgid "You must enable Pretty Permalinks to use WPGlobus."
948
  msgstr ""
949
  "Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
950
 
951
- #: includes/class-wpglobus.php:4053
952
  msgid ""
953
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
954
  "default option."
290
 
291
  #: includes/admin/class-wpglobus-customize-options.php:546,
292
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
293
+ #: includes/class-wpglobus.php:1356, wpglobus.php:12, wpglobus.php:18
294
  msgid "WPGlobus"
295
  msgstr ""
296
 
827
  msgstr ""
828
 
829
  #: includes/builders/class-wpglobus-builder.php:277,
830
+ #: includes/class-wpglobus.php:3622
831
  msgid "Save draft before using extra language."
832
  msgstr ""
833
 
914
  msgstr "Tipo de selector"
915
 
916
  #. translators: ON/OFF status of WPGlobus on the edit pages.
917
+ #: includes/class-wpglobus.php:1330
918
  msgid "OFF"
919
  msgstr ""
920
 
921
+ #: includes/class-wpglobus.php:1331
922
  msgid "Turn on"
923
  msgstr ""
924
 
925
  #. translators: ON/OFF status of WPGlobus on the edit pages.
926
+ #: includes/class-wpglobus.php:1335
927
  msgid "ON"
928
  msgstr ""
929
 
930
+ #: includes/class-wpglobus.php:1336
931
  msgid "Turn off"
932
  msgstr ""
933
 
934
+ #: includes/class-wpglobus.php:1519
935
  msgid "You cannot disable the main language."
936
  msgstr "No se puede desactivar el idioma principal."
937
 
938
+ #: includes/class-wpglobus.php:1720
939
  msgid "*) Available after the menu is saved."
940
  msgstr "No Se Puede Desactivar el director idioma."
941
 
942
+ #: includes/class-wpglobus.php:1737
943
  msgid "Need a multilingual slug?"
944
  msgstr ""
945
 
946
+ #: includes/class-wpglobus.php:4061
947
  msgid "You must enable Pretty Permalinks to use WPGlobus."
948
  msgstr ""
949
  "Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
950
 
951
+ #: includes/class-wpglobus.php:4063
952
  msgid ""
953
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
954
  "default option."
languages/wpglobus-es_VE.po CHANGED
@@ -290,7 +290,7 @@ msgstr ""
290
 
291
  #: includes/admin/class-wpglobus-customize-options.php:546,
292
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
293
- #: includes/class-wpglobus.php:1346, wpglobus.php:12, wpglobus.php:18
294
  msgid "WPGlobus"
295
  msgstr ""
296
 
@@ -827,7 +827,7 @@ msgid "To translate permalinks, please activate the module Slug."
827
  msgstr ""
828
 
829
  #: includes/builders/class-wpglobus-builder.php:277,
830
- #: includes/class-wpglobus.php:3612
831
  msgid "Save draft before using extra language."
832
  msgstr ""
833
 
@@ -914,41 +914,41 @@ msgid "Selector type"
914
  msgstr "Tipo de selector"
915
 
916
  #. translators: ON/OFF status of WPGlobus on the edit pages.
917
- #: includes/class-wpglobus.php:1320
918
  msgid "OFF"
919
  msgstr ""
920
 
921
- #: includes/class-wpglobus.php:1321
922
  msgid "Turn on"
923
  msgstr ""
924
 
925
  #. translators: ON/OFF status of WPGlobus on the edit pages.
926
- #: includes/class-wpglobus.php:1325
927
  msgid "ON"
928
  msgstr ""
929
 
930
- #: includes/class-wpglobus.php:1326
931
  msgid "Turn off"
932
  msgstr ""
933
 
934
- #: includes/class-wpglobus.php:1509
935
  msgid "You cannot disable the main language."
936
  msgstr "No se puede desactivar el idioma principal."
937
 
938
- #: includes/class-wpglobus.php:1710
939
  msgid "*) Available after the menu is saved."
940
  msgstr "No Se Puede Desactivar el director idioma."
941
 
942
- #: includes/class-wpglobus.php:1727
943
  msgid "Need a multilingual slug?"
944
  msgstr ""
945
 
946
- #: includes/class-wpglobus.php:4051
947
  msgid "You must enable Pretty Permalinks to use WPGlobus."
948
  msgstr ""
949
  "Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
950
 
951
- #: includes/class-wpglobus.php:4053
952
  msgid ""
953
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
954
  "default option."
290
 
291
  #: includes/admin/class-wpglobus-customize-options.php:546,
292
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
293
+ #: includes/class-wpglobus.php:1356, wpglobus.php:12, wpglobus.php:18
294
  msgid "WPGlobus"
295
  msgstr ""
296
 
827
  msgstr ""
828
 
829
  #: includes/builders/class-wpglobus-builder.php:277,
830
+ #: includes/class-wpglobus.php:3622
831
  msgid "Save draft before using extra language."
832
  msgstr ""
833
 
914
  msgstr "Tipo de selector"
915
 
916
  #. translators: ON/OFF status of WPGlobus on the edit pages.
917
+ #: includes/class-wpglobus.php:1330
918
  msgid "OFF"
919
  msgstr ""
920
 
921
+ #: includes/class-wpglobus.php:1331
922
  msgid "Turn on"
923
  msgstr ""
924
 
925
  #. translators: ON/OFF status of WPGlobus on the edit pages.
926
+ #: includes/class-wpglobus.php:1335
927
  msgid "ON"
928
  msgstr ""
929
 
930
+ #: includes/class-wpglobus.php:1336
931
  msgid "Turn off"
932
  msgstr ""
933
 
934
+ #: includes/class-wpglobus.php:1519
935
  msgid "You cannot disable the main language."
936
  msgstr "No se puede desactivar el idioma principal."
937
 
938
+ #: includes/class-wpglobus.php:1720
939
  msgid "*) Available after the menu is saved."
940
  msgstr "No Se Puede Desactivar el director idioma."
941
 
942
+ #: includes/class-wpglobus.php:1737
943
  msgid "Need a multilingual slug?"
944
  msgstr ""
945
 
946
+ #: includes/class-wpglobus.php:4061
947
  msgid "You must enable Pretty Permalinks to use WPGlobus."
948
  msgstr ""
949
  "Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
950
 
951
+ #: includes/class-wpglobus.php:4063
952
  msgid ""
953
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
954
  "default option."
languages/wpglobus-et.po CHANGED
@@ -274,7 +274,7 @@ msgstr "Salvesta ja laadi uuesti"
274
 
275
  #: includes/admin/class-wpglobus-customize-options.php:546,
276
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
277
- #: includes/class-wpglobus.php:1346, wpglobus.php:12, wpglobus.php:18
278
  msgid "WPGlobus"
279
  msgstr "WPGlobus"
280
 
@@ -793,7 +793,7 @@ msgid "To translate permalinks, please activate the module Slug."
793
  msgstr ""
794
 
795
  #: includes/builders/class-wpglobus-builder.php:277,
796
- #: includes/class-wpglobus.php:3612
797
  msgid "Save draft before using extra language."
798
  msgstr ""
799
 
@@ -880,40 +880,40 @@ msgid "Selector type"
880
  msgstr ""
881
 
882
  #. translators: ON/OFF status of WPGlobus on the edit pages.
883
- #: includes/class-wpglobus.php:1320
884
  msgid "OFF"
885
  msgstr "VÄLJAS"
886
 
887
- #: includes/class-wpglobus.php:1321
888
  msgid "Turn on"
889
  msgstr "Lülita sisse"
890
 
891
  #. translators: ON/OFF status of WPGlobus on the edit pages.
892
- #: includes/class-wpglobus.php:1325
893
  msgid "ON"
894
  msgstr "SEES"
895
 
896
- #: includes/class-wpglobus.php:1326
897
  msgid "Turn off"
898
  msgstr "Lülita välja"
899
 
900
- #: includes/class-wpglobus.php:1509
901
  msgid "You cannot disable the main language."
902
  msgstr ""
903
 
904
- #: includes/class-wpglobus.php:1710
905
  msgid "*) Available after the menu is saved."
906
  msgstr ""
907
 
908
- #: includes/class-wpglobus.php:1727
909
  msgid "Need a multilingual slug?"
910
  msgstr ""
911
 
912
- #: includes/class-wpglobus.php:4051
913
  msgid "You must enable Pretty Permalinks to use WPGlobus."
914
  msgstr ""
915
 
916
- #: includes/class-wpglobus.php:4053
917
  msgid ""
918
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
919
  "default option."
274
 
275
  #: includes/admin/class-wpglobus-customize-options.php:546,
276
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
277
+ #: includes/class-wpglobus.php:1356, wpglobus.php:12, wpglobus.php:18
278
  msgid "WPGlobus"
279
  msgstr "WPGlobus"
280
 
793
  msgstr ""
794
 
795
  #: includes/builders/class-wpglobus-builder.php:277,
796
+ #: includes/class-wpglobus.php:3622
797
  msgid "Save draft before using extra language."
798
  msgstr ""
799
 
880
  msgstr ""
881
 
882
  #. translators: ON/OFF status of WPGlobus on the edit pages.
883
+ #: includes/class-wpglobus.php:1330
884
  msgid "OFF"
885
  msgstr "VÄLJAS"
886
 
887
+ #: includes/class-wpglobus.php:1331
888
  msgid "Turn on"
889
  msgstr "Lülita sisse"
890
 
891
  #. translators: ON/OFF status of WPGlobus on the edit pages.
892
+ #: includes/class-wpglobus.php:1335
893
  msgid "ON"
894
  msgstr "SEES"
895
 
896
+ #: includes/class-wpglobus.php:1336
897
  msgid "Turn off"
898
  msgstr "Lülita välja"
899
 
900
+ #: includes/class-wpglobus.php:1519
901
  msgid "You cannot disable the main language."
902
  msgstr ""
903
 
904
+ #: includes/class-wpglobus.php:1720
905
  msgid "*) Available after the menu is saved."
906
  msgstr ""
907
 
908
+ #: includes/class-wpglobus.php:1737
909
  msgid "Need a multilingual slug?"
910
  msgstr ""
911
 
912
+ #: includes/class-wpglobus.php:4061
913
  msgid "You must enable Pretty Permalinks to use WPGlobus."
914
  msgstr ""
915
 
916
+ #: includes/class-wpglobus.php:4063
917
  msgid ""
918
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
919
  "default option."
languages/wpglobus-fr_BE.po CHANGED
@@ -330,7 +330,7 @@ msgstr "Enregistrer & recharger"
330
 
331
  #: includes/admin/class-wpglobus-customize-options.php:546,
332
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
333
- #: includes/class-wpglobus.php:1346, wpglobus.php:12, wpglobus.php:18
334
  msgid "WPGlobus"
335
  msgstr "WPGlobus"
336
 
@@ -890,7 +890,7 @@ msgid "To translate permalinks, please activate the module Slug."
890
  msgstr ""
891
 
892
  #: includes/builders/class-wpglobus-builder.php:277,
893
- #: includes/class-wpglobus.php:3612
894
  msgid "Save draft before using extra language."
895
  msgstr ""
896
 
@@ -977,42 +977,42 @@ msgid "Selector type"
977
  msgstr "Type de sélecteur"
978
 
979
  #. translators: ON/OFF status of WPGlobus on the edit pages.
980
- #: includes/class-wpglobus.php:1320
981
  msgid "OFF"
982
  msgstr ""
983
 
984
- #: includes/class-wpglobus.php:1321
985
  msgid "Turn on"
986
  msgstr ""
987
 
988
  #. translators: ON/OFF status of WPGlobus on the edit pages.
989
- #: includes/class-wpglobus.php:1325
990
  msgid "ON"
991
  msgstr ""
992
 
993
- #: includes/class-wpglobus.php:1326
994
  msgid "Turn off"
995
  msgstr ""
996
 
997
- #: includes/class-wpglobus.php:1509
998
  msgid "You cannot disable the main language."
999
  msgstr "Vous ne pouvez pas désactiver la langue principale."
1000
 
1001
- #: includes/class-wpglobus.php:1710
1002
  msgid "*) Available after the menu is saved."
1003
  msgstr "*) Disponible après que le menu ait été enregistré."
1004
 
1005
- #: includes/class-wpglobus.php:1727
1006
  msgid "Need a multilingual slug?"
1007
  msgstr "Vous avez besoin d’un identifiant multilingue ?"
1008
 
1009
- #: includes/class-wpglobus.php:4051
1010
  msgid "You must enable Pretty Permalinks to use WPGlobus."
1011
  msgstr ""
1012
  "Vous devez activer les jolis permaliens pour pouvoir utiliser WPGlobus "
1013
  "correctement."
1014
 
1015
- #: includes/class-wpglobus.php:4053
1016
  msgid ""
1017
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
1018
  "default option."
330
 
331
  #: includes/admin/class-wpglobus-customize-options.php:546,
332
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
333
+ #: includes/class-wpglobus.php:1356, wpglobus.php:12, wpglobus.php:18
334
  msgid "WPGlobus"
335
  msgstr "WPGlobus"
336
 
890
  msgstr ""
891
 
892
  #: includes/builders/class-wpglobus-builder.php:277,
893
+ #: includes/class-wpglobus.php:3622
894
  msgid "Save draft before using extra language."
895
  msgstr ""
896
 
977
  msgstr "Type de sélecteur"
978
 
979
  #. translators: ON/OFF status of WPGlobus on the edit pages.
980
+ #: includes/class-wpglobus.php:1330
981
  msgid "OFF"
982
  msgstr ""
983
 
984
+ #: includes/class-wpglobus.php:1331
985
  msgid "Turn on"
986
  msgstr ""
987
 
988
  #. translators: ON/OFF status of WPGlobus on the edit pages.
989
+ #: includes/class-wpglobus.php:1335
990
  msgid "ON"
991
  msgstr ""
992
 
993
+ #: includes/class-wpglobus.php:1336
994
  msgid "Turn off"
995
  msgstr ""
996
 
997
+ #: includes/class-wpglobus.php:1519
998
  msgid "You cannot disable the main language."
999
  msgstr "Vous ne pouvez pas désactiver la langue principale."
1000
 
1001
+ #: includes/class-wpglobus.php:1720
1002
  msgid "*) Available after the menu is saved."
1003
  msgstr "*) Disponible après que le menu ait été enregistré."
1004
 
1005
+ #: includes/class-wpglobus.php:1737
1006
  msgid "Need a multilingual slug?"
1007
  msgstr "Vous avez besoin d’un identifiant multilingue ?"
1008
 
1009
+ #: includes/class-wpglobus.php:4061
1010
  msgid "You must enable Pretty Permalinks to use WPGlobus."
1011
  msgstr ""
1012
  "Vous devez activer les jolis permaliens pour pouvoir utiliser WPGlobus "
1013
  "correctement."
1014
 
1015
+ #: includes/class-wpglobus.php:4063
1016
  msgid ""
1017
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
1018
  "default option."
languages/wpglobus-fr_CA.po CHANGED
@@ -332,7 +332,7 @@ msgstr "Enregistrer & recharger"
332
 
333
  #: includes/admin/class-wpglobus-customize-options.php:546,
334
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
335
- #: includes/class-wpglobus.php:1346, wpglobus.php:12, wpglobus.php:18
336
  msgid "WPGlobus"
337
  msgstr "WPGlobus"
338
 
@@ -892,7 +892,7 @@ msgid "To translate permalinks, please activate the module Slug."
892
  msgstr ""
893
 
894
  #: includes/builders/class-wpglobus-builder.php:277,
895
- #: includes/class-wpglobus.php:3612
896
  msgid "Save draft before using extra language."
897
  msgstr ""
898
 
@@ -979,42 +979,42 @@ msgid "Selector type"
979
  msgstr "Type de sélecteur"
980
 
981
  #. translators: ON/OFF status of WPGlobus on the edit pages.
982
- #: includes/class-wpglobus.php:1320
983
  msgid "OFF"
984
  msgstr ""
985
 
986
- #: includes/class-wpglobus.php:1321
987
  msgid "Turn on"
988
  msgstr ""
989
 
990
  #. translators: ON/OFF status of WPGlobus on the edit pages.
991
- #: includes/class-wpglobus.php:1325
992
  msgid "ON"
993
  msgstr ""
994
 
995
- #: includes/class-wpglobus.php:1326
996
  msgid "Turn off"
997
  msgstr ""
998
 
999
- #: includes/class-wpglobus.php:1509
1000
  msgid "You cannot disable the main language."
1001
  msgstr "Vous ne pouvez pas désactiver la langue principale."
1002
 
1003
- #: includes/class-wpglobus.php:1710
1004
  msgid "*) Available after the menu is saved."
1005
  msgstr "*) Disponible après que le menu ait été enregistré."
1006
 
1007
- #: includes/class-wpglobus.php:1727
1008
  msgid "Need a multilingual slug?"
1009
  msgstr "Vous avez besoin d’un identifiant multilingue ?"
1010
 
1011
- #: includes/class-wpglobus.php:4051
1012
  msgid "You must enable Pretty Permalinks to use WPGlobus."
1013
  msgstr ""
1014
  "Vous devez activer les jolis permaliens pour pouvoir utiliser WPGlobus "
1015
  "correctement."
1016
 
1017
- #: includes/class-wpglobus.php:4053
1018
  msgid ""
1019
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
1020
  "default option."
332
 
333
  #: includes/admin/class-wpglobus-customize-options.php:546,
334
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
335
+ #: includes/class-wpglobus.php:1356, wpglobus.php:12, wpglobus.php:18
336
  msgid "WPGlobus"
337
  msgstr "WPGlobus"
338
 
892
  msgstr ""
893
 
894
  #: includes/builders/class-wpglobus-builder.php:277,
895
+ #: includes/class-wpglobus.php:3622
896
  msgid "Save draft before using extra language."
897
  msgstr ""
898
 
979
  msgstr "Type de sélecteur"
980
 
981
  #. translators: ON/OFF status of WPGlobus on the edit pages.
982
+ #: includes/class-wpglobus.php:1330
983
  msgid "OFF"
984
  msgstr ""
985
 
986
+ #: includes/class-wpglobus.php:1331
987
  msgid "Turn on"
988
  msgstr ""
989
 
990
  #. translators: ON/OFF status of WPGlobus on the edit pages.
991
+ #: includes/class-wpglobus.php:1335
992
  msgid "ON"
993
  msgstr ""
994
 
995
+ #: includes/class-wpglobus.php:1336
996
  msgid "Turn off"
997
  msgstr ""
998
 
999
+ #: includes/class-wpglobus.php:1519
1000
  msgid "You cannot disable the main language."
1001
  msgstr "Vous ne pouvez pas désactiver la langue principale."
1002
 
1003
+ #: includes/class-wpglobus.php:1720
1004
  msgid "*) Available after the menu is saved."
1005
  msgstr "*) Disponible après que le menu ait été enregistré."
1006
 
1007
+ #: includes/class-wpglobus.php:1737
1008
  msgid "Need a multilingual slug?"
1009
  msgstr "Vous avez besoin d’un identifiant multilingue ?"
1010
 
1011
+ #: includes/class-wpglobus.php:4061
1012
  msgid "You must enable Pretty Permalinks to use WPGlobus."
1013
  msgstr ""
1014
  "Vous devez activer les jolis permaliens pour pouvoir utiliser WPGlobus "
1015
  "correctement."
1016
 
1017
+ #: includes/class-wpglobus.php:4063
1018
  msgid ""
1019
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
1020
  "default option."
languages/wpglobus-fr_FR.po CHANGED
@@ -332,7 +332,7 @@ msgstr "Enregistrer & recharger"
332
 
333
  #: includes/admin/class-wpglobus-customize-options.php:546,
334
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
335
- #: includes/class-wpglobus.php:1346, wpglobus.php:12, wpglobus.php:18
336
  msgid "WPGlobus"
337
  msgstr "WPGlobus"
338
 
@@ -892,7 +892,7 @@ msgid "To translate permalinks, please activate the module Slug."
892
  msgstr ""
893
 
894
  #: includes/builders/class-wpglobus-builder.php:277,
895
- #: includes/class-wpglobus.php:3612
896
  msgid "Save draft before using extra language."
897
  msgstr ""
898
 
@@ -979,42 +979,42 @@ msgid "Selector type"
979
  msgstr "Type de sélecteur"
980
 
981
  #. translators: ON/OFF status of WPGlobus on the edit pages.
982
- #: includes/class-wpglobus.php:1320
983
  msgid "OFF"
984
  msgstr "NON"
985
 
986
- #: includes/class-wpglobus.php:1321
987
  msgid "Turn on"
988
  msgstr ""
989
 
990
  #. translators: ON/OFF status of WPGlobus on the edit pages.
991
- #: includes/class-wpglobus.php:1325
992
  msgid "ON"
993
  msgstr "OUI"
994
 
995
- #: includes/class-wpglobus.php:1326
996
  msgid "Turn off"
997
  msgstr ""
998
 
999
- #: includes/class-wpglobus.php:1509
1000
  msgid "You cannot disable the main language."
1001
  msgstr "Vous ne pouvez pas désactiver la langue principale."
1002
 
1003
- #: includes/class-wpglobus.php:1710
1004
  msgid "*) Available after the menu is saved."
1005
  msgstr "*) Disponible après que le menu ait été enregistré."
1006
 
1007
- #: includes/class-wpglobus.php:1727
1008
  msgid "Need a multilingual slug?"
1009
  msgstr "Vous avez besoin d’un identifiant multilingue ?"
1010
 
1011
- #: includes/class-wpglobus.php:4051
1012
  msgid "You must enable Pretty Permalinks to use WPGlobus."
1013
  msgstr ""
1014
  "Vous devez activer les jolis permaliens pour pouvoir utiliser WPGlobus "
1015
  "correctement."
1016
 
1017
- #: includes/class-wpglobus.php:4053
1018
  msgid ""
1019
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
1020
  "default option."
332
 
333
  #: includes/admin/class-wpglobus-customize-options.php:546,
334
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
335
+ #: includes/class-wpglobus.php:1356, wpglobus.php:12, wpglobus.php:18
336
  msgid "WPGlobus"
337
  msgstr "WPGlobus"
338
 
892
  msgstr ""
893
 
894
  #: includes/builders/class-wpglobus-builder.php:277,
895
+ #: includes/class-wpglobus.php:3622
896
  msgid "Save draft before using extra language."
897
  msgstr ""
898
 
979
  msgstr "Type de sélecteur"
980
 
981
  #. translators: ON/OFF status of WPGlobus on the edit pages.
982
+ #: includes/class-wpglobus.php:1330
983
  msgid "OFF"
984
  msgstr "NON"
985
 
986
+ #: includes/class-wpglobus.php:1331
987
  msgid "Turn on"
988
  msgstr ""
989
 
990
  #. translators: ON/OFF status of WPGlobus on the edit pages.
991
+ #: includes/class-wpglobus.php:1335
992
  msgid "ON"
993
  msgstr "OUI"
994
 
995
+ #: includes/class-wpglobus.php:1336
996
  msgid "Turn off"
997
  msgstr ""
998
 
999
+ #: includes/class-wpglobus.php:1519
1000
  msgid "You cannot disable the main language."
1001
  msgstr "Vous ne pouvez pas désactiver la langue principale."
1002
 
1003
+ #: includes/class-wpglobus.php:1720
1004
  msgid "*) Available after the menu is saved."
1005
  msgstr "*) Disponible après que le menu ait été enregistré."
1006
 
1007
+ #: includes/class-wpglobus.php:1737
1008
  msgid "Need a multilingual slug?"
1009
  msgstr "Vous avez besoin d’un identifiant multilingue ?"
1010
 
1011
+ #: includes/class-wpglobus.php:4061
1012
  msgid "You must enable Pretty Permalinks to use WPGlobus."
1013
  msgstr ""
1014
  "Vous devez activer les jolis permaliens pour pouvoir utiliser WPGlobus "
1015
  "correctement."
1016
 
1017
+ #: includes/class-wpglobus.php:4063
1018
  msgid ""
1019
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
1020
  "default option."
languages/wpglobus-id_ID.po CHANGED
@@ -321,7 +321,7 @@ msgstr "Simpan &amp; Reload"
321
 
322
  #: includes/admin/class-wpglobus-customize-options.php:546,
323
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
324
- #: includes/class-wpglobus.php:1346, wpglobus.php:12, wpglobus.php:18
325
  msgid "WPGlobus"
326
  msgstr "WPGlobus"
327
 
@@ -867,7 +867,7 @@ msgid "To translate permalinks, please activate the module Slug."
867
  msgstr ""
868
 
869
  #: includes/builders/class-wpglobus-builder.php:277,
870
- #: includes/class-wpglobus.php:3612
871
  msgid "Save draft before using extra language."
872
  msgstr ""
873
 
@@ -954,40 +954,40 @@ msgid "Selector type"
954
  msgstr "Jenis pemilih"
955
 
956
  #. translators: ON/OFF status of WPGlobus on the edit pages.
957
- #: includes/class-wpglobus.php:1320
958
  msgid "OFF"
959
  msgstr ""
960
 
961
- #: includes/class-wpglobus.php:1321
962
  msgid "Turn on"
963
  msgstr ""
964
 
965
  #. translators: ON/OFF status of WPGlobus on the edit pages.
966
- #: includes/class-wpglobus.php:1325
967
  msgid "ON"
968
  msgstr ""
969
 
970
- #: includes/class-wpglobus.php:1326
971
  msgid "Turn off"
972
  msgstr ""
973
 
974
- #: includes/class-wpglobus.php:1509
975
  msgid "You cannot disable the main language."
976
  msgstr "Anda tidak dapat menonaktifkan bahasa utama."
977
 
978
- #: includes/class-wpglobus.php:1710
979
  msgid "*) Available after the menu is saved."
980
  msgstr "*) Tersedia setelah menu tersebut disimpan."
981
 
982
- #: includes/class-wpglobus.php:1727
983
  msgid "Need a multilingual slug?"
984
  msgstr ""
985
 
986
- #: includes/class-wpglobus.php:4051
987
  msgid "You must enable Pretty Permalinks to use WPGlobus."
988
  msgstr "Anda harus mengaktifkan Permalinks Cukup menggunakan WPGlobus."
989
 
990
- #: includes/class-wpglobus.php:4053
991
  msgid ""
992
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
993
  "default option."
321
 
322
  #: includes/admin/class-wpglobus-customize-options.php:546,
323
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
324
+ #: includes/class-wpglobus.php:1356, wpglobus.php:12, wpglobus.php:18
325
  msgid "WPGlobus"
326
  msgstr "WPGlobus"
327
 
867
  msgstr ""
868
 
869
  #: includes/builders/class-wpglobus-builder.php:277,
870
+ #: includes/class-wpglobus.php:3622
871
  msgid "Save draft before using extra language."
872
  msgstr ""
873
 
954
  msgstr "Jenis pemilih"
955
 
956
  #. translators: ON/OFF status of WPGlobus on the edit pages.
957
+ #: includes/class-wpglobus.php:1330
958
  msgid "OFF"
959
  msgstr ""
960
 
961
+ #: includes/class-wpglobus.php:1331
962
  msgid "Turn on"
963
  msgstr ""
964
 
965
  #. translators: ON/OFF status of WPGlobus on the edit pages.
966
+ #: includes/class-wpglobus.php:1335
967
  msgid "ON"
968
  msgstr ""
969
 
970
+ #: includes/class-wpglobus.php:1336
971
  msgid "Turn off"
972
  msgstr ""
973
 
974
+ #: includes/class-wpglobus.php:1519
975
  msgid "You cannot disable the main language."
976
  msgstr "Anda tidak dapat menonaktifkan bahasa utama."
977
 
978
+ #: includes/class-wpglobus.php:1720
979
  msgid "*) Available after the menu is saved."
980
  msgstr "*) Tersedia setelah menu tersebut disimpan."
981
 
982
+ #: includes/class-wpglobus.php:1737
983
  msgid "Need a multilingual slug?"
984
  msgstr ""
985
 
986
+ #: includes/class-wpglobus.php:4061
987
  msgid "You must enable Pretty Permalinks to use WPGlobus."
988
  msgstr "Anda harus mengaktifkan Permalinks Cukup menggunakan WPGlobus."
989
 
990
+ #: includes/class-wpglobus.php:4063
991
  msgid ""
992
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
993
  "default option."
languages/wpglobus-ko_KR.po CHANGED
@@ -273,7 +273,7 @@ msgstr ""
273
 
274
  #: includes/admin/class-wpglobus-customize-options.php:546,
275
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
276
- #: includes/class-wpglobus.php:1346, wpglobus.php:12, wpglobus.php:18
277
  msgid "WPGlobus"
278
  msgstr ""
279
 
@@ -792,7 +792,7 @@ msgid "To translate permalinks, please activate the module Slug."
792
  msgstr ""
793
 
794
  #: includes/builders/class-wpglobus-builder.php:277,
795
- #: includes/class-wpglobus.php:3612
796
  msgid "Save draft before using extra language."
797
  msgstr ""
798
 
@@ -879,40 +879,40 @@ msgid "Selector type"
879
  msgstr ""
880
 
881
  #. translators: ON/OFF status of WPGlobus on the edit pages.
882
- #: includes/class-wpglobus.php:1320
883
  msgid "OFF"
884
  msgstr ""
885
 
886
- #: includes/class-wpglobus.php:1321
887
  msgid "Turn on"
888
  msgstr ""
889
 
890
  #. translators: ON/OFF status of WPGlobus on the edit pages.
891
- #: includes/class-wpglobus.php:1325
892
  msgid "ON"
893
  msgstr ""
894
 
895
- #: includes/class-wpglobus.php:1326
896
  msgid "Turn off"
897
  msgstr ""
898
 
899
- #: includes/class-wpglobus.php:1509
900
  msgid "You cannot disable the main language."
901
  msgstr ""
902
 
903
- #: includes/class-wpglobus.php:1710
904
  msgid "*) Available after the menu is saved."
905
  msgstr ""
906
 
907
- #: includes/class-wpglobus.php:1727
908
  msgid "Need a multilingual slug?"
909
  msgstr ""
910
 
911
- #: includes/class-wpglobus.php:4051
912
  msgid "You must enable Pretty Permalinks to use WPGlobus."
913
  msgstr ""
914
 
915
- #: includes/class-wpglobus.php:4053
916
  msgid ""
917
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
918
  "default option."
273
 
274
  #: includes/admin/class-wpglobus-customize-options.php:546,
275
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
276
+ #: includes/class-wpglobus.php:1356, wpglobus.php:12, wpglobus.php:18
277
  msgid "WPGlobus"
278
  msgstr ""
279
 
792
  msgstr ""
793
 
794
  #: includes/builders/class-wpglobus-builder.php:277,
795
+ #: includes/class-wpglobus.php:3622
796
  msgid "Save draft before using extra language."
797
  msgstr ""
798
 
879
  msgstr ""
880
 
881
  #. translators: ON/OFF status of WPGlobus on the edit pages.
882
+ #: includes/class-wpglobus.php:1330
883
  msgid "OFF"
884
  msgstr ""
885
 
886
+ #: includes/class-wpglobus.php:1331
887
  msgid "Turn on"
888
  msgstr ""
889
 
890
  #. translators: ON/OFF status of WPGlobus on the edit pages.
891
+ #: includes/class-wpglobus.php:1335
892
  msgid "ON"
893
  msgstr ""
894
 
895
+ #: includes/class-wpglobus.php:1336
896
  msgid "Turn off"
897
  msgstr ""
898
 
899
+ #: includes/class-wpglobus.php:1519
900
  msgid "You cannot disable the main language."
901
  msgstr ""
902
 
903
+ #: includes/class-wpglobus.php:1720
904
  msgid "*) Available after the menu is saved."
905
  msgstr ""
906
 
907
+ #: includes/class-wpglobus.php:1737
908
  msgid "Need a multilingual slug?"
909
  msgstr ""
910
 
911
+ #: includes/class-wpglobus.php:4061
912
  msgid "You must enable Pretty Permalinks to use WPGlobus."
913
  msgstr ""
914
 
915
+ #: includes/class-wpglobus.php:4063
916
  msgid ""
917
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
918
  "default option."
languages/wpglobus-pl_PL.po CHANGED
@@ -291,7 +291,7 @@ msgstr ""
291
 
292
  #: includes/admin/class-wpglobus-customize-options.php:546,
293
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
294
- #: includes/class-wpglobus.php:1346, wpglobus.php:12, wpglobus.php:18
295
  msgid "WPGlobus"
296
  msgstr "WPGlobus"
297
 
@@ -819,7 +819,7 @@ msgid "To translate permalinks, please activate the module Slug."
819
  msgstr ""
820
 
821
  #: includes/builders/class-wpglobus-builder.php:277,
822
- #: includes/class-wpglobus.php:3612
823
  msgid "Save draft before using extra language."
824
  msgstr ""
825
 
@@ -906,41 +906,41 @@ msgid "Selector type"
906
  msgstr "Sposób wyboru"
907
 
908
  #. translators: ON/OFF status of WPGlobus on the edit pages.
909
- #: includes/class-wpglobus.php:1320
910
  msgid "OFF"
911
  msgstr ""
912
 
913
- #: includes/class-wpglobus.php:1321
914
  msgid "Turn on"
915
  msgstr ""
916
 
917
  #. translators: ON/OFF status of WPGlobus on the edit pages.
918
- #: includes/class-wpglobus.php:1325
919
  msgid "ON"
920
  msgstr ""
921
 
922
- #: includes/class-wpglobus.php:1326
923
  msgid "Turn off"
924
  msgstr ""
925
 
926
- #: includes/class-wpglobus.php:1509
927
  msgid "You cannot disable the main language."
928
  msgstr "Nie możesz wyłączyć głównego języka."
929
 
930
- #: includes/class-wpglobus.php:1710
931
  msgid "*) Available after the menu is saved."
932
  msgstr "*) Dostępne po zapisaniu menu."
933
 
934
- #: includes/class-wpglobus.php:1727
935
  msgid "Need a multilingual slug?"
936
  msgstr ""
937
 
938
- #: includes/class-wpglobus.php:4051
939
  msgid "You must enable Pretty Permalinks to use WPGlobus."
940
  msgstr ""
941
  "Aby korzystać z WPGlobus'a, musisz ustawić przyjazne bezpośrednie odnośniki."
942
 
943
- #: includes/class-wpglobus.php:4053
944
  msgid ""
945
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
946
  "default option."
291
 
292
  #: includes/admin/class-wpglobus-customize-options.php:546,
293
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
294
+ #: includes/class-wpglobus.php:1356, wpglobus.php:12, wpglobus.php:18
295
  msgid "WPGlobus"
296
  msgstr "WPGlobus"
297
 
819
  msgstr ""
820
 
821
  #: includes/builders/class-wpglobus-builder.php:277,
822
+ #: includes/class-wpglobus.php:3622
823
  msgid "Save draft before using extra language."
824
  msgstr ""
825
 
906
  msgstr "Sposób wyboru"
907
 
908
  #. translators: ON/OFF status of WPGlobus on the edit pages.
909
+ #: includes/class-wpglobus.php:1330
910
  msgid "OFF"
911
  msgstr ""
912
 
913
+ #: includes/class-wpglobus.php:1331
914
  msgid "Turn on"
915
  msgstr ""
916
 
917
  #. translators: ON/OFF status of WPGlobus on the edit pages.
918
+ #: includes/class-wpglobus.php:1335
919
  msgid "ON"
920
  msgstr ""
921
 
922
+ #: includes/class-wpglobus.php:1336
923
  msgid "Turn off"
924
  msgstr ""
925
 
926
+ #: includes/class-wpglobus.php:1519
927
  msgid "You cannot disable the main language."
928
  msgstr "Nie możesz wyłączyć głównego języka."
929
 
930
+ #: includes/class-wpglobus.php:1720
931
  msgid "*) Available after the menu is saved."
932
  msgstr "*) Dostępne po zapisaniu menu."
933
 
934
+ #: includes/class-wpglobus.php:1737
935
  msgid "Need a multilingual slug?"
936
  msgstr ""
937
 
938
+ #: includes/class-wpglobus.php:4061
939
  msgid "You must enable Pretty Permalinks to use WPGlobus."
940
  msgstr ""
941
  "Aby korzystać z WPGlobus'a, musisz ustawić przyjazne bezpośrednie odnośniki."
942
 
943
+ #: includes/class-wpglobus.php:4063
944
  msgid ""
945
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
946
  "default option."
languages/wpglobus-pt_BR.po CHANGED
@@ -273,7 +273,7 @@ msgstr ""
273
 
274
  #: includes/admin/class-wpglobus-customize-options.php:546,
275
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
276
- #: includes/class-wpglobus.php:1346, wpglobus.php:12, wpglobus.php:18
277
  msgid "WPGlobus"
278
  msgstr ""
279
 
@@ -792,7 +792,7 @@ msgid "To translate permalinks, please activate the module Slug."
792
  msgstr ""
793
 
794
  #: includes/builders/class-wpglobus-builder.php:277,
795
- #: includes/class-wpglobus.php:3612
796
  msgid "Save draft before using extra language."
797
  msgstr ""
798
 
@@ -879,40 +879,40 @@ msgid "Selector type"
879
  msgstr ""
880
 
881
  #. translators: ON/OFF status of WPGlobus on the edit pages.
882
- #: includes/class-wpglobus.php:1320
883
  msgid "OFF"
884
  msgstr "DESLIGADO"
885
 
886
- #: includes/class-wpglobus.php:1321
887
  msgid "Turn on"
888
  msgstr ""
889
 
890
  #. translators: ON/OFF status of WPGlobus on the edit pages.
891
- #: includes/class-wpglobus.php:1325
892
  msgid "ON"
893
  msgstr "LIGADO"
894
 
895
- #: includes/class-wpglobus.php:1326
896
  msgid "Turn off"
897
  msgstr ""
898
 
899
- #: includes/class-wpglobus.php:1509
900
  msgid "You cannot disable the main language."
901
  msgstr ""
902
 
903
- #: includes/class-wpglobus.php:1710
904
  msgid "*) Available after the menu is saved."
905
  msgstr ""
906
 
907
- #: includes/class-wpglobus.php:1727
908
  msgid "Need a multilingual slug?"
909
  msgstr ""
910
 
911
- #: includes/class-wpglobus.php:4051
912
  msgid "You must enable Pretty Permalinks to use WPGlobus."
913
  msgstr ""
914
 
915
- #: includes/class-wpglobus.php:4053
916
  msgid ""
917
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
918
  "default option."
273
 
274
  #: includes/admin/class-wpglobus-customize-options.php:546,
275
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
276
+ #: includes/class-wpglobus.php:1356, wpglobus.php:12, wpglobus.php:18
277
  msgid "WPGlobus"
278
  msgstr ""
279
 
792
  msgstr ""
793
 
794
  #: includes/builders/class-wpglobus-builder.php:277,
795
+ #: includes/class-wpglobus.php:3622
796
  msgid "Save draft before using extra language."
797
  msgstr ""
798
 
879
  msgstr ""
880
 
881
  #. translators: ON/OFF status of WPGlobus on the edit pages.
882
+ #: includes/class-wpglobus.php:1330
883
  msgid "OFF"
884
  msgstr "DESLIGADO"
885
 
886
+ #: includes/class-wpglobus.php:1331
887
  msgid "Turn on"
888
  msgstr ""
889
 
890
  #. translators: ON/OFF status of WPGlobus on the edit pages.
891
+ #: includes/class-wpglobus.php:1335
892
  msgid "ON"
893
  msgstr "LIGADO"
894
 
895
+ #: includes/class-wpglobus.php:1336
896
  msgid "Turn off"
897
  msgstr ""
898
 
899
+ #: includes/class-wpglobus.php:1519
900
  msgid "You cannot disable the main language."
901
  msgstr ""
902
 
903
+ #: includes/class-wpglobus.php:1720
904
  msgid "*) Available after the menu is saved."
905
  msgstr ""
906
 
907
+ #: includes/class-wpglobus.php:1737
908
  msgid "Need a multilingual slug?"
909
  msgstr ""
910
 
911
+ #: includes/class-wpglobus.php:4061
912
  msgid "You must enable Pretty Permalinks to use WPGlobus."
913
  msgstr ""
914
 
915
+ #: includes/class-wpglobus.php:4063
916
  msgid ""
917
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
918
  "default option."
languages/wpglobus-pt_PT.po CHANGED
@@ -273,7 +273,7 @@ msgstr ""
273
 
274
  #: includes/admin/class-wpglobus-customize-options.php:546,
275
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
276
- #: includes/class-wpglobus.php:1346, wpglobus.php:12, wpglobus.php:18
277
  msgid "WPGlobus"
278
  msgstr ""
279
 
@@ -792,7 +792,7 @@ msgid "To translate permalinks, please activate the module Slug."
792
  msgstr ""
793
 
794
  #: includes/builders/class-wpglobus-builder.php:277,
795
- #: includes/class-wpglobus.php:3612
796
  msgid "Save draft before using extra language."
797
  msgstr ""
798
 
@@ -879,40 +879,40 @@ msgid "Selector type"
879
  msgstr ""
880
 
881
  #. translators: ON/OFF status of WPGlobus on the edit pages.
882
- #: includes/class-wpglobus.php:1320
883
  msgid "OFF"
884
  msgstr "Não"
885
 
886
- #: includes/class-wpglobus.php:1321
887
  msgid "Turn on"
888
  msgstr ""
889
 
890
  #. translators: ON/OFF status of WPGlobus on the edit pages.
891
- #: includes/class-wpglobus.php:1325
892
  msgid "ON"
893
  msgstr "Sim"
894
 
895
- #: includes/class-wpglobus.php:1326
896
  msgid "Turn off"
897
  msgstr ""
898
 
899
- #: includes/class-wpglobus.php:1509
900
  msgid "You cannot disable the main language."
901
  msgstr ""
902
 
903
- #: includes/class-wpglobus.php:1710
904
  msgid "*) Available after the menu is saved."
905
  msgstr ""
906
 
907
- #: includes/class-wpglobus.php:1727
908
  msgid "Need a multilingual slug?"
909
  msgstr ""
910
 
911
- #: includes/class-wpglobus.php:4051
912
  msgid "You must enable Pretty Permalinks to use WPGlobus."
913
  msgstr ""
914
 
915
- #: includes/class-wpglobus.php:4053
916
  msgid ""
917
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
918
  "default option."
273
 
274
  #: includes/admin/class-wpglobus-customize-options.php:546,
275
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
276
+ #: includes/class-wpglobus.php:1356, wpglobus.php:12, wpglobus.php:18
277
  msgid "WPGlobus"
278
  msgstr ""
279
 
792
  msgstr ""
793
 
794
  #: includes/builders/class-wpglobus-builder.php:277,
795
+ #: includes/class-wpglobus.php:3622
796
  msgid "Save draft before using extra language."
797
  msgstr ""
798
 
879
  msgstr ""
880
 
881
  #. translators: ON/OFF status of WPGlobus on the edit pages.
882
+ #: includes/class-wpglobus.php:1330
883
  msgid "OFF"
884
  msgstr "Não"
885
 
886
+ #: includes/class-wpglobus.php:1331
887
  msgid "Turn on"
888
  msgstr ""
889
 
890
  #. translators: ON/OFF status of WPGlobus on the edit pages.
891
+ #: includes/class-wpglobus.php:1335
892
  msgid "ON"
893
  msgstr "Sim"
894
 
895
+ #: includes/class-wpglobus.php:1336
896
  msgid "Turn off"
897
  msgstr ""
898
 
899
+ #: includes/class-wpglobus.php:1519
900
  msgid "You cannot disable the main language."
901
  msgstr ""
902
 
903
+ #: includes/class-wpglobus.php:1720
904
  msgid "*) Available after the menu is saved."
905
  msgstr ""
906
 
907
+ #: includes/class-wpglobus.php:1737
908
  msgid "Need a multilingual slug?"
909
  msgstr ""
910
 
911
+ #: includes/class-wpglobus.php:4061
912
  msgid "You must enable Pretty Permalinks to use WPGlobus."
913
  msgstr ""
914
 
915
+ #: includes/class-wpglobus.php:4063
916
  msgid ""
917
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
918
  "default option."
languages/wpglobus-ro_RO.po CHANGED
@@ -290,7 +290,7 @@ msgstr ""
290
 
291
  #: includes/admin/class-wpglobus-customize-options.php:546,
292
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
293
- #: includes/class-wpglobus.php:1346, wpglobus.php:12, wpglobus.php:18
294
  msgid "WPGlobus"
295
  msgstr "WPGlobus"
296
 
@@ -822,7 +822,7 @@ msgid "To translate permalinks, please activate the module Slug."
822
  msgstr ""
823
 
824
  #: includes/builders/class-wpglobus-builder.php:277,
825
- #: includes/class-wpglobus.php:3612
826
  msgid "Save draft before using extra language."
827
  msgstr ""
828
 
@@ -909,40 +909,40 @@ msgid "Selector type"
909
  msgstr "Tipul de selector"
910
 
911
  #. translators: ON/OFF status of WPGlobus on the edit pages.
912
- #: includes/class-wpglobus.php:1320
913
  msgid "OFF"
914
  msgstr ""
915
 
916
- #: includes/class-wpglobus.php:1321
917
  msgid "Turn on"
918
  msgstr ""
919
 
920
  #. translators: ON/OFF status of WPGlobus on the edit pages.
921
- #: includes/class-wpglobus.php:1325
922
  msgid "ON"
923
  msgstr ""
924
 
925
- #: includes/class-wpglobus.php:1326
926
  msgid "Turn off"
927
  msgstr ""
928
 
929
- #: includes/class-wpglobus.php:1509
930
  msgid "You cannot disable the main language."
931
  msgstr "Nu puteți dezactiva limba principală."
932
 
933
- #: includes/class-wpglobus.php:1710
934
  msgid "*) Available after the menu is saved."
935
  msgstr "*) Disponibil după ce meniul este salvat."
936
 
937
- #: includes/class-wpglobus.php:1727
938
  msgid "Need a multilingual slug?"
939
  msgstr ""
940
 
941
- #: includes/class-wpglobus.php:4051
942
  msgid "You must enable Pretty Permalinks to use WPGlobus."
943
  msgstr "Trebuie să activezi Pretty Permalinks pentru a folosi WPGlobus."
944
 
945
- #: includes/class-wpglobus.php:4053
946
  msgid ""
947
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
948
  "default option."
290
 
291
  #: includes/admin/class-wpglobus-customize-options.php:546,
292
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
293
+ #: includes/class-wpglobus.php:1356, wpglobus.php:12, wpglobus.php:18
294
  msgid "WPGlobus"
295
  msgstr "WPGlobus"
296
 
822
  msgstr ""
823
 
824
  #: includes/builders/class-wpglobus-builder.php:277,
825
+ #: includes/class-wpglobus.php:3622
826
  msgid "Save draft before using extra language."
827
  msgstr ""
828
 
909
  msgstr "Tipul de selector"
910
 
911
  #. translators: ON/OFF status of WPGlobus on the edit pages.
912
+ #: includes/class-wpglobus.php:1330
913
  msgid "OFF"
914
  msgstr ""
915
 
916
+ #: includes/class-wpglobus.php:1331
917
  msgid "Turn on"
918
  msgstr ""
919
 
920
  #. translators: ON/OFF status of WPGlobus on the edit pages.
921
+ #: includes/class-wpglobus.php:1335
922
  msgid "ON"
923
  msgstr ""
924
 
925
+ #: includes/class-wpglobus.php:1336
926
  msgid "Turn off"
927
  msgstr ""
928
 
929
+ #: includes/class-wpglobus.php:1519
930
  msgid "You cannot disable the main language."
931
  msgstr "Nu puteți dezactiva limba principală."
932
 
933
+ #: includes/class-wpglobus.php:1720
934
  msgid "*) Available after the menu is saved."
935
  msgstr "*) Disponibil după ce meniul este salvat."
936
 
937
+ #: includes/class-wpglobus.php:1737
938
  msgid "Need a multilingual slug?"
939
  msgstr ""
940
 
941
+ #: includes/class-wpglobus.php:4061
942
  msgid "You must enable Pretty Permalinks to use WPGlobus."
943
  msgstr "Trebuie să activezi Pretty Permalinks pentru a folosi WPGlobus."
944
 
945
+ #: includes/class-wpglobus.php:4063
946
  msgid ""
947
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
948
  "default option."
languages/wpglobus-ru_RU.po CHANGED
@@ -322,7 +322,7 @@ msgstr "Сохранить и перезагрузить"
322
 
323
  #: includes/admin/class-wpglobus-customize-options.php:546,
324
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
325
- #: includes/class-wpglobus.php:1346, wpglobus.php:12, wpglobus.php:18
326
  msgid "WPGlobus"
327
  msgstr "WPGlobus"
328
 
@@ -873,7 +873,7 @@ msgid "To translate permalinks, please activate the module Slug."
873
  msgstr "Для перевода ссылок необходимо активировать модуль УРЛ."
874
 
875
  #: includes/builders/class-wpglobus-builder.php:277,
876
- #: includes/class-wpglobus.php:3612
877
  msgid "Save draft before using extra language."
878
  msgstr "Сохраните черновик перед переключением на другой язык."
879
 
@@ -964,42 +964,42 @@ msgid "Selector type"
964
  msgstr "Способ выбора языка"
965
 
966
  #. translators: ON/OFF status of WPGlobus on the edit pages.
967
- #: includes/class-wpglobus.php:1320
968
  msgid "OFF"
969
  msgstr "ВЫКЛ"
970
 
971
- #: includes/class-wpglobus.php:1321
972
  msgid "Turn on"
973
  msgstr "Включить"
974
 
975
  #. translators: ON/OFF status of WPGlobus on the edit pages.
976
- #: includes/class-wpglobus.php:1325
977
  msgid "ON"
978
  msgstr "ВКЛ"
979
 
980
- #: includes/class-wpglobus.php:1326
981
  msgid "Turn off"
982
  msgstr "Выключить"
983
 
984
- #: includes/class-wpglobus.php:1509
985
  msgid "You cannot disable the main language."
986
  msgstr "Нельзя отключить основной язык."
987
 
988
- #: includes/class-wpglobus.php:1710
989
  msgid "*) Available after the menu is saved."
990
  msgstr "*) Доступно после сохранения меню."
991
 
992
- #: includes/class-wpglobus.php:1727
993
  msgid "Need a multilingual slug?"
994
  msgstr "Нужен мультиязычный ярлык?"
995
 
996
- #: includes/class-wpglobus.php:4051
997
  msgid "You must enable Pretty Permalinks to use WPGlobus."
998
  msgstr ""
999
  "Чтобы использовать плагин WPGlobus, необходимо включить ЧПУ - постоянные "
1000
  "ссылки."
1001
 
1002
- #: includes/class-wpglobus.php:4053
1003
  msgid ""
1004
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
1005
  "default option."
322
 
323
  #: includes/admin/class-wpglobus-customize-options.php:546,
324
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
325
+ #: includes/class-wpglobus.php:1356, wpglobus.php:12, wpglobus.php:18
326
  msgid "WPGlobus"
327
  msgstr "WPGlobus"
328
 
873
  msgstr "Для перевода ссылок необходимо активировать модуль УРЛ."
874
 
875
  #: includes/builders/class-wpglobus-builder.php:277,
876
+ #: includes/class-wpglobus.php:3622
877
  msgid "Save draft before using extra language."
878
  msgstr "Сохраните черновик перед переключением на другой язык."
879
 
964
  msgstr "Способ выбора языка"
965
 
966
  #. translators: ON/OFF status of WPGlobus on the edit pages.
967
+ #: includes/class-wpglobus.php:1330
968
  msgid "OFF"
969
  msgstr "ВЫКЛ"
970
 
971
+ #: includes/class-wpglobus.php:1331
972
  msgid "Turn on"
973
  msgstr "Включить"
974
 
975
  #. translators: ON/OFF status of WPGlobus on the edit pages.
976
+ #: includes/class-wpglobus.php:1335
977
  msgid "ON"
978
  msgstr "ВКЛ"
979
 
980
+ #: includes/class-wpglobus.php:1336
981
  msgid "Turn off"
982
  msgstr "Выключить"
983
 
984
+ #: includes/class-wpglobus.php:1519
985
  msgid "You cannot disable the main language."
986
  msgstr "Нельзя отключить основной язык."
987
 
988
+ #: includes/class-wpglobus.php:1720
989
  msgid "*) Available after the menu is saved."
990
  msgstr "*) Доступно после сохранения меню."
991
 
992
+ #: includes/class-wpglobus.php:1737
993
  msgid "Need a multilingual slug?"
994
  msgstr "Нужен мультиязычный ярлык?"
995
 
996
+ #: includes/class-wpglobus.php:4061
997
  msgid "You must enable Pretty Permalinks to use WPGlobus."
998
  msgstr ""
999
  "Чтобы использовать плагин WPGlobus, необходимо включить ЧПУ - постоянные "
1000
  "ссылки."
1001
 
1002
+ #: includes/class-wpglobus.php:4063
1003
  msgid ""
1004
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
1005
  "default option."
languages/wpglobus-sv_SE.po CHANGED
@@ -290,7 +290,7 @@ msgstr "Spara och ladda om"
290
 
291
  #: includes/admin/class-wpglobus-customize-options.php:546,
292
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
293
- #: includes/class-wpglobus.php:1346, wpglobus.php:12, wpglobus.php:18
294
  msgid "WPGlobus"
295
  msgstr "WPGlobus"
296
 
@@ -818,7 +818,7 @@ msgid "To translate permalinks, please activate the module Slug."
818
  msgstr ""
819
 
820
  #: includes/builders/class-wpglobus-builder.php:277,
821
- #: includes/class-wpglobus.php:3612
822
  msgid "Save draft before using extra language."
823
  msgstr "Spara utkast innan du använder extra språk."
824
 
@@ -905,40 +905,40 @@ msgid "Selector type"
905
  msgstr "Väljartyp"
906
 
907
  #. translators: ON/OFF status of WPGlobus on the edit pages.
908
- #: includes/class-wpglobus.php:1320
909
  msgid "OFF"
910
  msgstr "AV"
911
 
912
- #: includes/class-wpglobus.php:1321
913
  msgid "Turn on"
914
  msgstr ""
915
 
916
  #. translators: ON/OFF status of WPGlobus on the edit pages.
917
- #: includes/class-wpglobus.php:1325
918
  msgid "ON"
919
  msgstr "PÅ"
920
 
921
- #: includes/class-wpglobus.php:1326
922
  msgid "Turn off"
923
  msgstr "Stäng av"
924
 
925
- #: includes/class-wpglobus.php:1509
926
  msgid "You cannot disable the main language."
927
  msgstr "Du kan inte stänga av huvudspråk."
928
 
929
- #: includes/class-wpglobus.php:1710
930
  msgid "*) Available after the menu is saved."
931
  msgstr "*) Tillgängligt när menyn sparats."
932
 
933
- #: includes/class-wpglobus.php:1727
934
  msgid "Need a multilingual slug?"
935
  msgstr ""
936
 
937
- #: includes/class-wpglobus.php:4051
938
  msgid "You must enable Pretty Permalinks to use WPGlobus."
939
  msgstr "Du måste aktivera Vackra Permalänkar för att använda WPGlobus."
940
 
941
- #: includes/class-wpglobus.php:4053
942
  msgid ""
943
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
944
  "default option."
290
 
291
  #: includes/admin/class-wpglobus-customize-options.php:546,
292
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
293
+ #: includes/class-wpglobus.php:1356, wpglobus.php:12, wpglobus.php:18
294
  msgid "WPGlobus"
295
  msgstr "WPGlobus"
296
 
818
  msgstr ""
819
 
820
  #: includes/builders/class-wpglobus-builder.php:277,
821
+ #: includes/class-wpglobus.php:3622
822
  msgid "Save draft before using extra language."
823
  msgstr "Spara utkast innan du använder extra språk."
824
 
905
  msgstr "Väljartyp"
906
 
907
  #. translators: ON/OFF status of WPGlobus on the edit pages.
908
+ #: includes/class-wpglobus.php:1330
909
  msgid "OFF"
910
  msgstr "AV"
911
 
912
+ #: includes/class-wpglobus.php:1331
913
  msgid "Turn on"
914
  msgstr ""
915
 
916
  #. translators: ON/OFF status of WPGlobus on the edit pages.
917
+ #: includes/class-wpglobus.php:1335
918
  msgid "ON"
919
  msgstr "PÅ"
920
 
921
+ #: includes/class-wpglobus.php:1336
922
  msgid "Turn off"
923
  msgstr "Stäng av"
924
 
925
+ #: includes/class-wpglobus.php:1519
926
  msgid "You cannot disable the main language."
927
  msgstr "Du kan inte stänga av huvudspråk."
928
 
929
+ #: includes/class-wpglobus.php:1720
930
  msgid "*) Available after the menu is saved."
931
  msgstr "*) Tillgängligt när menyn sparats."
932
 
933
+ #: includes/class-wpglobus.php:1737
934
  msgid "Need a multilingual slug?"
935
  msgstr ""
936
 
937
+ #: includes/class-wpglobus.php:4061
938
  msgid "You must enable Pretty Permalinks to use WPGlobus."
939
  msgstr "Du måste aktivera Vackra Permalänkar för att använda WPGlobus."
940
 
941
+ #: includes/class-wpglobus.php:4063
942
  msgid ""
943
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
944
  "default option."
languages/wpglobus-tr_TR.po CHANGED
@@ -291,7 +291,7 @@ msgstr ""
291
 
292
  #: includes/admin/class-wpglobus-customize-options.php:546,
293
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
294
- #: includes/class-wpglobus.php:1346, wpglobus.php:12, wpglobus.php:18
295
  msgid "WPGlobus"
296
  msgstr ""
297
 
@@ -818,7 +818,7 @@ msgid "To translate permalinks, please activate the module Slug."
818
  msgstr ""
819
 
820
  #: includes/builders/class-wpglobus-builder.php:277,
821
- #: includes/class-wpglobus.php:3612
822
  msgid "Save draft before using extra language."
823
  msgstr ""
824
 
@@ -905,41 +905,41 @@ msgid "Selector type"
905
  msgstr "Değiştirici tipi"
906
 
907
  #. translators: ON/OFF status of WPGlobus on the edit pages.
908
- #: includes/class-wpglobus.php:1320
909
  msgid "OFF"
910
  msgstr "KAPALI"
911
 
912
- #: includes/class-wpglobus.php:1321
913
  msgid "Turn on"
914
  msgstr ""
915
 
916
  #. translators: ON/OFF status of WPGlobus on the edit pages.
917
- #: includes/class-wpglobus.php:1325
918
  msgid "ON"
919
  msgstr "AÇIK"
920
 
921
- #: includes/class-wpglobus.php:1326
922
  msgid "Turn off"
923
  msgstr ""
924
 
925
- #: includes/class-wpglobus.php:1509
926
  msgid "You cannot disable the main language."
927
  msgstr "Asıl dili etkisizleştiremezsiniz."
928
 
929
- #: includes/class-wpglobus.php:1710
930
  msgid "*) Available after the menu is saved."
931
  msgstr "*) Menü kaydedildikten sonra kullanılabilir."
932
 
933
- #: includes/class-wpglobus.php:1727
934
  msgid "Need a multilingual slug?"
935
  msgstr ""
936
 
937
- #: includes/class-wpglobus.php:4051
938
  msgid "You must enable Pretty Permalinks to use WPGlobus."
939
  msgstr ""
940
  "WPGlobus' u kullanabilmek için Pretty Permalinks' i etkinleştirmelisiniz."
941
 
942
- #: includes/class-wpglobus.php:4053
943
  msgid ""
944
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
945
  "default option."
291
 
292
  #: includes/admin/class-wpglobus-customize-options.php:546,
293
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
294
+ #: includes/class-wpglobus.php:1356, wpglobus.php:12, wpglobus.php:18
295
  msgid "WPGlobus"
296
  msgstr ""
297
 
818
  msgstr ""
819
 
820
  #: includes/builders/class-wpglobus-builder.php:277,
821
+ #: includes/class-wpglobus.php:3622
822
  msgid "Save draft before using extra language."
823
  msgstr ""
824
 
905
  msgstr "Değiştirici tipi"
906
 
907
  #. translators: ON/OFF status of WPGlobus on the edit pages.
908
+ #: includes/class-wpglobus.php:1330
909
  msgid "OFF"
910
  msgstr "KAPALI"
911
 
912
+ #: includes/class-wpglobus.php:1331
913
  msgid "Turn on"
914
  msgstr ""
915
 
916
  #. translators: ON/OFF status of WPGlobus on the edit pages.
917
+ #: includes/class-wpglobus.php:1335
918
  msgid "ON"
919
  msgstr "AÇIK"
920
 
921
+ #: includes/class-wpglobus.php:1336
922
  msgid "Turn off"
923
  msgstr ""
924
 
925
+ #: includes/class-wpglobus.php:1519
926
  msgid "You cannot disable the main language."
927
  msgstr "Asıl dili etkisizleştiremezsiniz."
928
 
929
+ #: includes/class-wpglobus.php:1720
930
  msgid "*) Available after the menu is saved."
931
  msgstr "*) Menü kaydedildikten sonra kullanılabilir."
932
 
933
+ #: includes/class-wpglobus.php:1737
934
  msgid "Need a multilingual slug?"
935
  msgstr ""
936
 
937
+ #: includes/class-wpglobus.php:4061
938
  msgid "You must enable Pretty Permalinks to use WPGlobus."
939
  msgstr ""
940
  "WPGlobus' u kullanabilmek için Pretty Permalinks' i etkinleştirmelisiniz."
941
 
942
+ #: includes/class-wpglobus.php:4063
943
  msgid ""
944
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
945
  "default option."
languages/wpglobus-uk.po CHANGED
@@ -320,7 +320,7 @@ msgstr "Зберегти та перезавантажити"
320
 
321
  #: includes/admin/class-wpglobus-customize-options.php:546,
322
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
323
- #: includes/class-wpglobus.php:1346, wpglobus.php:12, wpglobus.php:18
324
  msgid "WPGlobus"
325
  msgstr "WPGlobus"
326
 
@@ -873,7 +873,7 @@ msgid "To translate permalinks, please activate the module Slug."
873
  msgstr "Для перекладу посилань необхідно активувати модуль URL."
874
 
875
  #: includes/builders/class-wpglobus-builder.php:277,
876
- #: includes/class-wpglobus.php:3612
877
  msgid "Save draft before using extra language."
878
  msgstr "Збережіть чернетку перед перемиканням на іншу мову."
879
 
@@ -962,42 +962,42 @@ msgid "Selector type"
962
  msgstr "Спосіб выбору мови"
963
 
964
  #. translators: ON/OFF status of WPGlobus on the edit pages.
965
- #: includes/class-wpglobus.php:1320
966
  msgid "OFF"
967
  msgstr "ВИМК"
968
 
969
- #: includes/class-wpglobus.php:1321
970
  msgid "Turn on"
971
  msgstr "Увімкнути"
972
 
973
  #. translators: ON/OFF status of WPGlobus on the edit pages.
974
- #: includes/class-wpglobus.php:1325
975
  msgid "ON"
976
  msgstr "УВІМК"
977
 
978
- #: includes/class-wpglobus.php:1326
979
  msgid "Turn off"
980
  msgstr "Вимкнути"
981
 
982
- #: includes/class-wpglobus.php:1509
983
  msgid "You cannot disable the main language."
984
  msgstr "Неможна відключити головну мову."
985
 
986
- #: includes/class-wpglobus.php:1710
987
  msgid "*) Available after the menu is saved."
988
  msgstr "*) Доступно після збереження меню."
989
 
990
- #: includes/class-wpglobus.php:1727
991
  msgid "Need a multilingual slug?"
992
  msgstr "Потрібен багатомовний ярлик?"
993
 
994
- #: includes/class-wpglobus.php:4051
995
  msgid "You must enable Pretty Permalinks to use WPGlobus."
996
  msgstr ""
997
  "Щоб використовувати плагін WPGlobus, необхідно увімкнути SEF URLs - постійні "
998
  "посилання."
999
 
1000
- #: includes/class-wpglobus.php:4053
1001
  msgid ""
1002
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
1003
  "default option."
320
 
321
  #: includes/admin/class-wpglobus-customize-options.php:546,
322
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
323
+ #: includes/class-wpglobus.php:1356, wpglobus.php:12, wpglobus.php:18
324
  msgid "WPGlobus"
325
  msgstr "WPGlobus"
326
 
873
  msgstr "Для перекладу посилань необхідно активувати модуль URL."
874
 
875
  #: includes/builders/class-wpglobus-builder.php:277,
876
+ #: includes/class-wpglobus.php:3622
877
  msgid "Save draft before using extra language."
878
  msgstr "Збережіть чернетку перед перемиканням на іншу мову."
879
 
962
  msgstr "Спосіб выбору мови"
963
 
964
  #. translators: ON/OFF status of WPGlobus on the edit pages.
965
+ #: includes/class-wpglobus.php:1330
966
  msgid "OFF"
967
  msgstr "ВИМК"
968
 
969
+ #: includes/class-wpglobus.php:1331
970
  msgid "Turn on"
971
  msgstr "Увімкнути"
972
 
973
  #. translators: ON/OFF status of WPGlobus on the edit pages.
974
+ #: includes/class-wpglobus.php:1335
975
  msgid "ON"
976
  msgstr "УВІМК"
977
 
978
+ #: includes/class-wpglobus.php:1336
979
  msgid "Turn off"
980
  msgstr "Вимкнути"
981
 
982
+ #: includes/class-wpglobus.php:1519
983
  msgid "You cannot disable the main language."
984
  msgstr "Неможна відключити головну мову."
985
 
986
+ #: includes/class-wpglobus.php:1720
987
  msgid "*) Available after the menu is saved."
988
  msgstr "*) Доступно після збереження меню."
989
 
990
+ #: includes/class-wpglobus.php:1737
991
  msgid "Need a multilingual slug?"
992
  msgstr "Потрібен багатомовний ярлик?"
993
 
994
+ #: includes/class-wpglobus.php:4061
995
  msgid "You must enable Pretty Permalinks to use WPGlobus."
996
  msgstr ""
997
  "Щоб використовувати плагін WPGlobus, необхідно увімкнути SEF URLs - постійні "
998
  "посилання."
999
 
1000
+ #: includes/class-wpglobus.php:4063
1001
  msgid ""
1002
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
1003
  "default option."
languages/wpglobus.pot CHANGED
@@ -1,8 +1,8 @@
1
- # Copyright (C) 2020 WPGlobus 2.2.34
2
- # This file is distributed under the same license as the WPGlobus 2.2.34 package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: WPGlobus 2.2.34\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -205,7 +205,7 @@ msgstr ""
205
  msgid "Save &amp; Reload"
206
  msgstr ""
207
 
208
- #: includes/admin/class-wpglobus-customize-options.php:546, includes/builders/gutenberg/class-wpglobus-gutenberg.php:538, includes/class-wpglobus.php:1346, wpglobus.php:12, wpglobus.php:18
209
  msgid "WPGlobus"
210
  msgstr ""
211
 
@@ -643,7 +643,7 @@ msgstr ""
643
  msgid "To translate permalinks, please activate the module Slug."
644
  msgstr ""
645
 
646
- #: includes/builders/class-wpglobus-builder.php:277, includes/class-wpglobus.php:3612
647
  msgid "Save draft before using extra language."
648
  msgstr ""
649
 
@@ -726,40 +726,40 @@ msgid "Selector type"
726
  msgstr ""
727
 
728
  #. translators: ON/OFF status of WPGlobus on the edit pages.
729
- #: includes/class-wpglobus.php:1320
730
  msgid "OFF"
731
  msgstr ""
732
 
733
- #: includes/class-wpglobus.php:1321
734
  msgid "Turn on"
735
  msgstr ""
736
 
737
  #. translators: ON/OFF status of WPGlobus on the edit pages.
738
- #: includes/class-wpglobus.php:1325
739
  msgid "ON"
740
  msgstr ""
741
 
742
- #: includes/class-wpglobus.php:1326
743
  msgid "Turn off"
744
  msgstr ""
745
 
746
- #: includes/class-wpglobus.php:1509
747
  msgid "You cannot disable the main language."
748
  msgstr ""
749
 
750
- #: includes/class-wpglobus.php:1710
751
  msgid "*) Available after the menu is saved."
752
  msgstr ""
753
 
754
- #: includes/class-wpglobus.php:1727
755
  msgid "Need a multilingual slug?"
756
  msgstr ""
757
 
758
- #: includes/class-wpglobus.php:4051
759
  msgid "You must enable Pretty Permalinks to use WPGlobus."
760
  msgstr ""
761
 
762
- #: includes/class-wpglobus.php:4053
763
  msgid "Please go to Settings > Permalinks > Common Settings and choose a non-default option."
764
  msgstr ""
765
 
1
+ # Copyright (C) 2020 WPGlobus 2.2.35
2
+ # This file is distributed under the same license as the WPGlobus 2.2.35 package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: WPGlobus 2.2.35\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
205
  msgid "Save &amp; Reload"
206
  msgstr ""
207
 
208
+ #: includes/admin/class-wpglobus-customize-options.php:546, includes/builders/gutenberg/class-wpglobus-gutenberg.php:538, includes/class-wpglobus.php:1356, wpglobus.php:12, wpglobus.php:18
209
  msgid "WPGlobus"
210
  msgstr ""
211
 
643
  msgid "To translate permalinks, please activate the module Slug."
644
  msgstr ""
645
 
646
+ #: includes/builders/class-wpglobus-builder.php:277, includes/class-wpglobus.php:3622
647
  msgid "Save draft before using extra language."
648
  msgstr ""
649
 
726
  msgstr ""
727
 
728
  #. translators: ON/OFF status of WPGlobus on the edit pages.
729
+ #: includes/class-wpglobus.php:1330
730
  msgid "OFF"
731
  msgstr ""
732
 
733
+ #: includes/class-wpglobus.php:1331
734
  msgid "Turn on"
735
  msgstr ""
736
 
737
  #. translators: ON/OFF status of WPGlobus on the edit pages.
738
+ #: includes/class-wpglobus.php:1335
739
  msgid "ON"
740
  msgstr ""
741
 
742
+ #: includes/class-wpglobus.php:1336
743
  msgid "Turn off"
744
  msgstr ""
745
 
746
+ #: includes/class-wpglobus.php:1519
747
  msgid "You cannot disable the main language."
748
  msgstr ""
749
 
750
+ #: includes/class-wpglobus.php:1720
751
  msgid "*) Available after the menu is saved."
752
  msgstr ""
753
 
754
+ #: includes/class-wpglobus.php:1737
755
  msgid "Need a multilingual slug?"
756
  msgstr ""
757
 
758
+ #: includes/class-wpglobus.php:4061
759
  msgid "You must enable Pretty Permalinks to use WPGlobus."
760
  msgstr ""
761
 
762
+ #: includes/class-wpglobus.php:4063
763
  msgid "Please go to Settings > Permalinks > Common Settings and choose a non-default option."
764
  msgstr ""
765
 
readme.txt CHANGED
@@ -218,11 +218,16 @@ WPGlobus Version 2 supports WordPress 5.x, with Gutenberg.
218
 
219
  == Changelog ==
220
 
 
 
 
 
 
221
  = 2.2.34 =
222
 
223
- Fixed: (Core/Builders) Incorrect behavior with empty `show_in_rest`.
224
- Added: (Core/Post Types) Post types of `Pods` to hidden types array.
225
- Internal: (HelpDesk) Adjust the height of the Tech Info textarea.
226
 
227
  = 2.2.33 =
228
 
@@ -243,11 +248,6 @@ Internal: (HelpDesk) Adjust the height of the Tech Info textarea.
243
 
244
  * Fixed: (Customizer) Disable sections to prevent using elements with for `Google Fonts Typography` and `Google Fonts for WordPress` plugins.
245
 
246
- = 2.2.29 =
247
-
248
- * Fixed: (Builders/Gutenberg) Slash stripping on Gutenberg editor.
249
- * Added: (Core/Post Types) Added post types of `NextGEN Gallery` to the list of hidden types.
250
-
251
  = Earlier versions and Add-ons =
252
 
253
  * [See the complete changelog here](https://github.com/WPGlobus/WPGlobus/blob/master/CHANGELOG.md)
218
 
219
  == Changelog ==
220
 
221
+ = 2.2.35 =
222
+
223
+ * Added: (Core/Builders) `WPGlobus_Builder_Update_Post` class.
224
+ * Internal: (Debug) Updated `WPGlobus_Admin_Debug` class.
225
+
226
  = 2.2.34 =
227
 
228
+ * Fixed: (Core/Builders) Incorrect behavior with empty `show_in_rest`.
229
+ * Added: (Core/Post Types) Post types of `Pods` to hidden types array.
230
+ * Internal: (HelpDesk) Adjust the height of the Tech Info textarea.
231
 
232
  = 2.2.33 =
233
 
248
 
249
  * Fixed: (Customizer) Disable sections to prevent using elements with for `Google Fonts Typography` and `Google Fonts for WordPress` plugins.
250
 
 
 
 
 
 
251
  = Earlier versions and Add-ons =
252
 
253
  * [See the complete changelog here](https://github.com/WPGlobus/WPGlobus/blob/master/CHANGELOG.md)
wpglobus.php CHANGED
@@ -15,7 +15,7 @@
15
  * Description: A WordPress Globalization / Multilingual Plugin. Posts, pages, menus, widgets and even custom fields - in multiple languages!
16
  * Text Domain: wpglobus
17
  * Domain Path: /languages/
18
- * Version: 2.2.34
19
  * Author: WPGlobus
20
  * Author URI: https://wpglobus.com/
21
  * Network: false
@@ -42,7 +42,7 @@ if ( ! defined( 'ABSPATH' ) ) {
42
  exit;
43
  }
44
 
45
- define( 'WPGLOBUS_VERSION', '2.2.34' );
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.2.35
19
  * Author: WPGlobus
20
  * Author URI: https://wpglobus.com/
21
  * Network: false
42
  exit;
43
  }
44
 
45
+ define( 'WPGLOBUS_VERSION', '2.2.35' );
46
  define( 'WPGLOBUS_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
47
  define( 'WPGLOBUS_AJAX', 'wpglobus-ajax' );
48