WPGlobus – Multilingual Everything! - Version 2.4.8

Version Description

  • (Core/Clean-Up Tool) Updated description.
Download this release

Release Info

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

Code changes from version 2.4.7 to 2.4.8

Files changed (54) hide show
  1. includes/admin/class-wpglobus-admin-page.php +7 -2
  2. includes/admin/class-wpglobus-clean.php +15 -8
  3. languages/wpglobus-ar.po +21 -13
  4. languages/wpglobus-be.mo +0 -0
  5. languages/wpglobus-be.po +30 -16
  6. languages/wpglobus-bg_BG.po +21 -13
  7. languages/wpglobus-de_CH.po +21 -13
  8. languages/wpglobus-de_DE.po +21 -13
  9. languages/wpglobus-el.po +21 -13
  10. languages/wpglobus-en_AU.mo +0 -0
  11. languages/wpglobus-en_AU.po +30 -15
  12. languages/wpglobus-en_CA.mo +0 -0
  13. languages/wpglobus-en_CA.po +30 -15
  14. languages/wpglobus-en_GB.mo +0 -0
  15. languages/wpglobus-en_GB.po +30 -15
  16. languages/wpglobus-en_NZ.mo +0 -0
  17. languages/wpglobus-en_NZ.po +30 -15
  18. languages/wpglobus-en_US.mo +0 -0
  19. languages/wpglobus-en_US.po +30 -15
  20. languages/wpglobus-en_ZA.mo +0 -0
  21. languages/wpglobus-en_ZA.po +30 -15
  22. languages/wpglobus-es_AR.po +21 -13
  23. languages/wpglobus-es_CL.po +21 -13
  24. languages/wpglobus-es_CO.po +21 -13
  25. languages/wpglobus-es_CR.po +21 -13
  26. languages/wpglobus-es_ES.po +21 -13
  27. languages/wpglobus-es_GT.po +21 -13
  28. languages/wpglobus-es_MX.po +21 -13
  29. languages/wpglobus-es_PE.po +21 -13
  30. languages/wpglobus-es_PR.po +21 -13
  31. languages/wpglobus-es_VE.po +21 -13
  32. languages/wpglobus-et.po +21 -13
  33. languages/wpglobus-fr_BE.mo +0 -0
  34. languages/wpglobus-fr_BE.po +30 -16
  35. languages/wpglobus-fr_CA.mo +0 -0
  36. languages/wpglobus-fr_CA.po +30 -16
  37. languages/wpglobus-fr_FR.mo +0 -0
  38. languages/wpglobus-fr_FR.po +30 -16
  39. languages/wpglobus-id_ID.mo +0 -0
  40. languages/wpglobus-id_ID.po +29 -15
  41. languages/wpglobus-ko_KR.po +21 -13
  42. languages/wpglobus-pl_PL.po +21 -13
  43. languages/wpglobus-pt_BR.po +21 -13
  44. languages/wpglobus-pt_PT.po +21 -13
  45. languages/wpglobus-ro_RO.po +21 -13
  46. languages/wpglobus-ru_RU.mo +0 -0
  47. languages/wpglobus-ru_RU.po +27 -14
  48. languages/wpglobus-sv_SE.po +21 -13
  49. languages/wpglobus-tr_TR.po +21 -13
  50. languages/wpglobus-uk.mo +0 -0
  51. languages/wpglobus-uk.po +30 -16
  52. languages/wpglobus.pot +20 -16
  53. readme.txt +4 -0
  54. wpglobus.php +2 -2
includes/admin/class-wpglobus-admin-page.php CHANGED
@@ -74,10 +74,15 @@ class WPGlobus_Admin_Page {
74
  /**
75
  * URL of the WPGlobus Settings page.
76
  *
 
 
77
  * @return string
78
  */
79
- public static function url_settings() {
80
- return add_query_arg( 'page', WPGlobus::OPTIONS_PAGE_SLUG, admin_url( 'admin.php' ) );
 
 
 
81
  }
82
 
83
  /**
74
  /**
75
  * URL of the WPGlobus Settings page.
76
  *
77
+ * @since 2.4.8 Added $tab parameter.
78
+ *
79
  * @return string
80
  */
81
+ public static function url_settings( $tab = '' ) {
82
+ if ( empty($tab) ) {
83
+ return add_query_arg( 'page', WPGlobus::OPTIONS_PAGE_SLUG, admin_url( 'admin.php' ) );
84
+ }
85
+ return add_query_arg( array('page'=>WPGlobus::OPTIONS_PAGE_SLUG, 'tab'=>$tab), admin_url( 'admin.php' ) );
86
  }
87
 
88
  /**
includes/admin/class-wpglobus-clean.php CHANGED
@@ -614,18 +614,25 @@ if ( ! class_exists( 'WPGlobus_Clean' ) ) :
614
  <?php esc_html_e( 'WARNING: this operation is non-reversible. It is strongly recommended that you backup your database before proceeding.', 'wpglobus' ); ?>
615
  </div>
616
 
617
- <div style="padding: .5em"><strong>
618
- <?php esc_html_e( 'This tool should be used only if you plan to completely uninstall WPGlobus. By running it, you will remove ALL translations you have entered to your post, pages, etc., keeping only the MAIN language texts. Please make sure that all entries have some content in the main language. Otherwise, you might end up with empty titles, no content, no excerpts, blank comments and so on.', 'wpglobus' ); ?>
619
- </strong></div>
 
 
 
 
 
620
 
621
  <div style="color:red; background-color: white; padding: .5em">
622
  <?php
623
- echo esc_html( sprintf(
624
- // translators: %1$s - language name, %1$s - language code. Do not remove.
625
- __( 'The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN %1$s WILL BE DELETED! To change the main language, please go to Settings.', 'wpglobus' ),
626
  WPGlobus::Config()->en_language_name[ WPGlobus::Config()->default_language ],
627
- WPGlobus::Config()->default_language ) );
628
-
 
 
629
  ?>
630
  </div>
631
 
614
  <?php esc_html_e( 'WARNING: this operation is non-reversible. It is strongly recommended that you backup your database before proceeding.', 'wpglobus' ); ?>
615
  </div>
616
 
617
+ <div style="padding: .5em">
618
+ <p><strong>
619
+ 1. <?php esc_html_e( 'This tool should be used only if you plan to completely uninstall WPGlobus. By running it, you will remove ALL translations you have entered to your post, pages, etc., keeping only the MAIN language texts. Please make sure that all entries have some content in the main language. Otherwise, you might end up with empty titles, no content, no excerpts, blank comments and so on.', 'wpglobus' ); ?>
620
+ </strong></p>
621
+ <p><strong>
622
+ 2. <?php esc_html_e( 'Make sure that your active theme does not have any code related to WPGlobus. Such code could be added by you or by a 3rd party developer. If that code runs without first verifying that WPGlobus is active, WordPress may die with a fatal error.', 'wpglobus' ); ?>
623
+ </strong></p>
624
+ </div>
625
 
626
  <div style="color:red; background-color: white; padding: .5em">
627
  <?php
628
+ $_message = esc_html( sprintf(
629
+ // translators: %1$s - language name, %2$s - language code. Do not remove.
630
+ __( 'The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN %1$s WILL BE DELETED! To change the main language, please go to {{settings}}.', 'wpglobus' ),
631
  WPGlobus::Config()->en_language_name[ WPGlobus::Config()->default_language ],
632
+ WPGlobus::Config()->default_language )
633
+ );
634
+ $_settings_link = '<a href="'.esc_url( WPGlobus_Admin_Page::url_settings('languages') ).'">' . esc_html( 'Settings', 'wpglobus' ) . '</a>';
635
+ echo str_replace( '{{settings}}', $_settings_link, $_message );
636
  ?>
637
  </div>
638
 
languages/wpglobus-ar.po CHANGED
@@ -214,7 +214,7 @@ msgstr ""
214
  "تحذير: العملية لا يمكن الرجوع عنها. يُفضل بشدة أن تعمل نسخة إحتياطية لقاعدة "
215
  "البيانات قبل المتابعة."
216
 
217
- #: includes/admin/class-wpglobus-clean.php:618
218
  msgid ""
219
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
220
  "By running it, you will remove ALL translations you have entered to your "
@@ -224,43 +224,51 @@ msgid ""
224
  "so on."
225
  msgstr ""
226
 
227
- #. translators: %1$s - language name, %1$s - language code. Do not remove.
228
- #: includes/admin/class-wpglobus-clean.php:625
 
 
 
 
 
 
 
 
229
  msgid ""
230
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
231
- "%1$s WILL BE DELETED! To change the main language, please go to Settings."
232
  msgstr ""
233
 
234
- #: includes/admin/class-wpglobus-clean.php:634
235
  msgid "You are about to clean the content of the following database tables:"
236
  msgstr ""
237
 
238
- #: includes/admin/class-wpglobus-clean.php:642
239
  msgid "The operations log"
240
  msgstr ""
241
 
242
- #: includes/admin/class-wpglobus-clean.php:645
243
  msgid ""
244
  "We are going to write a detailed log of all the database changes performed. "
245
  "It should help in the case you need to restore something important. The log "
246
  "will be written to the file:"
247
  msgstr ""
248
 
249
- #: includes/admin/class-wpglobus-clean.php:655
250
  msgid ""
251
  "Uncheck if you do not want to write the operations log (we recommend to keep "
252
  "it checked)"
253
  msgstr ""
254
 
255
- #: includes/admin/class-wpglobus-clean.php:660
256
  msgid "You have been warned..."
257
  msgstr "لقد تم تحذيرك..."
258
 
259
- #: includes/admin/class-wpglobus-clean.php:662
260
  msgid "Please confirm by checking the box below:"
261
  msgstr ""
262
 
263
- #: includes/admin/class-wpglobus-clean.php:664
264
  msgid ""
265
  "I have read and understood everything written on this page. I am aware that "
266
  "by using this tool I may loose some content of my website. I have made a "
@@ -268,11 +276,11 @@ msgid ""
268
  "responsible for the results."
269
  msgstr ""
270
 
271
- #: includes/admin/class-wpglobus-clean.php:667
272
  msgid "YES, I CONFIRM"
273
  msgstr "أجل، أنا أؤكد"
274
 
275
- #: includes/admin/class-wpglobus-clean.php:671
276
  msgid "Process with the Clean-up"
277
  msgstr ""
278
 
214
  "تحذير: العملية لا يمكن الرجوع عنها. يُفضل بشدة أن تعمل نسخة إحتياطية لقاعدة "
215
  "البيانات قبل المتابعة."
216
 
217
+ #: includes/admin/class-wpglobus-clean.php:619
218
  msgid ""
219
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
220
  "By running it, you will remove ALL translations you have entered to your "
224
  "so on."
225
  msgstr ""
226
 
227
+ #: includes/admin/class-wpglobus-clean.php:622
228
+ msgid ""
229
+ "Make sure that your active theme does not have any code related to WPGlobus. "
230
+ "Such code could be added by you or by a 3rd party developer. If that code "
231
+ "runs without first verifying that WPGlobus is active, WordPress may die with "
232
+ "a fatal error."
233
+ msgstr ""
234
+
235
+ #. translators: %1$s - language name, %2$s - language code. Do not remove.
236
+ #: includes/admin/class-wpglobus-clean.php:630
237
  msgid ""
238
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
239
+ "%1$s WILL BE DELETED! To change the main language, please go to {{settings}}."
240
  msgstr ""
241
 
242
+ #: includes/admin/class-wpglobus-clean.php:641
243
  msgid "You are about to clean the content of the following database tables:"
244
  msgstr ""
245
 
246
+ #: includes/admin/class-wpglobus-clean.php:649
247
  msgid "The operations log"
248
  msgstr ""
249
 
250
+ #: includes/admin/class-wpglobus-clean.php:652
251
  msgid ""
252
  "We are going to write a detailed log of all the database changes performed. "
253
  "It should help in the case you need to restore something important. The log "
254
  "will be written to the file:"
255
  msgstr ""
256
 
257
+ #: includes/admin/class-wpglobus-clean.php:662
258
  msgid ""
259
  "Uncheck if you do not want to write the operations log (we recommend to keep "
260
  "it checked)"
261
  msgstr ""
262
 
263
+ #: includes/admin/class-wpglobus-clean.php:667
264
  msgid "You have been warned..."
265
  msgstr "لقد تم تحذيرك..."
266
 
267
+ #: includes/admin/class-wpglobus-clean.php:669
268
  msgid "Please confirm by checking the box below:"
269
  msgstr ""
270
 
271
+ #: includes/admin/class-wpglobus-clean.php:671
272
  msgid ""
273
  "I have read and understood everything written on this page. I am aware that "
274
  "by using this tool I may loose some content of my website. I have made a "
276
  "responsible for the results."
277
  msgstr ""
278
 
279
+ #: includes/admin/class-wpglobus-clean.php:674
280
  msgid "YES, I CONFIRM"
281
  msgstr "أجل، أنا أؤكد"
282
 
283
+ #: includes/admin/class-wpglobus-clean.php:678
284
  msgid "Process with the Clean-up"
285
  msgstr ""
286
 
languages/wpglobus-be.mo CHANGED
Binary file
languages/wpglobus-be.po CHANGED
@@ -220,7 +220,7 @@ msgstr ""
220
  "Предупреждение: эта операция является необратимой. Настоятельно рекомендуем "
221
  "сделать резервную копию базы данных перед продолжением."
222
 
223
- #: includes/admin/class-wpglobus-clean.php:618
224
  msgid ""
225
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
226
  "By running it, you will remove ALL translations you have entered to your "
@@ -236,25 +236,30 @@ msgstr ""
236
  "обнаружите пустые заголовки, отсутствие контента страниц, пустые комментарии "
237
  "и тому подобное."
238
 
239
- #. translators: %1$s - language name, %1$s - language code. Do not remove.
240
- #: includes/admin/class-wpglobus-clean.php:625
 
 
 
 
 
 
 
 
241
  msgid ""
242
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
243
- "%1$s WILL BE DELETED! To change the main language, please go to Settings."
244
  msgstr ""
245
- "В настройках WPGlobus указано, что основной язык - %1$s (%2$s). Все тексты, "
246
- "кроме %1$s будут удалены! Чтобы изменить основной язык, пожалуйста, "
247
- "перейдите в настройки."
248
 
249
- #: includes/admin/class-wpglobus-clean.php:634
250
  msgid "You are about to clean the content of the following database tables:"
251
  msgstr "Программа выполнит очистку следующих таблиц базы данных:"
252
 
253
- #: includes/admin/class-wpglobus-clean.php:642
254
  msgid "The operations log"
255
  msgstr "Журнал операций"
256
 
257
- #: includes/admin/class-wpglobus-clean.php:645
258
  msgid ""
259
  "We are going to write a detailed log of all the database changes performed. "
260
  "It should help in the case you need to restore something important. The log "
@@ -264,7 +269,7 @@ msgstr ""
264
  "в случае, если Вам потребуется восстановить что-то важное. Журнал будет "
265
  "записываться в файл:"
266
 
267
- #: includes/admin/class-wpglobus-clean.php:655
268
  msgid ""
269
  "Uncheck if you do not want to write the operations log (we recommend to keep "
270
  "it checked)"
@@ -272,15 +277,15 @@ msgstr ""
272
  "Снимите флажок, если Вы не хотите записывать операции в журнал (мы "
273
  "рекомендуем оставить запись включённой)"
274
 
275
- #: includes/admin/class-wpglobus-clean.php:660
276
  msgid "You have been warned..."
277
  msgstr "Вы уверены, что готовы продолжить?"
278
 
279
- #: includes/admin/class-wpglobus-clean.php:662
280
  msgid "Please confirm by checking the box below:"
281
  msgstr "Пожалуйста, подтвердите, установив флажок ниже:"
282
 
283
- #: includes/admin/class-wpglobus-clean.php:664
284
  msgid ""
285
  "I have read and understood everything written on this page. I am aware that "
286
  "by using this tool I may loose some content of my website. I have made a "
@@ -293,11 +298,11 @@ msgstr ""
293
  "восстановить её в случае необходимости. Я полностью несу ответственность за "
294
  "результат."
295
 
296
- #: includes/admin/class-wpglobus-clean.php:667
297
  msgid "YES, I CONFIRM"
298
  msgstr "ДА, Я ПОДТВЕРЖДАЮ"
299
 
300
- #: includes/admin/class-wpglobus-clean.php:671
301
  msgid "Process with the Clean-up"
302
  msgstr "Запустить программу очистки"
303
 
@@ -1655,3 +1660,12 @@ msgstr ""
1655
  #: wpglobus.php:19
1656
  msgid "https://wpglobus.com/"
1657
  msgstr "https://wpglobus.com/ru/"
 
 
 
 
 
 
 
 
 
220
  "Предупреждение: эта операция является необратимой. Настоятельно рекомендуем "
221
  "сделать резервную копию базы данных перед продолжением."
222
 
223
+ #: includes/admin/class-wpglobus-clean.php:619
224
  msgid ""
225
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
226
  "By running it, you will remove ALL translations you have entered to your "
236
  "обнаружите пустые заголовки, отсутствие контента страниц, пустые комментарии "
237
  "и тому подобное."
238
 
239
+ #: includes/admin/class-wpglobus-clean.php:622
240
+ msgid ""
241
+ "Make sure that your active theme does not have any code related to WPGlobus. "
242
+ "Such code could be added by you or by a 3rd party developer. If that code "
243
+ "runs without first verifying that WPGlobus is active, WordPress may die with "
244
+ "a fatal error."
245
+ msgstr ""
246
+
247
+ #. translators: %1$s - language name, %2$s - language code. Do not remove.
248
+ #: includes/admin/class-wpglobus-clean.php:630
249
  msgid ""
250
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
251
+ "%1$s WILL BE DELETED! To change the main language, please go to {{settings}}."
252
  msgstr ""
 
 
 
253
 
254
+ #: includes/admin/class-wpglobus-clean.php:641
255
  msgid "You are about to clean the content of the following database tables:"
256
  msgstr "Программа выполнит очистку следующих таблиц базы данных:"
257
 
258
+ #: includes/admin/class-wpglobus-clean.php:649
259
  msgid "The operations log"
260
  msgstr "Журнал операций"
261
 
262
+ #: includes/admin/class-wpglobus-clean.php:652
263
  msgid ""
264
  "We are going to write a detailed log of all the database changes performed. "
265
  "It should help in the case you need to restore something important. The log "
269
  "в случае, если Вам потребуется восстановить что-то важное. Журнал будет "
270
  "записываться в файл:"
271
 
272
+ #: includes/admin/class-wpglobus-clean.php:662
273
  msgid ""
274
  "Uncheck if you do not want to write the operations log (we recommend to keep "
275
  "it checked)"
277
  "Снимите флажок, если Вы не хотите записывать операции в журнал (мы "
278
  "рекомендуем оставить запись включённой)"
279
 
280
+ #: includes/admin/class-wpglobus-clean.php:667
281
  msgid "You have been warned..."
282
  msgstr "Вы уверены, что готовы продолжить?"
283
 
284
+ #: includes/admin/class-wpglobus-clean.php:669
285
  msgid "Please confirm by checking the box below:"
286
  msgstr "Пожалуйста, подтвердите, установив флажок ниже:"
287
 
288
+ #: includes/admin/class-wpglobus-clean.php:671
289
  msgid ""
290
  "I have read and understood everything written on this page. I am aware that "
291
  "by using this tool I may loose some content of my website. I have made a "
298
  "восстановить её в случае необходимости. Я полностью несу ответственность за "
299
  "результат."
300
 
301
+ #: includes/admin/class-wpglobus-clean.php:674
302
  msgid "YES, I CONFIRM"
303
  msgstr "ДА, Я ПОДТВЕРЖДАЮ"
304
 
305
+ #: includes/admin/class-wpglobus-clean.php:678
306
  msgid "Process with the Clean-up"
307
  msgstr "Запустить программу очистки"
308
 
1660
  #: wpglobus.php:19
1661
  msgid "https://wpglobus.com/"
1662
  msgstr "https://wpglobus.com/ru/"
1663
+
1664
+ #~ msgid ""
1665
+ #~ "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT "
1666
+ #~ "IN %1$s WILL BE DELETED! To change the main language, please go to "
1667
+ #~ "Settings."
1668
+ #~ msgstr ""
1669
+ #~ "В настройках WPGlobus указано, что основной язык - %1$s (%2$s). Все "
1670
+ #~ "тексты, кроме %1$s будут удалены! Чтобы изменить основной язык, "
1671
+ #~ "пожалуйста, перейдите в настройки."
languages/wpglobus-bg_BG.po CHANGED
@@ -190,7 +190,7 @@ msgid ""
190
  "you backup your database before proceeding."
191
  msgstr ""
192
 
193
- #: includes/admin/class-wpglobus-clean.php:618
194
  msgid ""
195
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
196
  "By running it, you will remove ALL translations you have entered to your "
@@ -200,43 +200,51 @@ msgid ""
200
  "so on."
201
  msgstr ""
202
 
203
- #. translators: %1$s - language name, %1$s - language code. Do not remove.
204
- #: includes/admin/class-wpglobus-clean.php:625
 
 
 
 
 
 
 
 
205
  msgid ""
206
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
207
- "%1$s WILL BE DELETED! To change the main language, please go to Settings."
208
  msgstr ""
209
 
210
- #: includes/admin/class-wpglobus-clean.php:634
211
  msgid "You are about to clean the content of the following database tables:"
212
  msgstr ""
213
 
214
- #: includes/admin/class-wpglobus-clean.php:642
215
  msgid "The operations log"
216
  msgstr ""
217
 
218
- #: includes/admin/class-wpglobus-clean.php:645
219
  msgid ""
220
  "We are going to write a detailed log of all the database changes performed. "
221
  "It should help in the case you need to restore something important. The log "
222
  "will be written to the file:"
223
  msgstr ""
224
 
225
- #: includes/admin/class-wpglobus-clean.php:655
226
  msgid ""
227
  "Uncheck if you do not want to write the operations log (we recommend to keep "
228
  "it checked)"
229
  msgstr ""
230
 
231
- #: includes/admin/class-wpglobus-clean.php:660
232
  msgid "You have been warned..."
233
  msgstr ""
234
 
235
- #: includes/admin/class-wpglobus-clean.php:662
236
  msgid "Please confirm by checking the box below:"
237
  msgstr ""
238
 
239
- #: includes/admin/class-wpglobus-clean.php:664
240
  msgid ""
241
  "I have read and understood everything written on this page. I am aware that "
242
  "by using this tool I may loose some content of my website. I have made a "
@@ -244,11 +252,11 @@ msgid ""
244
  "responsible for the results."
245
  msgstr ""
246
 
247
- #: includes/admin/class-wpglobus-clean.php:667
248
  msgid "YES, I CONFIRM"
249
  msgstr ""
250
 
251
- #: includes/admin/class-wpglobus-clean.php:671
252
  msgid "Process with the Clean-up"
253
  msgstr ""
254
 
190
  "you backup your database before proceeding."
191
  msgstr ""
192
 
193
+ #: includes/admin/class-wpglobus-clean.php:619
194
  msgid ""
195
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
196
  "By running it, you will remove ALL translations you have entered to your "
200
  "so on."
201
  msgstr ""
202
 
203
+ #: includes/admin/class-wpglobus-clean.php:622
204
+ msgid ""
205
+ "Make sure that your active theme does not have any code related to WPGlobus. "
206
+ "Such code could be added by you or by a 3rd party developer. If that code "
207
+ "runs without first verifying that WPGlobus is active, WordPress may die with "
208
+ "a fatal error."
209
+ msgstr ""
210
+
211
+ #. translators: %1$s - language name, %2$s - language code. Do not remove.
212
+ #: includes/admin/class-wpglobus-clean.php:630
213
  msgid ""
214
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
215
+ "%1$s WILL BE DELETED! To change the main language, please go to {{settings}}."
216
  msgstr ""
217
 
218
+ #: includes/admin/class-wpglobus-clean.php:641
219
  msgid "You are about to clean the content of the following database tables:"
220
  msgstr ""
221
 
222
+ #: includes/admin/class-wpglobus-clean.php:649
223
  msgid "The operations log"
224
  msgstr ""
225
 
226
+ #: includes/admin/class-wpglobus-clean.php:652
227
  msgid ""
228
  "We are going to write a detailed log of all the database changes performed. "
229
  "It should help in the case you need to restore something important. The log "
230
  "will be written to the file:"
231
  msgstr ""
232
 
233
+ #: includes/admin/class-wpglobus-clean.php:662
234
  msgid ""
235
  "Uncheck if you do not want to write the operations log (we recommend to keep "
236
  "it checked)"
237
  msgstr ""
238
 
239
+ #: includes/admin/class-wpglobus-clean.php:667
240
  msgid "You have been warned..."
241
  msgstr ""
242
 
243
+ #: includes/admin/class-wpglobus-clean.php:669
244
  msgid "Please confirm by checking the box below:"
245
  msgstr ""
246
 
247
+ #: includes/admin/class-wpglobus-clean.php:671
248
  msgid ""
249
  "I have read and understood everything written on this page. I am aware that "
250
  "by using this tool I may loose some content of my website. I have made a "
252
  "responsible for the results."
253
  msgstr ""
254
 
255
+ #: includes/admin/class-wpglobus-clean.php:674
256
  msgid "YES, I CONFIRM"
257
  msgstr ""
258
 
259
+ #: includes/admin/class-wpglobus-clean.php:678
260
  msgid "Process with the Clean-up"
261
  msgstr ""
262
 
languages/wpglobus-de_CH.po CHANGED
@@ -210,7 +210,7 @@ msgid ""
210
  "you backup your database before proceeding."
211
  msgstr ""
212
 
213
- #: includes/admin/class-wpglobus-clean.php:618
214
  msgid ""
215
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
216
  "By running it, you will remove ALL translations you have entered to your "
@@ -220,43 +220,51 @@ msgid ""
220
  "so on."
221
  msgstr ""
222
 
223
- #. translators: %1$s - language name, %1$s - language code. Do not remove.
224
- #: includes/admin/class-wpglobus-clean.php:625
 
 
 
 
 
 
 
 
225
  msgid ""
226
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
227
- "%1$s WILL BE DELETED! To change the main language, please go to Settings."
228
  msgstr ""
229
 
230
- #: includes/admin/class-wpglobus-clean.php:634
231
  msgid "You are about to clean the content of the following database tables:"
232
  msgstr ""
233
 
234
- #: includes/admin/class-wpglobus-clean.php:642
235
  msgid "The operations log"
236
  msgstr ""
237
 
238
- #: includes/admin/class-wpglobus-clean.php:645
239
  msgid ""
240
  "We are going to write a detailed log of all the database changes performed. "
241
  "It should help in the case you need to restore something important. The log "
242
  "will be written to the file:"
243
  msgstr ""
244
 
245
- #: includes/admin/class-wpglobus-clean.php:655
246
  msgid ""
247
  "Uncheck if you do not want to write the operations log (we recommend to keep "
248
  "it checked)"
249
  msgstr ""
250
 
251
- #: includes/admin/class-wpglobus-clean.php:660
252
  msgid "You have been warned..."
253
  msgstr ""
254
 
255
- #: includes/admin/class-wpglobus-clean.php:662
256
  msgid "Please confirm by checking the box below:"
257
  msgstr ""
258
 
259
- #: includes/admin/class-wpglobus-clean.php:664
260
  msgid ""
261
  "I have read and understood everything written on this page. I am aware that "
262
  "by using this tool I may loose some content of my website. I have made a "
@@ -264,11 +272,11 @@ msgid ""
264
  "responsible for the results."
265
  msgstr ""
266
 
267
- #: includes/admin/class-wpglobus-clean.php:667
268
  msgid "YES, I CONFIRM"
269
  msgstr ""
270
 
271
- #: includes/admin/class-wpglobus-clean.php:671
272
  msgid "Process with the Clean-up"
273
  msgstr ""
274
 
210
  "you backup your database before proceeding."
211
  msgstr ""
212
 
213
+ #: includes/admin/class-wpglobus-clean.php:619
214
  msgid ""
215
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
216
  "By running it, you will remove ALL translations you have entered to your "
220
  "so on."
221
  msgstr ""
222
 
223
+ #: includes/admin/class-wpglobus-clean.php:622
224
+ msgid ""
225
+ "Make sure that your active theme does not have any code related to WPGlobus. "
226
+ "Such code could be added by you or by a 3rd party developer. If that code "
227
+ "runs without first verifying that WPGlobus is active, WordPress may die with "
228
+ "a fatal error."
229
+ msgstr ""
230
+
231
+ #. translators: %1$s - language name, %2$s - language code. Do not remove.
232
+ #: includes/admin/class-wpglobus-clean.php:630
233
  msgid ""
234
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
235
+ "%1$s WILL BE DELETED! To change the main language, please go to {{settings}}."
236
  msgstr ""
237
 
238
+ #: includes/admin/class-wpglobus-clean.php:641
239
  msgid "You are about to clean the content of the following database tables:"
240
  msgstr ""
241
 
242
+ #: includes/admin/class-wpglobus-clean.php:649
243
  msgid "The operations log"
244
  msgstr ""
245
 
246
+ #: includes/admin/class-wpglobus-clean.php:652
247
  msgid ""
248
  "We are going to write a detailed log of all the database changes performed. "
249
  "It should help in the case you need to restore something important. The log "
250
  "will be written to the file:"
251
  msgstr ""
252
 
253
+ #: includes/admin/class-wpglobus-clean.php:662
254
  msgid ""
255
  "Uncheck if you do not want to write the operations log (we recommend to keep "
256
  "it checked)"
257
  msgstr ""
258
 
259
+ #: includes/admin/class-wpglobus-clean.php:667
260
  msgid "You have been warned..."
261
  msgstr ""
262
 
263
+ #: includes/admin/class-wpglobus-clean.php:669
264
  msgid "Please confirm by checking the box below:"
265
  msgstr ""
266
 
267
+ #: includes/admin/class-wpglobus-clean.php:671
268
  msgid ""
269
  "I have read and understood everything written on this page. I am aware that "
270
  "by using this tool I may loose some content of my website. I have made a "
272
  "responsible for the results."
273
  msgstr ""
274
 
275
+ #: includes/admin/class-wpglobus-clean.php:674
276
  msgid "YES, I CONFIRM"
277
  msgstr ""
278
 
279
+ #: includes/admin/class-wpglobus-clean.php:678
280
  msgid "Process with the Clean-up"
281
  msgstr ""
282
 
languages/wpglobus-de_DE.po CHANGED
@@ -210,7 +210,7 @@ msgid ""
210
  "you backup your database before proceeding."
211
  msgstr ""
212
 
213
- #: includes/admin/class-wpglobus-clean.php:618
214
  msgid ""
215
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
216
  "By running it, you will remove ALL translations you have entered to your "
@@ -220,43 +220,51 @@ msgid ""
220
  "so on."
221
  msgstr ""
222
 
223
- #. translators: %1$s - language name, %1$s - language code. Do not remove.
224
- #: includes/admin/class-wpglobus-clean.php:625
 
 
 
 
 
 
 
 
225
  msgid ""
226
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
227
- "%1$s WILL BE DELETED! To change the main language, please go to Settings."
228
  msgstr ""
229
 
230
- #: includes/admin/class-wpglobus-clean.php:634
231
  msgid "You are about to clean the content of the following database tables:"
232
  msgstr ""
233
 
234
- #: includes/admin/class-wpglobus-clean.php:642
235
  msgid "The operations log"
236
  msgstr ""
237
 
238
- #: includes/admin/class-wpglobus-clean.php:645
239
  msgid ""
240
  "We are going to write a detailed log of all the database changes performed. "
241
  "It should help in the case you need to restore something important. The log "
242
  "will be written to the file:"
243
  msgstr ""
244
 
245
- #: includes/admin/class-wpglobus-clean.php:655
246
  msgid ""
247
  "Uncheck if you do not want to write the operations log (we recommend to keep "
248
  "it checked)"
249
  msgstr ""
250
 
251
- #: includes/admin/class-wpglobus-clean.php:660
252
  msgid "You have been warned..."
253
  msgstr ""
254
 
255
- #: includes/admin/class-wpglobus-clean.php:662
256
  msgid "Please confirm by checking the box below:"
257
  msgstr ""
258
 
259
- #: includes/admin/class-wpglobus-clean.php:664
260
  msgid ""
261
  "I have read and understood everything written on this page. I am aware that "
262
  "by using this tool I may loose some content of my website. I have made a "
@@ -264,11 +272,11 @@ msgid ""
264
  "responsible for the results."
265
  msgstr ""
266
 
267
- #: includes/admin/class-wpglobus-clean.php:667
268
  msgid "YES, I CONFIRM"
269
  msgstr "JA, ICH STIMME ZU"
270
 
271
- #: includes/admin/class-wpglobus-clean.php:671
272
  msgid "Process with the Clean-up"
273
  msgstr ""
274
 
210
  "you backup your database before proceeding."
211
  msgstr ""
212
 
213
+ #: includes/admin/class-wpglobus-clean.php:619
214
  msgid ""
215
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
216
  "By running it, you will remove ALL translations you have entered to your "
220
  "so on."
221
  msgstr ""
222
 
223
+ #: includes/admin/class-wpglobus-clean.php:622
224
+ msgid ""
225
+ "Make sure that your active theme does not have any code related to WPGlobus. "
226
+ "Such code could be added by you or by a 3rd party developer. If that code "
227
+ "runs without first verifying that WPGlobus is active, WordPress may die with "
228
+ "a fatal error."
229
+ msgstr ""
230
+
231
+ #. translators: %1$s - language name, %2$s - language code. Do not remove.
232
+ #: includes/admin/class-wpglobus-clean.php:630
233
  msgid ""
234
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
235
+ "%1$s WILL BE DELETED! To change the main language, please go to {{settings}}."
236
  msgstr ""
237
 
238
+ #: includes/admin/class-wpglobus-clean.php:641
239
  msgid "You are about to clean the content of the following database tables:"
240
  msgstr ""
241
 
242
+ #: includes/admin/class-wpglobus-clean.php:649
243
  msgid "The operations log"
244
  msgstr ""
245
 
246
+ #: includes/admin/class-wpglobus-clean.php:652
247
  msgid ""
248
  "We are going to write a detailed log of all the database changes performed. "
249
  "It should help in the case you need to restore something important. The log "
250
  "will be written to the file:"
251
  msgstr ""
252
 
253
+ #: includes/admin/class-wpglobus-clean.php:662
254
  msgid ""
255
  "Uncheck if you do not want to write the operations log (we recommend to keep "
256
  "it checked)"
257
  msgstr ""
258
 
259
+ #: includes/admin/class-wpglobus-clean.php:667
260
  msgid "You have been warned..."
261
  msgstr ""
262
 
263
+ #: includes/admin/class-wpglobus-clean.php:669
264
  msgid "Please confirm by checking the box below:"
265
  msgstr ""
266
 
267
+ #: includes/admin/class-wpglobus-clean.php:671
268
  msgid ""
269
  "I have read and understood everything written on this page. I am aware that "
270
  "by using this tool I may loose some content of my website. I have made a "
272
  "responsible for the results."
273
  msgstr ""
274
 
275
+ #: includes/admin/class-wpglobus-clean.php:674
276
  msgid "YES, I CONFIRM"
277
  msgstr "JA, ICH STIMME ZU"
278
 
279
+ #: includes/admin/class-wpglobus-clean.php:678
280
  msgid "Process with the Clean-up"
281
  msgstr ""
282
 
languages/wpglobus-el.po CHANGED
@@ -191,7 +191,7 @@ msgid ""
191
  "you backup your database before proceeding."
192
  msgstr ""
193
 
194
- #: includes/admin/class-wpglobus-clean.php:618
195
  msgid ""
196
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
197
  "By running it, you will remove ALL translations you have entered to your "
@@ -201,43 +201,51 @@ msgid ""
201
  "so on."
202
  msgstr ""
203
 
204
- #. translators: %1$s - language name, %1$s - language code. Do not remove.
205
- #: includes/admin/class-wpglobus-clean.php:625
 
 
 
 
 
 
 
 
206
  msgid ""
207
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
208
- "%1$s WILL BE DELETED! To change the main language, please go to Settings."
209
  msgstr ""
210
 
211
- #: includes/admin/class-wpglobus-clean.php:634
212
  msgid "You are about to clean the content of the following database tables:"
213
  msgstr ""
214
 
215
- #: includes/admin/class-wpglobus-clean.php:642
216
  msgid "The operations log"
217
  msgstr ""
218
 
219
- #: includes/admin/class-wpglobus-clean.php:645
220
  msgid ""
221
  "We are going to write a detailed log of all the database changes performed. "
222
  "It should help in the case you need to restore something important. The log "
223
  "will be written to the file:"
224
  msgstr ""
225
 
226
- #: includes/admin/class-wpglobus-clean.php:655
227
  msgid ""
228
  "Uncheck if you do not want to write the operations log (we recommend to keep "
229
  "it checked)"
230
  msgstr ""
231
 
232
- #: includes/admin/class-wpglobus-clean.php:660
233
  msgid "You have been warned..."
234
  msgstr ""
235
 
236
- #: includes/admin/class-wpglobus-clean.php:662
237
  msgid "Please confirm by checking the box below:"
238
  msgstr ""
239
 
240
- #: includes/admin/class-wpglobus-clean.php:664
241
  msgid ""
242
  "I have read and understood everything written on this page. I am aware that "
243
  "by using this tool I may loose some content of my website. I have made a "
@@ -245,11 +253,11 @@ msgid ""
245
  "responsible for the results."
246
  msgstr ""
247
 
248
- #: includes/admin/class-wpglobus-clean.php:667
249
  msgid "YES, I CONFIRM"
250
  msgstr ""
251
 
252
- #: includes/admin/class-wpglobus-clean.php:671
253
  msgid "Process with the Clean-up"
254
  msgstr ""
255
 
191
  "you backup your database before proceeding."
192
  msgstr ""
193
 
194
+ #: includes/admin/class-wpglobus-clean.php:619
195
  msgid ""
196
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
197
  "By running it, you will remove ALL translations you have entered to your "
201
  "so on."
202
  msgstr ""
203
 
204
+ #: includes/admin/class-wpglobus-clean.php:622
205
+ msgid ""
206
+ "Make sure that your active theme does not have any code related to WPGlobus. "
207
+ "Such code could be added by you or by a 3rd party developer. If that code "
208
+ "runs without first verifying that WPGlobus is active, WordPress may die with "
209
+ "a fatal error."
210
+ msgstr ""
211
+
212
+ #. translators: %1$s - language name, %2$s - language code. Do not remove.
213
+ #: includes/admin/class-wpglobus-clean.php:630
214
  msgid ""
215
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
216
+ "%1$s WILL BE DELETED! To change the main language, please go to {{settings}}."
217
  msgstr ""
218
 
219
+ #: includes/admin/class-wpglobus-clean.php:641
220
  msgid "You are about to clean the content of the following database tables:"
221
  msgstr ""
222
 
223
+ #: includes/admin/class-wpglobus-clean.php:649
224
  msgid "The operations log"
225
  msgstr ""
226
 
227
+ #: includes/admin/class-wpglobus-clean.php:652
228
  msgid ""
229
  "We are going to write a detailed log of all the database changes performed. "
230
  "It should help in the case you need to restore something important. The log "
231
  "will be written to the file:"
232
  msgstr ""
233
 
234
+ #: includes/admin/class-wpglobus-clean.php:662
235
  msgid ""
236
  "Uncheck if you do not want to write the operations log (we recommend to keep "
237
  "it checked)"
238
  msgstr ""
239
 
240
+ #: includes/admin/class-wpglobus-clean.php:667
241
  msgid "You have been warned..."
242
  msgstr ""
243
 
244
+ #: includes/admin/class-wpglobus-clean.php:669
245
  msgid "Please confirm by checking the box below:"
246
  msgstr ""
247
 
248
+ #: includes/admin/class-wpglobus-clean.php:671
249
  msgid ""
250
  "I have read and understood everything written on this page. I am aware that "
251
  "by using this tool I may loose some content of my website. I have made a "
253
  "responsible for the results."
254
  msgstr ""
255
 
256
+ #: includes/admin/class-wpglobus-clean.php:674
257
  msgid "YES, I CONFIRM"
258
  msgstr ""
259
 
260
+ #: includes/admin/class-wpglobus-clean.php:678
261
  msgid "Process with the Clean-up"
262
  msgstr ""
263
 
languages/wpglobus-en_AU.mo CHANGED
Binary file
languages/wpglobus-en_AU.po CHANGED
@@ -219,7 +219,7 @@ msgstr ""
219
  "WARNING: this operation is non-reversible. It is strongly recommended that "
220
  "you backup your database before proceeding."
221
 
222
- #: includes/admin/class-wpglobus-clean.php:618
223
  msgid ""
224
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
225
  "By running it, you will remove ALL translations you have entered to your "
@@ -235,24 +235,30 @@ msgstr ""
235
  "might end up with empty titles, no content, no excerpts, blank comments and "
236
  "so on."
237
 
238
- #. translators: %1$s - language name, %1$s - language code. Do not remove.
239
- #: includes/admin/class-wpglobus-clean.php:625
240
  msgid ""
241
- "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
242
- "%1$s WILL BE DELETED! To change the main language, please go to Settings."
 
 
243
  msgstr ""
 
 
 
 
244
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
245
- "%1$s WILL BE DELETED! To change the main language, please go to Settings."
 
246
 
247
- #: includes/admin/class-wpglobus-clean.php:634
248
  msgid "You are about to clean the content of the following database tables:"
249
  msgstr "You are about to clean the content of the following database tables:"
250
 
251
- #: includes/admin/class-wpglobus-clean.php:642
252
  msgid "The operations log"
253
  msgstr "The operations log"
254
 
255
- #: includes/admin/class-wpglobus-clean.php:645
256
  msgid ""
257
  "We are going to write a detailed log of all the database changes performed. "
258
  "It should help in the case you need to restore something important. The log "
@@ -262,7 +268,7 @@ msgstr ""
262
  "It should help in the case you need to restore something important. The log "
263
  "will be written to the file:"
264
 
265
- #: includes/admin/class-wpglobus-clean.php:655
266
  msgid ""
267
  "Uncheck if you do not want to write the operations log (we recommend to keep "
268
  "it checked)"
@@ -270,15 +276,15 @@ msgstr ""
270
  "Uncheck if you do not want to write the operations log (we recommend to keep "
271
  "it checked)"
272
 
273
- #: includes/admin/class-wpglobus-clean.php:660
274
  msgid "You have been warned..."
275
  msgstr "You have been warned..."
276
 
277
- #: includes/admin/class-wpglobus-clean.php:662
278
  msgid "Please confirm by checking the box below:"
279
  msgstr "Please confirm by checking the box below:"
280
 
281
- #: includes/admin/class-wpglobus-clean.php:664
282
  msgid ""
283
  "I have read and understood everything written on this page. I am aware that "
284
  "by using this tool I may loose some content of my website. I have made a "
@@ -290,11 +296,11 @@ msgstr ""
290
  "database backup and know how to restore it if necessary. I am fully "
291
  "responsible for the results."
292
 
293
- #: includes/admin/class-wpglobus-clean.php:667
294
  msgid "YES, I CONFIRM"
295
  msgstr "YES, I CONFIRM"
296
 
297
- #: includes/admin/class-wpglobus-clean.php:671
298
  msgid "Process with the Clean-up"
299
  msgstr "Process with the Clean-up"
300
 
@@ -1650,3 +1656,12 @@ msgstr ""
1650
  #: wpglobus.php:19
1651
  msgid "https://wpglobus.com/"
1652
  msgstr "https://wpglobus.com/"
 
 
 
 
 
 
 
 
 
219
  "WARNING: this operation is non-reversible. It is strongly recommended that "
220
  "you backup your database before proceeding."
221
 
222
+ #: includes/admin/class-wpglobus-clean.php:619
223
  msgid ""
224
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
225
  "By running it, you will remove ALL translations you have entered to your "
235
  "might end up with empty titles, no content, no excerpts, blank comments and "
236
  "so on."
237
 
238
+ #: includes/admin/class-wpglobus-clean.php:622
 
239
  msgid ""
240
+ "Make sure that your active theme does not have any code related to WPGlobus. "
241
+ "Such code could be added by you or by a 3rd party developer. If that code "
242
+ "runs without first verifying that WPGlobus is active, WordPress may die with "
243
+ "a fatal error."
244
  msgstr ""
245
+
246
+ #. translators: %1$s - language name, %2$s - language code. Do not remove.
247
+ #: includes/admin/class-wpglobus-clean.php:630
248
+ msgid ""
249
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
250
+ "%1$s WILL BE DELETED! To change the main language, please go to {{settings}}."
251
+ msgstr ""
252
 
253
+ #: includes/admin/class-wpglobus-clean.php:641
254
  msgid "You are about to clean the content of the following database tables:"
255
  msgstr "You are about to clean the content of the following database tables:"
256
 
257
+ #: includes/admin/class-wpglobus-clean.php:649
258
  msgid "The operations log"
259
  msgstr "The operations log"
260
 
261
+ #: includes/admin/class-wpglobus-clean.php:652
262
  msgid ""
263
  "We are going to write a detailed log of all the database changes performed. "
264
  "It should help in the case you need to restore something important. The log "
268
  "It should help in the case you need to restore something important. The log "
269
  "will be written to the file:"
270
 
271
+ #: includes/admin/class-wpglobus-clean.php:662
272
  msgid ""
273
  "Uncheck if you do not want to write the operations log (we recommend to keep "
274
  "it checked)"
276
  "Uncheck if you do not want to write the operations log (we recommend to keep "
277
  "it checked)"
278
 
279
+ #: includes/admin/class-wpglobus-clean.php:667
280
  msgid "You have been warned..."
281
  msgstr "You have been warned..."
282
 
283
+ #: includes/admin/class-wpglobus-clean.php:669
284
  msgid "Please confirm by checking the box below:"
285
  msgstr "Please confirm by checking the box below:"
286
 
287
+ #: includes/admin/class-wpglobus-clean.php:671
288
  msgid ""
289
  "I have read and understood everything written on this page. I am aware that "
290
  "by using this tool I may loose some content of my website. I have made a "
296
  "database backup and know how to restore it if necessary. I am fully "
297
  "responsible for the results."
298
 
299
+ #: includes/admin/class-wpglobus-clean.php:674
300
  msgid "YES, I CONFIRM"
301
  msgstr "YES, I CONFIRM"
302
 
303
+ #: includes/admin/class-wpglobus-clean.php:678
304
  msgid "Process with the Clean-up"
305
  msgstr "Process with the Clean-up"
306
 
1656
  #: wpglobus.php:19
1657
  msgid "https://wpglobus.com/"
1658
  msgstr "https://wpglobus.com/"
1659
+
1660
+ #~ msgid ""
1661
+ #~ "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT "
1662
+ #~ "IN %1$s WILL BE DELETED! To change the main language, please go to "
1663
+ #~ "Settings."
1664
+ #~ msgstr ""
1665
+ #~ "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT "
1666
+ #~ "IN %1$s WILL BE DELETED! To change the main language, please go to "
1667
+ #~ "Settings."
languages/wpglobus-en_CA.mo CHANGED
Binary file
languages/wpglobus-en_CA.po CHANGED
@@ -218,7 +218,7 @@ msgstr ""
218
  "WARNING: this operation is non-reversible. It is strongly recommended that "
219
  "you backup your database before proceeding."
220
 
221
- #: includes/admin/class-wpglobus-clean.php:618
222
  msgid ""
223
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
224
  "By running it, you will remove ALL translations you have entered to your "
@@ -234,24 +234,30 @@ msgstr ""
234
  "might end up with empty titles, no content, no excerpts, blank comments and "
235
  "so on."
236
 
237
- #. translators: %1$s - language name, %1$s - language code. Do not remove.
238
- #: includes/admin/class-wpglobus-clean.php:625
239
  msgid ""
240
- "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
241
- "%1$s WILL BE DELETED! To change the main language, please go to Settings."
 
 
242
  msgstr ""
 
 
 
 
243
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
244
- "%1$s WILL BE DELETED! To change the main language, please go to Settings."
 
245
 
246
- #: includes/admin/class-wpglobus-clean.php:634
247
  msgid "You are about to clean the content of the following database tables:"
248
  msgstr "You are about to clean the content of the following database tables:"
249
 
250
- #: includes/admin/class-wpglobus-clean.php:642
251
  msgid "The operations log"
252
  msgstr "The operations log"
253
 
254
- #: includes/admin/class-wpglobus-clean.php:645
255
  msgid ""
256
  "We are going to write a detailed log of all the database changes performed. "
257
  "It should help in the case you need to restore something important. The log "
@@ -261,7 +267,7 @@ msgstr ""
261
  "It should help in the case you need to restore something important. The log "
262
  "will be written to the file:"
263
 
264
- #: includes/admin/class-wpglobus-clean.php:655
265
  msgid ""
266
  "Uncheck if you do not want to write the operations log (we recommend to keep "
267
  "it checked)"
@@ -269,15 +275,15 @@ msgstr ""
269
  "Uncheck if you do not want to write the operations log (we recommend to keep "
270
  "it checked)"
271
 
272
- #: includes/admin/class-wpglobus-clean.php:660
273
  msgid "You have been warned..."
274
  msgstr "You have been warned..."
275
 
276
- #: includes/admin/class-wpglobus-clean.php:662
277
  msgid "Please confirm by checking the box below:"
278
  msgstr "Please confirm by checking the box below:"
279
 
280
- #: includes/admin/class-wpglobus-clean.php:664
281
  msgid ""
282
  "I have read and understood everything written on this page. I am aware that "
283
  "by using this tool I may loose some content of my website. I have made a "
@@ -289,11 +295,11 @@ msgstr ""
289
  "database backup and know how to restore it if necessary. I am fully "
290
  "responsible for the results."
291
 
292
- #: includes/admin/class-wpglobus-clean.php:667
293
  msgid "YES, I CONFIRM"
294
  msgstr "YES, I CONFIRM"
295
 
296
- #: includes/admin/class-wpglobus-clean.php:671
297
  msgid "Process with the Clean-up"
298
  msgstr "Process with the Clean-up"
299
 
@@ -1649,3 +1655,12 @@ msgstr ""
1649
  #: wpglobus.php:19
1650
  msgid "https://wpglobus.com/"
1651
  msgstr "https://wpglobus.com/"
 
 
 
 
 
 
 
 
 
218
  "WARNING: this operation is non-reversible. It is strongly recommended that "
219
  "you backup your database before proceeding."
220
 
221
+ #: includes/admin/class-wpglobus-clean.php:619
222
  msgid ""
223
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
224
  "By running it, you will remove ALL translations you have entered to your "
234
  "might end up with empty titles, no content, no excerpts, blank comments and "
235
  "so on."
236
 
237
+ #: includes/admin/class-wpglobus-clean.php:622
 
238
  msgid ""
239
+ "Make sure that your active theme does not have any code related to WPGlobus. "
240
+ "Such code could be added by you or by a 3rd party developer. If that code "
241
+ "runs without first verifying that WPGlobus is active, WordPress may die with "
242
+ "a fatal error."
243
  msgstr ""
244
+
245
+ #. translators: %1$s - language name, %2$s - language code. Do not remove.
246
+ #: includes/admin/class-wpglobus-clean.php:630
247
+ msgid ""
248
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
249
+ "%1$s WILL BE DELETED! To change the main language, please go to {{settings}}."
250
+ msgstr ""
251
 
252
+ #: includes/admin/class-wpglobus-clean.php:641
253
  msgid "You are about to clean the content of the following database tables:"
254
  msgstr "You are about to clean the content of the following database tables:"
255
 
256
+ #: includes/admin/class-wpglobus-clean.php:649
257
  msgid "The operations log"
258
  msgstr "The operations log"
259
 
260
+ #: includes/admin/class-wpglobus-clean.php:652
261
  msgid ""
262
  "We are going to write a detailed log of all the database changes performed. "
263
  "It should help in the case you need to restore something important. The log "
267
  "It should help in the case you need to restore something important. The log "
268
  "will be written to the file:"
269
 
270
+ #: includes/admin/class-wpglobus-clean.php:662
271
  msgid ""
272
  "Uncheck if you do not want to write the operations log (we recommend to keep "
273
  "it checked)"
275
  "Uncheck if you do not want to write the operations log (we recommend to keep "
276
  "it checked)"
277
 
278
+ #: includes/admin/class-wpglobus-clean.php:667
279
  msgid "You have been warned..."
280
  msgstr "You have been warned..."
281
 
282
+ #: includes/admin/class-wpglobus-clean.php:669
283
  msgid "Please confirm by checking the box below:"
284
  msgstr "Please confirm by checking the box below:"
285
 
286
+ #: includes/admin/class-wpglobus-clean.php:671
287
  msgid ""
288
  "I have read and understood everything written on this page. I am aware that "
289
  "by using this tool I may loose some content of my website. I have made a "
295
  "database backup and know how to restore it if necessary. I am fully "
296
  "responsible for the results."
297
 
298
+ #: includes/admin/class-wpglobus-clean.php:674
299
  msgid "YES, I CONFIRM"
300
  msgstr "YES, I CONFIRM"
301
 
302
+ #: includes/admin/class-wpglobus-clean.php:678
303
  msgid "Process with the Clean-up"
304
  msgstr "Process with the Clean-up"
305
 
1655
  #: wpglobus.php:19
1656
  msgid "https://wpglobus.com/"
1657
  msgstr "https://wpglobus.com/"
1658
+
1659
+ #~ msgid ""
1660
+ #~ "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT "
1661
+ #~ "IN %1$s WILL BE DELETED! To change the main language, please go to "
1662
+ #~ "Settings."
1663
+ #~ msgstr ""
1664
+ #~ "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT "
1665
+ #~ "IN %1$s WILL BE DELETED! To change the main language, please go to "
1666
+ #~ "Settings."
languages/wpglobus-en_GB.mo CHANGED
Binary file
languages/wpglobus-en_GB.po CHANGED
@@ -219,7 +219,7 @@ msgstr ""
219
  "WARNING: this operation is non-reversible. It is strongly recommended that "
220
  "you backup your database before proceeding."
221
 
222
- #: includes/admin/class-wpglobus-clean.php:618
223
  msgid ""
224
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
225
  "By running it, you will remove ALL translations you have entered to your "
@@ -235,24 +235,30 @@ msgstr ""
235
  "might end up with empty titles, no content, no excerpts, blank comments and "
236
  "so on."
237
 
238
- #. translators: %1$s - language name, %1$s - language code. Do not remove.
239
- #: includes/admin/class-wpglobus-clean.php:625
240
  msgid ""
241
- "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
242
- "%1$s WILL BE DELETED! To change the main language, please go to Settings."
 
 
243
  msgstr ""
 
 
 
 
244
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
245
- "%1$s WILL BE DELETED! To change the main language, please go to Settings."
 
246
 
247
- #: includes/admin/class-wpglobus-clean.php:634
248
  msgid "You are about to clean the content of the following database tables:"
249
  msgstr "You are about to clean the content of the following database tables:"
250
 
251
- #: includes/admin/class-wpglobus-clean.php:642
252
  msgid "The operations log"
253
  msgstr "The operations log"
254
 
255
- #: includes/admin/class-wpglobus-clean.php:645
256
  msgid ""
257
  "We are going to write a detailed log of all the database changes performed. "
258
  "It should help in the case you need to restore something important. The log "
@@ -262,7 +268,7 @@ msgstr ""
262
  "It should help in the case you need to restore something important. The log "
263
  "will be written to the file:"
264
 
265
- #: includes/admin/class-wpglobus-clean.php:655
266
  msgid ""
267
  "Uncheck if you do not want to write the operations log (we recommend to keep "
268
  "it checked)"
@@ -270,15 +276,15 @@ msgstr ""
270
  "Uncheck if you do not want to write the operations log (we recommend to keep "
271
  "it checked)"
272
 
273
- #: includes/admin/class-wpglobus-clean.php:660
274
  msgid "You have been warned..."
275
  msgstr "You have been warned..."
276
 
277
- #: includes/admin/class-wpglobus-clean.php:662
278
  msgid "Please confirm by checking the box below:"
279
  msgstr "Please confirm by checking the box below:"
280
 
281
- #: includes/admin/class-wpglobus-clean.php:664
282
  msgid ""
283
  "I have read and understood everything written on this page. I am aware that "
284
  "by using this tool I may loose some content of my website. I have made a "
@@ -290,11 +296,11 @@ msgstr ""
290
  "database backup and know how to restore it if necessary. I am fully "
291
  "responsible for the results."
292
 
293
- #: includes/admin/class-wpglobus-clean.php:667
294
  msgid "YES, I CONFIRM"
295
  msgstr "YES, I CONFIRM"
296
 
297
- #: includes/admin/class-wpglobus-clean.php:671
298
  msgid "Process with the Clean-up"
299
  msgstr "Process with the Clean-up"
300
 
@@ -1650,3 +1656,12 @@ msgstr ""
1650
  #: wpglobus.php:19
1651
  msgid "https://wpglobus.com/"
1652
  msgstr "https://wpglobus.com/"
 
 
 
 
 
 
 
 
 
219
  "WARNING: this operation is non-reversible. It is strongly recommended that "
220
  "you backup your database before proceeding."
221
 
222
+ #: includes/admin/class-wpglobus-clean.php:619
223
  msgid ""
224
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
225
  "By running it, you will remove ALL translations you have entered to your "
235
  "might end up with empty titles, no content, no excerpts, blank comments and "
236
  "so on."
237
 
238
+ #: includes/admin/class-wpglobus-clean.php:622
 
239
  msgid ""
240
+ "Make sure that your active theme does not have any code related to WPGlobus. "
241
+ "Such code could be added by you or by a 3rd party developer. If that code "
242
+ "runs without first verifying that WPGlobus is active, WordPress may die with "
243
+ "a fatal error."
244
  msgstr ""
245
+
246
+ #. translators: %1$s - language name, %2$s - language code. Do not remove.
247
+ #: includes/admin/class-wpglobus-clean.php:630
248
+ msgid ""
249
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
250
+ "%1$s WILL BE DELETED! To change the main language, please go to {{settings}}."
251
+ msgstr ""
252
 
253
+ #: includes/admin/class-wpglobus-clean.php:641
254
  msgid "You are about to clean the content of the following database tables:"
255
  msgstr "You are about to clean the content of the following database tables:"
256
 
257
+ #: includes/admin/class-wpglobus-clean.php:649
258
  msgid "The operations log"
259
  msgstr "The operations log"
260
 
261
+ #: includes/admin/class-wpglobus-clean.php:652
262
  msgid ""
263
  "We are going to write a detailed log of all the database changes performed. "
264
  "It should help in the case you need to restore something important. The log "
268
  "It should help in the case you need to restore something important. The log "
269
  "will be written to the file:"
270
 
271
+ #: includes/admin/class-wpglobus-clean.php:662
272
  msgid ""
273
  "Uncheck if you do not want to write the operations log (we recommend to keep "
274
  "it checked)"
276
  "Uncheck if you do not want to write the operations log (we recommend to keep "
277
  "it checked)"
278
 
279
+ #: includes/admin/class-wpglobus-clean.php:667
280
  msgid "You have been warned..."
281
  msgstr "You have been warned..."
282
 
283
+ #: includes/admin/class-wpglobus-clean.php:669
284
  msgid "Please confirm by checking the box below:"
285
  msgstr "Please confirm by checking the box below:"
286
 
287
+ #: includes/admin/class-wpglobus-clean.php:671
288
  msgid ""
289
  "I have read and understood everything written on this page. I am aware that "
290
  "by using this tool I may loose some content of my website. I have made a "
296
  "database backup and know how to restore it if necessary. I am fully "
297
  "responsible for the results."
298
 
299
+ #: includes/admin/class-wpglobus-clean.php:674
300
  msgid "YES, I CONFIRM"
301
  msgstr "YES, I CONFIRM"
302
 
303
+ #: includes/admin/class-wpglobus-clean.php:678
304
  msgid "Process with the Clean-up"
305
  msgstr "Process with the Clean-up"
306
 
1656
  #: wpglobus.php:19
1657
  msgid "https://wpglobus.com/"
1658
  msgstr "https://wpglobus.com/"
1659
+
1660
+ #~ msgid ""
1661
+ #~ "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT "
1662
+ #~ "IN %1$s WILL BE DELETED! To change the main language, please go to "
1663
+ #~ "Settings."
1664
+ #~ msgstr ""
1665
+ #~ "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT "
1666
+ #~ "IN %1$s WILL BE DELETED! To change the main language, please go to "
1667
+ #~ "Settings."
languages/wpglobus-en_NZ.mo CHANGED
Binary file
languages/wpglobus-en_NZ.po CHANGED
@@ -218,7 +218,7 @@ msgstr ""
218
  "WARNING: this operation is non-reversible. It is strongly recommended that "
219
  "you backup your database before proceeding."
220
 
221
- #: includes/admin/class-wpglobus-clean.php:618
222
  msgid ""
223
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
224
  "By running it, you will remove ALL translations you have entered to your "
@@ -234,24 +234,30 @@ msgstr ""
234
  "might end up with empty titles, no content, no excerpts, blank comments and "
235
  "so on."
236
 
237
- #. translators: %1$s - language name, %1$s - language code. Do not remove.
238
- #: includes/admin/class-wpglobus-clean.php:625
239
  msgid ""
240
- "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
241
- "%1$s WILL BE DELETED! To change the main language, please go to Settings."
 
 
242
  msgstr ""
 
 
 
 
243
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
244
- "%1$s WILL BE DELETED! To change the main language, please go to Settings."
 
245
 
246
- #: includes/admin/class-wpglobus-clean.php:634
247
  msgid "You are about to clean the content of the following database tables:"
248
  msgstr "You are about to clean the content of the following database tables:"
249
 
250
- #: includes/admin/class-wpglobus-clean.php:642
251
  msgid "The operations log"
252
  msgstr "The operations log"
253
 
254
- #: includes/admin/class-wpglobus-clean.php:645
255
  msgid ""
256
  "We are going to write a detailed log of all the database changes performed. "
257
  "It should help in the case you need to restore something important. The log "
@@ -261,7 +267,7 @@ msgstr ""
261
  "It should help in the case you need to restore something important. The log "
262
  "will be written to the file:"
263
 
264
- #: includes/admin/class-wpglobus-clean.php:655
265
  msgid ""
266
  "Uncheck if you do not want to write the operations log (we recommend to keep "
267
  "it checked)"
@@ -269,15 +275,15 @@ msgstr ""
269
  "Uncheck if you do not want to write the operations log (we recommend to keep "
270
  "it checked)"
271
 
272
- #: includes/admin/class-wpglobus-clean.php:660
273
  msgid "You have been warned..."
274
  msgstr "You have been warned..."
275
 
276
- #: includes/admin/class-wpglobus-clean.php:662
277
  msgid "Please confirm by checking the box below:"
278
  msgstr "Please confirm by checking the box below:"
279
 
280
- #: includes/admin/class-wpglobus-clean.php:664
281
  msgid ""
282
  "I have read and understood everything written on this page. I am aware that "
283
  "by using this tool I may loose some content of my website. I have made a "
@@ -289,11 +295,11 @@ msgstr ""
289
  "database backup and know how to restore it if necessary. I am fully "
290
  "responsible for the results."
291
 
292
- #: includes/admin/class-wpglobus-clean.php:667
293
  msgid "YES, I CONFIRM"
294
  msgstr "YES, I CONFIRM"
295
 
296
- #: includes/admin/class-wpglobus-clean.php:671
297
  msgid "Process with the Clean-up"
298
  msgstr "Process with the Clean-up"
299
 
@@ -1649,3 +1655,12 @@ msgstr ""
1649
  #: wpglobus.php:19
1650
  msgid "https://wpglobus.com/"
1651
  msgstr "https://wpglobus.com/"
 
 
 
 
 
 
 
 
 
218
  "WARNING: this operation is non-reversible. It is strongly recommended that "
219
  "you backup your database before proceeding."
220
 
221
+ #: includes/admin/class-wpglobus-clean.php:619
222
  msgid ""
223
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
224
  "By running it, you will remove ALL translations you have entered to your "
234
  "might end up with empty titles, no content, no excerpts, blank comments and "
235
  "so on."
236
 
237
+ #: includes/admin/class-wpglobus-clean.php:622
 
238
  msgid ""
239
+ "Make sure that your active theme does not have any code related to WPGlobus. "
240
+ "Such code could be added by you or by a 3rd party developer. If that code "
241
+ "runs without first verifying that WPGlobus is active, WordPress may die with "
242
+ "a fatal error."
243
  msgstr ""
244
+
245
+ #. translators: %1$s - language name, %2$s - language code. Do not remove.
246
+ #: includes/admin/class-wpglobus-clean.php:630
247
+ msgid ""
248
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
249
+ "%1$s WILL BE DELETED! To change the main language, please go to {{settings}}."
250
+ msgstr ""
251
 
252
+ #: includes/admin/class-wpglobus-clean.php:641
253
  msgid "You are about to clean the content of the following database tables:"
254
  msgstr "You are about to clean the content of the following database tables:"
255
 
256
+ #: includes/admin/class-wpglobus-clean.php:649
257
  msgid "The operations log"
258
  msgstr "The operations log"
259
 
260
+ #: includes/admin/class-wpglobus-clean.php:652
261
  msgid ""
262
  "We are going to write a detailed log of all the database changes performed. "
263
  "It should help in the case you need to restore something important. The log "
267
  "It should help in the case you need to restore something important. The log "
268
  "will be written to the file:"
269
 
270
+ #: includes/admin/class-wpglobus-clean.php:662
271
  msgid ""
272
  "Uncheck if you do not want to write the operations log (we recommend to keep "
273
  "it checked)"
275
  "Uncheck if you do not want to write the operations log (we recommend to keep "
276
  "it checked)"
277
 
278
+ #: includes/admin/class-wpglobus-clean.php:667
279
  msgid "You have been warned..."
280
  msgstr "You have been warned..."
281
 
282
+ #: includes/admin/class-wpglobus-clean.php:669
283
  msgid "Please confirm by checking the box below:"
284
  msgstr "Please confirm by checking the box below:"
285
 
286
+ #: includes/admin/class-wpglobus-clean.php:671
287
  msgid ""
288
  "I have read and understood everything written on this page. I am aware that "
289
  "by using this tool I may loose some content of my website. I have made a "
295
  "database backup and know how to restore it if necessary. I am fully "
296
  "responsible for the results."
297
 
298
+ #: includes/admin/class-wpglobus-clean.php:674
299
  msgid "YES, I CONFIRM"
300
  msgstr "YES, I CONFIRM"
301
 
302
+ #: includes/admin/class-wpglobus-clean.php:678
303
  msgid "Process with the Clean-up"
304
  msgstr "Process with the Clean-up"
305
 
1655
  #: wpglobus.php:19
1656
  msgid "https://wpglobus.com/"
1657
  msgstr "https://wpglobus.com/"
1658
+
1659
+ #~ msgid ""
1660
+ #~ "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT "
1661
+ #~ "IN %1$s WILL BE DELETED! To change the main language, please go to "
1662
+ #~ "Settings."
1663
+ #~ msgstr ""
1664
+ #~ "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT "
1665
+ #~ "IN %1$s WILL BE DELETED! To change the main language, please go to "
1666
+ #~ "Settings."
languages/wpglobus-en_US.mo CHANGED
Binary file
languages/wpglobus-en_US.po CHANGED
@@ -217,7 +217,7 @@ msgstr ""
217
  "WARNING: this operation is non-reversible. It is strongly recommended that "
218
  "you backup your database before proceeding."
219
 
220
- #: includes/admin/class-wpglobus-clean.php:618
221
  msgid ""
222
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
223
  "By running it, you will remove ALL translations you have entered to your "
@@ -233,24 +233,30 @@ msgstr ""
233
  "might end up with empty titles, no content, no excerpts, blank comments and "
234
  "so on."
235
 
236
- #. translators: %1$s - language name, %1$s - language code. Do not remove.
237
- #: includes/admin/class-wpglobus-clean.php:625
238
  msgid ""
239
- "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
240
- "%1$s WILL BE DELETED! To change the main language, please go to Settings."
 
 
241
  msgstr ""
 
 
 
 
242
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
243
- "%1$s WILL BE DELETED! To change the main language, please go to Settings."
 
244
 
245
- #: includes/admin/class-wpglobus-clean.php:634
246
  msgid "You are about to clean the content of the following database tables:"
247
  msgstr "You are about to clean the content of the following database tables:"
248
 
249
- #: includes/admin/class-wpglobus-clean.php:642
250
  msgid "The operations log"
251
  msgstr "The operations log"
252
 
253
- #: includes/admin/class-wpglobus-clean.php:645
254
  msgid ""
255
  "We are going to write a detailed log of all the database changes performed. "
256
  "It should help in the case you need to restore something important. The log "
@@ -260,7 +266,7 @@ msgstr ""
260
  "It should help in the case you need to restore something important. The log "
261
  "will be written to the file:"
262
 
263
- #: includes/admin/class-wpglobus-clean.php:655
264
  msgid ""
265
  "Uncheck if you do not want to write the operations log (we recommend to keep "
266
  "it checked)"
@@ -268,15 +274,15 @@ msgstr ""
268
  "Uncheck if you do not want to write the operations log (we recommend to keep "
269
  "it checked)"
270
 
271
- #: includes/admin/class-wpglobus-clean.php:660
272
  msgid "You have been warned..."
273
  msgstr "You have been warned..."
274
 
275
- #: includes/admin/class-wpglobus-clean.php:662
276
  msgid "Please confirm by checking the box below:"
277
  msgstr "Please confirm by checking the box below:"
278
 
279
- #: includes/admin/class-wpglobus-clean.php:664
280
  msgid ""
281
  "I have read and understood everything written on this page. I am aware that "
282
  "by using this tool I may loose some content of my website. I have made a "
@@ -288,11 +294,11 @@ msgstr ""
288
  "database backup and know how to restore it if necessary. I am fully "
289
  "responsible for the results."
290
 
291
- #: includes/admin/class-wpglobus-clean.php:667
292
  msgid "YES, I CONFIRM"
293
  msgstr "YES, I CONFIRM"
294
 
295
- #: includes/admin/class-wpglobus-clean.php:671
296
  msgid "Process with the Clean-up"
297
  msgstr "Process with the Clean-up"
298
 
@@ -1709,3 +1715,12 @@ msgstr ""
1709
  #: wpglobus.php:19
1710
  msgid "https://wpglobus.com/"
1711
  msgstr "https://wpglobus.com/"
 
 
 
 
 
 
 
 
 
217
  "WARNING: this operation is non-reversible. It is strongly recommended that "
218
  "you backup your database before proceeding."
219
 
220
+ #: includes/admin/class-wpglobus-clean.php:619
221
  msgid ""
222
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
223
  "By running it, you will remove ALL translations you have entered to your "
233
  "might end up with empty titles, no content, no excerpts, blank comments and "
234
  "so on."
235
 
236
+ #: includes/admin/class-wpglobus-clean.php:622
 
237
  msgid ""
238
+ "Make sure that your active theme does not have any code related to WPGlobus. "
239
+ "Such code could be added by you or by a 3rd party developer. If that code "
240
+ "runs without first verifying that WPGlobus is active, WordPress may die with "
241
+ "a fatal error."
242
  msgstr ""
243
+
244
+ #. translators: %1$s - language name, %2$s - language code. Do not remove.
245
+ #: includes/admin/class-wpglobus-clean.php:630
246
+ msgid ""
247
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
248
+ "%1$s WILL BE DELETED! To change the main language, please go to {{settings}}."
249
+ msgstr ""
250
 
251
+ #: includes/admin/class-wpglobus-clean.php:641
252
  msgid "You are about to clean the content of the following database tables:"
253
  msgstr "You are about to clean the content of the following database tables:"
254
 
255
+ #: includes/admin/class-wpglobus-clean.php:649
256
  msgid "The operations log"
257
  msgstr "The operations log"
258
 
259
+ #: includes/admin/class-wpglobus-clean.php:652
260
  msgid ""
261
  "We are going to write a detailed log of all the database changes performed. "
262
  "It should help in the case you need to restore something important. The log "
266
  "It should help in the case you need to restore something important. The log "
267
  "will be written to the file:"
268
 
269
+ #: includes/admin/class-wpglobus-clean.php:662
270
  msgid ""
271
  "Uncheck if you do not want to write the operations log (we recommend to keep "
272
  "it checked)"
274
  "Uncheck if you do not want to write the operations log (we recommend to keep "
275
  "it checked)"
276
 
277
+ #: includes/admin/class-wpglobus-clean.php:667
278
  msgid "You have been warned..."
279
  msgstr "You have been warned..."
280
 
281
+ #: includes/admin/class-wpglobus-clean.php:669
282
  msgid "Please confirm by checking the box below:"
283
  msgstr "Please confirm by checking the box below:"
284
 
285
+ #: includes/admin/class-wpglobus-clean.php:671
286
  msgid ""
287
  "I have read and understood everything written on this page. I am aware that "
288
  "by using this tool I may loose some content of my website. I have made a "
294
  "database backup and know how to restore it if necessary. I am fully "
295
  "responsible for the results."
296
 
297
+ #: includes/admin/class-wpglobus-clean.php:674
298
  msgid "YES, I CONFIRM"
299
  msgstr "YES, I CONFIRM"
300
 
301
+ #: includes/admin/class-wpglobus-clean.php:678
302
  msgid "Process with the Clean-up"
303
  msgstr "Process with the Clean-up"
304
 
1715
  #: wpglobus.php:19
1716
  msgid "https://wpglobus.com/"
1717
  msgstr "https://wpglobus.com/"
1718
+
1719
+ #~ msgid ""
1720
+ #~ "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT "
1721
+ #~ "IN %1$s WILL BE DELETED! To change the main language, please go to "
1722
+ #~ "Settings."
1723
+ #~ msgstr ""
1724
+ #~ "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT "
1725
+ #~ "IN %1$s WILL BE DELETED! To change the main language, please go to "
1726
+ #~ "Settings."
languages/wpglobus-en_ZA.mo CHANGED
Binary file
languages/wpglobus-en_ZA.po CHANGED
@@ -218,7 +218,7 @@ msgstr ""
218
  "WARNING: this operation is non-reversible. It is strongly recommended that "
219
  "you backup your database before proceeding."
220
 
221
- #: includes/admin/class-wpglobus-clean.php:618
222
  msgid ""
223
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
224
  "By running it, you will remove ALL translations you have entered to your "
@@ -234,24 +234,30 @@ msgstr ""
234
  "might end up with empty titles, no content, no excerpts, blank comments and "
235
  "so on."
236
 
237
- #. translators: %1$s - language name, %1$s - language code. Do not remove.
238
- #: includes/admin/class-wpglobus-clean.php:625
239
  msgid ""
240
- "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
241
- "%1$s WILL BE DELETED! To change the main language, please go to Settings."
 
 
242
  msgstr ""
 
 
 
 
243
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
244
- "%1$s WILL BE DELETED! To change the main language, please go to Settings."
 
245
 
246
- #: includes/admin/class-wpglobus-clean.php:634
247
  msgid "You are about to clean the content of the following database tables:"
248
  msgstr "You are about to clean the content of the following database tables:"
249
 
250
- #: includes/admin/class-wpglobus-clean.php:642
251
  msgid "The operations log"
252
  msgstr "The operations log"
253
 
254
- #: includes/admin/class-wpglobus-clean.php:645
255
  msgid ""
256
  "We are going to write a detailed log of all the database changes performed. "
257
  "It should help in the case you need to restore something important. The log "
@@ -261,7 +267,7 @@ msgstr ""
261
  "It should help in the case you need to restore something important. The log "
262
  "will be written to the file:"
263
 
264
- #: includes/admin/class-wpglobus-clean.php:655
265
  msgid ""
266
  "Uncheck if you do not want to write the operations log (we recommend to keep "
267
  "it checked)"
@@ -269,15 +275,15 @@ msgstr ""
269
  "Uncheck if you do not want to write the operations log (we recommend to keep "
270
  "it checked)"
271
 
272
- #: includes/admin/class-wpglobus-clean.php:660
273
  msgid "You have been warned..."
274
  msgstr "You have been warned..."
275
 
276
- #: includes/admin/class-wpglobus-clean.php:662
277
  msgid "Please confirm by checking the box below:"
278
  msgstr "Please confirm by checking the box below:"
279
 
280
- #: includes/admin/class-wpglobus-clean.php:664
281
  msgid ""
282
  "I have read and understood everything written on this page. I am aware that "
283
  "by using this tool I may loose some content of my website. I have made a "
@@ -289,11 +295,11 @@ msgstr ""
289
  "database backup and know how to restore it if necessary. I am fully "
290
  "responsible for the results."
291
 
292
- #: includes/admin/class-wpglobus-clean.php:667
293
  msgid "YES, I CONFIRM"
294
  msgstr "YES, I CONFIRM"
295
 
296
- #: includes/admin/class-wpglobus-clean.php:671
297
  msgid "Process with the Clean-up"
298
  msgstr "Process with the Clean-up"
299
 
@@ -1649,3 +1655,12 @@ msgstr ""
1649
  #: wpglobus.php:19
1650
  msgid "https://wpglobus.com/"
1651
  msgstr "https://wpglobus.com/"
 
 
 
 
 
 
 
 
 
218
  "WARNING: this operation is non-reversible. It is strongly recommended that "
219
  "you backup your database before proceeding."
220
 
221
+ #: includes/admin/class-wpglobus-clean.php:619
222
  msgid ""
223
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
224
  "By running it, you will remove ALL translations you have entered to your "
234
  "might end up with empty titles, no content, no excerpts, blank comments and "
235
  "so on."
236
 
237
+ #: includes/admin/class-wpglobus-clean.php:622
 
238
  msgid ""
239
+ "Make sure that your active theme does not have any code related to WPGlobus. "
240
+ "Such code could be added by you or by a 3rd party developer. If that code "
241
+ "runs without first verifying that WPGlobus is active, WordPress may die with "
242
+ "a fatal error."
243
  msgstr ""
244
+
245
+ #. translators: %1$s - language name, %2$s - language code. Do not remove.
246
+ #: includes/admin/class-wpglobus-clean.php:630
247
+ msgid ""
248
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
249
+ "%1$s WILL BE DELETED! To change the main language, please go to {{settings}}."
250
+ msgstr ""
251
 
252
+ #: includes/admin/class-wpglobus-clean.php:641
253
  msgid "You are about to clean the content of the following database tables:"
254
  msgstr "You are about to clean the content of the following database tables:"
255
 
256
+ #: includes/admin/class-wpglobus-clean.php:649
257
  msgid "The operations log"
258
  msgstr "The operations log"
259
 
260
+ #: includes/admin/class-wpglobus-clean.php:652
261
  msgid ""
262
  "We are going to write a detailed log of all the database changes performed. "
263
  "It should help in the case you need to restore something important. The log "
267
  "It should help in the case you need to restore something important. The log "
268
  "will be written to the file:"
269
 
270
+ #: includes/admin/class-wpglobus-clean.php:662
271
  msgid ""
272
  "Uncheck if you do not want to write the operations log (we recommend to keep "
273
  "it checked)"
275
  "Uncheck if you do not want to write the operations log (we recommend to keep "
276
  "it checked)"
277
 
278
+ #: includes/admin/class-wpglobus-clean.php:667
279
  msgid "You have been warned..."
280
  msgstr "You have been warned..."
281
 
282
+ #: includes/admin/class-wpglobus-clean.php:669
283
  msgid "Please confirm by checking the box below:"
284
  msgstr "Please confirm by checking the box below:"
285
 
286
+ #: includes/admin/class-wpglobus-clean.php:671
287
  msgid ""
288
  "I have read and understood everything written on this page. I am aware that "
289
  "by using this tool I may loose some content of my website. I have made a "
295
  "database backup and know how to restore it if necessary. I am fully "
296
  "responsible for the results."
297
 
298
+ #: includes/admin/class-wpglobus-clean.php:674
299
  msgid "YES, I CONFIRM"
300
  msgstr "YES, I CONFIRM"
301
 
302
+ #: includes/admin/class-wpglobus-clean.php:678
303
  msgid "Process with the Clean-up"
304
  msgstr "Process with the Clean-up"
305
 
1655
  #: wpglobus.php:19
1656
  msgid "https://wpglobus.com/"
1657
  msgstr "https://wpglobus.com/"
1658
+
1659
+ #~ msgid ""
1660
+ #~ "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT "
1661
+ #~ "IN %1$s WILL BE DELETED! To change the main language, please go to "
1662
+ #~ "Settings."
1663
+ #~ msgstr ""
1664
+ #~ "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT "
1665
+ #~ "IN %1$s WILL BE DELETED! To change the main language, please go to "
1666
+ #~ "Settings."
languages/wpglobus-es_AR.po CHANGED
@@ -207,7 +207,7 @@ msgid ""
207
  "you backup your database before proceeding."
208
  msgstr ""
209
 
210
- #: includes/admin/class-wpglobus-clean.php:618
211
  msgid ""
212
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
213
  "By running it, you will remove ALL translations you have entered to your "
@@ -217,43 +217,51 @@ msgid ""
217
  "so on."
218
  msgstr ""
219
 
220
- #. translators: %1$s - language name, %1$s - language code. Do not remove.
221
- #: includes/admin/class-wpglobus-clean.php:625
 
 
 
 
 
 
 
 
222
  msgid ""
223
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
224
- "%1$s WILL BE DELETED! To change the main language, please go to Settings."
225
  msgstr ""
226
 
227
- #: includes/admin/class-wpglobus-clean.php:634
228
  msgid "You are about to clean the content of the following database tables:"
229
  msgstr ""
230
 
231
- #: includes/admin/class-wpglobus-clean.php:642
232
  msgid "The operations log"
233
  msgstr ""
234
 
235
- #: includes/admin/class-wpglobus-clean.php:645
236
  msgid ""
237
  "We are going to write a detailed log of all the database changes performed. "
238
  "It should help in the case you need to restore something important. The log "
239
  "will be written to the file:"
240
  msgstr ""
241
 
242
- #: includes/admin/class-wpglobus-clean.php:655
243
  msgid ""
244
  "Uncheck if you do not want to write the operations log (we recommend to keep "
245
  "it checked)"
246
  msgstr ""
247
 
248
- #: includes/admin/class-wpglobus-clean.php:660
249
  msgid "You have been warned..."
250
  msgstr ""
251
 
252
- #: includes/admin/class-wpglobus-clean.php:662
253
  msgid "Please confirm by checking the box below:"
254
  msgstr ""
255
 
256
- #: includes/admin/class-wpglobus-clean.php:664
257
  msgid ""
258
  "I have read and understood everything written on this page. I am aware that "
259
  "by using this tool I may loose some content of my website. I have made a "
@@ -261,11 +269,11 @@ msgid ""
261
  "responsible for the results."
262
  msgstr ""
263
 
264
- #: includes/admin/class-wpglobus-clean.php:667
265
  msgid "YES, I CONFIRM"
266
  msgstr ""
267
 
268
- #: includes/admin/class-wpglobus-clean.php:671
269
  msgid "Process with the Clean-up"
270
  msgstr ""
271
 
207
  "you backup your database before proceeding."
208
  msgstr ""
209
 
210
+ #: includes/admin/class-wpglobus-clean.php:619
211
  msgid ""
212
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
213
  "By running it, you will remove ALL translations you have entered to your "
217
  "so on."
218
  msgstr ""
219
 
220
+ #: includes/admin/class-wpglobus-clean.php:622
221
+ msgid ""
222
+ "Make sure that your active theme does not have any code related to WPGlobus. "
223
+ "Such code could be added by you or by a 3rd party developer. If that code "
224
+ "runs without first verifying that WPGlobus is active, WordPress may die with "
225
+ "a fatal error."
226
+ msgstr ""
227
+
228
+ #. translators: %1$s - language name, %2$s - language code. Do not remove.
229
+ #: includes/admin/class-wpglobus-clean.php:630
230
  msgid ""
231
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
232
+ "%1$s WILL BE DELETED! To change the main language, please go to {{settings}}."
233
  msgstr ""
234
 
235
+ #: includes/admin/class-wpglobus-clean.php:641
236
  msgid "You are about to clean the content of the following database tables:"
237
  msgstr ""
238
 
239
+ #: includes/admin/class-wpglobus-clean.php:649
240
  msgid "The operations log"
241
  msgstr ""
242
 
243
+ #: includes/admin/class-wpglobus-clean.php:652
244
  msgid ""
245
  "We are going to write a detailed log of all the database changes performed. "
246
  "It should help in the case you need to restore something important. The log "
247
  "will be written to the file:"
248
  msgstr ""
249
 
250
+ #: includes/admin/class-wpglobus-clean.php:662
251
  msgid ""
252
  "Uncheck if you do not want to write the operations log (we recommend to keep "
253
  "it checked)"
254
  msgstr ""
255
 
256
+ #: includes/admin/class-wpglobus-clean.php:667
257
  msgid "You have been warned..."
258
  msgstr ""
259
 
260
+ #: includes/admin/class-wpglobus-clean.php:669
261
  msgid "Please confirm by checking the box below:"
262
  msgstr ""
263
 
264
+ #: includes/admin/class-wpglobus-clean.php:671
265
  msgid ""
266
  "I have read and understood everything written on this page. I am aware that "
267
  "by using this tool I may loose some content of my website. I have made a "
269
  "responsible for the results."
270
  msgstr ""
271
 
272
+ #: includes/admin/class-wpglobus-clean.php:674
273
  msgid "YES, I CONFIRM"
274
  msgstr ""
275
 
276
+ #: includes/admin/class-wpglobus-clean.php:678
277
  msgid "Process with the Clean-up"
278
  msgstr ""
279
 
languages/wpglobus-es_CL.po CHANGED
@@ -207,7 +207,7 @@ msgid ""
207
  "you backup your database before proceeding."
208
  msgstr ""
209
 
210
- #: includes/admin/class-wpglobus-clean.php:618
211
  msgid ""
212
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
213
  "By running it, you will remove ALL translations you have entered to your "
@@ -217,43 +217,51 @@ msgid ""
217
  "so on."
218
  msgstr ""
219
 
220
- #. translators: %1$s - language name, %1$s - language code. Do not remove.
221
- #: includes/admin/class-wpglobus-clean.php:625
 
 
 
 
 
 
 
 
222
  msgid ""
223
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
224
- "%1$s WILL BE DELETED! To change the main language, please go to Settings."
225
  msgstr ""
226
 
227
- #: includes/admin/class-wpglobus-clean.php:634
228
  msgid "You are about to clean the content of the following database tables:"
229
  msgstr ""
230
 
231
- #: includes/admin/class-wpglobus-clean.php:642
232
  msgid "The operations log"
233
  msgstr ""
234
 
235
- #: includes/admin/class-wpglobus-clean.php:645
236
  msgid ""
237
  "We are going to write a detailed log of all the database changes performed. "
238
  "It should help in the case you need to restore something important. The log "
239
  "will be written to the file:"
240
  msgstr ""
241
 
242
- #: includes/admin/class-wpglobus-clean.php:655
243
  msgid ""
244
  "Uncheck if you do not want to write the operations log (we recommend to keep "
245
  "it checked)"
246
  msgstr ""
247
 
248
- #: includes/admin/class-wpglobus-clean.php:660
249
  msgid "You have been warned..."
250
  msgstr ""
251
 
252
- #: includes/admin/class-wpglobus-clean.php:662
253
  msgid "Please confirm by checking the box below:"
254
  msgstr ""
255
 
256
- #: includes/admin/class-wpglobus-clean.php:664
257
  msgid ""
258
  "I have read and understood everything written on this page. I am aware that "
259
  "by using this tool I may loose some content of my website. I have made a "
@@ -261,11 +269,11 @@ msgid ""
261
  "responsible for the results."
262
  msgstr ""
263
 
264
- #: includes/admin/class-wpglobus-clean.php:667
265
  msgid "YES, I CONFIRM"
266
  msgstr ""
267
 
268
- #: includes/admin/class-wpglobus-clean.php:671
269
  msgid "Process with the Clean-up"
270
  msgstr ""
271
 
207
  "you backup your database before proceeding."
208
  msgstr ""
209
 
210
+ #: includes/admin/class-wpglobus-clean.php:619
211
  msgid ""
212
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
213
  "By running it, you will remove ALL translations you have entered to your "
217
  "so on."
218
  msgstr ""
219
 
220
+ #: includes/admin/class-wpglobus-clean.php:622
221
+ msgid ""
222
+ "Make sure that your active theme does not have any code related to WPGlobus. "
223
+ "Such code could be added by you or by a 3rd party developer. If that code "
224
+ "runs without first verifying that WPGlobus is active, WordPress may die with "
225
+ "a fatal error."
226
+ msgstr ""
227
+
228
+ #. translators: %1$s - language name, %2$s - language code. Do not remove.
229
+ #: includes/admin/class-wpglobus-clean.php:630
230
  msgid ""
231
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
232
+ "%1$s WILL BE DELETED! To change the main language, please go to {{settings}}."
233
  msgstr ""
234
 
235
+ #: includes/admin/class-wpglobus-clean.php:641
236
  msgid "You are about to clean the content of the following database tables:"
237
  msgstr ""
238
 
239
+ #: includes/admin/class-wpglobus-clean.php:649
240
  msgid "The operations log"
241
  msgstr ""
242
 
243
+ #: includes/admin/class-wpglobus-clean.php:652
244
  msgid ""
245
  "We are going to write a detailed log of all the database changes performed. "
246
  "It should help in the case you need to restore something important. The log "
247
  "will be written to the file:"
248
  msgstr ""
249
 
250
+ #: includes/admin/class-wpglobus-clean.php:662
251
  msgid ""
252
  "Uncheck if you do not want to write the operations log (we recommend to keep "
253
  "it checked)"
254
  msgstr ""
255
 
256
+ #: includes/admin/class-wpglobus-clean.php:667
257
  msgid "You have been warned..."
258
  msgstr ""
259
 
260
+ #: includes/admin/class-wpglobus-clean.php:669
261
  msgid "Please confirm by checking the box below:"
262
  msgstr ""
263
 
264
+ #: includes/admin/class-wpglobus-clean.php:671
265
  msgid ""
266
  "I have read and understood everything written on this page. I am aware that "
267
  "by using this tool I may loose some content of my website. I have made a "
269
  "responsible for the results."
270
  msgstr ""
271
 
272
+ #: includes/admin/class-wpglobus-clean.php:674
273
  msgid "YES, I CONFIRM"
274
  msgstr ""
275
 
276
+ #: includes/admin/class-wpglobus-clean.php:678
277
  msgid "Process with the Clean-up"
278
  msgstr ""
279
 
languages/wpglobus-es_CO.po CHANGED
@@ -207,7 +207,7 @@ msgid ""
207
  "you backup your database before proceeding."
208
  msgstr ""
209
 
210
- #: includes/admin/class-wpglobus-clean.php:618
211
  msgid ""
212
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
213
  "By running it, you will remove ALL translations you have entered to your "
@@ -217,43 +217,51 @@ msgid ""
217
  "so on."
218
  msgstr ""
219
 
220
- #. translators: %1$s - language name, %1$s - language code. Do not remove.
221
- #: includes/admin/class-wpglobus-clean.php:625
 
 
 
 
 
 
 
 
222
  msgid ""
223
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
224
- "%1$s WILL BE DELETED! To change the main language, please go to Settings."
225
  msgstr ""
226
 
227
- #: includes/admin/class-wpglobus-clean.php:634
228
  msgid "You are about to clean the content of the following database tables:"
229
  msgstr ""
230
 
231
- #: includes/admin/class-wpglobus-clean.php:642
232
  msgid "The operations log"
233
  msgstr ""
234
 
235
- #: includes/admin/class-wpglobus-clean.php:645
236
  msgid ""
237
  "We are going to write a detailed log of all the database changes performed. "
238
  "It should help in the case you need to restore something important. The log "
239
  "will be written to the file:"
240
  msgstr ""
241
 
242
- #: includes/admin/class-wpglobus-clean.php:655
243
  msgid ""
244
  "Uncheck if you do not want to write the operations log (we recommend to keep "
245
  "it checked)"
246
  msgstr ""
247
 
248
- #: includes/admin/class-wpglobus-clean.php:660
249
  msgid "You have been warned..."
250
  msgstr ""
251
 
252
- #: includes/admin/class-wpglobus-clean.php:662
253
  msgid "Please confirm by checking the box below:"
254
  msgstr ""
255
 
256
- #: includes/admin/class-wpglobus-clean.php:664
257
  msgid ""
258
  "I have read and understood everything written on this page. I am aware that "
259
  "by using this tool I may loose some content of my website. I have made a "
@@ -261,11 +269,11 @@ msgid ""
261
  "responsible for the results."
262
  msgstr ""
263
 
264
- #: includes/admin/class-wpglobus-clean.php:667
265
  msgid "YES, I CONFIRM"
266
  msgstr ""
267
 
268
- #: includes/admin/class-wpglobus-clean.php:671
269
  msgid "Process with the Clean-up"
270
  msgstr ""
271
 
207
  "you backup your database before proceeding."
208
  msgstr ""
209
 
210
+ #: includes/admin/class-wpglobus-clean.php:619
211
  msgid ""
212
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
213
  "By running it, you will remove ALL translations you have entered to your "
217
  "so on."
218
  msgstr ""
219
 
220
+ #: includes/admin/class-wpglobus-clean.php:622
221
+ msgid ""
222
+ "Make sure that your active theme does not have any code related to WPGlobus. "
223
+ "Such code could be added by you or by a 3rd party developer. If that code "
224
+ "runs without first verifying that WPGlobus is active, WordPress may die with "
225
+ "a fatal error."
226
+ msgstr ""
227
+
228
+ #. translators: %1$s - language name, %2$s - language code. Do not remove.
229
+ #: includes/admin/class-wpglobus-clean.php:630
230
  msgid ""
231
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
232
+ "%1$s WILL BE DELETED! To change the main language, please go to {{settings}}."
233
  msgstr ""
234
 
235
+ #: includes/admin/class-wpglobus-clean.php:641
236
  msgid "You are about to clean the content of the following database tables:"
237
  msgstr ""
238
 
239
+ #: includes/admin/class-wpglobus-clean.php:649
240
  msgid "The operations log"
241
  msgstr ""
242
 
243
+ #: includes/admin/class-wpglobus-clean.php:652
244
  msgid ""
245
  "We are going to write a detailed log of all the database changes performed. "
246
  "It should help in the case you need to restore something important. The log "
247
  "will be written to the file:"
248
  msgstr ""
249
 
250
+ #: includes/admin/class-wpglobus-clean.php:662
251
  msgid ""
252
  "Uncheck if you do not want to write the operations log (we recommend to keep "
253
  "it checked)"
254
  msgstr ""
255
 
256
+ #: includes/admin/class-wpglobus-clean.php:667
257
  msgid "You have been warned..."
258
  msgstr ""
259
 
260
+ #: includes/admin/class-wpglobus-clean.php:669
261
  msgid "Please confirm by checking the box below:"
262
  msgstr ""
263
 
264
+ #: includes/admin/class-wpglobus-clean.php:671
265
  msgid ""
266
  "I have read and understood everything written on this page. I am aware that "
267
  "by using this tool I may loose some content of my website. I have made a "
269
  "responsible for the results."
270
  msgstr ""
271
 
272
+ #: includes/admin/class-wpglobus-clean.php:674
273
  msgid "YES, I CONFIRM"
274
  msgstr ""
275
 
276
+ #: includes/admin/class-wpglobus-clean.php:678
277
  msgid "Process with the Clean-up"
278
  msgstr ""
279
 
languages/wpglobus-es_CR.po CHANGED
@@ -207,7 +207,7 @@ msgid ""
207
  "you backup your database before proceeding."
208
  msgstr ""
209
 
210
- #: includes/admin/class-wpglobus-clean.php:618
211
  msgid ""
212
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
213
  "By running it, you will remove ALL translations you have entered to your "
@@ -217,43 +217,51 @@ msgid ""
217
  "so on."
218
  msgstr ""
219
 
220
- #. translators: %1$s - language name, %1$s - language code. Do not remove.
221
- #: includes/admin/class-wpglobus-clean.php:625
 
 
 
 
 
 
 
 
222
  msgid ""
223
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
224
- "%1$s WILL BE DELETED! To change the main language, please go to Settings."
225
  msgstr ""
226
 
227
- #: includes/admin/class-wpglobus-clean.php:634
228
  msgid "You are about to clean the content of the following database tables:"
229
  msgstr ""
230
 
231
- #: includes/admin/class-wpglobus-clean.php:642
232
  msgid "The operations log"
233
  msgstr ""
234
 
235
- #: includes/admin/class-wpglobus-clean.php:645
236
  msgid ""
237
  "We are going to write a detailed log of all the database changes performed. "
238
  "It should help in the case you need to restore something important. The log "
239
  "will be written to the file:"
240
  msgstr ""
241
 
242
- #: includes/admin/class-wpglobus-clean.php:655
243
  msgid ""
244
  "Uncheck if you do not want to write the operations log (we recommend to keep "
245
  "it checked)"
246
  msgstr ""
247
 
248
- #: includes/admin/class-wpglobus-clean.php:660
249
  msgid "You have been warned..."
250
  msgstr ""
251
 
252
- #: includes/admin/class-wpglobus-clean.php:662
253
  msgid "Please confirm by checking the box below:"
254
  msgstr ""
255
 
256
- #: includes/admin/class-wpglobus-clean.php:664
257
  msgid ""
258
  "I have read and understood everything written on this page. I am aware that "
259
  "by using this tool I may loose some content of my website. I have made a "
@@ -261,11 +269,11 @@ msgid ""
261
  "responsible for the results."
262
  msgstr ""
263
 
264
- #: includes/admin/class-wpglobus-clean.php:667
265
  msgid "YES, I CONFIRM"
266
  msgstr ""
267
 
268
- #: includes/admin/class-wpglobus-clean.php:671
269
  msgid "Process with the Clean-up"
270
  msgstr ""
271
 
207
  "you backup your database before proceeding."
208
  msgstr ""
209
 
210
+ #: includes/admin/class-wpglobus-clean.php:619
211
  msgid ""
212
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
213
  "By running it, you will remove ALL translations you have entered to your "
217
  "so on."
218
  msgstr ""
219
 
220
+ #: includes/admin/class-wpglobus-clean.php:622
221
+ msgid ""
222
+ "Make sure that your active theme does not have any code related to WPGlobus. "
223
+ "Such code could be added by you or by a 3rd party developer. If that code "
224
+ "runs without first verifying that WPGlobus is active, WordPress may die with "
225
+ "a fatal error."
226
+ msgstr ""
227
+
228
+ #. translators: %1$s - language name, %2$s - language code. Do not remove.
229
+ #: includes/admin/class-wpglobus-clean.php:630
230
  msgid ""
231
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
232
+ "%1$s WILL BE DELETED! To change the main language, please go to {{settings}}."
233
  msgstr ""
234
 
235
+ #: includes/admin/class-wpglobus-clean.php:641
236
  msgid "You are about to clean the content of the following database tables:"
237
  msgstr ""
238
 
239
+ #: includes/admin/class-wpglobus-clean.php:649
240
  msgid "The operations log"
241
  msgstr ""
242
 
243
+ #: includes/admin/class-wpglobus-clean.php:652
244
  msgid ""
245
  "We are going to write a detailed log of all the database changes performed. "
246
  "It should help in the case you need to restore something important. The log "
247
  "will be written to the file:"
248
  msgstr ""
249
 
250
+ #: includes/admin/class-wpglobus-clean.php:662
251
  msgid ""
252
  "Uncheck if you do not want to write the operations log (we recommend to keep "
253
  "it checked)"
254
  msgstr ""
255
 
256
+ #: includes/admin/class-wpglobus-clean.php:667
257
  msgid "You have been warned..."
258
  msgstr ""
259
 
260
+ #: includes/admin/class-wpglobus-clean.php:669
261
  msgid "Please confirm by checking the box below:"
262
  msgstr ""
263
 
264
+ #: includes/admin/class-wpglobus-clean.php:671
265
  msgid ""
266
  "I have read and understood everything written on this page. I am aware that "
267
  "by using this tool I may loose some content of my website. I have made a "
269
  "responsible for the results."
270
  msgstr ""
271
 
272
+ #: includes/admin/class-wpglobus-clean.php:674
273
  msgid "YES, I CONFIRM"
274
  msgstr ""
275
 
276
+ #: includes/admin/class-wpglobus-clean.php:678
277
  msgid "Process with the Clean-up"
278
  msgstr ""
279
 
languages/wpglobus-es_ES.po CHANGED
@@ -207,7 +207,7 @@ msgid ""
207
  "you backup your database before proceeding."
208
  msgstr ""
209
 
210
- #: includes/admin/class-wpglobus-clean.php:618
211
  msgid ""
212
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
213
  "By running it, you will remove ALL translations you have entered to your "
@@ -217,43 +217,51 @@ msgid ""
217
  "so on."
218
  msgstr ""
219
 
220
- #. translators: %1$s - language name, %1$s - language code. Do not remove.
221
- #: includes/admin/class-wpglobus-clean.php:625
 
 
 
 
 
 
 
 
222
  msgid ""
223
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
224
- "%1$s WILL BE DELETED! To change the main language, please go to Settings."
225
  msgstr ""
226
 
227
- #: includes/admin/class-wpglobus-clean.php:634
228
  msgid "You are about to clean the content of the following database tables:"
229
  msgstr ""
230
 
231
- #: includes/admin/class-wpglobus-clean.php:642
232
  msgid "The operations log"
233
  msgstr ""
234
 
235
- #: includes/admin/class-wpglobus-clean.php:645
236
  msgid ""
237
  "We are going to write a detailed log of all the database changes performed. "
238
  "It should help in the case you need to restore something important. The log "
239
  "will be written to the file:"
240
  msgstr ""
241
 
242
- #: includes/admin/class-wpglobus-clean.php:655
243
  msgid ""
244
  "Uncheck if you do not want to write the operations log (we recommend to keep "
245
  "it checked)"
246
  msgstr ""
247
 
248
- #: includes/admin/class-wpglobus-clean.php:660
249
  msgid "You have been warned..."
250
  msgstr ""
251
 
252
- #: includes/admin/class-wpglobus-clean.php:662
253
  msgid "Please confirm by checking the box below:"
254
  msgstr ""
255
 
256
- #: includes/admin/class-wpglobus-clean.php:664
257
  msgid ""
258
  "I have read and understood everything written on this page. I am aware that "
259
  "by using this tool I may loose some content of my website. I have made a "
@@ -261,11 +269,11 @@ msgid ""
261
  "responsible for the results."
262
  msgstr ""
263
 
264
- #: includes/admin/class-wpglobus-clean.php:667
265
  msgid "YES, I CONFIRM"
266
  msgstr ""
267
 
268
- #: includes/admin/class-wpglobus-clean.php:671
269
  msgid "Process with the Clean-up"
270
  msgstr ""
271
 
207
  "you backup your database before proceeding."
208
  msgstr ""
209
 
210
+ #: includes/admin/class-wpglobus-clean.php:619
211
  msgid ""
212
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
213
  "By running it, you will remove ALL translations you have entered to your "
217
  "so on."
218
  msgstr ""
219
 
220
+ #: includes/admin/class-wpglobus-clean.php:622
221
+ msgid ""
222
+ "Make sure that your active theme does not have any code related to WPGlobus. "
223
+ "Such code could be added by you or by a 3rd party developer. If that code "
224
+ "runs without first verifying that WPGlobus is active, WordPress may die with "
225
+ "a fatal error."
226
+ msgstr ""
227
+
228
+ #. translators: %1$s - language name, %2$s - language code. Do not remove.
229
+ #: includes/admin/class-wpglobus-clean.php:630
230
  msgid ""
231
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
232
+ "%1$s WILL BE DELETED! To change the main language, please go to {{settings}}."
233
  msgstr ""
234
 
235
+ #: includes/admin/class-wpglobus-clean.php:641
236
  msgid "You are about to clean the content of the following database tables:"
237
  msgstr ""
238
 
239
+ #: includes/admin/class-wpglobus-clean.php:649
240
  msgid "The operations log"
241
  msgstr ""
242
 
243
+ #: includes/admin/class-wpglobus-clean.php:652
244
  msgid ""
245
  "We are going to write a detailed log of all the database changes performed. "
246
  "It should help in the case you need to restore something important. The log "
247
  "will be written to the file:"
248
  msgstr ""
249
 
250
+ #: includes/admin/class-wpglobus-clean.php:662
251
  msgid ""
252
  "Uncheck if you do not want to write the operations log (we recommend to keep "
253
  "it checked)"
254
  msgstr ""
255
 
256
+ #: includes/admin/class-wpglobus-clean.php:667
257
  msgid "You have been warned..."
258
  msgstr ""
259
 
260
+ #: includes/admin/class-wpglobus-clean.php:669
261
  msgid "Please confirm by checking the box below:"
262
  msgstr ""
263
 
264
+ #: includes/admin/class-wpglobus-clean.php:671
265
  msgid ""
266
  "I have read and understood everything written on this page. I am aware that "
267
  "by using this tool I may loose some content of my website. I have made a "
269
  "responsible for the results."
270
  msgstr ""
271
 
272
+ #: includes/admin/class-wpglobus-clean.php:674
273
  msgid "YES, I CONFIRM"
274
  msgstr ""
275
 
276
+ #: includes/admin/class-wpglobus-clean.php:678
277
  msgid "Process with the Clean-up"
278
  msgstr ""
279
 
languages/wpglobus-es_GT.po CHANGED
@@ -207,7 +207,7 @@ msgid ""
207
  "you backup your database before proceeding."
208
  msgstr ""
209
 
210
- #: includes/admin/class-wpglobus-clean.php:618
211
  msgid ""
212
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
213
  "By running it, you will remove ALL translations you have entered to your "
@@ -217,43 +217,51 @@ msgid ""
217
  "so on."
218
  msgstr ""
219
 
220
- #. translators: %1$s - language name, %1$s - language code. Do not remove.
221
- #: includes/admin/class-wpglobus-clean.php:625
 
 
 
 
 
 
 
 
222
  msgid ""
223
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
224
- "%1$s WILL BE DELETED! To change the main language, please go to Settings."
225
  msgstr ""
226
 
227
- #: includes/admin/class-wpglobus-clean.php:634
228
  msgid "You are about to clean the content of the following database tables:"
229
  msgstr ""
230
 
231
- #: includes/admin/class-wpglobus-clean.php:642
232
  msgid "The operations log"
233
  msgstr ""
234
 
235
- #: includes/admin/class-wpglobus-clean.php:645
236
  msgid ""
237
  "We are going to write a detailed log of all the database changes performed. "
238
  "It should help in the case you need to restore something important. The log "
239
  "will be written to the file:"
240
  msgstr ""
241
 
242
- #: includes/admin/class-wpglobus-clean.php:655
243
  msgid ""
244
  "Uncheck if you do not want to write the operations log (we recommend to keep "
245
  "it checked)"
246
  msgstr ""
247
 
248
- #: includes/admin/class-wpglobus-clean.php:660
249
  msgid "You have been warned..."
250
  msgstr ""
251
 
252
- #: includes/admin/class-wpglobus-clean.php:662
253
  msgid "Please confirm by checking the box below:"
254
  msgstr ""
255
 
256
- #: includes/admin/class-wpglobus-clean.php:664
257
  msgid ""
258
  "I have read and understood everything written on this page. I am aware that "
259
  "by using this tool I may loose some content of my website. I have made a "
@@ -261,11 +269,11 @@ msgid ""
261
  "responsible for the results."
262
  msgstr ""
263
 
264
- #: includes/admin/class-wpglobus-clean.php:667
265
  msgid "YES, I CONFIRM"
266
  msgstr ""
267
 
268
- #: includes/admin/class-wpglobus-clean.php:671
269
  msgid "Process with the Clean-up"
270
  msgstr ""
271
 
207
  "you backup your database before proceeding."
208
  msgstr ""
209
 
210
+ #: includes/admin/class-wpglobus-clean.php:619
211
  msgid ""
212
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
213
  "By running it, you will remove ALL translations you have entered to your "
217
  "so on."
218
  msgstr ""
219
 
220
+ #: includes/admin/class-wpglobus-clean.php:622
221
+ msgid ""
222
+ "Make sure that your active theme does not have any code related to WPGlobus. "
223
+ "Such code could be added by you or by a 3rd party developer. If that code "
224
+ "runs without first verifying that WPGlobus is active, WordPress may die with "
225
+ "a fatal error."
226
+ msgstr ""
227
+
228
+ #. translators: %1$s - language name, %2$s - language code. Do not remove.
229
+ #: includes/admin/class-wpglobus-clean.php:630
230
  msgid ""
231
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
232
+ "%1$s WILL BE DELETED! To change the main language, please go to {{settings}}."
233
  msgstr ""
234
 
235
+ #: includes/admin/class-wpglobus-clean.php:641
236
  msgid "You are about to clean the content of the following database tables:"
237
  msgstr ""
238
 
239
+ #: includes/admin/class-wpglobus-clean.php:649
240
  msgid "The operations log"
241
  msgstr ""
242
 
243
+ #: includes/admin/class-wpglobus-clean.php:652
244
  msgid ""
245
  "We are going to write a detailed log of all the database changes performed. "
246
  "It should help in the case you need to restore something important. The log "
247
  "will be written to the file:"
248
  msgstr ""
249
 
250
+ #: includes/admin/class-wpglobus-clean.php:662
251
  msgid ""
252
  "Uncheck if you do not want to write the operations log (we recommend to keep "
253
  "it checked)"
254
  msgstr ""
255
 
256
+ #: includes/admin/class-wpglobus-clean.php:667
257
  msgid "You have been warned..."
258
  msgstr ""
259
 
260
+ #: includes/admin/class-wpglobus-clean.php:669
261
  msgid "Please confirm by checking the box below:"
262
  msgstr ""
263
 
264
+ #: includes/admin/class-wpglobus-clean.php:671
265
  msgid ""
266
  "I have read and understood everything written on this page. I am aware that "
267
  "by using this tool I may loose some content of my website. I have made a "
269
  "responsible for the results."
270
  msgstr ""
271
 
272
+ #: includes/admin/class-wpglobus-clean.php:674
273
  msgid "YES, I CONFIRM"
274
  msgstr ""
275
 
276
+ #: includes/admin/class-wpglobus-clean.php:678
277
  msgid "Process with the Clean-up"
278
  msgstr ""
279
 
languages/wpglobus-es_MX.po CHANGED
@@ -207,7 +207,7 @@ msgid ""
207
  "you backup your database before proceeding."
208
  msgstr ""
209
 
210
- #: includes/admin/class-wpglobus-clean.php:618
211
  msgid ""
212
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
213
  "By running it, you will remove ALL translations you have entered to your "
@@ -217,43 +217,51 @@ msgid ""
217
  "so on."
218
  msgstr ""
219
 
220
- #. translators: %1$s - language name, %1$s - language code. Do not remove.
221
- #: includes/admin/class-wpglobus-clean.php:625
 
 
 
 
 
 
 
 
222
  msgid ""
223
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
224
- "%1$s WILL BE DELETED! To change the main language, please go to Settings."
225
  msgstr ""
226
 
227
- #: includes/admin/class-wpglobus-clean.php:634
228
  msgid "You are about to clean the content of the following database tables:"
229
  msgstr ""
230
 
231
- #: includes/admin/class-wpglobus-clean.php:642
232
  msgid "The operations log"
233
  msgstr ""
234
 
235
- #: includes/admin/class-wpglobus-clean.php:645
236
  msgid ""
237
  "We are going to write a detailed log of all the database changes performed. "
238
  "It should help in the case you need to restore something important. The log "
239
  "will be written to the file:"
240
  msgstr ""
241
 
242
- #: includes/admin/class-wpglobus-clean.php:655
243
  msgid ""
244
  "Uncheck if you do not want to write the operations log (we recommend to keep "
245
  "it checked)"
246
  msgstr ""
247
 
248
- #: includes/admin/class-wpglobus-clean.php:660
249
  msgid "You have been warned..."
250
  msgstr ""
251
 
252
- #: includes/admin/class-wpglobus-clean.php:662
253
  msgid "Please confirm by checking the box below:"
254
  msgstr ""
255
 
256
- #: includes/admin/class-wpglobus-clean.php:664
257
  msgid ""
258
  "I have read and understood everything written on this page. I am aware that "
259
  "by using this tool I may loose some content of my website. I have made a "
@@ -261,11 +269,11 @@ msgid ""
261
  "responsible for the results."
262
  msgstr ""
263
 
264
- #: includes/admin/class-wpglobus-clean.php:667
265
  msgid "YES, I CONFIRM"
266
  msgstr ""
267
 
268
- #: includes/admin/class-wpglobus-clean.php:671
269
  msgid "Process with the Clean-up"
270
  msgstr ""
271
 
207
  "you backup your database before proceeding."
208
  msgstr ""
209
 
210
+ #: includes/admin/class-wpglobus-clean.php:619
211
  msgid ""
212
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
213
  "By running it, you will remove ALL translations you have entered to your "
217
  "so on."
218
  msgstr ""
219
 
220
+ #: includes/admin/class-wpglobus-clean.php:622
221
+ msgid ""
222
+ "Make sure that your active theme does not have any code related to WPGlobus. "
223
+ "Such code could be added by you or by a 3rd party developer. If that code "
224
+ "runs without first verifying that WPGlobus is active, WordPress may die with "
225
+ "a fatal error."
226
+ msgstr ""
227
+
228
+ #. translators: %1$s - language name, %2$s - language code. Do not remove.
229
+ #: includes/admin/class-wpglobus-clean.php:630
230
  msgid ""
231
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
232
+ "%1$s WILL BE DELETED! To change the main language, please go to {{settings}}."
233
  msgstr ""
234
 
235
+ #: includes/admin/class-wpglobus-clean.php:641
236
  msgid "You are about to clean the content of the following database tables:"
237
  msgstr ""
238
 
239
+ #: includes/admin/class-wpglobus-clean.php:649
240
  msgid "The operations log"
241
  msgstr ""
242
 
243
+ #: includes/admin/class-wpglobus-clean.php:652
244
  msgid ""
245
  "We are going to write a detailed log of all the database changes performed. "
246
  "It should help in the case you need to restore something important. The log "
247
  "will be written to the file:"
248
  msgstr ""
249
 
250
+ #: includes/admin/class-wpglobus-clean.php:662
251
  msgid ""
252
  "Uncheck if you do not want to write the operations log (we recommend to keep "
253
  "it checked)"
254
  msgstr ""
255
 
256
+ #: includes/admin/class-wpglobus-clean.php:667
257
  msgid "You have been warned..."
258
  msgstr ""
259
 
260
+ #: includes/admin/class-wpglobus-clean.php:669
261
  msgid "Please confirm by checking the box below:"
262
  msgstr ""
263
 
264
+ #: includes/admin/class-wpglobus-clean.php:671
265
  msgid ""
266
  "I have read and understood everything written on this page. I am aware that "
267
  "by using this tool I may loose some content of my website. I have made a "
269
  "responsible for the results."
270
  msgstr ""
271
 
272
+ #: includes/admin/class-wpglobus-clean.php:674
273
  msgid "YES, I CONFIRM"
274
  msgstr ""
275
 
276
+ #: includes/admin/class-wpglobus-clean.php:678
277
  msgid "Process with the Clean-up"
278
  msgstr ""
279
 
languages/wpglobus-es_PE.po CHANGED
@@ -207,7 +207,7 @@ msgid ""
207
  "you backup your database before proceeding."
208
  msgstr ""
209
 
210
- #: includes/admin/class-wpglobus-clean.php:618
211
  msgid ""
212
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
213
  "By running it, you will remove ALL translations you have entered to your "
@@ -217,43 +217,51 @@ msgid ""
217
  "so on."
218
  msgstr ""
219
 
220
- #. translators: %1$s - language name, %1$s - language code. Do not remove.
221
- #: includes/admin/class-wpglobus-clean.php:625
 
 
 
 
 
 
 
 
222
  msgid ""
223
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
224
- "%1$s WILL BE DELETED! To change the main language, please go to Settings."
225
  msgstr ""
226
 
227
- #: includes/admin/class-wpglobus-clean.php:634
228
  msgid "You are about to clean the content of the following database tables:"
229
  msgstr ""
230
 
231
- #: includes/admin/class-wpglobus-clean.php:642
232
  msgid "The operations log"
233
  msgstr ""
234
 
235
- #: includes/admin/class-wpglobus-clean.php:645
236
  msgid ""
237
  "We are going to write a detailed log of all the database changes performed. "
238
  "It should help in the case you need to restore something important. The log "
239
  "will be written to the file:"
240
  msgstr ""
241
 
242
- #: includes/admin/class-wpglobus-clean.php:655
243
  msgid ""
244
  "Uncheck if you do not want to write the operations log (we recommend to keep "
245
  "it checked)"
246
  msgstr ""
247
 
248
- #: includes/admin/class-wpglobus-clean.php:660
249
  msgid "You have been warned..."
250
  msgstr ""
251
 
252
- #: includes/admin/class-wpglobus-clean.php:662
253
  msgid "Please confirm by checking the box below:"
254
  msgstr ""
255
 
256
- #: includes/admin/class-wpglobus-clean.php:664
257
  msgid ""
258
  "I have read and understood everything written on this page. I am aware that "
259
  "by using this tool I may loose some content of my website. I have made a "
@@ -261,11 +269,11 @@ msgid ""
261
  "responsible for the results."
262
  msgstr ""
263
 
264
- #: includes/admin/class-wpglobus-clean.php:667
265
  msgid "YES, I CONFIRM"
266
  msgstr ""
267
 
268
- #: includes/admin/class-wpglobus-clean.php:671
269
  msgid "Process with the Clean-up"
270
  msgstr ""
271
 
207
  "you backup your database before proceeding."
208
  msgstr ""
209
 
210
+ #: includes/admin/class-wpglobus-clean.php:619
211
  msgid ""
212
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
213
  "By running it, you will remove ALL translations you have entered to your "
217
  "so on."
218
  msgstr ""
219
 
220
+ #: includes/admin/class-wpglobus-clean.php:622
221
+ msgid ""
222
+ "Make sure that your active theme does not have any code related to WPGlobus. "
223
+ "Such code could be added by you or by a 3rd party developer. If that code "
224
+ "runs without first verifying that WPGlobus is active, WordPress may die with "
225
+ "a fatal error."
226
+ msgstr ""
227
+
228
+ #. translators: %1$s - language name, %2$s - language code. Do not remove.
229
+ #: includes/admin/class-wpglobus-clean.php:630
230
  msgid ""
231
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
232
+ "%1$s WILL BE DELETED! To change the main language, please go to {{settings}}."
233
  msgstr ""
234
 
235
+ #: includes/admin/class-wpglobus-clean.php:641
236
  msgid "You are about to clean the content of the following database tables:"
237
  msgstr ""
238
 
239
+ #: includes/admin/class-wpglobus-clean.php:649
240
  msgid "The operations log"
241
  msgstr ""
242
 
243
+ #: includes/admin/class-wpglobus-clean.php:652
244
  msgid ""
245
  "We are going to write a detailed log of all the database changes performed. "
246
  "It should help in the case you need to restore something important. The log "
247
  "will be written to the file:"
248
  msgstr ""
249
 
250
+ #: includes/admin/class-wpglobus-clean.php:662
251
  msgid ""
252
  "Uncheck if you do not want to write the operations log (we recommend to keep "
253
  "it checked)"
254
  msgstr ""
255
 
256
+ #: includes/admin/class-wpglobus-clean.php:667
257
  msgid "You have been warned..."
258
  msgstr ""
259
 
260
+ #: includes/admin/class-wpglobus-clean.php:669
261
  msgid "Please confirm by checking the box below:"
262
  msgstr ""
263
 
264
+ #: includes/admin/class-wpglobus-clean.php:671
265
  msgid ""
266
  "I have read and understood everything written on this page. I am aware that "
267
  "by using this tool I may loose some content of my website. I have made a "
269
  "responsible for the results."
270
  msgstr ""
271
 
272
+ #: includes/admin/class-wpglobus-clean.php:674
273
  msgid "YES, I CONFIRM"
274
  msgstr ""
275
 
276
+ #: includes/admin/class-wpglobus-clean.php:678
277
  msgid "Process with the Clean-up"
278
  msgstr ""
279
 
languages/wpglobus-es_PR.po CHANGED
@@ -207,7 +207,7 @@ msgid ""
207
  "you backup your database before proceeding."
208
  msgstr ""
209
 
210
- #: includes/admin/class-wpglobus-clean.php:618
211
  msgid ""
212
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
213
  "By running it, you will remove ALL translations you have entered to your "
@@ -217,43 +217,51 @@ msgid ""
217
  "so on."
218
  msgstr ""
219
 
220
- #. translators: %1$s - language name, %1$s - language code. Do not remove.
221
- #: includes/admin/class-wpglobus-clean.php:625
 
 
 
 
 
 
 
 
222
  msgid ""
223
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
224
- "%1$s WILL BE DELETED! To change the main language, please go to Settings."
225
  msgstr ""
226
 
227
- #: includes/admin/class-wpglobus-clean.php:634
228
  msgid "You are about to clean the content of the following database tables:"
229
  msgstr ""
230
 
231
- #: includes/admin/class-wpglobus-clean.php:642
232
  msgid "The operations log"
233
  msgstr ""
234
 
235
- #: includes/admin/class-wpglobus-clean.php:645
236
  msgid ""
237
  "We are going to write a detailed log of all the database changes performed. "
238
  "It should help in the case you need to restore something important. The log "
239
  "will be written to the file:"
240
  msgstr ""
241
 
242
- #: includes/admin/class-wpglobus-clean.php:655
243
  msgid ""
244
  "Uncheck if you do not want to write the operations log (we recommend to keep "
245
  "it checked)"
246
  msgstr ""
247
 
248
- #: includes/admin/class-wpglobus-clean.php:660
249
  msgid "You have been warned..."
250
  msgstr ""
251
 
252
- #: includes/admin/class-wpglobus-clean.php:662
253
  msgid "Please confirm by checking the box below:"
254
  msgstr ""
255
 
256
- #: includes/admin/class-wpglobus-clean.php:664
257
  msgid ""
258
  "I have read and understood everything written on this page. I am aware that "
259
  "by using this tool I may loose some content of my website. I have made a "
@@ -261,11 +269,11 @@ msgid ""
261
  "responsible for the results."
262
  msgstr ""
263
 
264
- #: includes/admin/class-wpglobus-clean.php:667
265
  msgid "YES, I CONFIRM"
266
  msgstr ""
267
 
268
- #: includes/admin/class-wpglobus-clean.php:671
269
  msgid "Process with the Clean-up"
270
  msgstr ""
271
 
207
  "you backup your database before proceeding."
208
  msgstr ""
209
 
210
+ #: includes/admin/class-wpglobus-clean.php:619
211
  msgid ""
212
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
213
  "By running it, you will remove ALL translations you have entered to your "
217
  "so on."
218
  msgstr ""
219
 
220
+ #: includes/admin/class-wpglobus-clean.php:622
221
+ msgid ""
222
+ "Make sure that your active theme does not have any code related to WPGlobus. "
223
+ "Such code could be added by you or by a 3rd party developer. If that code "
224
+ "runs without first verifying that WPGlobus is active, WordPress may die with "
225
+ "a fatal error."
226
+ msgstr ""
227
+
228
+ #. translators: %1$s - language name, %2$s - language code. Do not remove.
229
+ #: includes/admin/class-wpglobus-clean.php:630
230
  msgid ""
231
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
232
+ "%1$s WILL BE DELETED! To change the main language, please go to {{settings}}."
233
  msgstr ""
234
 
235
+ #: includes/admin/class-wpglobus-clean.php:641
236
  msgid "You are about to clean the content of the following database tables:"
237
  msgstr ""
238
 
239
+ #: includes/admin/class-wpglobus-clean.php:649
240
  msgid "The operations log"
241
  msgstr ""
242
 
243
+ #: includes/admin/class-wpglobus-clean.php:652
244
  msgid ""
245
  "We are going to write a detailed log of all the database changes performed. "
246
  "It should help in the case you need to restore something important. The log "
247
  "will be written to the file:"
248
  msgstr ""
249
 
250
+ #: includes/admin/class-wpglobus-clean.php:662
251
  msgid ""
252
  "Uncheck if you do not want to write the operations log (we recommend to keep "
253
  "it checked)"
254
  msgstr ""
255
 
256
+ #: includes/admin/class-wpglobus-clean.php:667
257
  msgid "You have been warned..."
258
  msgstr ""
259
 
260
+ #: includes/admin/class-wpglobus-clean.php:669
261
  msgid "Please confirm by checking the box below:"
262
  msgstr ""
263
 
264
+ #: includes/admin/class-wpglobus-clean.php:671
265
  msgid ""
266
  "I have read and understood everything written on this page. I am aware that "
267
  "by using this tool I may loose some content of my website. I have made a "
269
  "responsible for the results."
270
  msgstr ""
271
 
272
+ #: includes/admin/class-wpglobus-clean.php:674
273
  msgid "YES, I CONFIRM"
274
  msgstr ""
275
 
276
+ #: includes/admin/class-wpglobus-clean.php:678
277
  msgid "Process with the Clean-up"
278
  msgstr ""
279
 
languages/wpglobus-es_VE.po CHANGED
@@ -207,7 +207,7 @@ msgid ""
207
  "you backup your database before proceeding."
208
  msgstr ""
209
 
210
- #: includes/admin/class-wpglobus-clean.php:618
211
  msgid ""
212
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
213
  "By running it, you will remove ALL translations you have entered to your "
@@ -217,43 +217,51 @@ msgid ""
217
  "so on."
218
  msgstr ""
219
 
220
- #. translators: %1$s - language name, %1$s - language code. Do not remove.
221
- #: includes/admin/class-wpglobus-clean.php:625
 
 
 
 
 
 
 
 
222
  msgid ""
223
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
224
- "%1$s WILL BE DELETED! To change the main language, please go to Settings."
225
  msgstr ""
226
 
227
- #: includes/admin/class-wpglobus-clean.php:634
228
  msgid "You are about to clean the content of the following database tables:"
229
  msgstr ""
230
 
231
- #: includes/admin/class-wpglobus-clean.php:642
232
  msgid "The operations log"
233
  msgstr ""
234
 
235
- #: includes/admin/class-wpglobus-clean.php:645
236
  msgid ""
237
  "We are going to write a detailed log of all the database changes performed. "
238
  "It should help in the case you need to restore something important. The log "
239
  "will be written to the file:"
240
  msgstr ""
241
 
242
- #: includes/admin/class-wpglobus-clean.php:655
243
  msgid ""
244
  "Uncheck if you do not want to write the operations log (we recommend to keep "
245
  "it checked)"
246
  msgstr ""
247
 
248
- #: includes/admin/class-wpglobus-clean.php:660
249
  msgid "You have been warned..."
250
  msgstr ""
251
 
252
- #: includes/admin/class-wpglobus-clean.php:662
253
  msgid "Please confirm by checking the box below:"
254
  msgstr ""
255
 
256
- #: includes/admin/class-wpglobus-clean.php:664
257
  msgid ""
258
  "I have read and understood everything written on this page. I am aware that "
259
  "by using this tool I may loose some content of my website. I have made a "
@@ -261,11 +269,11 @@ msgid ""
261
  "responsible for the results."
262
  msgstr ""
263
 
264
- #: includes/admin/class-wpglobus-clean.php:667
265
  msgid "YES, I CONFIRM"
266
  msgstr ""
267
 
268
- #: includes/admin/class-wpglobus-clean.php:671
269
  msgid "Process with the Clean-up"
270
  msgstr ""
271
 
207
  "you backup your database before proceeding."
208
  msgstr ""
209
 
210
+ #: includes/admin/class-wpglobus-clean.php:619
211
  msgid ""
212
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
213
  "By running it, you will remove ALL translations you have entered to your "
217
  "so on."
218
  msgstr ""
219
 
220
+ #: includes/admin/class-wpglobus-clean.php:622
221
+ msgid ""
222
+ "Make sure that your active theme does not have any code related to WPGlobus. "
223
+ "Such code could be added by you or by a 3rd party developer. If that code "
224
+ "runs without first verifying that WPGlobus is active, WordPress may die with "
225
+ "a fatal error."
226
+ msgstr ""
227
+
228
+ #. translators: %1$s - language name, %2$s - language code. Do not remove.
229
+ #: includes/admin/class-wpglobus-clean.php:630
230
  msgid ""
231
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
232
+ "%1$s WILL BE DELETED! To change the main language, please go to {{settings}}."
233
  msgstr ""
234
 
235
+ #: includes/admin/class-wpglobus-clean.php:641
236
  msgid "You are about to clean the content of the following database tables:"
237
  msgstr ""
238
 
239
+ #: includes/admin/class-wpglobus-clean.php:649
240
  msgid "The operations log"
241
  msgstr ""
242
 
243
+ #: includes/admin/class-wpglobus-clean.php:652
244
  msgid ""
245
  "We are going to write a detailed log of all the database changes performed. "
246
  "It should help in the case you need to restore something important. The log "
247
  "will be written to the file:"
248
  msgstr ""
249
 
250
+ #: includes/admin/class-wpglobus-clean.php:662
251
  msgid ""
252
  "Uncheck if you do not want to write the operations log (we recommend to keep "
253
  "it checked)"
254
  msgstr ""
255
 
256
+ #: includes/admin/class-wpglobus-clean.php:667
257
  msgid "You have been warned..."
258
  msgstr ""
259
 
260
+ #: includes/admin/class-wpglobus-clean.php:669
261
  msgid "Please confirm by checking the box below:"
262
  msgstr ""
263
 
264
+ #: includes/admin/class-wpglobus-clean.php:671
265
  msgid ""
266
  "I have read and understood everything written on this page. I am aware that "
267
  "by using this tool I may loose some content of my website. I have made a "
269
  "responsible for the results."
270
  msgstr ""
271
 
272
+ #: includes/admin/class-wpglobus-clean.php:674
273
  msgid "YES, I CONFIRM"
274
  msgstr ""
275
 
276
+ #: includes/admin/class-wpglobus-clean.php:678
277
  msgid "Process with the Clean-up"
278
  msgstr ""
279
 
languages/wpglobus-et.po CHANGED
@@ -191,7 +191,7 @@ msgid ""
191
  "you backup your database before proceeding."
192
  msgstr ""
193
 
194
- #: includes/admin/class-wpglobus-clean.php:618
195
  msgid ""
196
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
197
  "By running it, you will remove ALL translations you have entered to your "
@@ -201,43 +201,51 @@ msgid ""
201
  "so on."
202
  msgstr ""
203
 
204
- #. translators: %1$s - language name, %1$s - language code. Do not remove.
205
- #: includes/admin/class-wpglobus-clean.php:625
 
 
 
 
 
 
 
 
206
  msgid ""
207
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
208
- "%1$s WILL BE DELETED! To change the main language, please go to Settings."
209
  msgstr ""
210
 
211
- #: includes/admin/class-wpglobus-clean.php:634
212
  msgid "You are about to clean the content of the following database tables:"
213
  msgstr ""
214
 
215
- #: includes/admin/class-wpglobus-clean.php:642
216
  msgid "The operations log"
217
  msgstr ""
218
 
219
- #: includes/admin/class-wpglobus-clean.php:645
220
  msgid ""
221
  "We are going to write a detailed log of all the database changes performed. "
222
  "It should help in the case you need to restore something important. The log "
223
  "will be written to the file:"
224
  msgstr ""
225
 
226
- #: includes/admin/class-wpglobus-clean.php:655
227
  msgid ""
228
  "Uncheck if you do not want to write the operations log (we recommend to keep "
229
  "it checked)"
230
  msgstr ""
231
 
232
- #: includes/admin/class-wpglobus-clean.php:660
233
  msgid "You have been warned..."
234
  msgstr "Sind on hoiatatud..."
235
 
236
- #: includes/admin/class-wpglobus-clean.php:662
237
  msgid "Please confirm by checking the box below:"
238
  msgstr ""
239
 
240
- #: includes/admin/class-wpglobus-clean.php:664
241
  msgid ""
242
  "I have read and understood everything written on this page. I am aware that "
243
  "by using this tool I may loose some content of my website. I have made a "
@@ -245,11 +253,11 @@ msgid ""
245
  "responsible for the results."
246
  msgstr ""
247
 
248
- #: includes/admin/class-wpglobus-clean.php:667
249
  msgid "YES, I CONFIRM"
250
  msgstr "JAH, OLEN NÕUS"
251
 
252
- #: includes/admin/class-wpglobus-clean.php:671
253
  msgid "Process with the Clean-up"
254
  msgstr ""
255
 
191
  "you backup your database before proceeding."
192
  msgstr ""
193
 
194
+ #: includes/admin/class-wpglobus-clean.php:619
195
  msgid ""
196
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
197
  "By running it, you will remove ALL translations you have entered to your "
201
  "so on."
202
  msgstr ""
203
 
204
+ #: includes/admin/class-wpglobus-clean.php:622
205
+ msgid ""
206
+ "Make sure that your active theme does not have any code related to WPGlobus. "
207
+ "Such code could be added by you or by a 3rd party developer. If that code "
208
+ "runs without first verifying that WPGlobus is active, WordPress may die with "
209
+ "a fatal error."
210
+ msgstr ""
211
+
212
+ #. translators: %1$s - language name, %2$s - language code. Do not remove.
213
+ #: includes/admin/class-wpglobus-clean.php:630
214
  msgid ""
215
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
216
+ "%1$s WILL BE DELETED! To change the main language, please go to {{settings}}."
217
  msgstr ""
218
 
219
+ #: includes/admin/class-wpglobus-clean.php:641
220
  msgid "You are about to clean the content of the following database tables:"
221
  msgstr ""
222
 
223
+ #: includes/admin/class-wpglobus-clean.php:649
224
  msgid "The operations log"
225
  msgstr ""
226
 
227
+ #: includes/admin/class-wpglobus-clean.php:652
228
  msgid ""
229
  "We are going to write a detailed log of all the database changes performed. "
230
  "It should help in the case you need to restore something important. The log "
231
  "will be written to the file:"
232
  msgstr ""
233
 
234
+ #: includes/admin/class-wpglobus-clean.php:662
235
  msgid ""
236
  "Uncheck if you do not want to write the operations log (we recommend to keep "
237
  "it checked)"
238
  msgstr ""
239
 
240
+ #: includes/admin/class-wpglobus-clean.php:667
241
  msgid "You have been warned..."
242
  msgstr "Sind on hoiatatud..."
243
 
244
+ #: includes/admin/class-wpglobus-clean.php:669
245
  msgid "Please confirm by checking the box below:"
246
  msgstr ""
247
 
248
+ #: includes/admin/class-wpglobus-clean.php:671
249
  msgid ""
250
  "I have read and understood everything written on this page. I am aware that "
251
  "by using this tool I may loose some content of my website. I have made a "
253
  "responsible for the results."
254
  msgstr ""
255
 
256
+ #: includes/admin/class-wpglobus-clean.php:674
257
  msgid "YES, I CONFIRM"
258
  msgstr "JAH, OLEN NÕUS"
259
 
260
+ #: includes/admin/class-wpglobus-clean.php:678
261
  msgid "Process with the Clean-up"
262
  msgstr ""
263
 
languages/wpglobus-fr_BE.mo CHANGED
Binary file
languages/wpglobus-fr_BE.po CHANGED
@@ -225,7 +225,7 @@ msgstr ""
225
  "AVERTISSEMENT&nbsp;: cette opération est irréversible. Il est fortement "
226
  "recommandé de sauvegarder votre base de données avant de continuer."
227
 
228
- #: includes/admin/class-wpglobus-clean.php:618
229
  msgid ""
230
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
231
  "By running it, you will remove ALL translations you have entered to your "
@@ -242,27 +242,32 @@ msgstr ""
242
  "vous pourriez vous retrouver avec des titres vides, sans contenu, sans "
243
  "extrait, des commentaires vierges et ainsi de suite."
244
 
245
- #. translators: %1$s - language name, %1$s - language code. Do not remove.
246
- #: includes/admin/class-wpglobus-clean.php:625
 
 
 
 
 
 
 
 
247
  msgid ""
248
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
249
- "%1$s WILL BE DELETED! To change the main language, please go to Settings."
250
  msgstr ""
251
- "La langue principale est actuellement configurée à %1$s (%2$s). TOUS LES "
252
- "TEXTES QUI NE SONT PAS EN %1$s SERONT SUPPRIMÉS ! Pour changer la langue "
253
- "principale, veuillez allez dans Réglages."
254
 
255
- #: includes/admin/class-wpglobus-clean.php:634
256
  msgid "You are about to clean the content of the following database tables:"
257
  msgstr ""
258
  "Vous êtes sur le point de nettoyer le contenu des tables suivantes de la "
259
  "base de données :"
260
 
261
- #: includes/admin/class-wpglobus-clean.php:642
262
  msgid "The operations log"
263
  msgstr "Le journal des opérations"
264
 
265
- #: includes/admin/class-wpglobus-clean.php:645
266
  msgid ""
267
  "We are going to write a detailed log of all the database changes performed. "
268
  "It should help in the case you need to restore something important. The log "
@@ -273,7 +278,7 @@ msgstr ""
273
  "dans le cas où vous auriez besoin de restaurer quelque chose d'important. Le "
274
  "journal sera écrit dans le fichier&nbsp;:"
275
 
276
- #: includes/admin/class-wpglobus-clean.php:655
277
  msgid ""
278
  "Uncheck if you do not want to write the operations log (we recommend to keep "
279
  "it checked)"
@@ -281,15 +286,15 @@ msgstr ""
281
  "Décochez si vous ne voulez pas écrire le journal des opérations (nous vous "
282
  "recommandons de le garder coché)"
283
 
284
- #: includes/admin/class-wpglobus-clean.php:660
285
  msgid "You have been warned..."
286
  msgstr "Vous avez été prévenus..."
287
 
288
- #: includes/admin/class-wpglobus-clean.php:662
289
  msgid "Please confirm by checking the box below:"
290
  msgstr "Veuillez confirmer en cochant la case ci-dessous&nbsp;:"
291
 
292
- #: includes/admin/class-wpglobus-clean.php:664
293
  msgid ""
294
  "I have read and understood everything written on this page. I am aware that "
295
  "by using this tool I may loose some content of my website. I have made a "
@@ -301,11 +306,11 @@ msgstr ""
301
  "fait une sauvegarde de la base de données et je sais comment la restaurer si "
302
  "nécessaire. Je suis pleinement responsable des résultats."
303
 
304
- #: includes/admin/class-wpglobus-clean.php:667
305
  msgid "YES, I CONFIRM"
306
  msgstr "OUI, JE CONFIRME"
307
 
308
- #: includes/admin/class-wpglobus-clean.php:671
309
  msgid "Process with the Clean-up"
310
  msgstr "Processus avec le Nettoyage"
311
 
@@ -1678,3 +1683,12 @@ msgstr ""
1678
  #: wpglobus.php:19
1679
  msgid "https://wpglobus.com/"
1680
  msgstr "https://wpglobus.com/"
 
 
 
 
 
 
 
 
 
225
  "AVERTISSEMENT&nbsp;: cette opération est irréversible. Il est fortement "
226
  "recommandé de sauvegarder votre base de données avant de continuer."
227
 
228
+ #: includes/admin/class-wpglobus-clean.php:619
229
  msgid ""
230
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
231
  "By running it, you will remove ALL translations you have entered to your "
242
  "vous pourriez vous retrouver avec des titres vides, sans contenu, sans "
243
  "extrait, des commentaires vierges et ainsi de suite."
244
 
245
+ #: includes/admin/class-wpglobus-clean.php:622
246
+ msgid ""
247
+ "Make sure that your active theme does not have any code related to WPGlobus. "
248
+ "Such code could be added by you or by a 3rd party developer. If that code "
249
+ "runs without first verifying that WPGlobus is active, WordPress may die with "
250
+ "a fatal error."
251
+ msgstr ""
252
+
253
+ #. translators: %1$s - language name, %2$s - language code. Do not remove.
254
+ #: includes/admin/class-wpglobus-clean.php:630
255
  msgid ""
256
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
257
+ "%1$s WILL BE DELETED! To change the main language, please go to {{settings}}."
258
  msgstr ""
 
 
 
259
 
260
+ #: includes/admin/class-wpglobus-clean.php:641
261
  msgid "You are about to clean the content of the following database tables:"
262
  msgstr ""
263
  "Vous êtes sur le point de nettoyer le contenu des tables suivantes de la "
264
  "base de données :"
265
 
266
+ #: includes/admin/class-wpglobus-clean.php:649
267
  msgid "The operations log"
268
  msgstr "Le journal des opérations"
269
 
270
+ #: includes/admin/class-wpglobus-clean.php:652
271
  msgid ""
272
  "We are going to write a detailed log of all the database changes performed. "
273
  "It should help in the case you need to restore something important. The log "
278
  "dans le cas où vous auriez besoin de restaurer quelque chose d'important. Le "
279
  "journal sera écrit dans le fichier&nbsp;:"
280
 
281
+ #: includes/admin/class-wpglobus-clean.php:662
282
  msgid ""
283
  "Uncheck if you do not want to write the operations log (we recommend to keep "
284
  "it checked)"
286
  "Décochez si vous ne voulez pas écrire le journal des opérations (nous vous "
287
  "recommandons de le garder coché)"
288
 
289
+ #: includes/admin/class-wpglobus-clean.php:667
290
  msgid "You have been warned..."
291
  msgstr "Vous avez été prévenus..."
292
 
293
+ #: includes/admin/class-wpglobus-clean.php:669
294
  msgid "Please confirm by checking the box below:"
295
  msgstr "Veuillez confirmer en cochant la case ci-dessous&nbsp;:"
296
 
297
+ #: includes/admin/class-wpglobus-clean.php:671
298
  msgid ""
299
  "I have read and understood everything written on this page. I am aware that "
300
  "by using this tool I may loose some content of my website. I have made a "
306
  "fait une sauvegarde de la base de données et je sais comment la restaurer si "
307
  "nécessaire. Je suis pleinement responsable des résultats."
308
 
309
+ #: includes/admin/class-wpglobus-clean.php:674
310
  msgid "YES, I CONFIRM"
311
  msgstr "OUI, JE CONFIRME"
312
 
313
+ #: includes/admin/class-wpglobus-clean.php:678
314
  msgid "Process with the Clean-up"
315
  msgstr "Processus avec le Nettoyage"
316
 
1683
  #: wpglobus.php:19
1684
  msgid "https://wpglobus.com/"
1685
  msgstr "https://wpglobus.com/"
1686
+
1687
+ #~ msgid ""
1688
+ #~ "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT "
1689
+ #~ "IN %1$s WILL BE DELETED! To change the main language, please go to "
1690
+ #~ "Settings."
1691
+ #~ msgstr ""
1692
+ #~ "La langue principale est actuellement configurée à %1$s (%2$s). TOUS LES "
1693
+ #~ "TEXTES QUI NE SONT PAS EN %1$s SERONT SUPPRIMÉS ! Pour changer la langue "
1694
+ #~ "principale, veuillez allez dans Réglages."
languages/wpglobus-fr_CA.mo CHANGED
Binary file
languages/wpglobus-fr_CA.po CHANGED
@@ -227,7 +227,7 @@ msgstr ""
227
  "AVERTISSEMENT&nbsp;: cette opération est irréversible. Il est fortement "
228
  "recommandé de sauvegarder votre base de données avant de continuer."
229
 
230
- #: includes/admin/class-wpglobus-clean.php:618
231
  msgid ""
232
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
233
  "By running it, you will remove ALL translations you have entered to your "
@@ -244,27 +244,32 @@ msgstr ""
244
  "vous pourriez vous retrouver avec des titres vides, sans contenu, sans "
245
  "extrait, des commentaires vierges et ainsi de suite."
246
 
247
- #. translators: %1$s - language name, %1$s - language code. Do not remove.
248
- #: includes/admin/class-wpglobus-clean.php:625
 
 
 
 
 
 
 
 
249
  msgid ""
250
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
251
- "%1$s WILL BE DELETED! To change the main language, please go to Settings."
252
  msgstr ""
253
- "La langue principale est actuellement configurée à %1$s (%2$s). TOUS LES "
254
- "TEXTES QUI NE SONT PAS EN %1$s SERONT SUPPRIMÉS ! Pour changer la langue "
255
- "principale, veuillez allez dans Réglages."
256
 
257
- #: includes/admin/class-wpglobus-clean.php:634
258
  msgid "You are about to clean the content of the following database tables:"
259
  msgstr ""
260
  "Vous êtes sur le point de nettoyer le contenu des tables suivantes de la "
261
  "base de données :"
262
 
263
- #: includes/admin/class-wpglobus-clean.php:642
264
  msgid "The operations log"
265
  msgstr "Le journal des opérations"
266
 
267
- #: includes/admin/class-wpglobus-clean.php:645
268
  msgid ""
269
  "We are going to write a detailed log of all the database changes performed. "
270
  "It should help in the case you need to restore something important. The log "
@@ -275,7 +280,7 @@ msgstr ""
275
  "dans le cas où vous auriez besoin de restaurer quelque chose d'important. Le "
276
  "journal sera écrit dans le fichier&nbsp;:"
277
 
278
- #: includes/admin/class-wpglobus-clean.php:655
279
  msgid ""
280
  "Uncheck if you do not want to write the operations log (we recommend to keep "
281
  "it checked)"
@@ -283,15 +288,15 @@ msgstr ""
283
  "Décochez si vous ne voulez pas écrire le journal des opérations (nous vous "
284
  "recommandons de le garder coché)"
285
 
286
- #: includes/admin/class-wpglobus-clean.php:660
287
  msgid "You have been warned..."
288
  msgstr "Vous avez été prévenus..."
289
 
290
- #: includes/admin/class-wpglobus-clean.php:662
291
  msgid "Please confirm by checking the box below:"
292
  msgstr "Veuillez confirmer en cochant la case ci-dessous&nbsp;:"
293
 
294
- #: includes/admin/class-wpglobus-clean.php:664
295
  msgid ""
296
  "I have read and understood everything written on this page. I am aware that "
297
  "by using this tool I may loose some content of my website. I have made a "
@@ -303,11 +308,11 @@ msgstr ""
303
  "fait une sauvegarde de la base de données et je sais comment la restaurer si "
304
  "nécessaire. Je suis pleinement responsable des résultats."
305
 
306
- #: includes/admin/class-wpglobus-clean.php:667
307
  msgid "YES, I CONFIRM"
308
  msgstr "OUI, JE CONFIRME"
309
 
310
- #: includes/admin/class-wpglobus-clean.php:671
311
  msgid "Process with the Clean-up"
312
  msgstr "Processus avec le Nettoyage"
313
 
@@ -1680,3 +1685,12 @@ msgstr ""
1680
  #: wpglobus.php:19
1681
  msgid "https://wpglobus.com/"
1682
  msgstr "https://wpglobus.com/"
 
 
 
 
 
 
 
 
 
227
  "AVERTISSEMENT&nbsp;: cette opération est irréversible. Il est fortement "
228
  "recommandé de sauvegarder votre base de données avant de continuer."
229
 
230
+ #: includes/admin/class-wpglobus-clean.php:619
231
  msgid ""
232
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
233
  "By running it, you will remove ALL translations you have entered to your "
244
  "vous pourriez vous retrouver avec des titres vides, sans contenu, sans "
245
  "extrait, des commentaires vierges et ainsi de suite."
246
 
247
+ #: includes/admin/class-wpglobus-clean.php:622
248
+ msgid ""
249
+ "Make sure that your active theme does not have any code related to WPGlobus. "
250
+ "Such code could be added by you or by a 3rd party developer. If that code "
251
+ "runs without first verifying that WPGlobus is active, WordPress may die with "
252
+ "a fatal error."
253
+ msgstr ""
254
+
255
+ #. translators: %1$s - language name, %2$s - language code. Do not remove.
256
+ #: includes/admin/class-wpglobus-clean.php:630
257
  msgid ""
258
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
259
+ "%1$s WILL BE DELETED! To change the main language, please go to {{settings}}."
260
  msgstr ""
 
 
 
261
 
262
+ #: includes/admin/class-wpglobus-clean.php:641
263
  msgid "You are about to clean the content of the following database tables:"
264
  msgstr ""
265
  "Vous êtes sur le point de nettoyer le contenu des tables suivantes de la "
266
  "base de données :"
267
 
268
+ #: includes/admin/class-wpglobus-clean.php:649
269
  msgid "The operations log"
270
  msgstr "Le journal des opérations"
271
 
272
+ #: includes/admin/class-wpglobus-clean.php:652
273
  msgid ""
274
  "We are going to write a detailed log of all the database changes performed. "
275
  "It should help in the case you need to restore something important. The log "
280
  "dans le cas où vous auriez besoin de restaurer quelque chose d'important. Le "
281
  "journal sera écrit dans le fichier&nbsp;:"
282
 
283
+ #: includes/admin/class-wpglobus-clean.php:662
284
  msgid ""
285
  "Uncheck if you do not want to write the operations log (we recommend to keep "
286
  "it checked)"
288
  "Décochez si vous ne voulez pas écrire le journal des opérations (nous vous "
289
  "recommandons de le garder coché)"
290
 
291
+ #: includes/admin/class-wpglobus-clean.php:667
292
  msgid "You have been warned..."
293
  msgstr "Vous avez été prévenus..."
294
 
295
+ #: includes/admin/class-wpglobus-clean.php:669
296
  msgid "Please confirm by checking the box below:"
297
  msgstr "Veuillez confirmer en cochant la case ci-dessous&nbsp;:"
298
 
299
+ #: includes/admin/class-wpglobus-clean.php:671
300
  msgid ""
301
  "I have read and understood everything written on this page. I am aware that "
302
  "by using this tool I may loose some content of my website. I have made a "
308
  "fait une sauvegarde de la base de données et je sais comment la restaurer si "
309
  "nécessaire. Je suis pleinement responsable des résultats."
310
 
311
+ #: includes/admin/class-wpglobus-clean.php:674
312
  msgid "YES, I CONFIRM"
313
  msgstr "OUI, JE CONFIRME"
314
 
315
+ #: includes/admin/class-wpglobus-clean.php:678
316
  msgid "Process with the Clean-up"
317
  msgstr "Processus avec le Nettoyage"
318
 
1685
  #: wpglobus.php:19
1686
  msgid "https://wpglobus.com/"
1687
  msgstr "https://wpglobus.com/"
1688
+
1689
+ #~ msgid ""
1690
+ #~ "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT "
1691
+ #~ "IN %1$s WILL BE DELETED! To change the main language, please go to "
1692
+ #~ "Settings."
1693
+ #~ msgstr ""
1694
+ #~ "La langue principale est actuellement configurée à %1$s (%2$s). TOUS LES "
1695
+ #~ "TEXTES QUI NE SONT PAS EN %1$s SERONT SUPPRIMÉS ! Pour changer la langue "
1696
+ #~ "principale, veuillez allez dans Réglages."
languages/wpglobus-fr_FR.mo CHANGED
Binary file
languages/wpglobus-fr_FR.po CHANGED
@@ -227,7 +227,7 @@ msgstr ""
227
  "AVERTISSEMENT&nbsp;: cette opération est irréversible. Il est fortement "
228
  "recommandé de sauvegarder votre base de données avant de continuer."
229
 
230
- #: includes/admin/class-wpglobus-clean.php:618
231
  msgid ""
232
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
233
  "By running it, you will remove ALL translations you have entered to your "
@@ -244,27 +244,32 @@ msgstr ""
244
  "vous pourriez vous retrouver avec des titres vides, sans contenu, sans "
245
  "extrait, des commentaires vierges et ainsi de suite."
246
 
247
- #. translators: %1$s - language name, %1$s - language code. Do not remove.
248
- #: includes/admin/class-wpglobus-clean.php:625
 
 
 
 
 
 
 
 
249
  msgid ""
250
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
251
- "%1$s WILL BE DELETED! To change the main language, please go to Settings."
252
  msgstr ""
253
- "La langue principale est actuellement configurée à %1$s (%2$s). TOUS LES "
254
- "TEXTES QUI NE SONT PAS EN %1$s SERONT SUPPRIMÉS ! Pour changer la langue "
255
- "principale, veuillez allez dans Réglages."
256
 
257
- #: includes/admin/class-wpglobus-clean.php:634
258
  msgid "You are about to clean the content of the following database tables:"
259
  msgstr ""
260
  "Vous êtes sur le point de nettoyer le contenu des tables suivantes de la "
261
  "base de données :"
262
 
263
- #: includes/admin/class-wpglobus-clean.php:642
264
  msgid "The operations log"
265
  msgstr "Le journal des opérations"
266
 
267
- #: includes/admin/class-wpglobus-clean.php:645
268
  msgid ""
269
  "We are going to write a detailed log of all the database changes performed. "
270
  "It should help in the case you need to restore something important. The log "
@@ -275,7 +280,7 @@ msgstr ""
275
  "dans le cas où vous auriez besoin de restaurer quelque chose d'important. Le "
276
  "journal sera écrit dans le fichier&nbsp;:"
277
 
278
- #: includes/admin/class-wpglobus-clean.php:655
279
  msgid ""
280
  "Uncheck if you do not want to write the operations log (we recommend to keep "
281
  "it checked)"
@@ -283,15 +288,15 @@ msgstr ""
283
  "Décochez si vous ne voulez pas écrire le journal des opérations (nous vous "
284
  "recommandons de le garder coché)"
285
 
286
- #: includes/admin/class-wpglobus-clean.php:660
287
  msgid "You have been warned..."
288
  msgstr "Vous avez été prévenus..."
289
 
290
- #: includes/admin/class-wpglobus-clean.php:662
291
  msgid "Please confirm by checking the box below:"
292
  msgstr "Veuillez confirmer en cochant la case ci-dessous&nbsp;:"
293
 
294
- #: includes/admin/class-wpglobus-clean.php:664
295
  msgid ""
296
  "I have read and understood everything written on this page. I am aware that "
297
  "by using this tool I may loose some content of my website. I have made a "
@@ -303,11 +308,11 @@ msgstr ""
303
  "fait une sauvegarde de la base de données et je sais comment la restaurer si "
304
  "nécessaire. Je suis pleinement responsable des résultats."
305
 
306
- #: includes/admin/class-wpglobus-clean.php:667
307
  msgid "YES, I CONFIRM"
308
  msgstr "OUI, JE CONFIRME"
309
 
310
- #: includes/admin/class-wpglobus-clean.php:671
311
  msgid "Process with the Clean-up"
312
  msgstr "Processus avec le Nettoyage"
313
 
@@ -1755,3 +1760,12 @@ msgstr ""
1755
  #: wpglobus.php:19
1756
  msgid "https://wpglobus.com/"
1757
  msgstr "https://wpglobus.com/"
 
 
 
 
 
 
 
 
 
227
  "AVERTISSEMENT&nbsp;: cette opération est irréversible. Il est fortement "
228
  "recommandé de sauvegarder votre base de données avant de continuer."
229
 
230
+ #: includes/admin/class-wpglobus-clean.php:619
231
  msgid ""
232
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
233
  "By running it, you will remove ALL translations you have entered to your "
244
  "vous pourriez vous retrouver avec des titres vides, sans contenu, sans "
245
  "extrait, des commentaires vierges et ainsi de suite."
246
 
247
+ #: includes/admin/class-wpglobus-clean.php:622
248
+ msgid ""
249
+ "Make sure that your active theme does not have any code related to WPGlobus. "
250
+ "Such code could be added by you or by a 3rd party developer. If that code "
251
+ "runs without first verifying that WPGlobus is active, WordPress may die with "
252
+ "a fatal error."
253
+ msgstr ""
254
+
255
+ #. translators: %1$s - language name, %2$s - language code. Do not remove.
256
+ #: includes/admin/class-wpglobus-clean.php:630
257
  msgid ""
258
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
259
+ "%1$s WILL BE DELETED! To change the main language, please go to {{settings}}."
260
  msgstr ""
 
 
 
261
 
262
+ #: includes/admin/class-wpglobus-clean.php:641
263
  msgid "You are about to clean the content of the following database tables:"
264
  msgstr ""
265
  "Vous êtes sur le point de nettoyer le contenu des tables suivantes de la "
266
  "base de données :"
267
 
268
+ #: includes/admin/class-wpglobus-clean.php:649
269
  msgid "The operations log"
270
  msgstr "Le journal des opérations"
271
 
272
+ #: includes/admin/class-wpglobus-clean.php:652
273
  msgid ""
274
  "We are going to write a detailed log of all the database changes performed. "
275
  "It should help in the case you need to restore something important. The log "
280
  "dans le cas où vous auriez besoin de restaurer quelque chose d'important. Le "
281
  "journal sera écrit dans le fichier&nbsp;:"
282
 
283
+ #: includes/admin/class-wpglobus-clean.php:662
284
  msgid ""
285
  "Uncheck if you do not want to write the operations log (we recommend to keep "
286
  "it checked)"
288
  "Décochez si vous ne voulez pas écrire le journal des opérations (nous vous "
289
  "recommandons de le garder coché)"
290
 
291
+ #: includes/admin/class-wpglobus-clean.php:667
292
  msgid "You have been warned..."
293
  msgstr "Vous avez été prévenus..."
294
 
295
+ #: includes/admin/class-wpglobus-clean.php:669
296
  msgid "Please confirm by checking the box below:"
297
  msgstr "Veuillez confirmer en cochant la case ci-dessous&nbsp;:"
298
 
299
+ #: includes/admin/class-wpglobus-clean.php:671
300
  msgid ""
301
  "I have read and understood everything written on this page. I am aware that "
302
  "by using this tool I may loose some content of my website. I have made a "
308
  "fait une sauvegarde de la base de données et je sais comment la restaurer si "
309
  "nécessaire. Je suis pleinement responsable des résultats."
310
 
311
+ #: includes/admin/class-wpglobus-clean.php:674
312
  msgid "YES, I CONFIRM"
313
  msgstr "OUI, JE CONFIRME"
314
 
315
+ #: includes/admin/class-wpglobus-clean.php:678
316
  msgid "Process with the Clean-up"
317
  msgstr "Processus avec le Nettoyage"
318
 
1760
  #: wpglobus.php:19
1761
  msgid "https://wpglobus.com/"
1762
  msgstr "https://wpglobus.com/"
1763
+
1764
+ #~ msgid ""
1765
+ #~ "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT "
1766
+ #~ "IN %1$s WILL BE DELETED! To change the main language, please go to "
1767
+ #~ "Settings."
1768
+ #~ msgstr ""
1769
+ #~ "La langue principale est actuellement configurée à %1$s (%2$s). TOUS LES "
1770
+ #~ "TEXTES QUI NE SONT PAS EN %1$s SERONT SUPPRIMÉS ! Pour changer la langue "
1771
+ #~ "principale, veuillez allez dans Réglages."
languages/wpglobus-id_ID.mo CHANGED
Binary file
languages/wpglobus-id_ID.po CHANGED
@@ -221,7 +221,7 @@ msgstr ""
221
  "PERINGATAN: operasi ini tidak dapat dibalikkan. Sangat disarankan agar Anda "
222
  "membuat backup database Anda sebelum melanjutkan."
223
 
224
- #: includes/admin/class-wpglobus-clean.php:618
225
  msgid ""
226
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
227
  "By running it, you will remove ALL translations you have entered to your "
@@ -237,24 +237,30 @@ msgstr ""
237
  "dalam bahasa utama. Jika tidak, Anda mungkin berakhir dengan judul kosong, "
238
  "tidak ada konten, tidak ada kutipan, komentar kosong dan sebagainya."
239
 
240
- #. translators: %1$s - language name, %1$s - language code. Do not remove.
241
- #: includes/admin/class-wpglobus-clean.php:625
 
 
 
 
 
 
 
 
242
  msgid ""
243
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
244
- "%1$s WILL BE DELETED! To change the main language, please go to Settings."
245
  msgstr ""
246
- "Bahasa utama saat ini ditetapkan ke %1$s (%2$s). SEMUA TEXTS YANG TIDAK DI "
247
- "%1$s AKAN DIHAPUS! Untuk mengubah bahasa utama, buka Pengaturan."
248
 
249
- #: includes/admin/class-wpglobus-clean.php:634
250
  msgid "You are about to clean the content of the following database tables:"
251
  msgstr "Anda akan membersihkan isi tabel database berikut:"
252
 
253
- #: includes/admin/class-wpglobus-clean.php:642
254
  msgid "The operations log"
255
  msgstr "Operasi log"
256
 
257
- #: includes/admin/class-wpglobus-clean.php:645
258
  msgid ""
259
  "We are going to write a detailed log of all the database changes performed. "
260
  "It should help in the case you need to restore something important. The log "
@@ -264,7 +270,7 @@ msgstr ""
264
  "akan membantu dalam kasus Anda perlu mengembalikan sesuatu yang penting. log "
265
  "akan ditulis ke file:"
266
 
267
- #: includes/admin/class-wpglobus-clean.php:655
268
  msgid ""
269
  "Uncheck if you do not want to write the operations log (we recommend to keep "
270
  "it checked)"
@@ -272,15 +278,15 @@ msgstr ""
272
  "Hapus centang jika Anda tidak ingin menulis log operasi (kami sarankan untuk "
273
  "tetap memeriksanya)"
274
 
275
- #: includes/admin/class-wpglobus-clean.php:660
276
  msgid "You have been warned..."
277
  msgstr "Anda telah diperingatkan..."
278
 
279
- #: includes/admin/class-wpglobus-clean.php:662
280
  msgid "Please confirm by checking the box below:"
281
  msgstr "Silahkan konfirmasi dengan mencentang kotak di bawah ini:"
282
 
283
- #: includes/admin/class-wpglobus-clean.php:664
284
  msgid ""
285
  "I have read and understood everything written on this page. I am aware that "
286
  "by using this tool I may loose some content of my website. I have made a "
@@ -293,11 +299,11 @@ msgstr ""
293
  "bagaimana untuk mengembalikannya jika perlu. Saya bertanggung jawab penuh "
294
  "atas hasil."
295
 
296
- #: includes/admin/class-wpglobus-clean.php:667
297
  msgid "YES, I CONFIRM"
298
  msgstr "YES, I CONFIRM"
299
 
300
- #: includes/admin/class-wpglobus-clean.php:671
301
  msgid "Process with the Clean-up"
302
  msgstr "Proses dengan Clean-up"
303
 
@@ -1653,3 +1659,11 @@ msgstr ""
1653
  #: wpglobus.php:19
1654
  msgid "https://wpglobus.com/"
1655
  msgstr "https://wpglobus.com/"
 
 
 
 
 
 
 
 
221
  "PERINGATAN: operasi ini tidak dapat dibalikkan. Sangat disarankan agar Anda "
222
  "membuat backup database Anda sebelum melanjutkan."
223
 
224
+ #: includes/admin/class-wpglobus-clean.php:619
225
  msgid ""
226
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
227
  "By running it, you will remove ALL translations you have entered to your "
237
  "dalam bahasa utama. Jika tidak, Anda mungkin berakhir dengan judul kosong, "
238
  "tidak ada konten, tidak ada kutipan, komentar kosong dan sebagainya."
239
 
240
+ #: includes/admin/class-wpglobus-clean.php:622
241
+ msgid ""
242
+ "Make sure that your active theme does not have any code related to WPGlobus. "
243
+ "Such code could be added by you or by a 3rd party developer. If that code "
244
+ "runs without first verifying that WPGlobus is active, WordPress may die with "
245
+ "a fatal error."
246
+ msgstr ""
247
+
248
+ #. translators: %1$s - language name, %2$s - language code. Do not remove.
249
+ #: includes/admin/class-wpglobus-clean.php:630
250
  msgid ""
251
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
252
+ "%1$s WILL BE DELETED! To change the main language, please go to {{settings}}."
253
  msgstr ""
 
 
254
 
255
+ #: includes/admin/class-wpglobus-clean.php:641
256
  msgid "You are about to clean the content of the following database tables:"
257
  msgstr "Anda akan membersihkan isi tabel database berikut:"
258
 
259
+ #: includes/admin/class-wpglobus-clean.php:649
260
  msgid "The operations log"
261
  msgstr "Operasi log"
262
 
263
+ #: includes/admin/class-wpglobus-clean.php:652
264
  msgid ""
265
  "We are going to write a detailed log of all the database changes performed. "
266
  "It should help in the case you need to restore something important. The log "
270
  "akan membantu dalam kasus Anda perlu mengembalikan sesuatu yang penting. log "
271
  "akan ditulis ke file:"
272
 
273
+ #: includes/admin/class-wpglobus-clean.php:662
274
  msgid ""
275
  "Uncheck if you do not want to write the operations log (we recommend to keep "
276
  "it checked)"
278
  "Hapus centang jika Anda tidak ingin menulis log operasi (kami sarankan untuk "
279
  "tetap memeriksanya)"
280
 
281
+ #: includes/admin/class-wpglobus-clean.php:667
282
  msgid "You have been warned..."
283
  msgstr "Anda telah diperingatkan..."
284
 
285
+ #: includes/admin/class-wpglobus-clean.php:669
286
  msgid "Please confirm by checking the box below:"
287
  msgstr "Silahkan konfirmasi dengan mencentang kotak di bawah ini:"
288
 
289
+ #: includes/admin/class-wpglobus-clean.php:671
290
  msgid ""
291
  "I have read and understood everything written on this page. I am aware that "
292
  "by using this tool I may loose some content of my website. I have made a "
299
  "bagaimana untuk mengembalikannya jika perlu. Saya bertanggung jawab penuh "
300
  "atas hasil."
301
 
302
+ #: includes/admin/class-wpglobus-clean.php:674
303
  msgid "YES, I CONFIRM"
304
  msgstr "YES, I CONFIRM"
305
 
306
+ #: includes/admin/class-wpglobus-clean.php:678
307
  msgid "Process with the Clean-up"
308
  msgstr "Proses dengan Clean-up"
309
 
1659
  #: wpglobus.php:19
1660
  msgid "https://wpglobus.com/"
1661
  msgstr "https://wpglobus.com/"
1662
+
1663
+ #~ msgid ""
1664
+ #~ "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT "
1665
+ #~ "IN %1$s WILL BE DELETED! To change the main language, please go to "
1666
+ #~ "Settings."
1667
+ #~ msgstr ""
1668
+ #~ "Bahasa utama saat ini ditetapkan ke %1$s (%2$s). SEMUA TEXTS YANG TIDAK "
1669
+ #~ "DI %1$s AKAN DIHAPUS! Untuk mengubah bahasa utama, buka Pengaturan."
languages/wpglobus-ko_KR.po CHANGED
@@ -190,7 +190,7 @@ msgid ""
190
  "you backup your database before proceeding."
191
  msgstr ""
192
 
193
- #: includes/admin/class-wpglobus-clean.php:618
194
  msgid ""
195
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
196
  "By running it, you will remove ALL translations you have entered to your "
@@ -200,43 +200,51 @@ msgid ""
200
  "so on."
201
  msgstr ""
202
 
203
- #. translators: %1$s - language name, %1$s - language code. Do not remove.
204
- #: includes/admin/class-wpglobus-clean.php:625
 
 
 
 
 
 
 
 
205
  msgid ""
206
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
207
- "%1$s WILL BE DELETED! To change the main language, please go to Settings."
208
  msgstr ""
209
 
210
- #: includes/admin/class-wpglobus-clean.php:634
211
  msgid "You are about to clean the content of the following database tables:"
212
  msgstr ""
213
 
214
- #: includes/admin/class-wpglobus-clean.php:642
215
  msgid "The operations log"
216
  msgstr ""
217
 
218
- #: includes/admin/class-wpglobus-clean.php:645
219
  msgid ""
220
  "We are going to write a detailed log of all the database changes performed. "
221
  "It should help in the case you need to restore something important. The log "
222
  "will be written to the file:"
223
  msgstr ""
224
 
225
- #: includes/admin/class-wpglobus-clean.php:655
226
  msgid ""
227
  "Uncheck if you do not want to write the operations log (we recommend to keep "
228
  "it checked)"
229
  msgstr ""
230
 
231
- #: includes/admin/class-wpglobus-clean.php:660
232
  msgid "You have been warned..."
233
  msgstr ""
234
 
235
- #: includes/admin/class-wpglobus-clean.php:662
236
  msgid "Please confirm by checking the box below:"
237
  msgstr ""
238
 
239
- #: includes/admin/class-wpglobus-clean.php:664
240
  msgid ""
241
  "I have read and understood everything written on this page. I am aware that "
242
  "by using this tool I may loose some content of my website. I have made a "
@@ -244,11 +252,11 @@ msgid ""
244
  "responsible for the results."
245
  msgstr ""
246
 
247
- #: includes/admin/class-wpglobus-clean.php:667
248
  msgid "YES, I CONFIRM"
249
  msgstr ""
250
 
251
- #: includes/admin/class-wpglobus-clean.php:671
252
  msgid "Process with the Clean-up"
253
  msgstr ""
254
 
190
  "you backup your database before proceeding."
191
  msgstr ""
192
 
193
+ #: includes/admin/class-wpglobus-clean.php:619
194
  msgid ""
195
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
196
  "By running it, you will remove ALL translations you have entered to your "
200
  "so on."
201
  msgstr ""
202
 
203
+ #: includes/admin/class-wpglobus-clean.php:622
204
+ msgid ""
205
+ "Make sure that your active theme does not have any code related to WPGlobus. "
206
+ "Such code could be added by you or by a 3rd party developer. If that code "
207
+ "runs without first verifying that WPGlobus is active, WordPress may die with "
208
+ "a fatal error."
209
+ msgstr ""
210
+
211
+ #. translators: %1$s - language name, %2$s - language code. Do not remove.
212
+ #: includes/admin/class-wpglobus-clean.php:630
213
  msgid ""
214
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
215
+ "%1$s WILL BE DELETED! To change the main language, please go to {{settings}}."
216
  msgstr ""
217
 
218
+ #: includes/admin/class-wpglobus-clean.php:641
219
  msgid "You are about to clean the content of the following database tables:"
220
  msgstr ""
221
 
222
+ #: includes/admin/class-wpglobus-clean.php:649
223
  msgid "The operations log"
224
  msgstr ""
225
 
226
+ #: includes/admin/class-wpglobus-clean.php:652
227
  msgid ""
228
  "We are going to write a detailed log of all the database changes performed. "
229
  "It should help in the case you need to restore something important. The log "
230
  "will be written to the file:"
231
  msgstr ""
232
 
233
+ #: includes/admin/class-wpglobus-clean.php:662
234
  msgid ""
235
  "Uncheck if you do not want to write the operations log (we recommend to keep "
236
  "it checked)"
237
  msgstr ""
238
 
239
+ #: includes/admin/class-wpglobus-clean.php:667
240
  msgid "You have been warned..."
241
  msgstr ""
242
 
243
+ #: includes/admin/class-wpglobus-clean.php:669
244
  msgid "Please confirm by checking the box below:"
245
  msgstr ""
246
 
247
+ #: includes/admin/class-wpglobus-clean.php:671
248
  msgid ""
249
  "I have read and understood everything written on this page. I am aware that "
250
  "by using this tool I may loose some content of my website. I have made a "
252
  "responsible for the results."
253
  msgstr ""
254
 
255
+ #: includes/admin/class-wpglobus-clean.php:674
256
  msgid "YES, I CONFIRM"
257
  msgstr ""
258
 
259
+ #: includes/admin/class-wpglobus-clean.php:678
260
  msgid "Process with the Clean-up"
261
  msgstr ""
262
 
languages/wpglobus-pl_PL.po CHANGED
@@ -208,7 +208,7 @@ msgid ""
208
  "you backup your database before proceeding."
209
  msgstr ""
210
 
211
- #: includes/admin/class-wpglobus-clean.php:618
212
  msgid ""
213
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
214
  "By running it, you will remove ALL translations you have entered to your "
@@ -218,43 +218,51 @@ msgid ""
218
  "so on."
219
  msgstr ""
220
 
221
- #. translators: %1$s - language name, %1$s - language code. Do not remove.
222
- #: includes/admin/class-wpglobus-clean.php:625
 
 
 
 
 
 
 
 
223
  msgid ""
224
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
225
- "%1$s WILL BE DELETED! To change the main language, please go to Settings."
226
  msgstr ""
227
 
228
- #: includes/admin/class-wpglobus-clean.php:634
229
  msgid "You are about to clean the content of the following database tables:"
230
  msgstr ""
231
 
232
- #: includes/admin/class-wpglobus-clean.php:642
233
  msgid "The operations log"
234
  msgstr ""
235
 
236
- #: includes/admin/class-wpglobus-clean.php:645
237
  msgid ""
238
  "We are going to write a detailed log of all the database changes performed. "
239
  "It should help in the case you need to restore something important. The log "
240
  "will be written to the file:"
241
  msgstr ""
242
 
243
- #: includes/admin/class-wpglobus-clean.php:655
244
  msgid ""
245
  "Uncheck if you do not want to write the operations log (we recommend to keep "
246
  "it checked)"
247
  msgstr ""
248
 
249
- #: includes/admin/class-wpglobus-clean.php:660
250
  msgid "You have been warned..."
251
  msgstr ""
252
 
253
- #: includes/admin/class-wpglobus-clean.php:662
254
  msgid "Please confirm by checking the box below:"
255
  msgstr ""
256
 
257
- #: includes/admin/class-wpglobus-clean.php:664
258
  msgid ""
259
  "I have read and understood everything written on this page. I am aware that "
260
  "by using this tool I may loose some content of my website. I have made a "
@@ -262,11 +270,11 @@ msgid ""
262
  "responsible for the results."
263
  msgstr ""
264
 
265
- #: includes/admin/class-wpglobus-clean.php:667
266
  msgid "YES, I CONFIRM"
267
  msgstr ""
268
 
269
- #: includes/admin/class-wpglobus-clean.php:671
270
  msgid "Process with the Clean-up"
271
  msgstr ""
272
 
208
  "you backup your database before proceeding."
209
  msgstr ""
210
 
211
+ #: includes/admin/class-wpglobus-clean.php:619
212
  msgid ""
213
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
214
  "By running it, you will remove ALL translations you have entered to your "
218
  "so on."
219
  msgstr ""
220
 
221
+ #: includes/admin/class-wpglobus-clean.php:622
222
+ msgid ""
223
+ "Make sure that your active theme does not have any code related to WPGlobus. "
224
+ "Such code could be added by you or by a 3rd party developer. If that code "
225
+ "runs without first verifying that WPGlobus is active, WordPress may die with "
226
+ "a fatal error."
227
+ msgstr ""
228
+
229
+ #. translators: %1$s - language name, %2$s - language code. Do not remove.
230
+ #: includes/admin/class-wpglobus-clean.php:630
231
  msgid ""
232
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
233
+ "%1$s WILL BE DELETED! To change the main language, please go to {{settings}}."
234
  msgstr ""
235
 
236
+ #: includes/admin/class-wpglobus-clean.php:641
237
  msgid "You are about to clean the content of the following database tables:"
238
  msgstr ""
239
 
240
+ #: includes/admin/class-wpglobus-clean.php:649
241
  msgid "The operations log"
242
  msgstr ""
243
 
244
+ #: includes/admin/class-wpglobus-clean.php:652
245
  msgid ""
246
  "We are going to write a detailed log of all the database changes performed. "
247
  "It should help in the case you need to restore something important. The log "
248
  "will be written to the file:"
249
  msgstr ""
250
 
251
+ #: includes/admin/class-wpglobus-clean.php:662
252
  msgid ""
253
  "Uncheck if you do not want to write the operations log (we recommend to keep "
254
  "it checked)"
255
  msgstr ""
256
 
257
+ #: includes/admin/class-wpglobus-clean.php:667
258
  msgid "You have been warned..."
259
  msgstr ""
260
 
261
+ #: includes/admin/class-wpglobus-clean.php:669
262
  msgid "Please confirm by checking the box below:"
263
  msgstr ""
264
 
265
+ #: includes/admin/class-wpglobus-clean.php:671
266
  msgid ""
267
  "I have read and understood everything written on this page. I am aware that "
268
  "by using this tool I may loose some content of my website. I have made a "
270
  "responsible for the results."
271
  msgstr ""
272
 
273
+ #: includes/admin/class-wpglobus-clean.php:674
274
  msgid "YES, I CONFIRM"
275
  msgstr ""
276
 
277
+ #: includes/admin/class-wpglobus-clean.php:678
278
  msgid "Process with the Clean-up"
279
  msgstr ""
280
 
languages/wpglobus-pt_BR.po CHANGED
@@ -190,7 +190,7 @@ msgid ""
190
  "you backup your database before proceeding."
191
  msgstr ""
192
 
193
- #: includes/admin/class-wpglobus-clean.php:618
194
  msgid ""
195
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
196
  "By running it, you will remove ALL translations you have entered to your "
@@ -200,43 +200,51 @@ msgid ""
200
  "so on."
201
  msgstr ""
202
 
203
- #. translators: %1$s - language name, %1$s - language code. Do not remove.
204
- #: includes/admin/class-wpglobus-clean.php:625
 
 
 
 
 
 
 
 
205
  msgid ""
206
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
207
- "%1$s WILL BE DELETED! To change the main language, please go to Settings."
208
  msgstr ""
209
 
210
- #: includes/admin/class-wpglobus-clean.php:634
211
  msgid "You are about to clean the content of the following database tables:"
212
  msgstr ""
213
 
214
- #: includes/admin/class-wpglobus-clean.php:642
215
  msgid "The operations log"
216
  msgstr ""
217
 
218
- #: includes/admin/class-wpglobus-clean.php:645
219
  msgid ""
220
  "We are going to write a detailed log of all the database changes performed. "
221
  "It should help in the case you need to restore something important. The log "
222
  "will be written to the file:"
223
  msgstr ""
224
 
225
- #: includes/admin/class-wpglobus-clean.php:655
226
  msgid ""
227
  "Uncheck if you do not want to write the operations log (we recommend to keep "
228
  "it checked)"
229
  msgstr ""
230
 
231
- #: includes/admin/class-wpglobus-clean.php:660
232
  msgid "You have been warned..."
233
  msgstr ""
234
 
235
- #: includes/admin/class-wpglobus-clean.php:662
236
  msgid "Please confirm by checking the box below:"
237
  msgstr ""
238
 
239
- #: includes/admin/class-wpglobus-clean.php:664
240
  msgid ""
241
  "I have read and understood everything written on this page. I am aware that "
242
  "by using this tool I may loose some content of my website. I have made a "
@@ -244,11 +252,11 @@ msgid ""
244
  "responsible for the results."
245
  msgstr ""
246
 
247
- #: includes/admin/class-wpglobus-clean.php:667
248
  msgid "YES, I CONFIRM"
249
  msgstr ""
250
 
251
- #: includes/admin/class-wpglobus-clean.php:671
252
  msgid "Process with the Clean-up"
253
  msgstr ""
254
 
190
  "you backup your database before proceeding."
191
  msgstr ""
192
 
193
+ #: includes/admin/class-wpglobus-clean.php:619
194
  msgid ""
195
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
196
  "By running it, you will remove ALL translations you have entered to your "
200
  "so on."
201
  msgstr ""
202
 
203
+ #: includes/admin/class-wpglobus-clean.php:622
204
+ msgid ""
205
+ "Make sure that your active theme does not have any code related to WPGlobus. "
206
+ "Such code could be added by you or by a 3rd party developer. If that code "
207
+ "runs without first verifying that WPGlobus is active, WordPress may die with "
208
+ "a fatal error."
209
+ msgstr ""
210
+
211
+ #. translators: %1$s - language name, %2$s - language code. Do not remove.
212
+ #: includes/admin/class-wpglobus-clean.php:630
213
  msgid ""
214
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
215
+ "%1$s WILL BE DELETED! To change the main language, please go to {{settings}}."
216
  msgstr ""
217
 
218
+ #: includes/admin/class-wpglobus-clean.php:641
219
  msgid "You are about to clean the content of the following database tables:"
220
  msgstr ""
221
 
222
+ #: includes/admin/class-wpglobus-clean.php:649
223
  msgid "The operations log"
224
  msgstr ""
225
 
226
+ #: includes/admin/class-wpglobus-clean.php:652
227
  msgid ""
228
  "We are going to write a detailed log of all the database changes performed. "
229
  "It should help in the case you need to restore something important. The log "
230
  "will be written to the file:"
231
  msgstr ""
232
 
233
+ #: includes/admin/class-wpglobus-clean.php:662
234
  msgid ""
235
  "Uncheck if you do not want to write the operations log (we recommend to keep "
236
  "it checked)"
237
  msgstr ""
238
 
239
+ #: includes/admin/class-wpglobus-clean.php:667
240
  msgid "You have been warned..."
241
  msgstr ""
242
 
243
+ #: includes/admin/class-wpglobus-clean.php:669
244
  msgid "Please confirm by checking the box below:"
245
  msgstr ""
246
 
247
+ #: includes/admin/class-wpglobus-clean.php:671
248
  msgid ""
249
  "I have read and understood everything written on this page. I am aware that "
250
  "by using this tool I may loose some content of my website. I have made a "
252
  "responsible for the results."
253
  msgstr ""
254
 
255
+ #: includes/admin/class-wpglobus-clean.php:674
256
  msgid "YES, I CONFIRM"
257
  msgstr ""
258
 
259
+ #: includes/admin/class-wpglobus-clean.php:678
260
  msgid "Process with the Clean-up"
261
  msgstr ""
262
 
languages/wpglobus-pt_PT.po CHANGED
@@ -190,7 +190,7 @@ msgid ""
190
  "you backup your database before proceeding."
191
  msgstr ""
192
 
193
- #: includes/admin/class-wpglobus-clean.php:618
194
  msgid ""
195
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
196
  "By running it, you will remove ALL translations you have entered to your "
@@ -200,43 +200,51 @@ msgid ""
200
  "so on."
201
  msgstr ""
202
 
203
- #. translators: %1$s - language name, %1$s - language code. Do not remove.
204
- #: includes/admin/class-wpglobus-clean.php:625
 
 
 
 
 
 
 
 
205
  msgid ""
206
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
207
- "%1$s WILL BE DELETED! To change the main language, please go to Settings."
208
  msgstr ""
209
 
210
- #: includes/admin/class-wpglobus-clean.php:634
211
  msgid "You are about to clean the content of the following database tables:"
212
  msgstr ""
213
 
214
- #: includes/admin/class-wpglobus-clean.php:642
215
  msgid "The operations log"
216
  msgstr ""
217
 
218
- #: includes/admin/class-wpglobus-clean.php:645
219
  msgid ""
220
  "We are going to write a detailed log of all the database changes performed. "
221
  "It should help in the case you need to restore something important. The log "
222
  "will be written to the file:"
223
  msgstr ""
224
 
225
- #: includes/admin/class-wpglobus-clean.php:655
226
  msgid ""
227
  "Uncheck if you do not want to write the operations log (we recommend to keep "
228
  "it checked)"
229
  msgstr ""
230
 
231
- #: includes/admin/class-wpglobus-clean.php:660
232
  msgid "You have been warned..."
233
  msgstr ""
234
 
235
- #: includes/admin/class-wpglobus-clean.php:662
236
  msgid "Please confirm by checking the box below:"
237
  msgstr ""
238
 
239
- #: includes/admin/class-wpglobus-clean.php:664
240
  msgid ""
241
  "I have read and understood everything written on this page. I am aware that "
242
  "by using this tool I may loose some content of my website. I have made a "
@@ -244,11 +252,11 @@ msgid ""
244
  "responsible for the results."
245
  msgstr ""
246
 
247
- #: includes/admin/class-wpglobus-clean.php:667
248
  msgid "YES, I CONFIRM"
249
  msgstr ""
250
 
251
- #: includes/admin/class-wpglobus-clean.php:671
252
  msgid "Process with the Clean-up"
253
  msgstr ""
254
 
190
  "you backup your database before proceeding."
191
  msgstr ""
192
 
193
+ #: includes/admin/class-wpglobus-clean.php:619
194
  msgid ""
195
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
196
  "By running it, you will remove ALL translations you have entered to your "
200
  "so on."
201
  msgstr ""
202
 
203
+ #: includes/admin/class-wpglobus-clean.php:622
204
+ msgid ""
205
+ "Make sure that your active theme does not have any code related to WPGlobus. "
206
+ "Such code could be added by you or by a 3rd party developer. If that code "
207
+ "runs without first verifying that WPGlobus is active, WordPress may die with "
208
+ "a fatal error."
209
+ msgstr ""
210
+
211
+ #. translators: %1$s - language name, %2$s - language code. Do not remove.
212
+ #: includes/admin/class-wpglobus-clean.php:630
213
  msgid ""
214
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
215
+ "%1$s WILL BE DELETED! To change the main language, please go to {{settings}}."
216
  msgstr ""
217
 
218
+ #: includes/admin/class-wpglobus-clean.php:641
219
  msgid "You are about to clean the content of the following database tables:"
220
  msgstr ""
221
 
222
+ #: includes/admin/class-wpglobus-clean.php:649
223
  msgid "The operations log"
224
  msgstr ""
225
 
226
+ #: includes/admin/class-wpglobus-clean.php:652
227
  msgid ""
228
  "We are going to write a detailed log of all the database changes performed. "
229
  "It should help in the case you need to restore something important. The log "
230
  "will be written to the file:"
231
  msgstr ""
232
 
233
+ #: includes/admin/class-wpglobus-clean.php:662
234
  msgid ""
235
  "Uncheck if you do not want to write the operations log (we recommend to keep "
236
  "it checked)"
237
  msgstr ""
238
 
239
+ #: includes/admin/class-wpglobus-clean.php:667
240
  msgid "You have been warned..."
241
  msgstr ""
242
 
243
+ #: includes/admin/class-wpglobus-clean.php:669
244
  msgid "Please confirm by checking the box below:"
245
  msgstr ""
246
 
247
+ #: includes/admin/class-wpglobus-clean.php:671
248
  msgid ""
249
  "I have read and understood everything written on this page. I am aware that "
250
  "by using this tool I may loose some content of my website. I have made a "
252
  "responsible for the results."
253
  msgstr ""
254
 
255
+ #: includes/admin/class-wpglobus-clean.php:674
256
  msgid "YES, I CONFIRM"
257
  msgstr ""
258
 
259
+ #: includes/admin/class-wpglobus-clean.php:678
260
  msgid "Process with the Clean-up"
261
  msgstr ""
262
 
languages/wpglobus-ro_RO.po CHANGED
@@ -207,7 +207,7 @@ msgid ""
207
  "you backup your database before proceeding."
208
  msgstr ""
209
 
210
- #: includes/admin/class-wpglobus-clean.php:618
211
  msgid ""
212
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
213
  "By running it, you will remove ALL translations you have entered to your "
@@ -217,43 +217,51 @@ msgid ""
217
  "so on."
218
  msgstr ""
219
 
220
- #. translators: %1$s - language name, %1$s - language code. Do not remove.
221
- #: includes/admin/class-wpglobus-clean.php:625
 
 
 
 
 
 
 
 
222
  msgid ""
223
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
224
- "%1$s WILL BE DELETED! To change the main language, please go to Settings."
225
  msgstr ""
226
 
227
- #: includes/admin/class-wpglobus-clean.php:634
228
  msgid "You are about to clean the content of the following database tables:"
229
  msgstr ""
230
 
231
- #: includes/admin/class-wpglobus-clean.php:642
232
  msgid "The operations log"
233
  msgstr ""
234
 
235
- #: includes/admin/class-wpglobus-clean.php:645
236
  msgid ""
237
  "We are going to write a detailed log of all the database changes performed. "
238
  "It should help in the case you need to restore something important. The log "
239
  "will be written to the file:"
240
  msgstr ""
241
 
242
- #: includes/admin/class-wpglobus-clean.php:655
243
  msgid ""
244
  "Uncheck if you do not want to write the operations log (we recommend to keep "
245
  "it checked)"
246
  msgstr ""
247
 
248
- #: includes/admin/class-wpglobus-clean.php:660
249
  msgid "You have been warned..."
250
  msgstr ""
251
 
252
- #: includes/admin/class-wpglobus-clean.php:662
253
  msgid "Please confirm by checking the box below:"
254
  msgstr ""
255
 
256
- #: includes/admin/class-wpglobus-clean.php:664
257
  msgid ""
258
  "I have read and understood everything written on this page. I am aware that "
259
  "by using this tool I may loose some content of my website. I have made a "
@@ -261,11 +269,11 @@ msgid ""
261
  "responsible for the results."
262
  msgstr ""
263
 
264
- #: includes/admin/class-wpglobus-clean.php:667
265
  msgid "YES, I CONFIRM"
266
  msgstr ""
267
 
268
- #: includes/admin/class-wpglobus-clean.php:671
269
  msgid "Process with the Clean-up"
270
  msgstr ""
271
 
207
  "you backup your database before proceeding."
208
  msgstr ""
209
 
210
+ #: includes/admin/class-wpglobus-clean.php:619
211
  msgid ""
212
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
213
  "By running it, you will remove ALL translations you have entered to your "
217
  "so on."
218
  msgstr ""
219
 
220
+ #: includes/admin/class-wpglobus-clean.php:622
221
+ msgid ""
222
+ "Make sure that your active theme does not have any code related to WPGlobus. "
223
+ "Such code could be added by you or by a 3rd party developer. If that code "
224
+ "runs without first verifying that WPGlobus is active, WordPress may die with "
225
+ "a fatal error."
226
+ msgstr ""
227
+
228
+ #. translators: %1$s - language name, %2$s - language code. Do not remove.
229
+ #: includes/admin/class-wpglobus-clean.php:630
230
  msgid ""
231
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
232
+ "%1$s WILL BE DELETED! To change the main language, please go to {{settings}}."
233
  msgstr ""
234
 
235
+ #: includes/admin/class-wpglobus-clean.php:641
236
  msgid "You are about to clean the content of the following database tables:"
237
  msgstr ""
238
 
239
+ #: includes/admin/class-wpglobus-clean.php:649
240
  msgid "The operations log"
241
  msgstr ""
242
 
243
+ #: includes/admin/class-wpglobus-clean.php:652
244
  msgid ""
245
  "We are going to write a detailed log of all the database changes performed. "
246
  "It should help in the case you need to restore something important. The log "
247
  "will be written to the file:"
248
  msgstr ""
249
 
250
+ #: includes/admin/class-wpglobus-clean.php:662
251
  msgid ""
252
  "Uncheck if you do not want to write the operations log (we recommend to keep "
253
  "it checked)"
254
  msgstr ""
255
 
256
+ #: includes/admin/class-wpglobus-clean.php:667
257
  msgid "You have been warned..."
258
  msgstr ""
259
 
260
+ #: includes/admin/class-wpglobus-clean.php:669
261
  msgid "Please confirm by checking the box below:"
262
  msgstr ""
263
 
264
+ #: includes/admin/class-wpglobus-clean.php:671
265
  msgid ""
266
  "I have read and understood everything written on this page. I am aware that "
267
  "by using this tool I may loose some content of my website. I have made a "
269
  "responsible for the results."
270
  msgstr ""
271
 
272
+ #: includes/admin/class-wpglobus-clean.php:674
273
  msgid "YES, I CONFIRM"
274
  msgstr ""
275
 
276
+ #: includes/admin/class-wpglobus-clean.php:678
277
  msgid "Process with the Clean-up"
278
  msgstr ""
279
 
languages/wpglobus-ru_RU.mo CHANGED
Binary file
languages/wpglobus-ru_RU.po CHANGED
@@ -220,7 +220,7 @@ msgstr ""
220
  "Предупреждение: эта операция является необратимой. Настоятельно рекомендуем "
221
  "сделать резервную копию базы данных перед продолжением."
222
 
223
- #: includes/admin/class-wpglobus-clean.php:618
224
  msgid ""
225
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
226
  "By running it, you will remove ALL translations you have entered to your "
@@ -236,25 +236,37 @@ msgstr ""
236
  "обнаружите пустые заголовки, отсутствие контента страниц, пустые комментарии "
237
  "и тому подобное."
238
 
239
- #. translators: %1$s - language name, %1$s - language code. Do not remove.
240
- #: includes/admin/class-wpglobus-clean.php:625
 
 
 
 
 
 
 
 
 
 
 
 
241
  msgid ""
242
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
243
- "%1$s WILL BE DELETED! To change the main language, please go to Settings."
244
  msgstr ""
245
  "В настройках WPGlobus указано, что основной язык - %1$s (%2$s). Все тексты, "
246
  "кроме %1$s будут удалены! Чтобы изменить основной язык, пожалуйста, "
247
- "перейдите в настройки."
248
 
249
- #: includes/admin/class-wpglobus-clean.php:634
250
  msgid "You are about to clean the content of the following database tables:"
251
  msgstr "Программа выполнит очистку следующих таблиц базы данных:"
252
 
253
- #: includes/admin/class-wpglobus-clean.php:642
254
  msgid "The operations log"
255
  msgstr "Журнал операций"
256
 
257
- #: includes/admin/class-wpglobus-clean.php:645
258
  msgid ""
259
  "We are going to write a detailed log of all the database changes performed. "
260
  "It should help in the case you need to restore something important. The log "
@@ -264,7 +276,7 @@ msgstr ""
264
  "в случае, если вам потребуется восстановить что-то важное. Журнал будет "
265
  "записываться в файл:"
266
 
267
- #: includes/admin/class-wpglobus-clean.php:655
268
  msgid ""
269
  "Uncheck if you do not want to write the operations log (we recommend to keep "
270
  "it checked)"
@@ -272,15 +284,15 @@ msgstr ""
272
  "Снимите флажок, если вы не хотите записывать операции в журнал (мы "
273
  "рекомендуем оставить запись включённой)"
274
 
275
- #: includes/admin/class-wpglobus-clean.php:660
276
  msgid "You have been warned..."
277
  msgstr "Вы уверены, что готовы продолжить?"
278
 
279
- #: includes/admin/class-wpglobus-clean.php:662
280
  msgid "Please confirm by checking the box below:"
281
  msgstr "Пожалуйста, подтвердите, установив флажок ниже:"
282
 
283
- #: includes/admin/class-wpglobus-clean.php:664
284
  msgid ""
285
  "I have read and understood everything written on this page. I am aware that "
286
  "by using this tool I may loose some content of my website. I have made a "
@@ -293,11 +305,11 @@ msgstr ""
293
  "восстановить её в случае необходимости. Я полностью несу ответственность за "
294
  "результат."
295
 
296
- #: includes/admin/class-wpglobus-clean.php:667
297
  msgid "YES, I CONFIRM"
298
  msgstr "ДА, Я ПОДТВЕРЖДАЮ"
299
 
300
- #: includes/admin/class-wpglobus-clean.php:671
301
  msgid "Process with the Clean-up"
302
  msgstr "Запустить программу очистки"
303
 
@@ -1719,3 +1731,4 @@ msgstr ""
1719
  #: wpglobus.php:19
1720
  msgid "https://wpglobus.com/"
1721
  msgstr "https://wpglobus.com/ru/"
 
220
  "Предупреждение: эта операция является необратимой. Настоятельно рекомендуем "
221
  "сделать резервную копию базы данных перед продолжением."
222
 
223
+ #: includes/admin/class-wpglobus-clean.php:619
224
  msgid ""
225
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
226
  "By running it, you will remove ALL translations you have entered to your "
236
  "обнаружите пустые заголовки, отсутствие контента страниц, пустые комментарии "
237
  "и тому подобное."
238
 
239
+ #: includes/admin/class-wpglobus-clean.php:622
240
+ msgid ""
241
+ "Make sure that your active theme does not have any code related to WPGlobus. "
242
+ "Such code could be added by you or by a 3rd party developer. If that code "
243
+ "runs without first verifying that WPGlobus is active, WordPress may die with "
244
+ "a fatal error."
245
+ msgstr ""
246
+ "Убедитесь в том что в вашей активной теме не останется кода связанного с "
247
+ "WPGlobus, который мог быть добавлен вами или сторонним разработчиком. Если "
248
+ "такой код использован без проверки активирован ли WPGlobus, то это может "
249
+ "привести к неработоспособности всего сайта (белый экран смерти)."
250
+
251
+ #. translators: %1$s - language name, %2$s - language code. Do not remove.
252
+ #: includes/admin/class-wpglobus-clean.php:630
253
  msgid ""
254
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
255
+ "%1$s WILL BE DELETED! To change the main language, please go to {{settings}}."
256
  msgstr ""
257
  "В настройках WPGlobus указано, что основной язык - %1$s (%2$s). Все тексты, "
258
  "кроме %1$s будут удалены! Чтобы изменить основной язык, пожалуйста, "
259
+ "перейдите в {{settings}}."
260
 
261
+ #: includes/admin/class-wpglobus-clean.php:641
262
  msgid "You are about to clean the content of the following database tables:"
263
  msgstr "Программа выполнит очистку следующих таблиц базы данных:"
264
 
265
+ #: includes/admin/class-wpglobus-clean.php:649
266
  msgid "The operations log"
267
  msgstr "Журнал операций"
268
 
269
+ #: includes/admin/class-wpglobus-clean.php:652
270
  msgid ""
271
  "We are going to write a detailed log of all the database changes performed. "
272
  "It should help in the case you need to restore something important. The log "
276
  "в случае, если вам потребуется восстановить что-то важное. Журнал будет "
277
  "записываться в файл:"
278
 
279
+ #: includes/admin/class-wpglobus-clean.php:662
280
  msgid ""
281
  "Uncheck if you do not want to write the operations log (we recommend to keep "
282
  "it checked)"
284
  "Снимите флажок, если вы не хотите записывать операции в журнал (мы "
285
  "рекомендуем оставить запись включённой)"
286
 
287
+ #: includes/admin/class-wpglobus-clean.php:667
288
  msgid "You have been warned..."
289
  msgstr "Вы уверены, что готовы продолжить?"
290
 
291
+ #: includes/admin/class-wpglobus-clean.php:669
292
  msgid "Please confirm by checking the box below:"
293
  msgstr "Пожалуйста, подтвердите, установив флажок ниже:"
294
 
295
+ #: includes/admin/class-wpglobus-clean.php:671
296
  msgid ""
297
  "I have read and understood everything written on this page. I am aware that "
298
  "by using this tool I may loose some content of my website. I have made a "
305
  "восстановить её в случае необходимости. Я полностью несу ответственность за "
306
  "результат."
307
 
308
+ #: includes/admin/class-wpglobus-clean.php:674
309
  msgid "YES, I CONFIRM"
310
  msgstr "ДА, Я ПОДТВЕРЖДАЮ"
311
 
312
+ #: includes/admin/class-wpglobus-clean.php:678
313
  msgid "Process with the Clean-up"
314
  msgstr "Запустить программу очистки"
315
 
1731
  #: wpglobus.php:19
1732
  msgid "https://wpglobus.com/"
1733
  msgstr "https://wpglobus.com/ru/"
1734
+
languages/wpglobus-sv_SE.po CHANGED
@@ -207,7 +207,7 @@ msgid ""
207
  "you backup your database before proceeding."
208
  msgstr ""
209
 
210
- #: includes/admin/class-wpglobus-clean.php:618
211
  msgid ""
212
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
213
  "By running it, you will remove ALL translations you have entered to your "
@@ -217,43 +217,51 @@ msgid ""
217
  "so on."
218
  msgstr ""
219
 
220
- #. translators: %1$s - language name, %1$s - language code. Do not remove.
221
- #: includes/admin/class-wpglobus-clean.php:625
 
 
 
 
 
 
 
 
222
  msgid ""
223
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
224
- "%1$s WILL BE DELETED! To change the main language, please go to Settings."
225
  msgstr ""
226
 
227
- #: includes/admin/class-wpglobus-clean.php:634
228
  msgid "You are about to clean the content of the following database tables:"
229
  msgstr ""
230
 
231
- #: includes/admin/class-wpglobus-clean.php:642
232
  msgid "The operations log"
233
  msgstr ""
234
 
235
- #: includes/admin/class-wpglobus-clean.php:645
236
  msgid ""
237
  "We are going to write a detailed log of all the database changes performed. "
238
  "It should help in the case you need to restore something important. The log "
239
  "will be written to the file:"
240
  msgstr ""
241
 
242
- #: includes/admin/class-wpglobus-clean.php:655
243
  msgid ""
244
  "Uncheck if you do not want to write the operations log (we recommend to keep "
245
  "it checked)"
246
  msgstr ""
247
 
248
- #: includes/admin/class-wpglobus-clean.php:660
249
  msgid "You have been warned..."
250
  msgstr "Du har blivit varnad…"
251
 
252
- #: includes/admin/class-wpglobus-clean.php:662
253
  msgid "Please confirm by checking the box below:"
254
  msgstr "Bekräfta genom att kryssa i rutan nedan:"
255
 
256
- #: includes/admin/class-wpglobus-clean.php:664
257
  msgid ""
258
  "I have read and understood everything written on this page. I am aware that "
259
  "by using this tool I may loose some content of my website. I have made a "
@@ -261,11 +269,11 @@ msgid ""
261
  "responsible for the results."
262
  msgstr ""
263
 
264
- #: includes/admin/class-wpglobus-clean.php:667
265
  msgid "YES, I CONFIRM"
266
  msgstr "JA, JAG BEKRÄFTAR"
267
 
268
- #: includes/admin/class-wpglobus-clean.php:671
269
  msgid "Process with the Clean-up"
270
  msgstr ""
271
 
207
  "you backup your database before proceeding."
208
  msgstr ""
209
 
210
+ #: includes/admin/class-wpglobus-clean.php:619
211
  msgid ""
212
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
213
  "By running it, you will remove ALL translations you have entered to your "
217
  "so on."
218
  msgstr ""
219
 
220
+ #: includes/admin/class-wpglobus-clean.php:622
221
+ msgid ""
222
+ "Make sure that your active theme does not have any code related to WPGlobus. "
223
+ "Such code could be added by you or by a 3rd party developer. If that code "
224
+ "runs without first verifying that WPGlobus is active, WordPress may die with "
225
+ "a fatal error."
226
+ msgstr ""
227
+
228
+ #. translators: %1$s - language name, %2$s - language code. Do not remove.
229
+ #: includes/admin/class-wpglobus-clean.php:630
230
  msgid ""
231
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
232
+ "%1$s WILL BE DELETED! To change the main language, please go to {{settings}}."
233
  msgstr ""
234
 
235
+ #: includes/admin/class-wpglobus-clean.php:641
236
  msgid "You are about to clean the content of the following database tables:"
237
  msgstr ""
238
 
239
+ #: includes/admin/class-wpglobus-clean.php:649
240
  msgid "The operations log"
241
  msgstr ""
242
 
243
+ #: includes/admin/class-wpglobus-clean.php:652
244
  msgid ""
245
  "We are going to write a detailed log of all the database changes performed. "
246
  "It should help in the case you need to restore something important. The log "
247
  "will be written to the file:"
248
  msgstr ""
249
 
250
+ #: includes/admin/class-wpglobus-clean.php:662
251
  msgid ""
252
  "Uncheck if you do not want to write the operations log (we recommend to keep "
253
  "it checked)"
254
  msgstr ""
255
 
256
+ #: includes/admin/class-wpglobus-clean.php:667
257
  msgid "You have been warned..."
258
  msgstr "Du har blivit varnad…"
259
 
260
+ #: includes/admin/class-wpglobus-clean.php:669
261
  msgid "Please confirm by checking the box below:"
262
  msgstr "Bekräfta genom att kryssa i rutan nedan:"
263
 
264
+ #: includes/admin/class-wpglobus-clean.php:671
265
  msgid ""
266
  "I have read and understood everything written on this page. I am aware that "
267
  "by using this tool I may loose some content of my website. I have made a "
269
  "responsible for the results."
270
  msgstr ""
271
 
272
+ #: includes/admin/class-wpglobus-clean.php:674
273
  msgid "YES, I CONFIRM"
274
  msgstr "JA, JAG BEKRÄFTAR"
275
 
276
+ #: includes/admin/class-wpglobus-clean.php:678
277
  msgid "Process with the Clean-up"
278
  msgstr ""
279
 
languages/wpglobus-tr_TR.po CHANGED
@@ -208,7 +208,7 @@ msgid ""
208
  "you backup your database before proceeding."
209
  msgstr ""
210
 
211
- #: includes/admin/class-wpglobus-clean.php:618
212
  msgid ""
213
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
214
  "By running it, you will remove ALL translations you have entered to your "
@@ -218,43 +218,51 @@ msgid ""
218
  "so on."
219
  msgstr ""
220
 
221
- #. translators: %1$s - language name, %1$s - language code. Do not remove.
222
- #: includes/admin/class-wpglobus-clean.php:625
 
 
 
 
 
 
 
 
223
  msgid ""
224
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
225
- "%1$s WILL BE DELETED! To change the main language, please go to Settings."
226
  msgstr ""
227
 
228
- #: includes/admin/class-wpglobus-clean.php:634
229
  msgid "You are about to clean the content of the following database tables:"
230
  msgstr ""
231
 
232
- #: includes/admin/class-wpglobus-clean.php:642
233
  msgid "The operations log"
234
  msgstr ""
235
 
236
- #: includes/admin/class-wpglobus-clean.php:645
237
  msgid ""
238
  "We are going to write a detailed log of all the database changes performed. "
239
  "It should help in the case you need to restore something important. The log "
240
  "will be written to the file:"
241
  msgstr ""
242
 
243
- #: includes/admin/class-wpglobus-clean.php:655
244
  msgid ""
245
  "Uncheck if you do not want to write the operations log (we recommend to keep "
246
  "it checked)"
247
  msgstr ""
248
 
249
- #: includes/admin/class-wpglobus-clean.php:660
250
  msgid "You have been warned..."
251
  msgstr ""
252
 
253
- #: includes/admin/class-wpglobus-clean.php:662
254
  msgid "Please confirm by checking the box below:"
255
  msgstr ""
256
 
257
- #: includes/admin/class-wpglobus-clean.php:664
258
  msgid ""
259
  "I have read and understood everything written on this page. I am aware that "
260
  "by using this tool I may loose some content of my website. I have made a "
@@ -262,11 +270,11 @@ msgid ""
262
  "responsible for the results."
263
  msgstr ""
264
 
265
- #: includes/admin/class-wpglobus-clean.php:667
266
  msgid "YES, I CONFIRM"
267
  msgstr ""
268
 
269
- #: includes/admin/class-wpglobus-clean.php:671
270
  msgid "Process with the Clean-up"
271
  msgstr ""
272
 
208
  "you backup your database before proceeding."
209
  msgstr ""
210
 
211
+ #: includes/admin/class-wpglobus-clean.php:619
212
  msgid ""
213
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
214
  "By running it, you will remove ALL translations you have entered to your "
218
  "so on."
219
  msgstr ""
220
 
221
+ #: includes/admin/class-wpglobus-clean.php:622
222
+ msgid ""
223
+ "Make sure that your active theme does not have any code related to WPGlobus. "
224
+ "Such code could be added by you or by a 3rd party developer. If that code "
225
+ "runs without first verifying that WPGlobus is active, WordPress may die with "
226
+ "a fatal error."
227
+ msgstr ""
228
+
229
+ #. translators: %1$s - language name, %2$s - language code. Do not remove.
230
+ #: includes/admin/class-wpglobus-clean.php:630
231
  msgid ""
232
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
233
+ "%1$s WILL BE DELETED! To change the main language, please go to {{settings}}."
234
  msgstr ""
235
 
236
+ #: includes/admin/class-wpglobus-clean.php:641
237
  msgid "You are about to clean the content of the following database tables:"
238
  msgstr ""
239
 
240
+ #: includes/admin/class-wpglobus-clean.php:649
241
  msgid "The operations log"
242
  msgstr ""
243
 
244
+ #: includes/admin/class-wpglobus-clean.php:652
245
  msgid ""
246
  "We are going to write a detailed log of all the database changes performed. "
247
  "It should help in the case you need to restore something important. The log "
248
  "will be written to the file:"
249
  msgstr ""
250
 
251
+ #: includes/admin/class-wpglobus-clean.php:662
252
  msgid ""
253
  "Uncheck if you do not want to write the operations log (we recommend to keep "
254
  "it checked)"
255
  msgstr ""
256
 
257
+ #: includes/admin/class-wpglobus-clean.php:667
258
  msgid "You have been warned..."
259
  msgstr ""
260
 
261
+ #: includes/admin/class-wpglobus-clean.php:669
262
  msgid "Please confirm by checking the box below:"
263
  msgstr ""
264
 
265
+ #: includes/admin/class-wpglobus-clean.php:671
266
  msgid ""
267
  "I have read and understood everything written on this page. I am aware that "
268
  "by using this tool I may loose some content of my website. I have made a "
270
  "responsible for the results."
271
  msgstr ""
272
 
273
+ #: includes/admin/class-wpglobus-clean.php:674
274
  msgid "YES, I CONFIRM"
275
  msgstr ""
276
 
277
+ #: includes/admin/class-wpglobus-clean.php:678
278
  msgid "Process with the Clean-up"
279
  msgstr ""
280
 
languages/wpglobus-uk.mo CHANGED
Binary file
languages/wpglobus-uk.po CHANGED
@@ -220,7 +220,7 @@ msgstr ""
220
  "Попереження: ця операція є незворотньою. Наполегливо рекомендуємо зробити "
221
  "резервну копію бази даних перед продовженням."
222
 
223
- #: includes/admin/class-wpglobus-clean.php:618
224
  msgid ""
225
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
226
  "By running it, you will remove ALL translations you have entered to your "
@@ -235,25 +235,30 @@ msgstr ""
235
  "всіх записах присутній контент головною мовою. Інакше, Ви побачите пусті "
236
  "заголовки, відсутність контенту сторінок, пусті коментарі і таке інше."
237
 
238
- #. translators: %1$s - language name, %1$s - language code. Do not remove.
239
- #: includes/admin/class-wpglobus-clean.php:625
 
 
 
 
 
 
 
 
240
  msgid ""
241
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
242
- "%1$s WILL BE DELETED! To change the main language, please go to Settings."
243
  msgstr ""
244
- "В налаштуваннях WPGlobus вказано, що основна мова - %1$s (%2$s). Всі тексти, "
245
- "крім %1$s будуть видалені! Щоб змінити головну мову, будь-ласка, перейдіть в "
246
- "налаштування."
247
 
248
- #: includes/admin/class-wpglobus-clean.php:634
249
  msgid "You are about to clean the content of the following database tables:"
250
  msgstr "Програма виконає очистку наступних таблиць бази даних:"
251
 
252
- #: includes/admin/class-wpglobus-clean.php:642
253
  msgid "The operations log"
254
  msgstr "Журнал операцій"
255
 
256
- #: includes/admin/class-wpglobus-clean.php:645
257
  msgid ""
258
  "We are going to write a detailed log of all the database changes performed. "
259
  "It should help in the case you need to restore something important. The log "
@@ -263,7 +268,7 @@ msgstr ""
263
  "випадку, якщо Вам треба буде відновити щось важливе. Журнал буде "
264
  "записуватися в файл:"
265
 
266
- #: includes/admin/class-wpglobus-clean.php:655
267
  msgid ""
268
  "Uncheck if you do not want to write the operations log (we recommend to keep "
269
  "it checked)"
@@ -271,15 +276,15 @@ msgstr ""
271
  "Сніміть прапорець, якщо Вы не хочете записувати операції в журнал (ми "
272
  "рекомендуємо залишити запис увімкненим)"
273
 
274
- #: includes/admin/class-wpglobus-clean.php:660
275
  msgid "You have been warned..."
276
  msgstr "Ви впевнені, що готові продовжити?"
277
 
278
- #: includes/admin/class-wpglobus-clean.php:662
279
  msgid "Please confirm by checking the box below:"
280
  msgstr "Будь-ласка, підтвердіть, встановивши прапорець нижче:"
281
 
282
- #: includes/admin/class-wpglobus-clean.php:664
283
  msgid ""
284
  "I have read and understood everything written on this page. I am aware that "
285
  "by using this tool I may loose some content of my website. I have made a "
@@ -291,11 +296,11 @@ msgstr ""
291
  "сайту. Мною створена резервна копія бази даних, і я знаю, як відновити її у "
292
  "випадку необхідності. Я повністю несу відповідальність за результат."
293
 
294
- #: includes/admin/class-wpglobus-clean.php:667
295
  msgid "YES, I CONFIRM"
296
  msgstr "ТАК, Я ПІДТВЕРДЖУЮ"
297
 
298
- #: includes/admin/class-wpglobus-clean.php:671
299
  msgid "Process with the Clean-up"
300
  msgstr "Запустити програму очищення"
301
 
@@ -1706,3 +1711,12 @@ msgstr ""
1706
  #: wpglobus.php:19
1707
  msgid "https://wpglobus.com/"
1708
  msgstr "https://wpglobus.com/ru/"
 
 
 
 
 
 
 
 
 
220
  "Попереження: ця операція є незворотньою. Наполегливо рекомендуємо зробити "
221
  "резервну копію бази даних перед продовженням."
222
 
223
+ #: includes/admin/class-wpglobus-clean.php:619
224
  msgid ""
225
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
226
  "By running it, you will remove ALL translations you have entered to your "
235
  "всіх записах присутній контент головною мовою. Інакше, Ви побачите пусті "
236
  "заголовки, відсутність контенту сторінок, пусті коментарі і таке інше."
237
 
238
+ #: includes/admin/class-wpglobus-clean.php:622
239
+ msgid ""
240
+ "Make sure that your active theme does not have any code related to WPGlobus. "
241
+ "Such code could be added by you or by a 3rd party developer. If that code "
242
+ "runs without first verifying that WPGlobus is active, WordPress may die with "
243
+ "a fatal error."
244
+ msgstr ""
245
+
246
+ #. translators: %1$s - language name, %2$s - language code. Do not remove.
247
+ #: includes/admin/class-wpglobus-clean.php:630
248
  msgid ""
249
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
250
+ "%1$s WILL BE DELETED! To change the main language, please go to {{settings}}."
251
  msgstr ""
 
 
 
252
 
253
+ #: includes/admin/class-wpglobus-clean.php:641
254
  msgid "You are about to clean the content of the following database tables:"
255
  msgstr "Програма виконає очистку наступних таблиць бази даних:"
256
 
257
+ #: includes/admin/class-wpglobus-clean.php:649
258
  msgid "The operations log"
259
  msgstr "Журнал операцій"
260
 
261
+ #: includes/admin/class-wpglobus-clean.php:652
262
  msgid ""
263
  "We are going to write a detailed log of all the database changes performed. "
264
  "It should help in the case you need to restore something important. The log "
268
  "випадку, якщо Вам треба буде відновити щось важливе. Журнал буде "
269
  "записуватися в файл:"
270
 
271
+ #: includes/admin/class-wpglobus-clean.php:662
272
  msgid ""
273
  "Uncheck if you do not want to write the operations log (we recommend to keep "
274
  "it checked)"
276
  "Сніміть прапорець, якщо Вы не хочете записувати операції в журнал (ми "
277
  "рекомендуємо залишити запис увімкненим)"
278
 
279
+ #: includes/admin/class-wpglobus-clean.php:667
280
  msgid "You have been warned..."
281
  msgstr "Ви впевнені, що готові продовжити?"
282
 
283
+ #: includes/admin/class-wpglobus-clean.php:669
284
  msgid "Please confirm by checking the box below:"
285
  msgstr "Будь-ласка, підтвердіть, встановивши прапорець нижче:"
286
 
287
+ #: includes/admin/class-wpglobus-clean.php:671
288
  msgid ""
289
  "I have read and understood everything written on this page. I am aware that "
290
  "by using this tool I may loose some content of my website. I have made a "
296
  "сайту. Мною створена резервна копія бази даних, і я знаю, як відновити її у "
297
  "випадку необхідності. Я повністю несу відповідальність за результат."
298
 
299
+ #: includes/admin/class-wpglobus-clean.php:674
300
  msgid "YES, I CONFIRM"
301
  msgstr "ТАК, Я ПІДТВЕРДЖУЮ"
302
 
303
+ #: includes/admin/class-wpglobus-clean.php:678
304
  msgid "Process with the Clean-up"
305
  msgstr "Запустити програму очищення"
306
 
1711
  #: wpglobus.php:19
1712
  msgid "https://wpglobus.com/"
1713
  msgstr "https://wpglobus.com/ru/"
1714
+
1715
+ #~ msgid ""
1716
+ #~ "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT "
1717
+ #~ "IN %1$s WILL BE DELETED! To change the main language, please go to "
1718
+ #~ "Settings."
1719
+ #~ msgstr ""
1720
+ #~ "В налаштуваннях WPGlobus вказано, що основна мова - %1$s (%2$s). Всі "
1721
+ #~ "тексти, крім %1$s будуть видалені! Щоб змінити головну мову, будь-ласка, "
1722
+ #~ "перейдіть в налаштування."
languages/wpglobus.pot CHANGED
@@ -1,8 +1,8 @@
1
- # Copyright (C) 2020 WPGlobus 2.4.7
2
- # This file is distributed under the same license as the WPGlobus 2.4.7 package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: WPGlobus 2.4.7\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -144,48 +144,52 @@ msgstr ""
144
  msgid "WARNING: this operation is non-reversible. It is strongly recommended that you backup your database before proceeding."
145
  msgstr ""
146
 
147
- #: includes/admin/class-wpglobus-clean.php:618
148
  msgid "This tool should be used only if you plan to completely uninstall WPGlobus. By running it, you will remove ALL translations you have entered to your post, pages, etc., keeping only the MAIN language texts. Please make sure that all entries have some content in the main language. Otherwise, you might end up with empty titles, no content, no excerpts, blank comments and so on."
149
  msgstr ""
150
 
151
- #. translators: %1$s - language name, %1$s - language code. Do not remove.
152
- #: includes/admin/class-wpglobus-clean.php:625
153
- msgid "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN %1$s WILL BE DELETED! To change the main language, please go to Settings."
154
  msgstr ""
155
 
156
- #: includes/admin/class-wpglobus-clean.php:634
 
 
 
 
 
157
  msgid "You are about to clean the content of the following database tables:"
158
  msgstr ""
159
 
160
- #: includes/admin/class-wpglobus-clean.php:642
161
  msgid "The operations log"
162
  msgstr ""
163
 
164
- #: includes/admin/class-wpglobus-clean.php:645
165
  msgid "We are going to write a detailed log of all the database changes performed. It should help in the case you need to restore something important. The log will be written to the file:"
166
  msgstr ""
167
 
168
- #: includes/admin/class-wpglobus-clean.php:655
169
  msgid "Uncheck if you do not want to write the operations log (we recommend to keep it checked)"
170
  msgstr ""
171
 
172
- #: includes/admin/class-wpglobus-clean.php:660
173
  msgid "You have been warned..."
174
  msgstr ""
175
 
176
- #: includes/admin/class-wpglobus-clean.php:662
177
  msgid "Please confirm by checking the box below:"
178
  msgstr ""
179
 
180
- #: includes/admin/class-wpglobus-clean.php:664
181
  msgid "I have read and understood everything written on this page. I am aware that by using this tool I may loose some content of my website. I have made a database backup and know how to restore it if necessary. I am fully responsible for the results."
182
  msgstr ""
183
 
184
- #: includes/admin/class-wpglobus-clean.php:667
185
  msgid "YES, I CONFIRM"
186
  msgstr ""
187
 
188
- #: includes/admin/class-wpglobus-clean.php:671
189
  msgid "Process with the Clean-up"
190
  msgstr ""
191
 
1
+ # Copyright (C) 2020 WPGlobus 2.4.8
2
+ # This file is distributed under the same license as the WPGlobus 2.4.8 package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: WPGlobus 2.4.8\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
144
  msgid "WARNING: this operation is non-reversible. It is strongly recommended that you backup your database before proceeding."
145
  msgstr ""
146
 
147
+ #: includes/admin/class-wpglobus-clean.php:619
148
  msgid "This tool should be used only if you plan to completely uninstall WPGlobus. By running it, you will remove ALL translations you have entered to your post, pages, etc., keeping only the MAIN language texts. Please make sure that all entries have some content in the main language. Otherwise, you might end up with empty titles, no content, no excerpts, blank comments and so on."
149
  msgstr ""
150
 
151
+ #: includes/admin/class-wpglobus-clean.php:622
152
+ msgid "Make sure that your active theme does not have any code related to WPGlobus. Such code could be added by you or by a 3rd party developer. If that code runs without first verifying that WPGlobus is active, WordPress may die with a fatal error."
 
153
  msgstr ""
154
 
155
+ #. translators: %1$s - language name, %2$s - language code. Do not remove.
156
+ #: includes/admin/class-wpglobus-clean.php:630
157
+ msgid "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN %1$s WILL BE DELETED! To change the main language, please go to {{settings}}."
158
+ msgstr ""
159
+
160
+ #: includes/admin/class-wpglobus-clean.php:641
161
  msgid "You are about to clean the content of the following database tables:"
162
  msgstr ""
163
 
164
+ #: includes/admin/class-wpglobus-clean.php:649
165
  msgid "The operations log"
166
  msgstr ""
167
 
168
+ #: includes/admin/class-wpglobus-clean.php:652
169
  msgid "We are going to write a detailed log of all the database changes performed. It should help in the case you need to restore something important. The log will be written to the file:"
170
  msgstr ""
171
 
172
+ #: includes/admin/class-wpglobus-clean.php:662
173
  msgid "Uncheck if you do not want to write the operations log (we recommend to keep it checked)"
174
  msgstr ""
175
 
176
+ #: includes/admin/class-wpglobus-clean.php:667
177
  msgid "You have been warned..."
178
  msgstr ""
179
 
180
+ #: includes/admin/class-wpglobus-clean.php:669
181
  msgid "Please confirm by checking the box below:"
182
  msgstr ""
183
 
184
+ #: includes/admin/class-wpglobus-clean.php:671
185
  msgid "I have read and understood everything written on this page. I am aware that by using this tool I may loose some content of my website. I have made a database backup and know how to restore it if necessary. I am fully responsible for the results."
186
  msgstr ""
187
 
188
+ #: includes/admin/class-wpglobus-clean.php:674
189
  msgid "YES, I CONFIRM"
190
  msgstr ""
191
 
192
+ #: includes/admin/class-wpglobus-clean.php:678
193
  msgid "Process with the Clean-up"
194
  msgstr ""
195
 
readme.txt CHANGED
@@ -216,6 +216,10 @@ WPGlobus Version 2 supports WordPress 5.x, with Gutenberg.
216
 
217
  == Changelog ==
218
 
 
 
 
 
219
  = 2.4.7 =
220
 
221
  * (Vendor/Yoast) Added filter of schema generator.
216
 
217
  == Changelog ==
218
 
219
+ = 2.4.8 =
220
+
221
+ * (Core/Clean-Up Tool) Updated description.
222
+
223
  = 2.4.7 =
224
 
225
  * (Vendor/Yoast) Added filter of schema generator.
wpglobus.php CHANGED
@@ -15,7 +15,7 @@
15
  * Description: A WordPress Globalization / Multilingual Plugin. Posts, pages, menus, widgets and even custom fields - in multiple languages!
16
  * Text Domain: wpglobus
17
  * Domain Path: /languages/
18
- * Version: 2.4.7
19
  * Author: WPGlobus
20
  * Author URI: https://wpglobus.com/
21
  * Network: false
@@ -42,7 +42,7 @@ if ( ! defined( 'ABSPATH' ) ) {
42
  exit;
43
  }
44
 
45
- define( 'WPGLOBUS_VERSION', '2.4.7' );
46
  define( 'WPGLOBUS_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
47
  define( 'WPGLOBUS_AJAX', 'wpglobus-ajax' );
48
 
15
  * Description: A WordPress Globalization / Multilingual Plugin. Posts, pages, menus, widgets and even custom fields - in multiple languages!
16
  * Text Domain: wpglobus
17
  * Domain Path: /languages/
18
+ * Version: 2.4.8
19
  * Author: WPGlobus
20
  * Author URI: https://wpglobus.com/
21
  * Network: false
42
  exit;
43
  }
44
 
45
+ define( 'WPGLOBUS_VERSION', '2.4.8' );
46
  define( 'WPGLOBUS_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
47
  define( 'WPGLOBUS_AJAX', 'wpglobus-ajax' );
48