WPGlobus – Multilingual Everything! - Version 1.9.24

Version Description

  • FIXED:
    • Vendor: load config file of All in One SEO Pack for builder page only.
  • INTERNAL:
    • Helpdesk page refactored.
Download this release

Release Info

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

Code changes from version 1.9.23 to 1.9.24

Files changed (60) hide show
  1. includes/admin/class-wpglobus-admin-page.php +15 -5
  2. includes/admin/helpdesk/beacon-loader.min.js +0 -1
  3. includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php +163 -41
  4. includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php +99 -46
  5. includes/class-wpglobus-config-vendor.php +50 -15
  6. includes/css/wpglobus-admin.css +1 -1
  7. includes/css/wpglobus-admin.css.map +1 -1
  8. includes/css/wpglobus-admin.scss +256 -246
  9. includes/options/class-wpglobus-options.php +1 -1
  10. languages/wpglobus-ar.po +51 -29
  11. languages/wpglobus-be.mo +0 -0
  12. languages/wpglobus-be.po +69 -35
  13. languages/wpglobus-bg_BG.po +50 -28
  14. languages/wpglobus-de_CH.po +50 -28
  15. languages/wpglobus-de_DE.po +50 -28
  16. languages/wpglobus-el.po +50 -28
  17. languages/wpglobus-en_AU.mo +0 -0
  18. languages/wpglobus-en_AU.po +68 -34
  19. languages/wpglobus-en_CA.mo +0 -0
  20. languages/wpglobus-en_CA.po +68 -34
  21. languages/wpglobus-en_GB.mo +0 -0
  22. languages/wpglobus-en_GB.po +68 -34
  23. languages/wpglobus-en_NZ.mo +0 -0
  24. languages/wpglobus-en_NZ.po +68 -34
  25. languages/wpglobus-en_US.mo +0 -0
  26. languages/wpglobus-en_US.po +72 -35
  27. languages/wpglobus-en_ZA.mo +0 -0
  28. languages/wpglobus-en_ZA.po +68 -34
  29. languages/wpglobus-es_AR.po +50 -28
  30. languages/wpglobus-es_CL.po +50 -28
  31. languages/wpglobus-es_CO.po +50 -28
  32. languages/wpglobus-es_CR.po +50 -28
  33. languages/wpglobus-es_ES.po +50 -28
  34. languages/wpglobus-es_GT.po +50 -28
  35. languages/wpglobus-es_MX.po +50 -28
  36. languages/wpglobus-es_PE.po +50 -28
  37. languages/wpglobus-es_PR.po +50 -28
  38. languages/wpglobus-es_VE.po +50 -28
  39. languages/wpglobus-et.po +50 -28
  40. languages/wpglobus-fr_BE.mo +0 -0
  41. languages/wpglobus-fr_BE.po +70 -36
  42. languages/wpglobus-fr_CA.mo +0 -0
  43. languages/wpglobus-fr_CA.po +70 -36
  44. languages/wpglobus-fr_FR.mo +0 -0
  45. languages/wpglobus-fr_FR.po +73 -36
  46. languages/wpglobus-id_ID.mo +0 -0
  47. languages/wpglobus-id_ID.po +69 -35
  48. languages/wpglobus-ko_KR.po +50 -28
  49. languages/wpglobus-pl_PL.po +50 -28
  50. languages/wpglobus-pt_BR.po +50 -28
  51. languages/wpglobus-pt_PT.po +50 -28
  52. languages/wpglobus-ro_RO.po +50 -28
  53. languages/wpglobus-ru_RU.mo +0 -0
  54. languages/wpglobus-ru_RU.po +58 -38
  55. languages/wpglobus-sv_SE.po +50 -28
  56. languages/wpglobus-tr_TR.po +50 -28
  57. languages/wpglobus-uk.po +50 -28
  58. languages/wpglobus.pot +51 -27
  59. readme.txt +7 -0
  60. wpglobus.php +2 -2
includes/admin/class-wpglobus-admin-page.php CHANGED
@@ -158,13 +158,14 @@ class WPGlobus_Admin_Page {
158
  }
159
 
160
  /**
161
- * Print icon for navigation tab item.
162
  *
163
  * @param string $icon_class A Dashicon CSS class or our internal alias.
164
  *
165
  * @link https://developer.wordpress.org/resource/dashicons/
 
166
  */
167
- public static function nav_tab_icon_e( $icon_class ) {
168
 
169
  static $aliases = array(
170
  'faq' => 'dashicons-editor-help',
@@ -182,9 +183,18 @@ class WPGlobus_Admin_Page {
182
  $icon_class = $aliases[ $icon_class ];
183
  }
184
 
185
- echo '<span class="dashicons ' . esc_attr( $icon_class ) .
 
 
 
 
 
 
 
 
 
 
186
  '" style="vertical-align: middle"></span>';
 
187
  }
188
  }
189
-
190
- /* EOF */
158
  }
159
 
160
  /**
161
+ * Icon for navigation tab item.
162
  *
163
  * @param string $icon_class A Dashicon CSS class or our internal alias.
164
  *
165
  * @link https://developer.wordpress.org/resource/dashicons/
166
+ * @return string
167
  */
168
+ public static function nav_tab_icon( $icon_class ) {
169
 
170
  static $aliases = array(
171
  'faq' => 'dashicons-editor-help',
183
  $icon_class = $aliases[ $icon_class ];
184
  }
185
 
186
+ return $icon_class;
187
+
188
+ }
189
+
190
+ /**
191
+ * Print icon for navigation tab item.
192
+ *
193
+ * @param string $icon_class A Dashicon CSS class or our internal alias.
194
+ */
195
+ public static function nav_tab_icon_e( $icon_class ) {
196
+ echo '<span class="dashicons ' . esc_attr( self::nav_tab_icon( $icon_class ) ) .
197
  '" style="vertical-align: middle"></span>';
198
+
199
  }
200
  }
 
 
includes/admin/helpdesk/beacon-loader.min.js DELETED
@@ -1 +0,0 @@
1
- !function(e,o,n){window.HSCW=o,window.HS=n,n.beacon=n.beacon||{};var t=n.beacon;t.userConfig={},t.readyQueue=[],t.config=function(e){this.userConfig=e},t.ready=function(e){this.readyQueue.push(e)},o.config={docs:{enabled:!1,baseUrl:""},contact:{enabled:!0,formId:"2f91ec29-4d3d-11e6-aae8-0a7d6919297d"}};var r=e.getElementsByTagName("script")[0],c=e.createElement("script");c.type="text/javascript",c.async=!0,c.src="https://djtflbt20bdde.cloudfront.net/",r.parentNode.insertBefore(c,r)}(document,window.HSCW||{},window.HS||{});
 
includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php CHANGED
@@ -13,22 +13,80 @@
13
  class WPGlobus_Admin_HelpDesk {
14
 
15
  /**
16
- * CSS class for the menu icon.
 
17
  * @var string
18
  */
19
- const ICON_CLASS = 'dashicons dashicons-before dashicons-phone';
 
 
 
 
 
 
 
20
 
21
  /**
22
  * Admin page title.
 
23
  * @var string
24
  */
25
  public static $page_title;
26
  /**
27
  * Admin menu title.
 
28
  * @var string
29
  */
30
  protected static $menu_title;
31
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
32
  /**
33
  * Static "constructor".
34
  */
@@ -41,8 +99,8 @@ class WPGlobus_Admin_HelpDesk {
41
  * Set class variables.
42
  */
43
  public static function set_vars() {
44
- self::$page_title = __( 'WPGlobus Help Desk', 'wpglobus' );
45
- self::$menu_title = __( 'Help Desk', 'wpglobus' );
46
  }
47
 
48
  /**
@@ -59,7 +117,7 @@ class WPGlobus_Admin_HelpDesk {
59
  add_submenu_page(
60
  WPGlobus::OPTIONS_PAGE_SLUG,
61
  self::$page_title,
62
- '<span class="' . esc_attr( self::ICON_CLASS )
63
  . '" style="vertical-align:middle"></span> '
64
  . self::$menu_title,
65
  'administrator',
@@ -72,53 +130,109 @@ class WPGlobus_Admin_HelpDesk {
72
  * The admin page.
73
  */
74
  public static function helpdesk_page() {
 
75
  $data = self::get_data();
76
 
77
- include dirname( __FILE__ ) . '/wpglobus-admin-helpdesk-page.php';
 
 
 
 
78
 
79
- // Split one-cell formatted list of plugins into the separate rows.
80
  $active_plugins = explode( ', ', $data['active_plugins'] );
81
  unset( $data['active_plugins'] );
 
 
 
 
 
 
 
82
  foreach ( $active_plugins as $active_plugin ) {
83
  list( $name, $version ) = explode( ':', $active_plugin );
84
- $data[ $name ] = $version;
 
85
  }
86
- ?>
87
-
88
- <script>
89
- <?php require dirname( __FILE__ ) . '/beacon-loader.min.js'; ?>
90
- HS.beacon.config({
91
- icon: 'message',
92
- attachment: 1,
93
- poweredBy: 0
94
- });
95
-
96
- jQuery(function ($) {
97
- HS.beacon.ready(function () {
98
- //noinspection JSUnresolvedFunction
99
- HS.beacon.identify(<?php echo wp_kses( wp_json_encode( $data ), array() );?>);
100
- });
101
-
102
- // Set a special class for the menu item.
103
- $(".wpglobus_admin_hs_beacon_toggle").on("click", function (e) {
104
- e.preventDefault();
105
- HS.beacon.toggle();
106
- });
107
- });
108
- </script>
109
- <?php
110
  }
111
 
112
  /**
113
- * Collect data for the beacon.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
114
  * @return array
115
  */
116
  protected static function get_data() {
117
- $user = wp_get_current_user();
 
 
 
118
  $theme = wp_get_theme();
119
 
120
  /**
121
- * @see php_uname can be disabled in php.ini for security reasons
122
  * disable_functions=php_uname
123
  * @since 1.7.13
124
  */
@@ -132,12 +246,12 @@ class WPGlobus_Admin_HelpDesk {
132
  }
133
 
134
  $data = array(
135
- 'name' => WPGlobus_Filters::filter__text( $user->display_name ),
136
- 'email' => $user->user_email,
137
  'home_url' => home_url(),
138
  'site_url' => site_url(),
139
- 'REMOTE_ADDR' => sanitize_text_field( wp_unslash( $_SERVER['REMOTE_ADDR'] ) ), // WPCS: input var ok, sanitization ok.
140
- 'SERVER_PORT' => sanitize_text_field( wp_unslash( $_SERVER['SERVER_PORT'] ) ), // WPCS: input var ok, sanitization ok.
 
 
141
  'OS' => $OS,
142
  'PHP_SAPI' => PHP_SAPI,
143
  'PHP_VERSION' => PHP_VERSION,
@@ -162,6 +276,14 @@ class WPGlobus_Admin_HelpDesk {
162
  return $data;
163
 
164
  }
165
- }
166
 
167
- /* EOF */
 
 
 
 
 
 
 
 
 
13
  class WPGlobus_Admin_HelpDesk {
14
 
15
  /**
16
+ * Nonce.
17
+ *
18
  * @var string
19
  */
20
+ const NONCE_ACTION = 'wpglobus-helpdesk';
21
+
22
+ /**
23
+ * Email address of the Support.
24
+ *
25
+ * @var string
26
+ */
27
+ const EMAIL_SUPPORT = 'support@wpglobus.com';
28
 
29
  /**
30
  * Admin page title.
31
+ *
32
  * @var string
33
  */
34
  public static $page_title;
35
  /**
36
  * Admin menu title.
37
+ *
38
  * @var string
39
  */
40
  protected static $menu_title;
41
 
42
+ /**
43
+ * @var string
44
+ */
45
+ protected static $name;
46
+
47
+ /**
48
+ * @return string
49
+ */
50
+ public static function getName() {
51
+ return self::$name;
52
+ }
53
+
54
+ /**
55
+ * @var string
56
+ */
57
+ protected static $email;
58
+
59
+ /**
60
+ * @return string
61
+ */
62
+ public static function getEmail() {
63
+ return self::$email;
64
+ }
65
+
66
+ /**
67
+ * @var string
68
+ */
69
+ protected static $submission_status = 'success';
70
+
71
+ /**
72
+ * @return string
73
+ */
74
+ public static function getSubmissionStatus() {
75
+ return self::$submission_status;
76
+ }
77
+
78
+ /**
79
+ * @var string
80
+ */
81
+ protected static $submission_message = '';
82
+
83
+ /**
84
+ * @return string
85
+ */
86
+ public static function getSubmissionMessage() {
87
+ return self::$submission_message;
88
+ }
89
+
90
  /**
91
  * Static "constructor".
92
  */
99
  * Set class variables.
100
  */
101
  public static function set_vars() {
102
+ self::$page_title = __( 'WPGlobus Help Desk', 'wpglobus' );
103
+ self::$menu_title = __( 'Help Desk', 'wpglobus' );
104
  }
105
 
106
  /**
117
  add_submenu_page(
118
  WPGlobus::OPTIONS_PAGE_SLUG,
119
  self::$page_title,
120
+ '<span class="dashicons ' . esc_attr( WPGlobus_Admin_Page::nav_tab_icon( 'Helpdesk' ) )
121
  . '" style="vertical-align:middle"></span> '
122
  . self::$menu_title,
123
  'administrator',
130
  * The admin page.
131
  */
132
  public static function helpdesk_page() {
133
+ /** @noinspection PhpUnusedLocalVariableInspection */
134
  $data = self::get_data();
135
 
136
+ self::handle_submit();
137
+
138
+ /*
139
+ * Prepare data for the view.
140
+ */
141
 
 
142
  $active_plugins = explode( ', ', $data['active_plugins'] );
143
  unset( $data['active_plugins'] );
144
+
145
+ $tech_info = '';
146
+ foreach ( $data as $key => $value ) {
147
+ $tech_info .= $key . ' = ' . $value . "\n";
148
+ }
149
+
150
+ // Split one-cell formatted list of plugins into the separate rows.
151
  foreach ( $active_plugins as $active_plugin ) {
152
  list( $name, $version ) = explode( ':', $active_plugin );
153
+
154
+ $tech_info .= $name . ' = ' . $version . "\n";
155
  }
156
+
157
+ /** @noinspection PhpUnusedLocalVariableInspection */
158
+ $subject = empty( $_POST['subject'] ) ? '' : sanitize_text_field( $_POST['subject'] ); // phpcs:ignore WordPress.CSRF.NonceVerification
159
+
160
+ /** @noinspection PhpUnusedLocalVariableInspection */
161
+ $details = empty( $_POST['details'] ) ? '' : sanitize_textarea_field( $_POST['details'] ); // phpcs:ignore WordPress.CSRF.NonceVerification
162
+
163
+ // Render view.
164
+ include dirname( __FILE__ ) . '/wpglobus-admin-helpdesk-page.php';
165
+
 
 
 
 
 
 
 
 
 
 
 
 
 
 
166
  }
167
 
168
  /**
169
+ * Handle the form submit.
170
+ */
171
+ protected static function handle_submit() {
172
+ if ( ! empty( $_POST ) ) {
173
+ check_admin_referer( self::NONCE_ACTION );
174
+
175
+ if (
176
+ empty( $_POST['name'] )
177
+ || empty( $_POST['email'] )
178
+ || empty( $_POST['subject'] )
179
+ || empty( $_POST['details'] )
180
+ ) {
181
+ self::$submission_status = 'error';
182
+ self::$submission_message = __( 'Email not sent. Please fill in the entire form.', 'wpglobus' );
183
+
184
+ return;
185
+ }
186
+
187
+ self::$name = sanitize_text_field( $_POST['name'] );
188
+ self::$email = sanitize_email( $_POST['email'] );
189
+
190
+ if ( ! self::$name || ! self::$email ) {
191
+ self::$submission_status = 'error';
192
+ self::$submission_message = __( 'Email not sent. Please verify that your name and email are entered correctly.', 'wpglobus' );
193
+
194
+ return;
195
+ }
196
+
197
+ $message = sanitize_textarea_field( $_POST['details'] );
198
+ if ( ! empty( $_POST['info'] ) ) {
199
+ $message .= "\n-----\n" . sanitize_textarea_field( $_POST['info'] );
200
+ }
201
+
202
+ $headers = array(
203
+ 'from: ' . self::$name . ' <' . self::$email . '>',
204
+ 'reply-to: ' . self::$email,
205
+ 'cc: ' . self::$email,
206
+ );
207
+
208
+ add_action( 'wp_mail_failed', array( __CLASS__, 'action__wp_mail_failed' ) );
209
+
210
+ if ( wp_mail( self::EMAIL_SUPPORT, $_POST['subject'], $message, $headers ) ) :
211
+
212
+ self::$submission_status = 'success';
213
+ self::$submission_message = __( 'Email sent.', 'wpglobus' );
214
+
215
+ endif;
216
+
217
+ remove_action( 'wp_mail_failed', array( __CLASS__, 'action__wp_mail_failed' ) );
218
+
219
+ }
220
+ }
221
+
222
+ /**
223
+ * Collect technical data.
224
+ *
225
  * @return array
226
  */
227
  protected static function get_data() {
228
+ $user = wp_get_current_user();
229
+ self::$name = WPGlobus_Filters::filter__text( $user->display_name );
230
+ self::$email = $user->user_email;
231
+
232
  $theme = wp_get_theme();
233
 
234
  /**
235
+ * @see php_uname can be disabled in php.ini for security reasons
236
  * disable_functions=php_uname
237
  * @since 1.7.13
238
  */
246
  }
247
 
248
  $data = array(
 
 
249
  'home_url' => home_url(),
250
  'site_url' => site_url(),
251
+ 'REMOTE_ADDR' => sanitize_text_field( wp_unslash( $_SERVER['REMOTE_ADDR'] ) ),
252
+ // WPCS: input var ok, sanitization ok.
253
+ 'SERVER_PORT' => sanitize_text_field( wp_unslash( $_SERVER['SERVER_PORT'] ) ),
254
+ // WPCS: input var ok, sanitization ok.
255
  'OS' => $OS,
256
  'PHP_SAPI' => PHP_SAPI,
257
  'PHP_VERSION' => PHP_VERSION,
276
  return $data;
277
 
278
  }
 
279
 
280
+ /**
281
+ * Print admin notice if sending failed.
282
+ *
283
+ * @param WP_Error $error
284
+ */
285
+ public static function action__wp_mail_failed( WP_Error $error ) {
286
+ self::$submission_status = 'error';
287
+ self::$submission_message = $error->get_error_message();
288
+ }
289
+ }
includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php CHANGED
@@ -13,6 +13,12 @@ if ( ! defined( 'ABSPATH' ) ) {
13
 
14
  WPGlobus_Admin_Page::print_header();
15
 
 
 
 
 
 
 
16
  ?>
17
 
18
  <h2 class="nav-tab-wrapper wp-clearfix">
@@ -21,74 +27,121 @@ WPGlobus_Admin_Page::print_header();
21
  <?php echo esc_html( WPGlobus_Admin_HelpDesk::$page_title ); ?>
22
  </a>
23
  <a href="<?php echo esc_url( WPGlobus_Admin_Page::url_settings() ); ?>"
24
- class="nav-tab">
25
  <?php WPGlobus_Admin_Page::nav_tab_icon_e( 'Settings' ); ?>
26
  <?php esc_html_e( 'Settings' ); ?>
27
  </a>
28
  <a href="<?php echo esc_url( WPGlobus_Admin_Page::url_addons() ); ?>"
29
- class="nav-tab">
30
  <?php WPGlobus_Admin_Page::nav_tab_icon_e( 'Add-ons' ); ?>
31
  <?php esc_html_e( 'Add-ons', 'wpglobus' ); ?>
32
  </a>
33
  <a href="<?php echo esc_url( WPGlobus_Utils::url_wpglobus_site() . 'quick-start/' ); ?>"
34
- target="_blank"
35
- class="nav-tab">
36
  <?php WPGlobus_Admin_Page::nav_tab_icon_e( 'Guide' ); ?>
37
  <?php esc_html_e( 'Guide', 'wpglobus' ); ?>
38
  </a>
39
  <a href="<?php echo esc_url( WPGlobus_Utils::url_wpglobus_site() . 'faq/' ); ?>"
40
- target="_blank"
41
- class="nav-tab">
42
  <?php WPGlobus_Admin_Page::nav_tab_icon_e( 'FAQ' ); ?>
43
  <?php esc_html_e( 'FAQ', 'wpglobus' ); ?>
44
  </a>
45
  <a href="<?php echo esc_url( WPGlobus_Utils::url_wpglobus_site() ); ?>"
46
- target="_blank"
47
- class="nav-tab">
48
  <?php WPGlobus_Admin_Page::nav_tab_icon_e( 'globe' ); ?>
49
  <?php echo esc_html( 'WPGlobus.com' ); ?>
50
  </a>
51
  </h2>
52
- <div class="feature-main feature-section col two-col">
53
- <div class="col">
54
- <p><em>
55
- <?php esc_html_e( 'Thank you for using WPGlobus!', 'wpglobus' ); ?>
56
- <?php esc_html_e( 'Our Support Team is here to answer your questions or concerns.', 'wpglobus' ); ?>
57
- </em></p>
58
- <p>&bull; <a href="#" class="wpglobus_admin_hs_beacon_toggle"><?php esc_html_e( 'Click here to open the Contact Form.', 'wpglobus' ); ?></a></p>
59
- <p>&bull; <?php esc_html_e( 'Type in your name, email, subject and the detailed message.', 'wpglobus' ); ?></p>
60
- <p>&bull; <?php esc_html_e( 'If you can make a screenshot demonstrating the problem, please attach it.', 'wpglobus' ); ?></p>
61
- <p class="highlight"><?php esc_html_e( 'Please note: we will receive some debug data together with your request. See the "Technical Information" table for the details.', 'wpglobus' ); ?></p>
62
 
63
- <h4><?php esc_html_e( 'To help us serve you better:', 'wpglobus' ); ?></h4>
64
- <ul>
65
- <li><?php esc_html_e( 'Please check if the problem persists if you switch to a standard WordPress theme.', 'wpglobus' ); ?></li>
66
- <li><?php esc_html_e( 'Try deactivating other plugins to see if any of them conflicts with WPGlobus.', 'wpglobus' ); ?></li>
67
- </ul>
68
- <hr />
69
- <p><em><?php esc_html_e( 'Sincerely Yours,', 'wpglobus' ); ?></em></p>
70
- <p><em><?php esc_html_e( 'The WPGlobus Team', 'wpglobus' ); ?></em></p>
71
- </div>
72
- <div class="col last-feature">
73
- <h4><?php esc_html_e( 'Technical Information', 'wpglobus' ); ?></h4>
74
- <table class="widefat striped">
75
- <tbody>
76
- <?php
77
- foreach ( $data as $key => $value ) {
78
- if ( in_array( $key, array( 'name', 'email' ), true ) ) {
79
- continue;
80
- }
81
- echo '<tr><th>' . esc_html( $key ) .
82
- '</th><td>' . esc_html( $value ) .
83
- '</td></tr>';
84
- }
85
- ?>
86
- </tbody>
87
- </table>
88
- </div>
89
  </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
90
  <?php
91
 
92
  WPGlobus_Admin_Page::print_footer();
93
-
94
- /* EOF */
13
 
14
  WPGlobus_Admin_Page::print_header();
15
 
16
+ /**
17
+ * Vars defined in @see \WPGlobus_Admin_HelpDesk::helpdesk_page
18
+ *
19
+ * @var string $subject
20
+ * @var string $tech_info
21
+ */
22
  ?>
23
 
24
  <h2 class="nav-tab-wrapper wp-clearfix">
27
  <?php echo esc_html( WPGlobus_Admin_HelpDesk::$page_title ); ?>
28
  </a>
29
  <a href="<?php echo esc_url( WPGlobus_Admin_Page::url_settings() ); ?>"
30
+ class="nav-tab">
31
  <?php WPGlobus_Admin_Page::nav_tab_icon_e( 'Settings' ); ?>
32
  <?php esc_html_e( 'Settings' ); ?>
33
  </a>
34
  <a href="<?php echo esc_url( WPGlobus_Admin_Page::url_addons() ); ?>"
35
+ class="nav-tab">
36
  <?php WPGlobus_Admin_Page::nav_tab_icon_e( 'Add-ons' ); ?>
37
  <?php esc_html_e( 'Add-ons', 'wpglobus' ); ?>
38
  </a>
39
  <a href="<?php echo esc_url( WPGlobus_Utils::url_wpglobus_site() . 'quick-start/' ); ?>"
40
+ target="_blank"
41
+ class="nav-tab">
42
  <?php WPGlobus_Admin_Page::nav_tab_icon_e( 'Guide' ); ?>
43
  <?php esc_html_e( 'Guide', 'wpglobus' ); ?>
44
  </a>
45
  <a href="<?php echo esc_url( WPGlobus_Utils::url_wpglobus_site() . 'faq/' ); ?>"
46
+ target="_blank"
47
+ class="nav-tab">
48
  <?php WPGlobus_Admin_Page::nav_tab_icon_e( 'FAQ' ); ?>
49
  <?php esc_html_e( 'FAQ', 'wpglobus' ); ?>
50
  </a>
51
  <a href="<?php echo esc_url( WPGlobus_Utils::url_wpglobus_site() ); ?>"
52
+ target="_blank"
53
+ class="nav-tab">
54
  <?php WPGlobus_Admin_Page::nav_tab_icon_e( 'globe' ); ?>
55
  <?php echo esc_html( 'WPGlobus.com' ); ?>
56
  </a>
57
  </h2>
 
 
 
 
 
 
 
 
 
 
58
 
59
+ <?php if ( WPGlobus_Admin_HelpDesk::getSubmissionMessage() ) : ?>
60
+ <div class="notice notice-<?php echo esc_attr( WPGlobus_Admin_HelpDesk::getSubmissionStatus() ); ?>">
61
+ <p>
62
+ <?php echo esc_html( WPGlobus_Admin_HelpDesk::getSubmissionMessage() ); ?>
63
+ </p>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
64
  </div>
65
+ <?php endif; ?>
66
+
67
+ <p><em>
68
+ <?php esc_html_e( 'Thank you for using WPGlobus!', 'wpglobus' ); ?>
69
+ <?php esc_html_e( 'Our Support Team is here to answer your questions or concerns.', 'wpglobus' ); ?>
70
+ </em></p>
71
+ <h4><?php esc_html_e( 'To help us serve you better:', 'wpglobus' ); ?></h4>
72
+ <ol>
73
+ <li><?php esc_html_e( 'Please check if the problem persists if you switch to a standard WordPress theme.', 'wpglobus' ); ?></li>
74
+ <li><?php esc_html_e( 'Try deactivating other plugins to see if any of them conflicts with WPGlobus.', 'wpglobus' ); ?></li>
75
+ </ol>
76
+
77
+ <h4><?php esc_html_e( 'Please fill in and submit the contact form:', 'wpglobus' ); ?></h4>
78
+
79
+ <form action="<?php echo esc_url( WPGlobus_Admin_Page::url_helpdesk() ); ?>" method="post">
80
+
81
+ <table class="form-table">
82
+ <tbody>
83
+ <tr class="form-field">
84
+ <th><label for="name"><?php esc_html_e( 'Name' ); ?>:</label></th>
85
+ <td><input required="required" type="text" name="name" id="name"
86
+ value="<?php echo esc_attr( WPGlobus_Admin_HelpDesk::getName() ); ?>" data-lpignore="true"/>
87
+ </td>
88
+ </tr>
89
+ <tr class="form-field">
90
+ <th><label for="email"><?php esc_html_e( 'Email' ); ?>:</label></th>
91
+ <td>
92
+ <input required="required" type="email" name="email" id="email"
93
+ value="<?php echo esc_attr( WPGlobus_Admin_HelpDesk::getEmail() ); ?>"
94
+ data-lpignore="true"/>
95
+ <p class="description">
96
+ <strong>
97
+ <?php esc_html_e( 'Please make sure the email address is correct.', 'wpglobus' ); ?>
98
+ </strong>
99
+ </p>
100
+ </td>
101
+ </tr>
102
+ <tr class="form-field">
103
+ <th><label for="subject"><?php esc_html_e( 'Subject', 'wpglobus' ); ?>:</label></th>
104
+ <td>
105
+ <input required="required" type="text" name="subject" id="subject"
106
+ value="<?php echo esc_attr( $subject ); ?>" data-lpignore="true"/>
107
+ <p class="description">
108
+ <?php esc_html_e( 'Short description of the problem', 'wpglobus' ); ?>
109
+ </p>
110
+ </td>
111
+ </tr>
112
+ <tr class="form-field">
113
+ <th><label for="details"><?php esc_html_e( 'Detailed description', 'wpglobus' ); ?>:</label></th>
114
+ <td>
115
+ <textarea required="required" name="details" id="details"
116
+ rows="10"><?php echo esc_attr( $details ); ?></textarea>
117
+ </td>
118
+ </tr>
119
+ <tr class="form-field">
120
+ <th><label for="info"><?php esc_html_e( 'Technical Information', 'wpglobus' ); ?>:</label></th>
121
+ <td>
122
+ <textarea name="info" id="info" rows="10"
123
+ style="font-family: monospace; font-size: 10px; background-color: #eee; white-space: nowrap; overflow: hidden"
124
+ data-gramm_editor="false"
125
+ spellcheck="false"><?php echo esc_html( $tech_info ); ?></textarea>
126
+ <p class="description">
127
+ <?php esc_html_e( 'This information helps us to find the problem source', 'wpglobus' ); ?>
128
+ </p>
129
+ </td>
130
+ </tr>
131
+ </tbody>
132
+ </table>
133
+
134
+ <?php wp_nonce_field( WPGlobus_Admin_HelpDesk::NONCE_ACTION ); ?>
135
+
136
+ <button class="button-primary" type="submit" name="send_email" id="send_email">
137
+ <?php WPGlobus_Admin_Page::nav_tab_icon_e( 'Helpdesk' ); ?>
138
+ <?php esc_html_e( 'Submit' ); ?>
139
+ </button>
140
+
141
+ </form>
142
+ <p>
143
+ *) <?php printf( esc_html__( 'Alternatively, please email %s. Do not forget to copy and paste the technical information to your email message.', 'wpglobus' ), '<a href="mailto:' . esc_attr( WPGlobus_Admin_HelpDesk::EMAIL_SUPPORT ) . '">' . esc_html( WPGlobus_Admin_HelpDesk::EMAIL_SUPPORT ) . '</a>' ); ?></p>
144
+
145
  <?php
146
 
147
  WPGlobus_Admin_Page::print_footer();
 
 
includes/class-wpglobus-config-vendor.php CHANGED
@@ -2,12 +2,15 @@
2
  /**
3
  * Class WPGlobus_Config_Vendor
4
  *
5
- * @package WPGlobus\Config
6
  * @author Alex Gor(alexgff)
7
  */
8
 
9
  if ( ! class_exists( 'WPGlobus_Config_Vendor' ) ) :
10
 
 
 
 
11
  class WPGlobus_Config_Vendor {
12
 
13
  const PLUGIN_CONFIG_FILES = 'configs/*.json';
@@ -15,16 +18,30 @@ if ( ! class_exists( 'WPGlobus_Config_Vendor' ) ) :
15
  const PLUGIN_CONFIG_DIR = 'configs/';
16
 
17
  /**
18
- * @var object Instance of this class.
 
 
19
  */
20
  protected static $instance;
21
 
 
 
 
22
  protected static $config = array();
23
 
 
 
 
24
  protected static $post_meta_fields = null;
25
 
 
 
 
26
  protected static $post_ml_fields = null;
27
 
 
 
 
28
  protected static $wp_options = null;
29
 
30
  /**
@@ -44,7 +61,7 @@ if ( ! class_exists( 'WPGlobus_Config_Vendor' ) ) :
44
  /**
45
  * Constructor.
46
  *
47
- * @param $builder
48
  */
49
  protected function __construct( $builder ) {
50
 
@@ -58,7 +75,7 @@ if ( ! class_exists( 'WPGlobus_Config_Vendor' ) ) :
58
  /**
59
  * Get instance of this class.
60
  *
61
- * @param $builder
62
  *
63
  * @return WPGlobus_Config_Vendor
64
  */
@@ -72,6 +89,8 @@ if ( ! class_exists( 'WPGlobus_Config_Vendor' ) ) :
72
 
73
  /**
74
  * Get meta fields.
 
 
75
  */
76
  public static function get_meta_fields() {
77
  if ( is_null( self::$post_meta_fields ) ) {
@@ -83,6 +102,8 @@ if ( ! class_exists( 'WPGlobus_Config_Vendor' ) ) :
83
 
84
  /**
85
  * Get multilingual fields.
 
 
86
  */
87
  public static function get_ml_fields() {
88
  if ( is_null( self::$post_ml_fields ) ) {
@@ -94,6 +115,8 @@ if ( ! class_exists( 'WPGlobus_Config_Vendor' ) ) :
94
 
95
  /**
96
  * Get wp_options.
 
 
97
  */
98
  public static function get_wp_options() {
99
  if ( is_null( self::$wp_options ) ) {
@@ -133,7 +156,12 @@ if ( ! class_exists( 'WPGlobus_Config_Vendor' ) ) :
133
  * https://wordpress.org/plugins/all-in-one-seo-pack/
134
  */
135
  if ( defined( 'AIOSEOP_VERSION' ) ) {
136
- self::$vendors[] = 'all-in-one-seo-pack.json';
 
 
 
 
 
137
  }
138
 
139
  /**
@@ -168,7 +196,8 @@ if ( ! class_exists( 'WPGlobus_Config_Vendor' ) ) :
168
  foreach ( self::$vendors as $file ) {
169
 
170
  if ( is_readable( $config_plugin_dir . $file ) ) {
171
- $file_name = pathinfo( $file, PATHINFO_FILENAME );
 
172
  self::$config[ $file_name ] = json_decode( file_get_contents( $config_plugin_dir . $file ), true );
173
  }
174
  }
@@ -178,12 +207,15 @@ if ( ! class_exists( 'WPGlobus_Config_Vendor' ) ) :
178
  /**
179
  * Get multilingual fields for post.
180
  *
181
- * @param $_meta
182
- * @param $_init
183
  *
184
  * @return array
185
  */
186
- public static function get_post_ml_fields( $_meta, $_init ) {
 
 
 
187
 
188
  $_post_ml_fields = array();
189
 
@@ -191,7 +223,7 @@ if ( ! class_exists( 'WPGlobus_Config_Vendor' ) ) :
191
  return $_post_ml_fields;
192
  }
193
 
194
- $file = empty( $_init['file'] ) ? '' : WPGlobus::$PLUGIN_DIR_PATH . 'includes/' . $_init['file'];
195
 
196
  /** @var WPGlobus_Acf_2 $class */
197
  $class = empty( $_init['class'] ) ? '' : $_init['class'];
@@ -206,12 +238,15 @@ if ( ! class_exists( 'WPGlobus_Config_Vendor' ) ) :
206
  /**
207
  * Get meta fields for post.
208
  *
209
- * @param $_meta
210
- * @param $_init
211
  *
212
  * @return array
213
  */
214
- public static function get_post_meta_fields( $_meta, $_init ) {
 
 
 
215
 
216
  $_post_meta_fields = array();
217
 
@@ -257,7 +292,7 @@ if ( ! class_exists( 'WPGlobus_Config_Vendor' ) ) :
257
 
258
  if ( isset( $data['post_meta_fields'][ $_meta ] ) ) {
259
 
260
- if ( '*' == $_meta ) {
261
  $_arr = self::get_post_meta_fields( $_meta, $_init );
262
  if ( ! empty( $_arr ) ) {
263
  self::$post_meta_fields = array_merge( self::$post_meta_fields, $_arr );
@@ -274,7 +309,7 @@ if ( ! class_exists( 'WPGlobus_Config_Vendor' ) ) :
274
  foreach ( $data['post_ml_fields'] as $_meta => $_init ) {
275
  if ( isset( $data['post_ml_fields'][ $_meta ] ) ) {
276
 
277
- if ( '*' == $_meta ) {
278
  $_arr = self::get_post_ml_fields( $_meta, $_init );
279
  if ( ! empty( $_arr ) ) {
280
  self::$post_ml_fields = array_merge( self::$post_ml_fields, $_arr );
2
  /**
3
  * Class WPGlobus_Config_Vendor
4
  *
5
+ * @package WPGlobus
6
  * @author Alex Gor(alexgff)
7
  */
8
 
9
  if ( ! class_exists( 'WPGlobus_Config_Vendor' ) ) :
10
 
11
+ /**
12
+ * Vendor configuration.
13
+ */
14
  class WPGlobus_Config_Vendor {
15
 
16
  const PLUGIN_CONFIG_FILES = 'configs/*.json';
18
  const PLUGIN_CONFIG_DIR = 'configs/';
19
 
20
  /**
21
+ * Instance of this class.
22
+ *
23
+ * @var WPGlobus_Config_Vendor
24
  */
25
  protected static $instance;
26
 
27
+ /**
28
+ * @var array
29
+ */
30
  protected static $config = array();
31
 
32
+ /**
33
+ * @var array|null
34
+ */
35
  protected static $post_meta_fields = null;
36
 
37
+ /**
38
+ * @var array|null
39
+ */
40
  protected static $post_ml_fields = null;
41
 
42
+ /**
43
+ * @var array|null
44
+ */
45
  protected static $wp_options = null;
46
 
47
  /**
61
  /**
62
  * Constructor.
63
  *
64
+ * @param WPGlobus_Config_Builder $builder
65
  */
66
  protected function __construct( $builder ) {
67
 
75
  /**
76
  * Get instance of this class.
77
  *
78
+ * @param WPGlobus_Config_Builder $builder
79
  *
80
  * @return WPGlobus_Config_Vendor
81
  */
89
 
90
  /**
91
  * Get meta fields.
92
+ *
93
+ * @return array|false
94
  */
95
  public static function get_meta_fields() {
96
  if ( is_null( self::$post_meta_fields ) ) {
102
 
103
  /**
104
  * Get multilingual fields.
105
+ *
106
+ * @return array|false
107
  */
108
  public static function get_ml_fields() {
109
  if ( is_null( self::$post_ml_fields ) ) {
115
 
116
  /**
117
  * Get wp_options.
118
+ *
119
+ * @return array|false
120
  */
121
  public static function get_wp_options() {
122
  if ( is_null( self::$wp_options ) ) {
156
  * https://wordpress.org/plugins/all-in-one-seo-pack/
157
  */
158
  if ( defined( 'AIOSEOP_VERSION' ) ) {
159
+ /**
160
+ * Load config file for builder page only.
161
+ */
162
+ if ( self::$builder->is_builder_page() ) {
163
+ self::$vendors[] = 'all-in-one-seo-pack.json';
164
+ }
165
  }
166
 
167
  /**
196
  foreach ( self::$vendors as $file ) {
197
 
198
  if ( is_readable( $config_plugin_dir . $file ) ) {
199
+ $file_name = pathinfo( $file, PATHINFO_FILENAME );
200
+
201
  self::$config[ $file_name ] = json_decode( file_get_contents( $config_plugin_dir . $file ), true );
202
  }
203
  }
207
  /**
208
  * Get multilingual fields for post.
209
  *
210
+ * @param mixed $_meta Unused.
211
+ * @param array $_init
212
  *
213
  * @return array
214
  */
215
+ public static function get_post_ml_fields(
216
+ /** @noinspection PhpUnusedParameterInspection */
217
+ $_meta, $_init
218
+ ) {
219
 
220
  $_post_ml_fields = array();
221
 
223
  return $_post_ml_fields;
224
  }
225
 
226
+ // $file = empty( $_init['file'] ) ? '' : WPGlobus::$PLUGIN_DIR_PATH . 'includes/' . $_init['file'];
227
 
228
  /** @var WPGlobus_Acf_2 $class */
229
  $class = empty( $_init['class'] ) ? '' : $_init['class'];
238
  /**
239
  * Get meta fields for post.
240
  *
241
+ * @param mixed $_meta Unused.
242
+ * @param array $_init
243
  *
244
  * @return array
245
  */
246
+ public static function get_post_meta_fields(
247
+ /** @noinspection PhpUnusedParameterInspection */
248
+ $_meta, $_init
249
+ ) {
250
 
251
  $_post_meta_fields = array();
252
 
292
 
293
  if ( isset( $data['post_meta_fields'][ $_meta ] ) ) {
294
 
295
+ if ( '*' === $_meta ) {
296
  $_arr = self::get_post_meta_fields( $_meta, $_init );
297
  if ( ! empty( $_arr ) ) {
298
  self::$post_meta_fields = array_merge( self::$post_meta_fields, $_arr );
309
  foreach ( $data['post_ml_fields'] as $_meta => $_init ) {
310
  if ( isset( $data['post_ml_fields'][ $_meta ] ) ) {
311
 
312
+ if ( '*' === $_meta ) {
313
  $_arr = self::get_post_ml_fields( $_meta, $_init );
314
  if ( ! empty( $_arr ) ) {
315
  self::$post_ml_fields = array_merge( self::$post_ml_fields, $_arr );
includes/css/wpglobus-admin.css CHANGED
@@ -1,3 +1,3 @@
1
- #adminmenu li.toplevel_page_wpglobus_options div.wp-menu-image:before{content:"\f319"}.wpglobus-menu-item-box{background-color:#e0e0e0;padding-bottom:20px}.wpglobus-excerpt{width:98%;height:4em}.widefat thead tr th.column-wpglobus_languages{width:7%}.wpglobus-switch .wpglobus-icon-globe:before{display:inline-block;-webkit-font-smoothing:antialiased;font-family:dashicons;font-weight:400;font-style:normal;text-decoration:inherit;content:"\f319";font-size:20px;vertical-align:text-bottom;opacity:0.6}ul.wpglobus-checkmarks li:before{display:inline-block;-webkit-font-smoothing:antialiased;font-family:dashicons;font-weight:400;font-style:normal;text-decoration:inherit;content:"\f147";font-size:2em;vertical-align:top;color:forestgreen}ul.wpglobus-checkmarks li{text-indent:-1em;margin-left:1.5em}ul.wpglobus-important li:before{display:inline-block;-webkit-font-smoothing:antialiased;font-family:dashicons;font-weight:400;font-style:normal;text-decoration:inherit;content:"\f522";font-size:23px;vertical-align:top;color:darkred}ul.wpglobus-important li{text-indent:-14px;margin-left:24px}.wpglobus-state-error{border:1px solid #f00 !important}.wpglobus-post-status-info{width:100%;border-spacing:0;border:1px solid #e5e5e5;border-top:none;background-color:#f7f7f7;-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.04);box-shadow:0 1px 1px rgba(0,0,0,0.04);z-index:999}.wpglobus-post-status-info td{font-size:12px}.wpglobus-post-status-info .wpglobus-wp-word-count{display:block;padding:2px 10px}.wpglobus-wp-admin .wpglobus-translatable{border-left:3px solid blue !important}.wpglobus-wp-admin .wpglobus-link-lock-icon{cursor:not-allowed}.wpglobus-wp-admin .wpglobus-link-trash-icon{cursor:not-allowed}.wpglobus-wp-admin .wpglobus-link-lock-icon:before{font-family:dashicons;font-weight:400;font-style:normal;text-decoration:inherit;content:"\f160";font-size:11px}.wpglobus-wp-admin .wpglobus-link-open-icon:before{font-family:dashicons;font-weight:400;font-style:normal;text-decoration:inherit;content:"\f504";font-size:11px}.wpglobus-wp-admin .wpglobus-link-trash-icon:before{font-family:dashicons;font-weight:400;font-style:normal;text-decoration:inherit;content:"\f182";font-size:11px}.wpglobus-wp-admin .wpglobus-spinner{background:url(images/spinner.gif) no-repeat;background-size:20px 20px;display:inline-block;visibility:hidden;float:right;vertical-align:middle;opacity:0.7;filter:alpha(opacity=70);width:20px;height:20px;margin:0}.wpglobus-edit-slug-box{line-height:24px;min-height:25px;margin-top:5px;padding:0 10px;color:#666}.wpglobus-edit-slug-box .wpglobus-editable-post-name{background-color:#fffbcc}.wpglobus-edit-slug-box .wpglobus-editable-post-name-full{display:none}.wpglobus-edit-slug-box .wpglobus-editable-post-name input{font-size:13px;height:22px;margin-bottom:0;margin-left:0;margin-right:0;margin-top:0;width:20em}.about-wrap.wpglobus-about-wrap .wpglobus-version{color:#E38869;font-size:95%}.about-wrap.wpglobus-about-wrap .wpglobus-motto{font-style:italic}.about-wrap.wpglobus-about-wrap .wpglobus-wp{color:#23769C}.about-wrap.wpglobus-about-wrap h1.wpglobus{font-family:Georgia, serif;font-variant:small-caps;letter-spacing:1.5px}.about-wrap.wpglobus-about-wrap .wpglobus-stars{color:#E38869}.about-wrap.wpglobus-about-wrap .feature-section div{text-align:left}.toplevel_page_wpglobus_options #redux-header,.toplevel_page_wpglobus_options .redux-timer{display:none}.toplevel_page_wpglobus_options .el-move::before{display:inline-block;-webkit-font-smoothing:antialiased;font-family:dashicons;font-weight:400;font-style:normal;text-decoration:inherit;content:"\f545";border:1px solid #2866a0;color:#2866a0;background-color:white;margin:0 3px 0 3px;line-height:1.2;width:1.5em;text-align:center;cursor:move}.redux-container #redux-intro-text{background-color:#d3e4f4;color:black}.redux-container #redux-intro-text h1{color:#2866a0;float:left;width:204px;margin:0;padding:0}.redux-container #redux-intro-text .wpg-bnr{width:400px}.redux-container #redux-intro-text .wpg-bnr.wpg-bnr-left{float:left}.redux-container #redux-intro-text .wpg-bnr.wpg-bnr-right{float:right}.redux-container #redux-intro-text .wpg-a-img{float:left;display:block;height:100px;border:1px solid #5999d5;background-color:white;margin-right:1em}.redux-container #redux-intro-text .wpg-a-img img{width:100px}.redux-container #redux-intro-text .wpg-text-block{padding-top:0.3em}.redux-container #redux-intro-text .wpg-text-block .wpg-title{font-weight:700}.redux-container #redux-intro-text .wpg-text-block .wpg-body{margin:0.3em 0}.redux-container #redux-intro-text .wpg-text-block .wpg-footer{font-style:italic}.customize-controls-close.wpglobus-customize-selector:before{content:""}.customize-controls-close.wpglobus-customize-selector .wpglobus-icon-globe:before{color:#00f;display:inline-block;font-family:dashicons;content:"\f319";font-size:20px}.wpglobus-customize-translatable-element,.wpglobus-customize-control,.wpglobus-customize-widget-control{border-left:3px solid blue !important}@media screen and (max-width: 640px){.customize-controls-preview-toggle{left:88px}}.yoast_help.yoast-help-button.dashicons{font-family:dashicons !important;font-size:20px !important}.wpglobus-mark{font-weight:700}.wpglobus-mark.wpglobus-warning{background-color:yellow;color:black}@media screen and (max-width: 782px){#wpadminbar li#wp-admin-bar-wpglobus-language-select{display:block}#wpadminbar li#wp-admin-bar-wpglobus-language-select .ab-icon{margin-top:-3px}#wpadminbar li#wp-admin-bar-wpglobus-language-select .ab-icon img{height:25px}}
2
 
3
  /*# sourceMappingURL=wpglobus-admin.css.map */
1
+ #adminmenu li.toplevel_page_wpglobus_options div.wp-menu-image:before{content:"\f319"}.wpglobus-menu-item-box{background-color:#e0e0e0;padding-bottom:20px}.wpglobus-excerpt{width:98%;height:4em}.widefat thead tr th.column-wpglobus_languages{width:7%}.wpglobus-switch .wpglobus-icon-globe:before{display:inline-block;-webkit-font-smoothing:antialiased;font-family:dashicons;font-weight:400;font-style:normal;text-decoration:inherit;content:"\f319";font-size:20px;vertical-align:text-bottom;opacity:0.6}ul.wpglobus-checkmarks li:before{display:inline-block;-webkit-font-smoothing:antialiased;font-family:dashicons;font-weight:400;font-style:normal;text-decoration:inherit;content:"\f147";font-size:2em;vertical-align:top;color:forestgreen}ul.wpglobus-checkmarks li{text-indent:-1em;margin-left:1.5em}ul.wpglobus-important li:before{display:inline-block;-webkit-font-smoothing:antialiased;font-family:dashicons;font-weight:400;font-style:normal;text-decoration:inherit;content:"\f522";font-size:23px;vertical-align:top;color:darkred}ul.wpglobus-important li{text-indent:-14px;margin-left:24px}.wpglobus-state-error{border:1px solid #f00 !important}.wpglobus-post-status-info{width:100%;border-spacing:0;border:1px solid #e5e5e5;border-top:none;background-color:#f7f7f7;-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.04);box-shadow:0 1px 1px rgba(0,0,0,0.04);z-index:999}.wpglobus-post-status-info td{font-size:12px}.wpglobus-post-status-info .wpglobus-wp-word-count{display:block;padding:2px 10px}.wpglobus-wp-admin .wpglobus-translatable{border-left:3px solid blue !important}.wpglobus-wp-admin .wpglobus-link-lock-icon{cursor:not-allowed}.wpglobus-wp-admin .wpglobus-link-trash-icon{cursor:not-allowed}.wpglobus-wp-admin .wpglobus-link-lock-icon:before{font-family:dashicons;font-weight:400;font-style:normal;text-decoration:inherit;content:"\f160";font-size:11px}.wpglobus-wp-admin .wpglobus-link-open-icon:before{font-family:dashicons;font-weight:400;font-style:normal;text-decoration:inherit;content:"\f504";font-size:11px}.wpglobus-wp-admin .wpglobus-link-trash-icon:before{font-family:dashicons;font-weight:400;font-style:normal;text-decoration:inherit;content:"\f182";font-size:11px}.wpglobus-wp-admin .wpglobus-spinner{background:url(images/spinner.gif) no-repeat;background-size:20px 20px;display:inline-block;visibility:hidden;float:right;vertical-align:middle;opacity:0.7;filter:alpha(opacity=70);width:20px;height:20px;margin:0}.wpglobus-edit-slug-box{line-height:24px;min-height:25px;margin-top:5px;padding:0 10px;color:#666}.wpglobus-edit-slug-box .wpglobus-editable-post-name{background-color:#fffbcc}.wpglobus-edit-slug-box .wpglobus-editable-post-name-full{display:none}.wpglobus-edit-slug-box .wpglobus-editable-post-name input{font-size:13px;height:22px;margin-bottom:0;margin-left:0;margin-right:0;margin-top:0;width:20em}.about-wrap.wpglobus-about-wrap .wpglobus-version{color:#E38869;font-size:95%}.about-wrap.wpglobus-about-wrap .wpglobus-motto{font-style:italic}.about-wrap.wpglobus-about-wrap .wpglobus-wp{color:#23769C}.about-wrap.wpglobus-about-wrap h1.wpglobus{font-family:Georgia, serif;font-variant:small-caps;letter-spacing:1.5px}.about-wrap.wpglobus-about-wrap .wpglobus-stars{color:#E38869}.about-wrap.wpglobus-about-wrap .feature-section div{text-align:left}.about-wrap.wpglobus-about-wrap .notice{display:block !important;margin-right:140px}.toplevel_page_wpglobus_options #redux-header,.toplevel_page_wpglobus_options .redux-timer{display:none}.toplevel_page_wpglobus_options .el-move::before{display:inline-block;-webkit-font-smoothing:antialiased;font-family:dashicons;font-weight:400;font-style:normal;text-decoration:inherit;content:"\f545";border:1px solid #2866a0;color:#2866a0;background-color:white;margin:0 3px 0 3px;line-height:1.2;width:1.5em;text-align:center;cursor:move}.redux-container #redux-intro-text{background-color:#d3e4f4;color:black}.redux-container #redux-intro-text h1{color:#2866a0;float:left;width:204px;margin:0;padding:0}.redux-container #redux-intro-text .wpg-bnr{width:400px}.redux-container #redux-intro-text .wpg-bnr.wpg-bnr-left{float:left}.redux-container #redux-intro-text .wpg-bnr.wpg-bnr-right{float:right}.redux-container #redux-intro-text .wpg-a-img{float:left;display:block;height:100px;border:1px solid #5999d5;background-color:white;margin-right:1em}.redux-container #redux-intro-text .wpg-a-img img{width:100px}.redux-container #redux-intro-text .wpg-text-block{padding-top:0.3em}.redux-container #redux-intro-text .wpg-text-block .wpg-title{font-weight:700}.redux-container #redux-intro-text .wpg-text-block .wpg-body{margin:0.3em 0}.redux-container #redux-intro-text .wpg-text-block .wpg-footer{font-style:italic}.customize-controls-close.wpglobus-customize-selector:before{content:""}.customize-controls-close.wpglobus-customize-selector .wpglobus-icon-globe:before{color:#00f;display:inline-block;font-family:dashicons;content:"\f319";font-size:20px}.wpglobus-customize-translatable-element,.wpglobus-customize-control,.wpglobus-customize-widget-control{border-left:3px solid blue !important}@media screen and (max-width: 640px){.customize-controls-preview-toggle{left:88px}}.yoast_help.yoast-help-button.dashicons{font-family:dashicons !important;font-size:20px !important}.wpglobus-mark{font-weight:700}.wpglobus-mark.wpglobus-warning{background-color:yellow;color:black}@media screen and (max-width: 782px){#wpadminbar li#wp-admin-bar-wpglobus-language-select{display:block}#wpadminbar li#wp-admin-bar-wpglobus-language-select .ab-icon{margin-top:-3px}#wpadminbar li#wp-admin-bar-wpglobus-language-select .ab-icon img{height:25px}}
2
 
3
  /*# sourceMappingURL=wpglobus-admin.css.map */
includes/css/wpglobus-admin.css.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"sources":["wpglobus-admin.scss"],"names":[],"mappings":"AA0BA,sEAZC,eAAgB,CAchB,wBAGA,yBACA,mBAAoB,CACpB,kBAGA,UACA,UAAW,CACX,+CAGA,QAAS,CACT,6CAIA,qBACA,mCACA,sBACA,gBACA,kBACA,wBArCA,gBA2CA,eACA,2BACA,WAAY,CACZ,iCAdA,qBACA,mCACA,sBACA,gBACA,kBACA,wBA7CA,gBA4DC,cACA,mBACA,iBAAkB,CANpB,0BASE,iBACA,iBAAkB,CAClB,gCA3BD,qBACA,mCACA,sBACA,gBACA,kBACA,wBAzCA,gBAsEC,eACA,mBACA,aAAc,CANhB,yBASE,kBACA,gBAAiB,CACjB,sBAID,gCAAiC,CACjC,2BAGA,WACA,iBACA,yBACA,gBACA,yBACA,8CACA,sCACA,WAAY,CARb,8BAUE,cAAe,CAVjB,mDAaE,cACA,gBAAiB,CACjB,0CAKA,qCAAsC,CAFxC,4CAKE,kBAAmB,CALrB,6CAQE,kBAAmB,CARrB,mDAWE,sBACA,gBACA,kBACA,wBACA,gBACA,cAAe,CAhBjB,mDAmBE,sBACA,gBACA,kBACA,wBACA,gBACA,cAAe,CAxBjB,oDA2BE,sBACA,gBACA,kBACA,wBACA,gBACA,cAAe,CAhCjB,qCAmCE,6CACA,AACA,0BACA,qBACA,kBACA,YACA,sBACA,YACA,yBACA,WACA,YACA,QAAS,CACT,wBAMD,iBACA,gBACA,eACA,eACA,UAAW,CALZ,qDAOE,wBAAyB,CAP3B,0DAUE,YAAa,CAVf,2DAcE,eACA,YACA,gBACA,cACA,eACA,aACA,UAAW,CACX,kDAUA,cACA,aAAc,CAHhB,gDAOE,iBAAkB,CAPpB,6CAWE,aAd8B,CAGhC,4CAeE,2BACA,wBACA,oBAAqB,CAjBvB,gDAqBE,aAzBiC,CAInC,qDA4BG,eAAgB,CAChB,2FAOD,YAAa,CACb,iDAxLD,qBACA,mCACA,sBACA,gBACA,kBACA,wBA5BA,gBAwNC,yBACA,cACA,uBACA,mBACA,gBACA,YACA,kBACA,WAAY,CACZ,mCAOD,yBACA,WAAY,CAFb,sCAIE,cACA,WACA,YACA,SACA,SAAU,CARZ,4CAWE,WAAY,CAXd,yDAaG,UAAW,CAbd,0DAgBG,WAAY,CAhBf,8CAoBE,WACA,cACA,aACA,yBACA,uBACA,gBAAiB,CAzBnB,kDA2BG,WAAY,CA3Bf,mDA+BE,iBAAkB,CA/BpB,8DAiCG,eAAgB,CAjCnB,6DAoCG,cAAe,CApClB,+DAuCG,iBAAkB,CAClB,6DAMF,UAAW,CACX,kFAEA,WACA,qBACA,sBACA,gBACA,cAAe,CACf,wGAEA,qCAAsC,CACtC,qCAEA,mCACC,SAAU,CACV,CAKF,wCACC,iCACA,yBAA4B,CAC5B,eAIA,eAAgB,CADjB,gCAGE,wBACA,WAAuB,CACvB,qCAKD,qDACC,aAAc,CADf,8DAGE,eAAgB,CAHlB,kEAKG,WAAY,CACZ,CAAA","file":"wpglobus-admin.css"}
1
+ {"version":3,"sources":["wpglobus-admin.scss"],"names":[],"mappings":"AA0BA,sEAZE,eAAgB,CAcjB,wBAGC,yBACA,mBAAoB,CACrB,kBAGC,UACA,UAAW,CACZ,+CAGC,QAAS,CACV,6CAIC,qBACA,mCACA,sBACA,gBACA,kBACA,wBArCA,gBA2CA,eACA,2BACA,WAAY,CACb,iCAdC,qBACA,mCACA,sBACA,gBACA,kBACA,wBA7CA,gBA4DE,cACA,mBACA,iBAAkB,CANtB,0BASI,iBACA,iBAAkB,CACnB,gCA3BD,qBACA,mCACA,sBACA,gBACA,kBACA,wBAzCA,gBAsEE,eACA,mBACA,aAAc,CANlB,yBASI,kBACA,gBAAiB,CAClB,sBAID,gCAAiC,CAClC,2BAGC,WACA,iBACA,yBACA,gBACA,yBACA,8CACA,sCACA,WAAY,CARd,8BAUI,cAAe,CAVnB,mDAaI,cACA,gBAAiB,CAClB,0CAKC,qCAAsC,CAF1C,4CAKI,kBAAmB,CALvB,6CAQI,kBAAmB,CARvB,mDAWI,sBACA,gBACA,kBACA,wBACA,gBACA,cAAe,CAhBnB,mDAmBI,sBACA,gBACA,kBACA,wBACA,gBACA,cAAe,CAxBnB,oDA2BI,sBACA,gBACA,kBACA,wBACA,gBACA,cAAe,CAhCnB,qCAmCI,6CACA,AACA,0BACA,qBACA,kBACA,YACA,sBACA,YACA,yBACA,WACA,YACA,QAAS,CACV,wBAMD,iBACA,gBACA,eACA,eACA,UAAW,CALb,qDAOI,wBAAyB,CAP7B,0DAUI,YAAa,CAVjB,2DAcI,eACA,YACA,gBACA,cACA,eACA,aACA,UAAW,CACZ,kDAUC,cACA,aAAc,CAHlB,gDAOI,iBAAkB,CAPtB,6CAWI,aAd4B,CAGhC,4CAeI,2BACA,wBACA,oBAAqB,CAjBzB,gDAqBI,aAzB+B,CAInC,qDA4BM,eAAgB,CA5BtB,wCAkCI,yBACA,kBAAmB,CACpB,2FAMC,YAAa,CACd,iDA9LD,qBACA,mCACA,sBACA,gBACA,kBACA,wBA5BA,gBA8NE,yBACA,cACA,uBACA,mBACA,gBACA,YACA,kBACA,WAAY,CACb,mCAOD,yBACA,WAAY,CAFd,sCAII,cACA,WACA,YACA,SACA,SAAU,CARd,4CAWI,WAAY,CAXhB,yDAaM,UAAW,CAbjB,0DAgBM,WAAY,CAhBlB,8CAoBI,WACA,cACA,aACA,yBACA,uBACA,gBAAiB,CAzBrB,kDA2BM,WAAY,CA3BlB,mDA+BI,iBAAkB,CA/BtB,8DAiCM,eAAgB,CAjCtB,6DAoCM,cAAe,CApCrB,+DAuCM,iBAAkB,CACnB,6DAOH,UAAW,CACZ,kFAGC,WACA,qBACA,sBACA,gBACA,cAAe,CAChB,wGAGC,qCAAsC,CACvC,qCAGC,mCACE,SAAU,CACX,CAKH,wCACE,iCACA,yBAA0B,CAC3B,eAIC,eAAgB,CADlB,gCAGI,wBACA,WAAY,CACb,qCAKD,qDACE,aAAc,CADhB,8DAGI,eAAgB,CAHpB,kEAKM,WAAY,CACb,CAAA","file":"wpglobus-admin.css"}
includes/css/wpglobus-admin.scss CHANGED
@@ -3,187 +3,187 @@
3
  * @package WPGlobus
4
  */
5
 
6
- @mixin dashicon-checkmark(){
7
- content: "\f147";
8
  }
9
 
10
- @mixin dashicon-triangle-right(){
11
- content: "\f522";
12
  }
13
 
14
- @mixin dashicon-globus(){
15
- content: "\f319";
16
  }
17
 
18
  // To use in the Redux Sortable instead of elusive
19
- @mixin dashicons-image-flip-vertical(){
20
- content: "\f168";
21
  }
22
 
23
- @mixin dashicons-move(){
24
- content: "\f545";
25
  }
26
 
27
  #adminmenu li.toplevel_page_wpglobus_options div.wp-menu-image:before {
28
- @include dashicon-globus();
29
  }
30
 
31
  .wpglobus-menu-item-box {
32
- background-color: #e0e0e0;
33
- padding-bottom: 20px;
34
  }
35
 
36
  .wpglobus-excerpt {
37
- width: 98%;
38
- height: 4em;
39
  }
40
 
41
  .widefat thead tr th.column-wpglobus_languages {
42
- width: 7%;
43
  }
44
 
45
  //noinspection CssNoGenericFontName
46
- @mixin dashicon(){
47
- display: inline-block;
48
- -webkit-font-smoothing: antialiased;
49
- font-family: dashicons;
50
- font-weight: 400;
51
- font-style: normal;
52
- text-decoration: inherit;
53
  }
54
 
55
  .wpglobus-switch .wpglobus-icon-globe:before {
56
- @include dashicon();
57
- @include dashicon-globus();
58
- font-size: 20px;
59
- vertical-align: text-bottom;
60
- opacity: 0.6;
61
  }
62
 
63
  ul.wpglobus-checkmarks {
64
- li:before {
65
- @include dashicon();
66
- @include dashicon-checkmark();
67
- font-size: 2em;
68
- vertical-align: top;
69
- color: forestgreen;
70
- }
71
- li {
72
- text-indent: -1em;
73
- margin-left: 1.5em;
74
- }
75
  }
76
 
77
  ul.wpglobus-important {
78
- li:before {
79
- @include dashicon();
80
- @include dashicon-triangle-right();
81
- font-size: 23px;
82
- vertical-align: top;
83
- color: darkred;
84
- }
85
- li {
86
- text-indent: -14px;
87
- margin-left: 24px;
88
- }
89
  }
90
 
91
  .wpglobus-state-error {
92
- border: 1px solid #f00 !important;
93
  }
94
 
95
  .wpglobus-post-status-info {
96
- width: 100%;
97
- border-spacing: 0;
98
- border: 1px solid #e5e5e5;
99
- border-top: none;
100
- background-color: #f7f7f7;
101
- -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
102
- box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
103
- z-index: 999;
104
- td {
105
- font-size: 12px;
106
- }
107
- .wpglobus-wp-word-count {
108
- display: block;
109
- padding: 2px 10px;
110
- }
111
  }
112
 
113
  .wpglobus-wp-admin {
114
- .wpglobus-translatable {
115
- border-left: 3px solid blue !important;
116
- }
117
- .wpglobus-link-lock-icon {
118
- cursor: not-allowed;
119
- }
120
- .wpglobus-link-trash-icon {
121
- cursor: not-allowed;
122
- }
123
- .wpglobus-link-lock-icon:before {
124
- font-family: dashicons;
125
- font-weight: 400;
126
- font-style: normal;
127
- text-decoration: inherit;
128
- content: "\f160";
129
- font-size: 11px;
130
- }
131
- .wpglobus-link-open-icon:before {
132
- font-family: dashicons;
133
- font-weight: 400;
134
- font-style: normal;
135
- text-decoration: inherit;
136
- content: "\f504";
137
- font-size: 11px;
138
- }
139
- .wpglobus-link-trash-icon:before {
140
- font-family: dashicons;
141
- font-weight: 400;
142
- font-style: normal;
143
- text-decoration: inherit;
144
- content: "\f182";
145
- font-size: 11px;
146
- }
147
- .wpglobus-spinner {
148
- background: url(images/spinner.gif) no-repeat;
149
- -webkit-background-size: 20px 20px;
150
- background-size: 20px 20px;
151
- display: inline-block;
152
- visibility: hidden;
153
- float: right;
154
- vertical-align: middle;
155
- opacity: 0.7;
156
- filter: alpha(opacity=70);
157
- width: 20px;
158
- height: 20px;
159
- margin: 0;
160
- }
161
 
162
  }
163
 
164
  /* @see #edit-slug-box */
165
  .wpglobus-edit-slug-box {
166
- line-height: 24px;
167
- min-height: 25px;
168
- margin-top: 5px;
169
- padding: 0 10px;
170
- color: #666;
171
- .wpglobus-editable-post-name {
172
- background-color: #fffbcc;
173
- }
174
- .wpglobus-editable-post-name-full {
175
- display: none;
176
- }
177
- /* @see #editable-post-name input */
178
- .wpglobus-editable-post-name input {
179
- font-size: 13px;
180
- height: 22px;
181
- margin-bottom: 0;
182
- margin-left: 0;
183
- margin-right: 0;
184
- margin-top: 0;
185
- width: 20em;
186
- }
187
 
188
  }
189
 
@@ -192,156 +192,166 @@ $color-wpglobus-logo-wp: #23769C;
192
 
193
  // @since 1.5.8 Use our styles only with our `wrap` class.
194
  .about-wrap.wpglobus-about-wrap {
195
- .wpglobus-version {
196
- color: $color-wpglobus-logo-globe;
197
- font-size: 95%;
198
- }
199
-
200
- .wpglobus-motto {
201
- font-style: italic;
202
- }
203
-
204
- .wpglobus-wp {
205
- color: $color-wpglobus-logo-wp;
206
- }
207
-
208
- h1.wpglobus {
209
- font-family: Georgia, serif;
210
- font-variant: small-caps;
211
- letter-spacing: 1.5px;
212
- }
213
-
214
- .wpglobus-stars {
215
- color: $color-wpglobus-logo-globe;
216
- }
217
-
218
- // The `Customizr` theme breaks this by setting to "center".
219
- // @since 1.5.8
220
- .feature-section {
221
- div {
222
- text-align: left;
223
- }
224
- }
 
 
 
 
 
 
225
  }
226
 
227
  // Hide Redux annoyances
228
  .toplevel_page_wpglobus_options {
229
- #redux-header, .redux-timer {
230
- display: none;
231
- }
232
  }
233
 
234
  // Use Dashicon instead of Elusive, because Elusive can be broken by a theme (ex. "Virtue")
235
  $color-wpglobus-icon-sortable: #2866a0;
236
  .toplevel_page_wpglobus_options {
237
- .el-move::before {
238
- @include dashicon();
239
- @include dashicons-move();
240
- border: 1px solid $color-wpglobus-icon-sortable;
241
- color: $color-wpglobus-icon-sortable;
242
- background-color: white;
243
- margin: 0 3px 0 3px;
244
- line-height: 1.2;
245
- width: 1.5em;
246
- text-align: center;
247
- cursor: move;
248
- }
249
  }
250
 
251
  // Options panel header
252
  // @see includes/options/wpglobus-options-header.php
253
  $bg-redux-info: #d3e4f4;
254
  .redux-container #redux-intro-text {
255
- background-color: $bg-redux-info;
256
- color: black;
257
- h1 {
258
- color: darken($bg-redux-info, 50%);
259
- float: left;
260
- width: 204px;
261
- margin: 0;
262
- padding: 0;
263
- }
264
- .wpg-bnr {
265
- width: 400px;
266
- &.wpg-bnr-left {
267
- float: left;
268
- }
269
- &.wpg-bnr-right {
270
- float: right;
271
- }
272
- }
273
- .wpg-a-img {
274
- float: left;
275
- display: block;
276
- height: 100px;
277
- border: 1px solid darken($bg-redux-info, 30%);
278
- background-color: white;
279
- margin-right: 1em;
280
- img {
281
- width: 100px;
282
- }
283
- }
284
- .wpg-text-block {
285
- padding-top: 0.3em;
286
- .wpg-title {
287
- font-weight: 700;
288
- }
289
- .wpg-body {
290
- margin: 0.3em 0;
291
- }
292
- .wpg-footer {
293
- font-style: italic;
294
- }
295
- }
296
 
297
  }
 
298
  // @see customize.php
299
  .customize-controls-close.wpglobus-customize-selector:before {
300
- content: "";
301
  }
 
302
  .customize-controls-close.wpglobus-customize-selector .wpglobus-icon-globe:before {
303
- color: #00f;
304
- display: inline-block;
305
- font-family: dashicons;
306
- content: "\f319";
307
- font-size: 20px;
308
  }
 
309
  .wpglobus-customize-translatable-element, .wpglobus-customize-control, .wpglobus-customize-widget-control {
310
- border-left: 3px solid blue !important;
311
  }
 
312
  @media screen and (max-width: 640px) {
313
- .customize-controls-preview-toggle {
314
- left: 88px;
315
- }
316
  }
317
 
318
  // Fix Yoast help buttons. Because we wrap Yoast in jQ-UI tabs,
319
  // the style might be broken. Specifically, the "Types" plugin breaks it.
320
  .yoast_help.yoast-help-button.dashicons {
321
- font-family: dashicons !important;
322
- font-size: 20px !important;
323
  }
324
 
325
  // To highlight texts in admin area.
326
  .wpglobus-mark {
327
- font-weight: 700;
328
- &.wpglobus-warning {
329
- background-color: yellow;
330
- color: black;
331
- }
332
  }
333
 
334
  // To display admin language selector on narrow screens.
335
  @media screen and (max-width: 782px) {
336
- #wpadminbar li#wp-admin-bar-wpglobus-language-select {
337
- display: block;
338
- .ab-icon {
339
- margin-top: -3px;
340
- img {
341
- height: 25px;
342
- }
343
- }
344
- }
345
  }
346
 
347
  // --- EOF
3
  * @package WPGlobus
4
  */
5
 
6
+ @mixin dashicon-checkmark() {
7
+ content: "\f147";
8
  }
9
 
10
+ @mixin dashicon-triangle-right() {
11
+ content: "\f522";
12
  }
13
 
14
+ @mixin dashicon-globus() {
15
+ content: "\f319";
16
  }
17
 
18
  // To use in the Redux Sortable instead of elusive
19
+ @mixin dashicons-image-flip-vertical() {
20
+ content: "\f168";
21
  }
22
 
23
+ @mixin dashicons-move() {
24
+ content: "\f545";
25
  }
26
 
27
  #adminmenu li.toplevel_page_wpglobus_options div.wp-menu-image:before {
28
+ @include dashicon-globus();
29
  }
30
 
31
  .wpglobus-menu-item-box {
32
+ background-color: #e0e0e0;
33
+ padding-bottom: 20px;
34
  }
35
 
36
  .wpglobus-excerpt {
37
+ width: 98%;
38
+ height: 4em;
39
  }
40
 
41
  .widefat thead tr th.column-wpglobus_languages {
42
+ width: 7%;
43
  }
44
 
45
  //noinspection CssNoGenericFontName
46
+ @mixin dashicon() {
47
+ display: inline-block;
48
+ -webkit-font-smoothing: antialiased;
49
+ font-family: dashicons;
50
+ font-weight: 400;
51
+ font-style: normal;
52
+ text-decoration: inherit;
53
  }
54
 
55
  .wpglobus-switch .wpglobus-icon-globe:before {
56
+ @include dashicon();
57
+ @include dashicon-globus();
58
+ font-size: 20px;
59
+ vertical-align: text-bottom;
60
+ opacity: 0.6;
61
  }
62
 
63
  ul.wpglobus-checkmarks {
64
+ li:before {
65
+ @include dashicon();
66
+ @include dashicon-checkmark();
67
+ font-size: 2em;
68
+ vertical-align: top;
69
+ color: forestgreen;
70
+ }
71
+ li {
72
+ text-indent: -1em;
73
+ margin-left: 1.5em;
74
+ }
75
  }
76
 
77
  ul.wpglobus-important {
78
+ li:before {
79
+ @include dashicon();
80
+ @include dashicon-triangle-right();
81
+ font-size: 23px;
82
+ vertical-align: top;
83
+ color: darkred;
84
+ }
85
+ li {
86
+ text-indent: -14px;
87
+ margin-left: 24px;
88
+ }
89
  }
90
 
91
  .wpglobus-state-error {
92
+ border: 1px solid #f00 !important;
93
  }
94
 
95
  .wpglobus-post-status-info {
96
+ width: 100%;
97
+ border-spacing: 0;
98
+ border: 1px solid #e5e5e5;
99
+ border-top: none;
100
+ background-color: #f7f7f7;
101
+ -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
102
+ box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
103
+ z-index: 999;
104
+ td {
105
+ font-size: 12px;
106
+ }
107
+ .wpglobus-wp-word-count {
108
+ display: block;
109
+ padding: 2px 10px;
110
+ }
111
  }
112
 
113
  .wpglobus-wp-admin {
114
+ .wpglobus-translatable {
115
+ border-left: 3px solid blue !important;
116
+ }
117
+ .wpglobus-link-lock-icon {
118
+ cursor: not-allowed;
119
+ }
120
+ .wpglobus-link-trash-icon {
121
+ cursor: not-allowed;
122
+ }
123
+ .wpglobus-link-lock-icon:before {
124
+ font-family: dashicons;
125
+ font-weight: 400;
126
+ font-style: normal;
127
+ text-decoration: inherit;
128
+ content: "\f160";
129
+ font-size: 11px;
130
+ }
131
+ .wpglobus-link-open-icon:before {
132
+ font-family: dashicons;
133
+ font-weight: 400;
134
+ font-style: normal;
135
+ text-decoration: inherit;
136
+ content: "\f504";
137
+ font-size: 11px;
138
+ }
139
+ .wpglobus-link-trash-icon:before {
140
+ font-family: dashicons;
141
+ font-weight: 400;
142
+ font-style: normal;
143
+ text-decoration: inherit;
144
+ content: "\f182";
145
+ font-size: 11px;
146
+ }
147
+ .wpglobus-spinner {
148
+ background: url(images/spinner.gif) no-repeat;
149
+ -webkit-background-size: 20px 20px;
150
+ background-size: 20px 20px;
151
+ display: inline-block;
152
+ visibility: hidden;
153
+ float: right;
154
+ vertical-align: middle;
155
+ opacity: 0.7;
156
+ filter: alpha(opacity=70);
157
+ width: 20px;
158
+ height: 20px;
159
+ margin: 0;
160
+ }
161
 
162
  }
163
 
164
  /* @see #edit-slug-box */
165
  .wpglobus-edit-slug-box {
166
+ line-height: 24px;
167
+ min-height: 25px;
168
+ margin-top: 5px;
169
+ padding: 0 10px;
170
+ color: #666;
171
+ .wpglobus-editable-post-name {
172
+ background-color: #fffbcc;
173
+ }
174
+ .wpglobus-editable-post-name-full {
175
+ display: none;
176
+ }
177
+ /* @see #editable-post-name input */
178
+ .wpglobus-editable-post-name input {
179
+ font-size: 13px;
180
+ height: 22px;
181
+ margin-bottom: 0;
182
+ margin-left: 0;
183
+ margin-right: 0;
184
+ margin-top: 0;
185
+ width: 20em;
186
+ }
187
 
188
  }
189
 
192
 
193
  // @since 1.5.8 Use our styles only with our `wrap` class.
194
  .about-wrap.wpglobus-about-wrap {
195
+ .wpglobus-version {
196
+ color: $color-wpglobus-logo-globe;
197
+ font-size: 95%;
198
+ }
199
+
200
+ .wpglobus-motto {
201
+ font-style: italic;
202
+ }
203
+
204
+ .wpglobus-wp {
205
+ color: $color-wpglobus-logo-wp;
206
+ }
207
+
208
+ h1.wpglobus {
209
+ font-family: Georgia, serif;
210
+ font-variant: small-caps;
211
+ letter-spacing: 1.5px;
212
+ }
213
+
214
+ .wpglobus-stars {
215
+ color: $color-wpglobus-logo-globe;
216
+ }
217
+
218
+ // The `Customizr` theme breaks this by setting to "center".
219
+ // @since 1.5.8
220
+ .feature-section {
221
+ div {
222
+ text-align: left;
223
+ }
224
+ }
225
+
226
+ // @since 1.9.24 Display notices in our `.about-wrap`.
227
+ .notice {
228
+ display: block !important;
229
+ margin-right: 140px;
230
+ }
231
  }
232
 
233
  // Hide Redux annoyances
234
  .toplevel_page_wpglobus_options {
235
+ #redux-header, .redux-timer {
236
+ display: none;
237
+ }
238
  }
239
 
240
  // Use Dashicon instead of Elusive, because Elusive can be broken by a theme (ex. "Virtue")
241
  $color-wpglobus-icon-sortable: #2866a0;
242
  .toplevel_page_wpglobus_options {
243
+ .el-move::before {
244
+ @include dashicon();
245
+ @include dashicons-move();
246
+ border: 1px solid $color-wpglobus-icon-sortable;
247
+ color: $color-wpglobus-icon-sortable;
248
+ background-color: white;
249
+ margin: 0 3px 0 3px;
250
+ line-height: 1.2;
251
+ width: 1.5em;
252
+ text-align: center;
253
+ cursor: move;
254
+ }
255
  }
256
 
257
  // Options panel header
258
  // @see includes/options/wpglobus-options-header.php
259
  $bg-redux-info: #d3e4f4;
260
  .redux-container #redux-intro-text {
261
+ background-color: $bg-redux-info;
262
+ color: black;
263
+ h1 {
264
+ color: darken($bg-redux-info, 50%);
265
+ float: left;
266
+ width: 204px;
267
+ margin: 0;
268
+ padding: 0;
269
+ }
270
+ .wpg-bnr {
271
+ width: 400px;
272
+ &.wpg-bnr-left {
273
+ float: left;
274
+ }
275
+ &.wpg-bnr-right {
276
+ float: right;
277
+ }
278
+ }
279
+ .wpg-a-img {
280
+ float: left;
281
+ display: block;
282
+ height: 100px;
283
+ border: 1px solid darken($bg-redux-info, 30%);
284
+ background-color: white;
285
+ margin-right: 1em;
286
+ img {
287
+ width: 100px;
288
+ }
289
+ }
290
+ .wpg-text-block {
291
+ padding-top: 0.3em;
292
+ .wpg-title {
293
+ font-weight: 700;
294
+ }
295
+ .wpg-body {
296
+ margin: 0.3em 0;
297
+ }
298
+ .wpg-footer {
299
+ font-style: italic;
300
+ }
301
+ }
302
 
303
  }
304
+
305
  // @see customize.php
306
  .customize-controls-close.wpglobus-customize-selector:before {
307
+ content: "";
308
  }
309
+
310
  .customize-controls-close.wpglobus-customize-selector .wpglobus-icon-globe:before {
311
+ color: #00f;
312
+ display: inline-block;
313
+ font-family: dashicons;
314
+ content: "\f319";
315
+ font-size: 20px;
316
  }
317
+
318
  .wpglobus-customize-translatable-element, .wpglobus-customize-control, .wpglobus-customize-widget-control {
319
+ border-left: 3px solid blue !important;
320
  }
321
+
322
  @media screen and (max-width: 640px) {
323
+ .customize-controls-preview-toggle {
324
+ left: 88px;
325
+ }
326
  }
327
 
328
  // Fix Yoast help buttons. Because we wrap Yoast in jQ-UI tabs,
329
  // the style might be broken. Specifically, the "Types" plugin breaks it.
330
  .yoast_help.yoast-help-button.dashicons {
331
+ font-family: dashicons !important;
332
+ font-size: 20px !important;
333
  }
334
 
335
  // To highlight texts in admin area.
336
  .wpglobus-mark {
337
+ font-weight: 700;
338
+ &.wpglobus-warning {
339
+ background-color: yellow;
340
+ color: black;
341
+ }
342
  }
343
 
344
  // To display admin language selector on narrow screens.
345
  @media screen and (max-width: 782px) {
346
+ #wpadminbar li#wp-admin-bar-wpglobus-language-select {
347
+ display: block;
348
+ .ab-icon {
349
+ margin-top: -3px;
350
+ img {
351
+ height: 25px;
352
+ }
353
+ }
354
+ }
355
  }
356
 
357
  // --- EOF
includes/options/class-wpglobus-options.php CHANGED
@@ -658,7 +658,7 @@ class WPGlobus_Options {
658
  'wpglobus_id' => 'helpdesk',
659
  'title' => __( 'Help Desk', 'wpglobus' ),
660
  'tab_href' => WPGlobus_Admin_Page::url_helpdesk(),
661
- 'icon' => WPGlobus_Admin_HelpDesk::ICON_CLASS,
662
  'externalLink' => true,
663
  );
664
  }
658
  'wpglobus_id' => 'helpdesk',
659
  'title' => __( 'Help Desk', 'wpglobus' ),
660
  'tab_href' => WPGlobus_Admin_Page::url_helpdesk(),
661
+ 'icon' => WPGlobus_Admin_Page::nav_tab_icon( 'Helpdesk' ),
662
  'externalLink' => true,
663
  );
664
  }
languages/wpglobus-ar.po CHANGED
@@ -22,12 +22,12 @@ msgstr ""
22
  #: includes/admin/class-wpglobus-about.php:42,
23
  #: includes/admin/class-wpglobus-about.php:117,
24
  #: includes/admin/class-wpglobus-clean.php:600,
25
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
26
  msgid "Guide"
27
  msgstr "الدليل"
28
 
29
  #: includes/admin/central/class-wpglobus-admin-central.php:142,
30
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:44
31
  msgid "WPGlobus Help Desk"
32
  msgstr "WPGlobus دائرة المساعدة"
33
 
@@ -37,7 +37,7 @@ msgstr "WPGlobus دائرة المساعدة"
37
  #: includes/admin/class-wpglobus-clean.php:606,
38
  #: includes/admin/class-wpglobus-customize-options.php:1254,
39
  #: includes/admin/class-wpglobus-customize-options.php:1286,
40
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:31
41
  msgid "Add-ons"
42
  msgstr "الإضافات"
43
 
@@ -46,7 +46,7 @@ msgid "Quick Start"
46
  msgstr "بداية سريعة"
47
 
48
  #: includes/admin/class-wpglobus-about.php:48,
49
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
50
  msgid "FAQ"
51
  msgstr "أسئلة متداولة"
52
 
@@ -516,13 +516,11 @@ msgid ""
516
  msgstr ""
517
 
518
  #: includes/admin/class-wpglobus-customize-options.php:1360,
519
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69,
520
  #: includes/options/class-wpglobus-options.php:586
521
  msgid "Sincerely Yours,"
522
  msgstr ""
523
 
524
  #: includes/admin/class-wpglobus-customize-options.php:1362,
525
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:70,
526
  #: includes/options/class-wpglobus-options.php:588,
527
  #: includes/options/wpglobus-options-header.php:34
528
  msgid "The WPGlobus Team"
@@ -693,57 +691,81 @@ msgstr ""
693
  msgid "Installed"
694
  msgstr "مُثبت"
695
 
696
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:45,
697
  #: includes/options/class-wpglobus-options.php:659
698
  msgid "Help Desk"
699
  msgstr "طاولة المساعدة"
700
 
701
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:55
702
- msgid "Thank you for using WPGlobus!"
703
- msgstr "شكراً لك لإستعمال WPGlobus!"
704
-
705
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:56
706
- msgid "Our Support Team is here to answer your questions or concerns."
707
  msgstr ""
708
 
709
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:58
710
- msgid "Click here to open the Contact Form."
 
711
  msgstr ""
712
 
713
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:59
714
- msgid "Type in your name, email, subject and the detailed message."
715
  msgstr ""
716
 
717
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:60
718
- msgid ""
719
- "If you can make a screenshot demonstrating the problem, please attach it."
720
- msgstr ""
721
 
722
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:61
723
- msgid ""
724
- "Please note: we will receive some debug data together with your request. See "
725
- "the \"Technical Information\" table for the details."
726
  msgstr ""
727
 
728
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:63
729
  msgid "To help us serve you better:"
730
  msgstr ""
731
 
732
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:65
733
  msgid ""
734
  "Please check if the problem persists if you switch to a standard WordPress "
735
  "theme."
736
  msgstr ""
737
 
738
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:66
739
  msgid ""
740
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
741
  msgstr ""
742
 
743
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
744
  msgid "Technical Information"
745
  msgstr "المعلومات التقنية"
746
 
 
 
 
 
 
 
 
 
 
 
747
  #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:58
748
  msgid "WPGlobus Recommends:"
749
  msgstr ""
22
  #: includes/admin/class-wpglobus-about.php:42,
23
  #: includes/admin/class-wpglobus-about.php:117,
24
  #: includes/admin/class-wpglobus-clean.php:600,
25
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
26
  msgid "Guide"
27
  msgstr "الدليل"
28
 
29
  #: includes/admin/central/class-wpglobus-admin-central.php:142,
30
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:102
31
  msgid "WPGlobus Help Desk"
32
  msgstr "WPGlobus دائرة المساعدة"
33
 
37
  #: includes/admin/class-wpglobus-clean.php:606,
38
  #: includes/admin/class-wpglobus-customize-options.php:1254,
39
  #: includes/admin/class-wpglobus-customize-options.php:1286,
40
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
41
  msgid "Add-ons"
42
  msgstr "الإضافات"
43
 
46
  msgstr "بداية سريعة"
47
 
48
  #: includes/admin/class-wpglobus-about.php:48,
49
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:49
50
  msgid "FAQ"
51
  msgstr "أسئلة متداولة"
52
 
516
  msgstr ""
517
 
518
  #: includes/admin/class-wpglobus-customize-options.php:1360,
 
519
  #: includes/options/class-wpglobus-options.php:586
520
  msgid "Sincerely Yours,"
521
  msgstr ""
522
 
523
  #: includes/admin/class-wpglobus-customize-options.php:1362,
 
524
  #: includes/options/class-wpglobus-options.php:588,
525
  #: includes/options/wpglobus-options-header.php:34
526
  msgid "The WPGlobus Team"
691
  msgid "Installed"
692
  msgstr "مُثبت"
693
 
694
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:103,
695
  #: includes/options/class-wpglobus-options.php:659
696
  msgid "Help Desk"
697
  msgstr "طاولة المساعدة"
698
 
699
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:182
700
+ msgid "Email not sent. Please fill in the entire form."
 
 
 
 
701
  msgstr ""
702
 
703
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:192
704
+ msgid ""
705
+ "Email not sent. Please verify that your name and email are entered correctly."
706
  msgstr ""
707
 
708
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:213
709
+ msgid "Email sent."
710
  msgstr ""
711
 
712
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:68
713
+ msgid "Thank you for using WPGlobus!"
714
+ msgstr "شكراً لك لإستعمال WPGlobus!"
 
715
 
716
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69
717
+ msgid "Our Support Team is here to answer your questions or concerns."
 
 
718
  msgstr ""
719
 
720
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:71
721
  msgid "To help us serve you better:"
722
  msgstr ""
723
 
724
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
725
  msgid ""
726
  "Please check if the problem persists if you switch to a standard WordPress "
727
  "theme."
728
  msgstr ""
729
 
730
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:74
731
  msgid ""
732
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
733
  msgstr ""
734
 
735
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:77
736
+ msgid "Please fill in and submit the contact form:"
737
+ msgstr ""
738
+
739
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:97
740
+ msgid "Please make sure the email address is correct."
741
+ msgstr ""
742
+
743
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:103
744
+ msgid "Subject"
745
+ msgstr ""
746
+
747
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:108
748
+ msgid "Short description of the problem"
749
+ msgstr ""
750
+
751
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:113
752
+ msgid "Detailed description"
753
+ msgstr ""
754
+
755
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:120
756
  msgid "Technical Information"
757
  msgstr "المعلومات التقنية"
758
 
759
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:127
760
+ msgid "This information helps us to find the problem source"
761
+ msgstr ""
762
+
763
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:143
764
+ msgid ""
765
+ "Alternatively, please email %s. Do not forget to copy and paste the "
766
+ "technical information to your email message."
767
+ msgstr ""
768
+
769
  #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:58
770
  msgid "WPGlobus Recommends:"
771
  msgstr ""
languages/wpglobus-be.mo CHANGED
Binary file
languages/wpglobus-be.po CHANGED
@@ -22,12 +22,12 @@ msgstr ""
22
  #: includes/admin/class-wpglobus-about.php:42,
23
  #: includes/admin/class-wpglobus-about.php:117,
24
  #: includes/admin/class-wpglobus-clean.php:600,
25
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
26
  msgid "Guide"
27
  msgstr "Инструкция"
28
 
29
  #: includes/admin/central/class-wpglobus-admin-central.php:142,
30
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:44
31
  msgid "WPGlobus Help Desk"
32
  msgstr "Поддержка"
33
 
@@ -37,7 +37,7 @@ msgstr "Поддержка"
37
  #: includes/admin/class-wpglobus-clean.php:606,
38
  #: includes/admin/class-wpglobus-customize-options.php:1254,
39
  #: includes/admin/class-wpglobus-customize-options.php:1286,
40
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:31
41
  msgid "Add-ons"
42
  msgstr "Расширения"
43
 
@@ -46,7 +46,7 @@ msgid "Quick Start"
46
  msgstr "Быстрый Старт"
47
 
48
  #: includes/admin/class-wpglobus-about.php:48,
49
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
50
  msgid "FAQ"
51
  msgstr "ЧаВо"
52
 
@@ -553,13 +553,11 @@ msgstr ""
553
  "поддержкой."
554
 
555
  #: includes/admin/class-wpglobus-customize-options.php:1360,
556
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69,
557
  #: includes/options/class-wpglobus-options.php:586
558
  msgid "Sincerely Yours,"
559
  msgstr "С Уважением,"
560
 
561
  #: includes/admin/class-wpglobus-customize-options.php:1362,
562
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:70,
563
  #: includes/options/class-wpglobus-options.php:588,
564
  #: includes/options/wpglobus-options-header.php:34
565
  msgid "The WPGlobus Team"
@@ -740,47 +738,37 @@ msgstr "Платное расширение"
740
  msgid "Installed"
741
  msgstr "Установлен"
742
 
743
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:45,
744
  #: includes/options/class-wpglobus-options.php:659
745
  msgid "Help Desk"
746
  msgstr "Поддержка"
747
 
748
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:55
749
- msgid "Thank you for using WPGlobus!"
750
- msgstr "Спасибо за то, что Вы выбрали WPGlobus!"
751
-
752
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:56
753
- msgid "Our Support Team is here to answer your questions or concerns."
754
- msgstr "Наша Служба Поддержки постарается ответить на любой из Ваших вопросов."
755
-
756
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:58
757
- msgid "Click here to open the Contact Form."
758
  msgstr ""
759
 
760
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:59
761
- msgid "Type in your name, email, subject and the detailed message."
762
- msgstr "Введите Ваше имя, почту, тему и подробное сообщение."
763
-
764
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:60
765
  msgid ""
766
- "If you can make a screenshot demonstrating the problem, please attach it."
767
  msgstr ""
768
- "Если Вы можете сделать скриншот, демонстрирующий проблему, пожалуйста, "
769
- "присоедините его."
770
 
771
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:61
772
- msgid ""
773
- "Please note: we will receive some debug data together with your request. See "
774
- "the \"Technical Information\" table for the details."
775
  msgstr ""
776
- "Внимание: вместе с Вашим сообщением мы получим некоторые технические данные "
777
- "о Вашем сайте. Детали - смотрите в таблице."
778
 
779
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:63
 
 
 
 
 
 
 
 
780
  msgid "To help us serve you better:"
781
  msgstr "Чтобы ускорить поиск решения Вашей проблемы:"
782
 
783
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:65
784
  msgid ""
785
  "Please check if the problem persists if you switch to a standard WordPress "
786
  "theme."
@@ -788,17 +776,47 @@ msgstr ""
788
  "Пожалуйста, убедитесь, что проблема сохраняется, если Вы переключитесь на "
789
  "стандартную тему ВордПресс."
790
 
791
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:66
792
  msgid ""
793
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
794
  msgstr ""
795
  "Попробуйте деактивировать плагины, чтобы убедиться, не конфликтует ли какой-"
796
  "то из них с WPGlobus."
797
 
798
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
799
  msgid "Technical Information"
800
  msgstr "Техническая информация"
801
 
 
 
 
 
 
 
 
 
 
 
802
  #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:58
803
  msgid "WPGlobus Recommends:"
804
  msgstr "WPGlobus рекомендует:"
@@ -1450,3 +1468,19 @@ msgstr ""
1450
  #: wpglobus.php:19
1451
  msgid "https://wpglobus.com/"
1452
  msgstr "https://wpglobus.com/ru/"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
22
  #: includes/admin/class-wpglobus-about.php:42,
23
  #: includes/admin/class-wpglobus-about.php:117,
24
  #: includes/admin/class-wpglobus-clean.php:600,
25
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
26
  msgid "Guide"
27
  msgstr "Инструкция"
28
 
29
  #: includes/admin/central/class-wpglobus-admin-central.php:142,
30
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:102
31
  msgid "WPGlobus Help Desk"
32
  msgstr "Поддержка"
33
 
37
  #: includes/admin/class-wpglobus-clean.php:606,
38
  #: includes/admin/class-wpglobus-customize-options.php:1254,
39
  #: includes/admin/class-wpglobus-customize-options.php:1286,
40
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
41
  msgid "Add-ons"
42
  msgstr "Расширения"
43
 
46
  msgstr "Быстрый Старт"
47
 
48
  #: includes/admin/class-wpglobus-about.php:48,
49
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:49
50
  msgid "FAQ"
51
  msgstr "ЧаВо"
52
 
553
  "поддержкой."
554
 
555
  #: includes/admin/class-wpglobus-customize-options.php:1360,
 
556
  #: includes/options/class-wpglobus-options.php:586
557
  msgid "Sincerely Yours,"
558
  msgstr "С Уважением,"
559
 
560
  #: includes/admin/class-wpglobus-customize-options.php:1362,
 
561
  #: includes/options/class-wpglobus-options.php:588,
562
  #: includes/options/wpglobus-options-header.php:34
563
  msgid "The WPGlobus Team"
738
  msgid "Installed"
739
  msgstr "Установлен"
740
 
741
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:103,
742
  #: includes/options/class-wpglobus-options.php:659
743
  msgid "Help Desk"
744
  msgstr "Поддержка"
745
 
746
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:182
747
+ msgid "Email not sent. Please fill in the entire form."
 
 
 
 
 
 
 
 
748
  msgstr ""
749
 
750
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:192
 
 
 
 
751
  msgid ""
752
+ "Email not sent. Please verify that your name and email are entered correctly."
753
  msgstr ""
 
 
754
 
755
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:213
756
+ msgid "Email sent."
 
 
757
  msgstr ""
 
 
758
 
759
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:68
760
+ msgid "Thank you for using WPGlobus!"
761
+ msgstr "Спасибо за то, что Вы выбрали WPGlobus!"
762
+
763
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69
764
+ msgid "Our Support Team is here to answer your questions or concerns."
765
+ msgstr "Наша Служба Поддержки постарается ответить на любой из Ваших вопросов."
766
+
767
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:71
768
  msgid "To help us serve you better:"
769
  msgstr "Чтобы ускорить поиск решения Вашей проблемы:"
770
 
771
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
772
  msgid ""
773
  "Please check if the problem persists if you switch to a standard WordPress "
774
  "theme."
776
  "Пожалуйста, убедитесь, что проблема сохраняется, если Вы переключитесь на "
777
  "стандартную тему ВордПресс."
778
 
779
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:74
780
  msgid ""
781
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
782
  msgstr ""
783
  "Попробуйте деактивировать плагины, чтобы убедиться, не конфликтует ли какой-"
784
  "то из них с WPGlobus."
785
 
786
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:77
787
+ msgid "Please fill in and submit the contact form:"
788
+ msgstr ""
789
+
790
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:97
791
+ msgid "Please make sure the email address is correct."
792
+ msgstr ""
793
+
794
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:103
795
+ msgid "Subject"
796
+ msgstr ""
797
+
798
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:108
799
+ msgid "Short description of the problem"
800
+ msgstr ""
801
+
802
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:113
803
+ msgid "Detailed description"
804
+ msgstr ""
805
+
806
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:120
807
  msgid "Technical Information"
808
  msgstr "Техническая информация"
809
 
810
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:127
811
+ msgid "This information helps us to find the problem source"
812
+ msgstr ""
813
+
814
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:143
815
+ msgid ""
816
+ "Alternatively, please email %s. Do not forget to copy and paste the "
817
+ "technical information to your email message."
818
+ msgstr ""
819
+
820
  #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:58
821
  msgid "WPGlobus Recommends:"
822
  msgstr "WPGlobus рекомендует:"
1468
  #: wpglobus.php:19
1469
  msgid "https://wpglobus.com/"
1470
  msgstr "https://wpglobus.com/ru/"
1471
+
1472
+ #~ msgid "Type in your name, email, subject and the detailed message."
1473
+ #~ msgstr "Введите Ваше имя, почту, тему и подробное сообщение."
1474
+
1475
+ #~ msgid ""
1476
+ #~ "If you can make a screenshot demonstrating the problem, please attach it."
1477
+ #~ msgstr ""
1478
+ #~ "Если Вы можете сделать скриншот, демонстрирующий проблему, пожалуйста, "
1479
+ #~ "присоедините его."
1480
+
1481
+ #~ msgid ""
1482
+ #~ "Please note: we will receive some debug data together with your request. "
1483
+ #~ "See the \"Technical Information\" table for the details."
1484
+ #~ msgstr ""
1485
+ #~ "Внимание: вместе с Вашим сообщением мы получим некоторые технические "
1486
+ #~ "данные о Вашем сайте. Детали - смотрите в таблице."
languages/wpglobus-bg_BG.po CHANGED
@@ -19,12 +19,12 @@ msgstr ""
19
  #: includes/admin/class-wpglobus-about.php:42,
20
  #: includes/admin/class-wpglobus-about.php:117,
21
  #: includes/admin/class-wpglobus-clean.php:600,
22
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
23
  msgid "Guide"
24
  msgstr ""
25
 
26
  #: includes/admin/central/class-wpglobus-admin-central.php:142,
27
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:44
28
  msgid "WPGlobus Help Desk"
29
  msgstr ""
30
 
@@ -34,7 +34,7 @@ msgstr ""
34
  #: includes/admin/class-wpglobus-clean.php:606,
35
  #: includes/admin/class-wpglobus-customize-options.php:1254,
36
  #: includes/admin/class-wpglobus-customize-options.php:1286,
37
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:31
38
  msgid "Add-ons"
39
  msgstr ""
40
 
@@ -43,7 +43,7 @@ msgid "Quick Start"
43
  msgstr ""
44
 
45
  #: includes/admin/class-wpglobus-about.php:48,
46
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
47
  msgid "FAQ"
48
  msgstr ""
49
 
@@ -492,13 +492,11 @@ msgid ""
492
  msgstr ""
493
 
494
  #: includes/admin/class-wpglobus-customize-options.php:1360,
495
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69,
496
  #: includes/options/class-wpglobus-options.php:586
497
  msgid "Sincerely Yours,"
498
  msgstr ""
499
 
500
  #: includes/admin/class-wpglobus-customize-options.php:1362,
501
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:70,
502
  #: includes/options/class-wpglobus-options.php:588,
503
  #: includes/options/wpglobus-options-header.php:34
504
  msgid "The WPGlobus Team"
@@ -669,57 +667,81 @@ msgstr ""
669
  msgid "Installed"
670
  msgstr ""
671
 
672
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:45,
673
  #: includes/options/class-wpglobus-options.php:659
674
  msgid "Help Desk"
675
  msgstr ""
676
 
677
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:55
678
- msgid "Thank you for using WPGlobus!"
679
- msgstr ""
680
-
681
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:56
682
- msgid "Our Support Team is here to answer your questions or concerns."
683
  msgstr ""
684
 
685
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:58
686
- msgid "Click here to open the Contact Form."
 
687
  msgstr ""
688
 
689
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:59
690
- msgid "Type in your name, email, subject and the detailed message."
691
  msgstr ""
692
 
693
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:60
694
- msgid ""
695
- "If you can make a screenshot demonstrating the problem, please attach it."
696
  msgstr ""
697
 
698
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:61
699
- msgid ""
700
- "Please note: we will receive some debug data together with your request. See "
701
- "the \"Technical Information\" table for the details."
702
  msgstr ""
703
 
704
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:63
705
  msgid "To help us serve you better:"
706
  msgstr ""
707
 
708
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:65
709
  msgid ""
710
  "Please check if the problem persists if you switch to a standard WordPress "
711
  "theme."
712
  msgstr ""
713
 
714
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:66
715
  msgid ""
716
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
717
  msgstr ""
718
 
719
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
720
  msgid "Technical Information"
721
  msgstr ""
722
 
 
 
 
 
 
 
 
 
 
 
723
  #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:58
724
  msgid "WPGlobus Recommends:"
725
  msgstr ""
19
  #: includes/admin/class-wpglobus-about.php:42,
20
  #: includes/admin/class-wpglobus-about.php:117,
21
  #: includes/admin/class-wpglobus-clean.php:600,
22
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
23
  msgid "Guide"
24
  msgstr ""
25
 
26
  #: includes/admin/central/class-wpglobus-admin-central.php:142,
27
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:102
28
  msgid "WPGlobus Help Desk"
29
  msgstr ""
30
 
34
  #: includes/admin/class-wpglobus-clean.php:606,
35
  #: includes/admin/class-wpglobus-customize-options.php:1254,
36
  #: includes/admin/class-wpglobus-customize-options.php:1286,
37
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
38
  msgid "Add-ons"
39
  msgstr ""
40
 
43
  msgstr ""
44
 
45
  #: includes/admin/class-wpglobus-about.php:48,
46
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:49
47
  msgid "FAQ"
48
  msgstr ""
49
 
492
  msgstr ""
493
 
494
  #: includes/admin/class-wpglobus-customize-options.php:1360,
 
495
  #: includes/options/class-wpglobus-options.php:586
496
  msgid "Sincerely Yours,"
497
  msgstr ""
498
 
499
  #: includes/admin/class-wpglobus-customize-options.php:1362,
 
500
  #: includes/options/class-wpglobus-options.php:588,
501
  #: includes/options/wpglobus-options-header.php:34
502
  msgid "The WPGlobus Team"
667
  msgid "Installed"
668
  msgstr ""
669
 
670
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:103,
671
  #: includes/options/class-wpglobus-options.php:659
672
  msgid "Help Desk"
673
  msgstr ""
674
 
675
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:182
676
+ msgid "Email not sent. Please fill in the entire form."
 
 
 
 
677
  msgstr ""
678
 
679
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:192
680
+ msgid ""
681
+ "Email not sent. Please verify that your name and email are entered correctly."
682
  msgstr ""
683
 
684
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:213
685
+ msgid "Email sent."
686
  msgstr ""
687
 
688
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:68
689
+ msgid "Thank you for using WPGlobus!"
 
690
  msgstr ""
691
 
692
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69
693
+ msgid "Our Support Team is here to answer your questions or concerns."
 
 
694
  msgstr ""
695
 
696
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:71
697
  msgid "To help us serve you better:"
698
  msgstr ""
699
 
700
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
701
  msgid ""
702
  "Please check if the problem persists if you switch to a standard WordPress "
703
  "theme."
704
  msgstr ""
705
 
706
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:74
707
  msgid ""
708
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
709
  msgstr ""
710
 
711
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:77
712
+ msgid "Please fill in and submit the contact form:"
713
+ msgstr ""
714
+
715
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:97
716
+ msgid "Please make sure the email address is correct."
717
+ msgstr ""
718
+
719
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:103
720
+ msgid "Subject"
721
+ msgstr ""
722
+
723
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:108
724
+ msgid "Short description of the problem"
725
+ msgstr ""
726
+
727
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:113
728
+ msgid "Detailed description"
729
+ msgstr ""
730
+
731
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:120
732
  msgid "Technical Information"
733
  msgstr ""
734
 
735
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:127
736
+ msgid "This information helps us to find the problem source"
737
+ msgstr ""
738
+
739
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:143
740
+ msgid ""
741
+ "Alternatively, please email %s. Do not forget to copy and paste the "
742
+ "technical information to your email message."
743
+ msgstr ""
744
+
745
  #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:58
746
  msgid "WPGlobus Recommends:"
747
  msgstr ""
languages/wpglobus-de_CH.po CHANGED
@@ -22,12 +22,12 @@ msgstr ""
22
  #: includes/admin/class-wpglobus-about.php:42,
23
  #: includes/admin/class-wpglobus-about.php:117,
24
  #: includes/admin/class-wpglobus-clean.php:600,
25
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
26
  msgid "Guide"
27
  msgstr "Anleitung"
28
 
29
  #: includes/admin/central/class-wpglobus-admin-central.php:142,
30
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:44
31
  msgid "WPGlobus Help Desk"
32
  msgstr ""
33
 
@@ -37,7 +37,7 @@ msgstr ""
37
  #: includes/admin/class-wpglobus-clean.php:606,
38
  #: includes/admin/class-wpglobus-customize-options.php:1254,
39
  #: includes/admin/class-wpglobus-customize-options.php:1286,
40
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:31
41
  msgid "Add-ons"
42
  msgstr "Add-ons"
43
 
@@ -46,7 +46,7 @@ msgid "Quick Start"
46
  msgstr "Schnell-Start"
47
 
48
  #: includes/admin/class-wpglobus-about.php:48,
49
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
50
  msgid "FAQ"
51
  msgstr "FAQ"
52
 
@@ -524,13 +524,11 @@ msgstr ""
524
  "uns Ihnen zu helfen."
525
 
526
  #: includes/admin/class-wpglobus-customize-options.php:1360,
527
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69,
528
  #: includes/options/class-wpglobus-options.php:586
529
  msgid "Sincerely Yours,"
530
  msgstr "Mit freundlichen Grüßen,"
531
 
532
  #: includes/admin/class-wpglobus-customize-options.php:1362,
533
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:70,
534
  #: includes/options/class-wpglobus-options.php:588,
535
  #: includes/options/wpglobus-options-header.php:34
536
  msgid "The WPGlobus Team"
@@ -705,57 +703,81 @@ msgstr ""
705
  msgid "Installed"
706
  msgstr "Instaliert"
707
 
708
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:45,
709
  #: includes/options/class-wpglobus-options.php:659
710
  msgid "Help Desk"
711
  msgstr ""
712
 
713
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:55
714
- msgid "Thank you for using WPGlobus!"
715
- msgstr ""
716
-
717
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:56
718
- msgid "Our Support Team is here to answer your questions or concerns."
719
  msgstr ""
720
 
721
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:58
722
- msgid "Click here to open the Contact Form."
 
723
  msgstr ""
724
 
725
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:59
726
- msgid "Type in your name, email, subject and the detailed message."
727
  msgstr ""
728
 
729
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:60
730
- msgid ""
731
- "If you can make a screenshot demonstrating the problem, please attach it."
732
  msgstr ""
733
 
734
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:61
735
- msgid ""
736
- "Please note: we will receive some debug data together with your request. See "
737
- "the \"Technical Information\" table for the details."
738
  msgstr ""
739
 
740
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:63
741
  msgid "To help us serve you better:"
742
  msgstr ""
743
 
744
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:65
745
  msgid ""
746
  "Please check if the problem persists if you switch to a standard WordPress "
747
  "theme."
748
  msgstr ""
749
 
750
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:66
751
  msgid ""
752
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
753
  msgstr ""
754
 
755
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
756
  msgid "Technical Information"
757
  msgstr "Systeminformationen"
758
 
 
 
 
 
 
 
 
 
 
 
759
  #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:58
760
  msgid "WPGlobus Recommends:"
761
  msgstr ""
22
  #: includes/admin/class-wpglobus-about.php:42,
23
  #: includes/admin/class-wpglobus-about.php:117,
24
  #: includes/admin/class-wpglobus-clean.php:600,
25
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
26
  msgid "Guide"
27
  msgstr "Anleitung"
28
 
29
  #: includes/admin/central/class-wpglobus-admin-central.php:142,
30
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:102
31
  msgid "WPGlobus Help Desk"
32
  msgstr ""
33
 
37
  #: includes/admin/class-wpglobus-clean.php:606,
38
  #: includes/admin/class-wpglobus-customize-options.php:1254,
39
  #: includes/admin/class-wpglobus-customize-options.php:1286,
40
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
41
  msgid "Add-ons"
42
  msgstr "Add-ons"
43
 
46
  msgstr "Schnell-Start"
47
 
48
  #: includes/admin/class-wpglobus-about.php:48,
49
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:49
50
  msgid "FAQ"
51
  msgstr "FAQ"
52
 
524
  "uns Ihnen zu helfen."
525
 
526
  #: includes/admin/class-wpglobus-customize-options.php:1360,
 
527
  #: includes/options/class-wpglobus-options.php:586
528
  msgid "Sincerely Yours,"
529
  msgstr "Mit freundlichen Grüßen,"
530
 
531
  #: includes/admin/class-wpglobus-customize-options.php:1362,
 
532
  #: includes/options/class-wpglobus-options.php:588,
533
  #: includes/options/wpglobus-options-header.php:34
534
  msgid "The WPGlobus Team"
703
  msgid "Installed"
704
  msgstr "Instaliert"
705
 
706
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:103,
707
  #: includes/options/class-wpglobus-options.php:659
708
  msgid "Help Desk"
709
  msgstr ""
710
 
711
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:182
712
+ msgid "Email not sent. Please fill in the entire form."
 
 
 
 
713
  msgstr ""
714
 
715
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:192
716
+ msgid ""
717
+ "Email not sent. Please verify that your name and email are entered correctly."
718
  msgstr ""
719
 
720
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:213
721
+ msgid "Email sent."
722
  msgstr ""
723
 
724
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:68
725
+ msgid "Thank you for using WPGlobus!"
 
726
  msgstr ""
727
 
728
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69
729
+ msgid "Our Support Team is here to answer your questions or concerns."
 
 
730
  msgstr ""
731
 
732
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:71
733
  msgid "To help us serve you better:"
734
  msgstr ""
735
 
736
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
737
  msgid ""
738
  "Please check if the problem persists if you switch to a standard WordPress "
739
  "theme."
740
  msgstr ""
741
 
742
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:74
743
  msgid ""
744
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
745
  msgstr ""
746
 
747
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:77
748
+ msgid "Please fill in and submit the contact form:"
749
+ msgstr ""
750
+
751
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:97
752
+ msgid "Please make sure the email address is correct."
753
+ msgstr ""
754
+
755
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:103
756
+ msgid "Subject"
757
+ msgstr ""
758
+
759
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:108
760
+ msgid "Short description of the problem"
761
+ msgstr ""
762
+
763
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:113
764
+ msgid "Detailed description"
765
+ msgstr ""
766
+
767
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:120
768
  msgid "Technical Information"
769
  msgstr "Systeminformationen"
770
 
771
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:127
772
+ msgid "This information helps us to find the problem source"
773
+ msgstr ""
774
+
775
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:143
776
+ msgid ""
777
+ "Alternatively, please email %s. Do not forget to copy and paste the "
778
+ "technical information to your email message."
779
+ msgstr ""
780
+
781
  #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:58
782
  msgid "WPGlobus Recommends:"
783
  msgstr ""
languages/wpglobus-de_DE.po CHANGED
@@ -21,12 +21,12 @@ msgstr ""
21
  #: includes/admin/class-wpglobus-about.php:42,
22
  #: includes/admin/class-wpglobus-about.php:117,
23
  #: includes/admin/class-wpglobus-clean.php:600,
24
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
25
  msgid "Guide"
26
  msgstr "Anleitung"
27
 
28
  #: includes/admin/central/class-wpglobus-admin-central.php:142,
29
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:44
30
  msgid "WPGlobus Help Desk"
31
  msgstr ""
32
 
@@ -36,7 +36,7 @@ msgstr ""
36
  #: includes/admin/class-wpglobus-clean.php:606,
37
  #: includes/admin/class-wpglobus-customize-options.php:1254,
38
  #: includes/admin/class-wpglobus-customize-options.php:1286,
39
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:31
40
  msgid "Add-ons"
41
  msgstr "Add-ons"
42
 
@@ -45,7 +45,7 @@ msgid "Quick Start"
45
  msgstr "Schnell-Start"
46
 
47
  #: includes/admin/class-wpglobus-about.php:48,
48
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
49
  msgid "FAQ"
50
  msgstr "FAQ"
51
 
@@ -523,13 +523,11 @@ msgstr ""
523
  "uns Ihnen zu helfen."
524
 
525
  #: includes/admin/class-wpglobus-customize-options.php:1360,
526
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69,
527
  #: includes/options/class-wpglobus-options.php:586
528
  msgid "Sincerely Yours,"
529
  msgstr "Mit freundlichen Grüßen,"
530
 
531
  #: includes/admin/class-wpglobus-customize-options.php:1362,
532
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:70,
533
  #: includes/options/class-wpglobus-options.php:588,
534
  #: includes/options/wpglobus-options-header.php:34
535
  msgid "The WPGlobus Team"
@@ -704,57 +702,81 @@ msgstr ""
704
  msgid "Installed"
705
  msgstr "Instaliert"
706
 
707
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:45,
708
  #: includes/options/class-wpglobus-options.php:659
709
  msgid "Help Desk"
710
  msgstr ""
711
 
712
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:55
713
- msgid "Thank you for using WPGlobus!"
714
- msgstr ""
715
-
716
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:56
717
- msgid "Our Support Team is here to answer your questions or concerns."
718
  msgstr ""
719
 
720
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:58
721
- msgid "Click here to open the Contact Form."
 
722
  msgstr ""
723
 
724
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:59
725
- msgid "Type in your name, email, subject and the detailed message."
726
  msgstr ""
727
 
728
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:60
729
- msgid ""
730
- "If you can make a screenshot demonstrating the problem, please attach it."
731
  msgstr ""
732
 
733
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:61
734
- msgid ""
735
- "Please note: we will receive some debug data together with your request. See "
736
- "the \"Technical Information\" table for the details."
737
  msgstr ""
738
 
739
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:63
740
  msgid "To help us serve you better:"
741
  msgstr ""
742
 
743
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:65
744
  msgid ""
745
  "Please check if the problem persists if you switch to a standard WordPress "
746
  "theme."
747
  msgstr ""
748
 
749
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:66
750
  msgid ""
751
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
752
  msgstr ""
753
 
754
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
755
  msgid "Technical Information"
756
  msgstr "Systeminformationen"
757
 
 
 
 
 
 
 
 
 
 
 
758
  #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:58
759
  msgid "WPGlobus Recommends:"
760
  msgstr ""
21
  #: includes/admin/class-wpglobus-about.php:42,
22
  #: includes/admin/class-wpglobus-about.php:117,
23
  #: includes/admin/class-wpglobus-clean.php:600,
24
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
25
  msgid "Guide"
26
  msgstr "Anleitung"
27
 
28
  #: includes/admin/central/class-wpglobus-admin-central.php:142,
29
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:102
30
  msgid "WPGlobus Help Desk"
31
  msgstr ""
32
 
36
  #: includes/admin/class-wpglobus-clean.php:606,
37
  #: includes/admin/class-wpglobus-customize-options.php:1254,
38
  #: includes/admin/class-wpglobus-customize-options.php:1286,
39
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
40
  msgid "Add-ons"
41
  msgstr "Add-ons"
42
 
45
  msgstr "Schnell-Start"
46
 
47
  #: includes/admin/class-wpglobus-about.php:48,
48
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:49
49
  msgid "FAQ"
50
  msgstr "FAQ"
51
 
523
  "uns Ihnen zu helfen."
524
 
525
  #: includes/admin/class-wpglobus-customize-options.php:1360,
 
526
  #: includes/options/class-wpglobus-options.php:586
527
  msgid "Sincerely Yours,"
528
  msgstr "Mit freundlichen Grüßen,"
529
 
530
  #: includes/admin/class-wpglobus-customize-options.php:1362,
 
531
  #: includes/options/class-wpglobus-options.php:588,
532
  #: includes/options/wpglobus-options-header.php:34
533
  msgid "The WPGlobus Team"
702
  msgid "Installed"
703
  msgstr "Instaliert"
704
 
705
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:103,
706
  #: includes/options/class-wpglobus-options.php:659
707
  msgid "Help Desk"
708
  msgstr ""
709
 
710
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:182
711
+ msgid "Email not sent. Please fill in the entire form."
 
 
 
 
712
  msgstr ""
713
 
714
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:192
715
+ msgid ""
716
+ "Email not sent. Please verify that your name and email are entered correctly."
717
  msgstr ""
718
 
719
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:213
720
+ msgid "Email sent."
721
  msgstr ""
722
 
723
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:68
724
+ msgid "Thank you for using WPGlobus!"
 
725
  msgstr ""
726
 
727
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69
728
+ msgid "Our Support Team is here to answer your questions or concerns."
 
 
729
  msgstr ""
730
 
731
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:71
732
  msgid "To help us serve you better:"
733
  msgstr ""
734
 
735
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
736
  msgid ""
737
  "Please check if the problem persists if you switch to a standard WordPress "
738
  "theme."
739
  msgstr ""
740
 
741
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:74
742
  msgid ""
743
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
744
  msgstr ""
745
 
746
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:77
747
+ msgid "Please fill in and submit the contact form:"
748
+ msgstr ""
749
+
750
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:97
751
+ msgid "Please make sure the email address is correct."
752
+ msgstr ""
753
+
754
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:103
755
+ msgid "Subject"
756
+ msgstr ""
757
+
758
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:108
759
+ msgid "Short description of the problem"
760
+ msgstr ""
761
+
762
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:113
763
+ msgid "Detailed description"
764
+ msgstr ""
765
+
766
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:120
767
  msgid "Technical Information"
768
  msgstr "Systeminformationen"
769
 
770
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:127
771
+ msgid "This information helps us to find the problem source"
772
+ msgstr ""
773
+
774
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:143
775
+ msgid ""
776
+ "Alternatively, please email %s. Do not forget to copy and paste the "
777
+ "technical information to your email message."
778
+ msgstr ""
779
+
780
  #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:58
781
  msgid "WPGlobus Recommends:"
782
  msgstr ""
languages/wpglobus-el.po CHANGED
@@ -20,12 +20,12 @@ msgstr ""
20
  #: includes/admin/class-wpglobus-about.php:42,
21
  #: includes/admin/class-wpglobus-about.php:117,
22
  #: includes/admin/class-wpglobus-clean.php:600,
23
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
24
  msgid "Guide"
25
  msgstr ""
26
 
27
  #: includes/admin/central/class-wpglobus-admin-central.php:142,
28
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:44
29
  msgid "WPGlobus Help Desk"
30
  msgstr ""
31
 
@@ -35,7 +35,7 @@ msgstr ""
35
  #: includes/admin/class-wpglobus-clean.php:606,
36
  #: includes/admin/class-wpglobus-customize-options.php:1254,
37
  #: includes/admin/class-wpglobus-customize-options.php:1286,
38
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:31
39
  msgid "Add-ons"
40
  msgstr ""
41
 
@@ -44,7 +44,7 @@ msgid "Quick Start"
44
  msgstr ""
45
 
46
  #: includes/admin/class-wpglobus-about.php:48,
47
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
48
  msgid "FAQ"
49
  msgstr ""
50
 
@@ -493,13 +493,11 @@ msgid ""
493
  msgstr ""
494
 
495
  #: includes/admin/class-wpglobus-customize-options.php:1360,
496
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69,
497
  #: includes/options/class-wpglobus-options.php:586
498
  msgid "Sincerely Yours,"
499
  msgstr ""
500
 
501
  #: includes/admin/class-wpglobus-customize-options.php:1362,
502
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:70,
503
  #: includes/options/class-wpglobus-options.php:588,
504
  #: includes/options/wpglobus-options-header.php:34
505
  msgid "The WPGlobus Team"
@@ -670,57 +668,81 @@ msgstr ""
670
  msgid "Installed"
671
  msgstr ""
672
 
673
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:45,
674
  #: includes/options/class-wpglobus-options.php:659
675
  msgid "Help Desk"
676
  msgstr ""
677
 
678
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:55
679
- msgid "Thank you for using WPGlobus!"
680
- msgstr ""
681
-
682
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:56
683
- msgid "Our Support Team is here to answer your questions or concerns."
684
  msgstr ""
685
 
686
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:58
687
- msgid "Click here to open the Contact Form."
 
688
  msgstr ""
689
 
690
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:59
691
- msgid "Type in your name, email, subject and the detailed message."
692
  msgstr ""
693
 
694
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:60
695
- msgid ""
696
- "If you can make a screenshot demonstrating the problem, please attach it."
697
  msgstr ""
698
 
699
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:61
700
- msgid ""
701
- "Please note: we will receive some debug data together with your request. See "
702
- "the \"Technical Information\" table for the details."
703
  msgstr ""
704
 
705
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:63
706
  msgid "To help us serve you better:"
707
  msgstr ""
708
 
709
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:65
710
  msgid ""
711
  "Please check if the problem persists if you switch to a standard WordPress "
712
  "theme."
713
  msgstr ""
714
 
715
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:66
716
  msgid ""
717
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
718
  msgstr ""
719
 
720
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
721
  msgid "Technical Information"
722
  msgstr ""
723
 
 
 
 
 
 
 
 
 
 
 
724
  #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:58
725
  msgid "WPGlobus Recommends:"
726
  msgstr ""
20
  #: includes/admin/class-wpglobus-about.php:42,
21
  #: includes/admin/class-wpglobus-about.php:117,
22
  #: includes/admin/class-wpglobus-clean.php:600,
23
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
24
  msgid "Guide"
25
  msgstr ""
26
 
27
  #: includes/admin/central/class-wpglobus-admin-central.php:142,
28
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:102
29
  msgid "WPGlobus Help Desk"
30
  msgstr ""
31
 
35
  #: includes/admin/class-wpglobus-clean.php:606,
36
  #: includes/admin/class-wpglobus-customize-options.php:1254,
37
  #: includes/admin/class-wpglobus-customize-options.php:1286,
38
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
39
  msgid "Add-ons"
40
  msgstr ""
41
 
44
  msgstr ""
45
 
46
  #: includes/admin/class-wpglobus-about.php:48,
47
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:49
48
  msgid "FAQ"
49
  msgstr ""
50
 
493
  msgstr ""
494
 
495
  #: includes/admin/class-wpglobus-customize-options.php:1360,
 
496
  #: includes/options/class-wpglobus-options.php:586
497
  msgid "Sincerely Yours,"
498
  msgstr ""
499
 
500
  #: includes/admin/class-wpglobus-customize-options.php:1362,
 
501
  #: includes/options/class-wpglobus-options.php:588,
502
  #: includes/options/wpglobus-options-header.php:34
503
  msgid "The WPGlobus Team"
668
  msgid "Installed"
669
  msgstr ""
670
 
671
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:103,
672
  #: includes/options/class-wpglobus-options.php:659
673
  msgid "Help Desk"
674
  msgstr ""
675
 
676
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:182
677
+ msgid "Email not sent. Please fill in the entire form."
 
 
 
 
678
  msgstr ""
679
 
680
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:192
681
+ msgid ""
682
+ "Email not sent. Please verify that your name and email are entered correctly."
683
  msgstr ""
684
 
685
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:213
686
+ msgid "Email sent."
687
  msgstr ""
688
 
689
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:68
690
+ msgid "Thank you for using WPGlobus!"
 
691
  msgstr ""
692
 
693
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69
694
+ msgid "Our Support Team is here to answer your questions or concerns."
 
 
695
  msgstr ""
696
 
697
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:71
698
  msgid "To help us serve you better:"
699
  msgstr ""
700
 
701
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
702
  msgid ""
703
  "Please check if the problem persists if you switch to a standard WordPress "
704
  "theme."
705
  msgstr ""
706
 
707
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:74
708
  msgid ""
709
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
710
  msgstr ""
711
 
712
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:77
713
+ msgid "Please fill in and submit the contact form:"
714
+ msgstr ""
715
+
716
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:97
717
+ msgid "Please make sure the email address is correct."
718
+ msgstr ""
719
+
720
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:103
721
+ msgid "Subject"
722
+ msgstr ""
723
+
724
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:108
725
+ msgid "Short description of the problem"
726
+ msgstr ""
727
+
728
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:113
729
+ msgid "Detailed description"
730
+ msgstr ""
731
+
732
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:120
733
  msgid "Technical Information"
734
  msgstr ""
735
 
736
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:127
737
+ msgid "This information helps us to find the problem source"
738
+ msgstr ""
739
+
740
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:143
741
+ msgid ""
742
+ "Alternatively, please email %s. Do not forget to copy and paste the "
743
+ "technical information to your email message."
744
+ msgstr ""
745
+
746
  #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:58
747
  msgid "WPGlobus Recommends:"
748
  msgstr ""
languages/wpglobus-en_AU.mo CHANGED
Binary file
languages/wpglobus-en_AU.po CHANGED
@@ -21,12 +21,12 @@ msgstr ""
21
  #: includes/admin/class-wpglobus-about.php:42,
22
  #: includes/admin/class-wpglobus-about.php:117,
23
  #: includes/admin/class-wpglobus-clean.php:600,
24
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
25
  msgid "Guide"
26
  msgstr "Guide"
27
 
28
  #: includes/admin/central/class-wpglobus-admin-central.php:142,
29
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:44
30
  msgid "WPGlobus Help Desk"
31
  msgstr "WPGlobus Help Desk"
32
 
@@ -36,7 +36,7 @@ msgstr "WPGlobus Help Desk"
36
  #: includes/admin/class-wpglobus-clean.php:606,
37
  #: includes/admin/class-wpglobus-customize-options.php:1254,
38
  #: includes/admin/class-wpglobus-customize-options.php:1286,
39
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:31
40
  msgid "Add-ons"
41
  msgstr "Add-ons"
42
 
@@ -45,7 +45,7 @@ msgid "Quick Start"
45
  msgstr "Quick Start"
46
 
47
  #: includes/admin/class-wpglobus-about.php:48,
48
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
49
  msgid "FAQ"
50
  msgstr "FAQ"
51
 
@@ -551,13 +551,11 @@ msgstr ""
551
  "us."
552
 
553
  #: includes/admin/class-wpglobus-customize-options.php:1360,
554
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69,
555
  #: includes/options/class-wpglobus-options.php:586
556
  msgid "Sincerely Yours,"
557
  msgstr "Sincerely Yours,"
558
 
559
  #: includes/admin/class-wpglobus-customize-options.php:1362,
560
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:70,
561
  #: includes/options/class-wpglobus-options.php:588,
562
  #: includes/options/wpglobus-options-header.php:34
563
  msgid "The WPGlobus Team"
@@ -739,46 +737,37 @@ msgstr "Premium add-on"
739
  msgid "Installed"
740
  msgstr "Installed"
741
 
742
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:45,
743
  #: includes/options/class-wpglobus-options.php:659
744
  msgid "Help Desk"
745
  msgstr "Help Desk"
746
 
747
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:55
748
- msgid "Thank you for using WPGlobus!"
749
- msgstr "Thank you for using WPGlobus!"
750
-
751
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:56
752
- msgid "Our Support Team is here to answer your questions or concerns."
753
- msgstr "Our Support Team is here to answer your questions or concerns."
754
-
755
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:58
756
- msgid "Click here to open the Contact Form."
757
  msgstr ""
758
 
759
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:59
760
- msgid "Type in your name, email, subject and the detailed message."
761
- msgstr "Type in your name, email, subject and the detailed message."
762
-
763
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:60
764
  msgid ""
765
- "If you can make a screenshot demonstrating the problem, please attach it."
766
  msgstr ""
767
- "If you can make a screenshot demonstrating the problem, please attach it."
768
 
769
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:61
770
- msgid ""
771
- "Please note: we will receive some debug data together with your request. See "
772
- "the \"Technical Information\" table for the details."
773
  msgstr ""
774
- "Please note: we will receive some debug data together with your request. See "
775
- "the \"Technical Information\" table for the details."
776
 
777
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:63
 
 
 
 
 
 
 
 
778
  msgid "To help us serve you better:"
779
  msgstr "To help us serve you better:"
780
 
781
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:65
782
  msgid ""
783
  "Please check if the problem persists if you switch to a standard WordPress "
784
  "theme."
@@ -786,16 +775,46 @@ msgstr ""
786
  "Please check if the problem persists if you switch to a standard WordPress "
787
  "theme."
788
 
789
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:66
790
  msgid ""
791
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
792
  msgstr ""
793
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
794
 
795
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
796
  msgid "Technical Information"
797
  msgstr "Technical Information"
798
 
 
 
 
 
 
 
 
 
 
 
799
  #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:58
800
  msgid "WPGlobus Recommends:"
801
  msgstr "WPGlobus Recommends:"
@@ -1444,3 +1463,18 @@ msgstr ""
1444
  #: wpglobus.php:19
1445
  msgid "https://wpglobus.com/"
1446
  msgstr "https://wpglobus.com/"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21
  #: includes/admin/class-wpglobus-about.php:42,
22
  #: includes/admin/class-wpglobus-about.php:117,
23
  #: includes/admin/class-wpglobus-clean.php:600,
24
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
25
  msgid "Guide"
26
  msgstr "Guide"
27
 
28
  #: includes/admin/central/class-wpglobus-admin-central.php:142,
29
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:102
30
  msgid "WPGlobus Help Desk"
31
  msgstr "WPGlobus Help Desk"
32
 
36
  #: includes/admin/class-wpglobus-clean.php:606,
37
  #: includes/admin/class-wpglobus-customize-options.php:1254,
38
  #: includes/admin/class-wpglobus-customize-options.php:1286,
39
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
40
  msgid "Add-ons"
41
  msgstr "Add-ons"
42
 
45
  msgstr "Quick Start"
46
 
47
  #: includes/admin/class-wpglobus-about.php:48,
48
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:49
49
  msgid "FAQ"
50
  msgstr "FAQ"
51
 
551
  "us."
552
 
553
  #: includes/admin/class-wpglobus-customize-options.php:1360,
 
554
  #: includes/options/class-wpglobus-options.php:586
555
  msgid "Sincerely Yours,"
556
  msgstr "Sincerely Yours,"
557
 
558
  #: includes/admin/class-wpglobus-customize-options.php:1362,
 
559
  #: includes/options/class-wpglobus-options.php:588,
560
  #: includes/options/wpglobus-options-header.php:34
561
  msgid "The WPGlobus Team"
737
  msgid "Installed"
738
  msgstr "Installed"
739
 
740
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:103,
741
  #: includes/options/class-wpglobus-options.php:659
742
  msgid "Help Desk"
743
  msgstr "Help Desk"
744
 
745
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:182
746
+ msgid "Email not sent. Please fill in the entire form."
 
 
 
 
 
 
 
 
747
  msgstr ""
748
 
749
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:192
 
 
 
 
750
  msgid ""
751
+ "Email not sent. Please verify that your name and email are entered correctly."
752
  msgstr ""
 
753
 
754
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:213
755
+ msgid "Email sent."
 
 
756
  msgstr ""
 
 
757
 
758
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:68
759
+ msgid "Thank you for using WPGlobus!"
760
+ msgstr "Thank you for using WPGlobus!"
761
+
762
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69
763
+ msgid "Our Support Team is here to answer your questions or concerns."
764
+ msgstr "Our Support Team is here to answer your questions or concerns."
765
+
766
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:71
767
  msgid "To help us serve you better:"
768
  msgstr "To help us serve you better:"
769
 
770
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
771
  msgid ""
772
  "Please check if the problem persists if you switch to a standard WordPress "
773
  "theme."
775
  "Please check if the problem persists if you switch to a standard WordPress "
776
  "theme."
777
 
778
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:74
779
  msgid ""
780
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
781
  msgstr ""
782
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
783
 
784
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:77
785
+ msgid "Please fill in and submit the contact form:"
786
+ msgstr ""
787
+
788
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:97
789
+ msgid "Please make sure the email address is correct."
790
+ msgstr ""
791
+
792
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:103
793
+ msgid "Subject"
794
+ msgstr ""
795
+
796
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:108
797
+ msgid "Short description of the problem"
798
+ msgstr ""
799
+
800
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:113
801
+ msgid "Detailed description"
802
+ msgstr ""
803
+
804
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:120
805
  msgid "Technical Information"
806
  msgstr "Technical Information"
807
 
808
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:127
809
+ msgid "This information helps us to find the problem source"
810
+ msgstr ""
811
+
812
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:143
813
+ msgid ""
814
+ "Alternatively, please email %s. Do not forget to copy and paste the "
815
+ "technical information to your email message."
816
+ msgstr ""
817
+
818
  #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:58
819
  msgid "WPGlobus Recommends:"
820
  msgstr "WPGlobus Recommends:"
1463
  #: wpglobus.php:19
1464
  msgid "https://wpglobus.com/"
1465
  msgstr "https://wpglobus.com/"
1466
+
1467
+ #~ msgid "Type in your name, email, subject and the detailed message."
1468
+ #~ msgstr "Type in your name, email, subject and the detailed message."
1469
+
1470
+ #~ msgid ""
1471
+ #~ "If you can make a screenshot demonstrating the problem, please attach it."
1472
+ #~ msgstr ""
1473
+ #~ "If you can make a screenshot demonstrating the problem, please attach it."
1474
+
1475
+ #~ msgid ""
1476
+ #~ "Please note: we will receive some debug data together with your request. "
1477
+ #~ "See the \"Technical Information\" table for the details."
1478
+ #~ msgstr ""
1479
+ #~ "Please note: we will receive some debug data together with your request. "
1480
+ #~ "See the \"Technical Information\" table for the details."
languages/wpglobus-en_CA.mo CHANGED
Binary file
languages/wpglobus-en_CA.po CHANGED
@@ -20,12 +20,12 @@ msgstr ""
20
  #: includes/admin/class-wpglobus-about.php:42,
21
  #: includes/admin/class-wpglobus-about.php:117,
22
  #: includes/admin/class-wpglobus-clean.php:600,
23
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
24
  msgid "Guide"
25
  msgstr "Guide"
26
 
27
  #: includes/admin/central/class-wpglobus-admin-central.php:142,
28
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:44
29
  msgid "WPGlobus Help Desk"
30
  msgstr "WPGlobus Help Desk"
31
 
@@ -35,7 +35,7 @@ msgstr "WPGlobus Help Desk"
35
  #: includes/admin/class-wpglobus-clean.php:606,
36
  #: includes/admin/class-wpglobus-customize-options.php:1254,
37
  #: includes/admin/class-wpglobus-customize-options.php:1286,
38
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:31
39
  msgid "Add-ons"
40
  msgstr "Add-ons"
41
 
@@ -44,7 +44,7 @@ msgid "Quick Start"
44
  msgstr "Quick Start"
45
 
46
  #: includes/admin/class-wpglobus-about.php:48,
47
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
48
  msgid "FAQ"
49
  msgstr "FAQ"
50
 
@@ -550,13 +550,11 @@ msgstr ""
550
  "us."
551
 
552
  #: includes/admin/class-wpglobus-customize-options.php:1360,
553
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69,
554
  #: includes/options/class-wpglobus-options.php:586
555
  msgid "Sincerely Yours,"
556
  msgstr "Sincerely Yours,"
557
 
558
  #: includes/admin/class-wpglobus-customize-options.php:1362,
559
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:70,
560
  #: includes/options/class-wpglobus-options.php:588,
561
  #: includes/options/wpglobus-options-header.php:34
562
  msgid "The WPGlobus Team"
@@ -738,46 +736,37 @@ msgstr "Premium add-on"
738
  msgid "Installed"
739
  msgstr "Installed"
740
 
741
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:45,
742
  #: includes/options/class-wpglobus-options.php:659
743
  msgid "Help Desk"
744
  msgstr "Help Desk"
745
 
746
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:55
747
- msgid "Thank you for using WPGlobus!"
748
- msgstr "Thank you for using WPGlobus!"
749
-
750
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:56
751
- msgid "Our Support Team is here to answer your questions or concerns."
752
- msgstr "Our Support Team is here to answer your questions or concerns."
753
-
754
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:58
755
- msgid "Click here to open the Contact Form."
756
  msgstr ""
757
 
758
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:59
759
- msgid "Type in your name, email, subject and the detailed message."
760
- msgstr "Type in your name, email, subject and the detailed message."
761
-
762
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:60
763
  msgid ""
764
- "If you can make a screenshot demonstrating the problem, please attach it."
765
  msgstr ""
766
- "If you can make a screenshot demonstrating the problem, please attach it."
767
 
768
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:61
769
- msgid ""
770
- "Please note: we will receive some debug data together with your request. See "
771
- "the \"Technical Information\" table for the details."
772
  msgstr ""
773
- "Please note: we will receive some debug data together with your request. See "
774
- "the \"Technical Information\" table for the details."
775
 
776
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:63
 
 
 
 
 
 
 
 
777
  msgid "To help us serve you better:"
778
  msgstr "To help us serve you better:"
779
 
780
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:65
781
  msgid ""
782
  "Please check if the problem persists if you switch to a standard WordPress "
783
  "theme."
@@ -785,16 +774,46 @@ msgstr ""
785
  "Please check if the problem persists if you switch to a standard WordPress "
786
  "theme."
787
 
788
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:66
789
  msgid ""
790
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
791
  msgstr ""
792
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
793
 
794
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
795
  msgid "Technical Information"
796
  msgstr "Technical Information"
797
 
 
 
 
 
 
 
 
 
 
 
798
  #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:58
799
  msgid "WPGlobus Recommends:"
800
  msgstr "WPGlobus Recommends:"
@@ -1443,3 +1462,18 @@ msgstr ""
1443
  #: wpglobus.php:19
1444
  msgid "https://wpglobus.com/"
1445
  msgstr "https://wpglobus.com/"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
  #: includes/admin/class-wpglobus-about.php:42,
21
  #: includes/admin/class-wpglobus-about.php:117,
22
  #: includes/admin/class-wpglobus-clean.php:600,
23
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
24
  msgid "Guide"
25
  msgstr "Guide"
26
 
27
  #: includes/admin/central/class-wpglobus-admin-central.php:142,
28
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:102
29
  msgid "WPGlobus Help Desk"
30
  msgstr "WPGlobus Help Desk"
31
 
35
  #: includes/admin/class-wpglobus-clean.php:606,
36
  #: includes/admin/class-wpglobus-customize-options.php:1254,
37
  #: includes/admin/class-wpglobus-customize-options.php:1286,
38
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
39
  msgid "Add-ons"
40
  msgstr "Add-ons"
41
 
44
  msgstr "Quick Start"
45
 
46
  #: includes/admin/class-wpglobus-about.php:48,
47
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:49
48
  msgid "FAQ"
49
  msgstr "FAQ"
50
 
550
  "us."
551
 
552
  #: includes/admin/class-wpglobus-customize-options.php:1360,
 
553
  #: includes/options/class-wpglobus-options.php:586
554
  msgid "Sincerely Yours,"
555
  msgstr "Sincerely Yours,"
556
 
557
  #: includes/admin/class-wpglobus-customize-options.php:1362,
 
558
  #: includes/options/class-wpglobus-options.php:588,
559
  #: includes/options/wpglobus-options-header.php:34
560
  msgid "The WPGlobus Team"
736
  msgid "Installed"
737
  msgstr "Installed"
738
 
739
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:103,
740
  #: includes/options/class-wpglobus-options.php:659
741
  msgid "Help Desk"
742
  msgstr "Help Desk"
743
 
744
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:182
745
+ msgid "Email not sent. Please fill in the entire form."
 
 
 
 
 
 
 
 
746
  msgstr ""
747
 
748
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:192
 
 
 
 
749
  msgid ""
750
+ "Email not sent. Please verify that your name and email are entered correctly."
751
  msgstr ""
 
752
 
753
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:213
754
+ msgid "Email sent."
 
 
755
  msgstr ""
 
 
756
 
757
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:68
758
+ msgid "Thank you for using WPGlobus!"
759
+ msgstr "Thank you for using WPGlobus!"
760
+
761
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69
762
+ msgid "Our Support Team is here to answer your questions or concerns."
763
+ msgstr "Our Support Team is here to answer your questions or concerns."
764
+
765
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:71
766
  msgid "To help us serve you better:"
767
  msgstr "To help us serve you better:"
768
 
769
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
770
  msgid ""
771
  "Please check if the problem persists if you switch to a standard WordPress "
772
  "theme."
774
  "Please check if the problem persists if you switch to a standard WordPress "
775
  "theme."
776
 
777
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:74
778
  msgid ""
779
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
780
  msgstr ""
781
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
782
 
783
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:77
784
+ msgid "Please fill in and submit the contact form:"
785
+ msgstr ""
786
+
787
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:97
788
+ msgid "Please make sure the email address is correct."
789
+ msgstr ""
790
+
791
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:103
792
+ msgid "Subject"
793
+ msgstr ""
794
+
795
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:108
796
+ msgid "Short description of the problem"
797
+ msgstr ""
798
+
799
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:113
800
+ msgid "Detailed description"
801
+ msgstr ""
802
+
803
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:120
804
  msgid "Technical Information"
805
  msgstr "Technical Information"
806
 
807
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:127
808
+ msgid "This information helps us to find the problem source"
809
+ msgstr ""
810
+
811
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:143
812
+ msgid ""
813
+ "Alternatively, please email %s. Do not forget to copy and paste the "
814
+ "technical information to your email message."
815
+ msgstr ""
816
+
817
  #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:58
818
  msgid "WPGlobus Recommends:"
819
  msgstr "WPGlobus Recommends:"
1462
  #: wpglobus.php:19
1463
  msgid "https://wpglobus.com/"
1464
  msgstr "https://wpglobus.com/"
1465
+
1466
+ #~ msgid "Type in your name, email, subject and the detailed message."
1467
+ #~ msgstr "Type in your name, email, subject and the detailed message."
1468
+
1469
+ #~ msgid ""
1470
+ #~ "If you can make a screenshot demonstrating the problem, please attach it."
1471
+ #~ msgstr ""
1472
+ #~ "If you can make a screenshot demonstrating the problem, please attach it."
1473
+
1474
+ #~ msgid ""
1475
+ #~ "Please note: we will receive some debug data together with your request. "
1476
+ #~ "See the \"Technical Information\" table for the details."
1477
+ #~ msgstr ""
1478
+ #~ "Please note: we will receive some debug data together with your request. "
1479
+ #~ "See the \"Technical Information\" table for the details."
languages/wpglobus-en_GB.mo CHANGED
Binary file
languages/wpglobus-en_GB.po CHANGED
@@ -21,12 +21,12 @@ msgstr ""
21
  #: includes/admin/class-wpglobus-about.php:42,
22
  #: includes/admin/class-wpglobus-about.php:117,
23
  #: includes/admin/class-wpglobus-clean.php:600,
24
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
25
  msgid "Guide"
26
  msgstr "Guide"
27
 
28
  #: includes/admin/central/class-wpglobus-admin-central.php:142,
29
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:44
30
  msgid "WPGlobus Help Desk"
31
  msgstr "WPGlobus Help Desk"
32
 
@@ -36,7 +36,7 @@ msgstr "WPGlobus Help Desk"
36
  #: includes/admin/class-wpglobus-clean.php:606,
37
  #: includes/admin/class-wpglobus-customize-options.php:1254,
38
  #: includes/admin/class-wpglobus-customize-options.php:1286,
39
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:31
40
  msgid "Add-ons"
41
  msgstr "Add-ons"
42
 
@@ -45,7 +45,7 @@ msgid "Quick Start"
45
  msgstr "Quick Start"
46
 
47
  #: includes/admin/class-wpglobus-about.php:48,
48
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
49
  msgid "FAQ"
50
  msgstr "FAQ"
51
 
@@ -551,13 +551,11 @@ msgstr ""
551
  "us."
552
 
553
  #: includes/admin/class-wpglobus-customize-options.php:1360,
554
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69,
555
  #: includes/options/class-wpglobus-options.php:586
556
  msgid "Sincerely Yours,"
557
  msgstr "Sincerely Yours,"
558
 
559
  #: includes/admin/class-wpglobus-customize-options.php:1362,
560
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:70,
561
  #: includes/options/class-wpglobus-options.php:588,
562
  #: includes/options/wpglobus-options-header.php:34
563
  msgid "The WPGlobus Team"
@@ -739,46 +737,37 @@ msgstr "Premium add-on"
739
  msgid "Installed"
740
  msgstr "Installed"
741
 
742
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:45,
743
  #: includes/options/class-wpglobus-options.php:659
744
  msgid "Help Desk"
745
  msgstr "Help Desk"
746
 
747
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:55
748
- msgid "Thank you for using WPGlobus!"
749
- msgstr "Thank you for using WPGlobus!"
750
-
751
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:56
752
- msgid "Our Support Team is here to answer your questions or concerns."
753
- msgstr "Our Support Team is here to answer your questions or concerns."
754
-
755
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:58
756
- msgid "Click here to open the Contact Form."
757
  msgstr ""
758
 
759
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:59
760
- msgid "Type in your name, email, subject and the detailed message."
761
- msgstr "Type in your name, email, subject and the detailed message."
762
-
763
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:60
764
  msgid ""
765
- "If you can make a screenshot demonstrating the problem, please attach it."
766
  msgstr ""
767
- "If you can make a screenshot demonstrating the problem, please attach it."
768
 
769
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:61
770
- msgid ""
771
- "Please note: we will receive some debug data together with your request. See "
772
- "the \"Technical Information\" table for the details."
773
  msgstr ""
774
- "Please note: we will receive some debug data together with your request. See "
775
- "the \"Technical Information\" table for the details."
776
 
777
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:63
 
 
 
 
 
 
 
 
778
  msgid "To help us serve you better:"
779
  msgstr "To help us serve you better:"
780
 
781
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:65
782
  msgid ""
783
  "Please check if the problem persists if you switch to a standard WordPress "
784
  "theme."
@@ -786,16 +775,46 @@ msgstr ""
786
  "Please check if the problem persists if you switch to a standard WordPress "
787
  "theme."
788
 
789
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:66
790
  msgid ""
791
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
792
  msgstr ""
793
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
794
 
795
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
796
  msgid "Technical Information"
797
  msgstr "Technical Information"
798
 
 
 
 
 
 
 
 
 
 
 
799
  #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:58
800
  msgid "WPGlobus Recommends:"
801
  msgstr "WPGlobus Recommends:"
@@ -1444,3 +1463,18 @@ msgstr ""
1444
  #: wpglobus.php:19
1445
  msgid "https://wpglobus.com/"
1446
  msgstr "https://wpglobus.com/"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21
  #: includes/admin/class-wpglobus-about.php:42,
22
  #: includes/admin/class-wpglobus-about.php:117,
23
  #: includes/admin/class-wpglobus-clean.php:600,
24
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
25
  msgid "Guide"
26
  msgstr "Guide"
27
 
28
  #: includes/admin/central/class-wpglobus-admin-central.php:142,
29
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:102
30
  msgid "WPGlobus Help Desk"
31
  msgstr "WPGlobus Help Desk"
32
 
36
  #: includes/admin/class-wpglobus-clean.php:606,
37
  #: includes/admin/class-wpglobus-customize-options.php:1254,
38
  #: includes/admin/class-wpglobus-customize-options.php:1286,
39
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
40
  msgid "Add-ons"
41
  msgstr "Add-ons"
42
 
45
  msgstr "Quick Start"
46
 
47
  #: includes/admin/class-wpglobus-about.php:48,
48
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:49
49
  msgid "FAQ"
50
  msgstr "FAQ"
51
 
551
  "us."
552
 
553
  #: includes/admin/class-wpglobus-customize-options.php:1360,
 
554
  #: includes/options/class-wpglobus-options.php:586
555
  msgid "Sincerely Yours,"
556
  msgstr "Sincerely Yours,"
557
 
558
  #: includes/admin/class-wpglobus-customize-options.php:1362,
 
559
  #: includes/options/class-wpglobus-options.php:588,
560
  #: includes/options/wpglobus-options-header.php:34
561
  msgid "The WPGlobus Team"
737
  msgid "Installed"
738
  msgstr "Installed"
739
 
740
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:103,
741
  #: includes/options/class-wpglobus-options.php:659
742
  msgid "Help Desk"
743
  msgstr "Help Desk"
744
 
745
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:182
746
+ msgid "Email not sent. Please fill in the entire form."
 
 
 
 
 
 
 
 
747
  msgstr ""
748
 
749
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:192
 
 
 
 
750
  msgid ""
751
+ "Email not sent. Please verify that your name and email are entered correctly."
752
  msgstr ""
 
753
 
754
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:213
755
+ msgid "Email sent."
 
 
756
  msgstr ""
 
 
757
 
758
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:68
759
+ msgid "Thank you for using WPGlobus!"
760
+ msgstr "Thank you for using WPGlobus!"
761
+
762
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69
763
+ msgid "Our Support Team is here to answer your questions or concerns."
764
+ msgstr "Our Support Team is here to answer your questions or concerns."
765
+
766
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:71
767
  msgid "To help us serve you better:"
768
  msgstr "To help us serve you better:"
769
 
770
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
771
  msgid ""
772
  "Please check if the problem persists if you switch to a standard WordPress "
773
  "theme."
775
  "Please check if the problem persists if you switch to a standard WordPress "
776
  "theme."
777
 
778
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:74
779
  msgid ""
780
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
781
  msgstr ""
782
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
783
 
784
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:77
785
+ msgid "Please fill in and submit the contact form:"
786
+ msgstr ""
787
+
788
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:97
789
+ msgid "Please make sure the email address is correct."
790
+ msgstr ""
791
+
792
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:103
793
+ msgid "Subject"
794
+ msgstr ""
795
+
796
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:108
797
+ msgid "Short description of the problem"
798
+ msgstr ""
799
+
800
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:113
801
+ msgid "Detailed description"
802
+ msgstr ""
803
+
804
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:120
805
  msgid "Technical Information"
806
  msgstr "Technical Information"
807
 
808
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:127
809
+ msgid "This information helps us to find the problem source"
810
+ msgstr ""
811
+
812
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:143
813
+ msgid ""
814
+ "Alternatively, please email %s. Do not forget to copy and paste the "
815
+ "technical information to your email message."
816
+ msgstr ""
817
+
818
  #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:58
819
  msgid "WPGlobus Recommends:"
820
  msgstr "WPGlobus Recommends:"
1463
  #: wpglobus.php:19
1464
  msgid "https://wpglobus.com/"
1465
  msgstr "https://wpglobus.com/"
1466
+
1467
+ #~ msgid "Type in your name, email, subject and the detailed message."
1468
+ #~ msgstr "Type in your name, email, subject and the detailed message."
1469
+
1470
+ #~ msgid ""
1471
+ #~ "If you can make a screenshot demonstrating the problem, please attach it."
1472
+ #~ msgstr ""
1473
+ #~ "If you can make a screenshot demonstrating the problem, please attach it."
1474
+
1475
+ #~ msgid ""
1476
+ #~ "Please note: we will receive some debug data together with your request. "
1477
+ #~ "See the \"Technical Information\" table for the details."
1478
+ #~ msgstr ""
1479
+ #~ "Please note: we will receive some debug data together with your request. "
1480
+ #~ "See the \"Technical Information\" table for the details."
languages/wpglobus-en_NZ.mo CHANGED
Binary file
languages/wpglobus-en_NZ.po CHANGED
@@ -20,12 +20,12 @@ msgstr ""
20
  #: includes/admin/class-wpglobus-about.php:42,
21
  #: includes/admin/class-wpglobus-about.php:117,
22
  #: includes/admin/class-wpglobus-clean.php:600,
23
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
24
  msgid "Guide"
25
  msgstr "Guide"
26
 
27
  #: includes/admin/central/class-wpglobus-admin-central.php:142,
28
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:44
29
  msgid "WPGlobus Help Desk"
30
  msgstr "WPGlobus Help Desk"
31
 
@@ -35,7 +35,7 @@ msgstr "WPGlobus Help Desk"
35
  #: includes/admin/class-wpglobus-clean.php:606,
36
  #: includes/admin/class-wpglobus-customize-options.php:1254,
37
  #: includes/admin/class-wpglobus-customize-options.php:1286,
38
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:31
39
  msgid "Add-ons"
40
  msgstr "Add-ons"
41
 
@@ -44,7 +44,7 @@ msgid "Quick Start"
44
  msgstr "Quick Start"
45
 
46
  #: includes/admin/class-wpglobus-about.php:48,
47
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
48
  msgid "FAQ"
49
  msgstr "FAQ"
50
 
@@ -550,13 +550,11 @@ msgstr ""
550
  "us."
551
 
552
  #: includes/admin/class-wpglobus-customize-options.php:1360,
553
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69,
554
  #: includes/options/class-wpglobus-options.php:586
555
  msgid "Sincerely Yours,"
556
  msgstr "Sincerely Yours,"
557
 
558
  #: includes/admin/class-wpglobus-customize-options.php:1362,
559
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:70,
560
  #: includes/options/class-wpglobus-options.php:588,
561
  #: includes/options/wpglobus-options-header.php:34
562
  msgid "The WPGlobus Team"
@@ -738,46 +736,37 @@ msgstr "Premium add-on"
738
  msgid "Installed"
739
  msgstr "Installed"
740
 
741
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:45,
742
  #: includes/options/class-wpglobus-options.php:659
743
  msgid "Help Desk"
744
  msgstr "Help Desk"
745
 
746
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:55
747
- msgid "Thank you for using WPGlobus!"
748
- msgstr "Thank you for using WPGlobus!"
749
-
750
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:56
751
- msgid "Our Support Team is here to answer your questions or concerns."
752
- msgstr "Our Support Team is here to answer your questions or concerns."
753
-
754
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:58
755
- msgid "Click here to open the Contact Form."
756
  msgstr ""
757
 
758
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:59
759
- msgid "Type in your name, email, subject and the detailed message."
760
- msgstr "Type in your name, email, subject and the detailed message."
761
-
762
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:60
763
  msgid ""
764
- "If you can make a screenshot demonstrating the problem, please attach it."
765
  msgstr ""
766
- "If you can make a screenshot demonstrating the problem, please attach it."
767
 
768
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:61
769
- msgid ""
770
- "Please note: we will receive some debug data together with your request. See "
771
- "the \"Technical Information\" table for the details."
772
  msgstr ""
773
- "Please note: we will receive some debug data together with your request. See "
774
- "the \"Technical Information\" table for the details."
775
 
776
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:63
 
 
 
 
 
 
 
 
777
  msgid "To help us serve you better:"
778
  msgstr "To help us serve you better:"
779
 
780
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:65
781
  msgid ""
782
  "Please check if the problem persists if you switch to a standard WordPress "
783
  "theme."
@@ -785,16 +774,46 @@ msgstr ""
785
  "Please check if the problem persists if you switch to a standard WordPress "
786
  "theme."
787
 
788
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:66
789
  msgid ""
790
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
791
  msgstr ""
792
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
793
 
794
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
795
  msgid "Technical Information"
796
  msgstr "Technical Information"
797
 
 
 
 
 
 
 
 
 
 
 
798
  #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:58
799
  msgid "WPGlobus Recommends:"
800
  msgstr "WPGlobus Recommends:"
@@ -1443,3 +1462,18 @@ msgstr ""
1443
  #: wpglobus.php:19
1444
  msgid "https://wpglobus.com/"
1445
  msgstr "https://wpglobus.com/"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
  #: includes/admin/class-wpglobus-about.php:42,
21
  #: includes/admin/class-wpglobus-about.php:117,
22
  #: includes/admin/class-wpglobus-clean.php:600,
23
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
24
  msgid "Guide"
25
  msgstr "Guide"
26
 
27
  #: includes/admin/central/class-wpglobus-admin-central.php:142,
28
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:102
29
  msgid "WPGlobus Help Desk"
30
  msgstr "WPGlobus Help Desk"
31
 
35
  #: includes/admin/class-wpglobus-clean.php:606,
36
  #: includes/admin/class-wpglobus-customize-options.php:1254,
37
  #: includes/admin/class-wpglobus-customize-options.php:1286,
38
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
39
  msgid "Add-ons"
40
  msgstr "Add-ons"
41
 
44
  msgstr "Quick Start"
45
 
46
  #: includes/admin/class-wpglobus-about.php:48,
47
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:49
48
  msgid "FAQ"
49
  msgstr "FAQ"
50
 
550
  "us."
551
 
552
  #: includes/admin/class-wpglobus-customize-options.php:1360,
 
553
  #: includes/options/class-wpglobus-options.php:586
554
  msgid "Sincerely Yours,"
555
  msgstr "Sincerely Yours,"
556
 
557
  #: includes/admin/class-wpglobus-customize-options.php:1362,
 
558
  #: includes/options/class-wpglobus-options.php:588,
559
  #: includes/options/wpglobus-options-header.php:34
560
  msgid "The WPGlobus Team"
736
  msgid "Installed"
737
  msgstr "Installed"
738
 
739
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:103,
740
  #: includes/options/class-wpglobus-options.php:659
741
  msgid "Help Desk"
742
  msgstr "Help Desk"
743
 
744
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:182
745
+ msgid "Email not sent. Please fill in the entire form."
 
 
 
 
 
 
 
 
746
  msgstr ""
747
 
748
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:192
 
 
 
 
749
  msgid ""
750
+ "Email not sent. Please verify that your name and email are entered correctly."
751
  msgstr ""
 
752
 
753
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:213
754
+ msgid "Email sent."
 
 
755
  msgstr ""
 
 
756
 
757
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:68
758
+ msgid "Thank you for using WPGlobus!"
759
+ msgstr "Thank you for using WPGlobus!"
760
+
761
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69
762
+ msgid "Our Support Team is here to answer your questions or concerns."
763
+ msgstr "Our Support Team is here to answer your questions or concerns."
764
+
765
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:71
766
  msgid "To help us serve you better:"
767
  msgstr "To help us serve you better:"
768
 
769
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
770
  msgid ""
771
  "Please check if the problem persists if you switch to a standard WordPress "
772
  "theme."
774
  "Please check if the problem persists if you switch to a standard WordPress "
775
  "theme."
776
 
777
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:74
778
  msgid ""
779
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
780
  msgstr ""
781
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
782
 
783
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:77
784
+ msgid "Please fill in and submit the contact form:"
785
+ msgstr ""
786
+
787
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:97
788
+ msgid "Please make sure the email address is correct."
789
+ msgstr ""
790
+
791
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:103
792
+ msgid "Subject"
793
+ msgstr ""
794
+
795
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:108
796
+ msgid "Short description of the problem"
797
+ msgstr ""
798
+
799
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:113
800
+ msgid "Detailed description"
801
+ msgstr ""
802
+
803
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:120
804
  msgid "Technical Information"
805
  msgstr "Technical Information"
806
 
807
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:127
808
+ msgid "This information helps us to find the problem source"
809
+ msgstr ""
810
+
811
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:143
812
+ msgid ""
813
+ "Alternatively, please email %s. Do not forget to copy and paste the "
814
+ "technical information to your email message."
815
+ msgstr ""
816
+
817
  #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:58
818
  msgid "WPGlobus Recommends:"
819
  msgstr "WPGlobus Recommends:"
1462
  #: wpglobus.php:19
1463
  msgid "https://wpglobus.com/"
1464
  msgstr "https://wpglobus.com/"
1465
+
1466
+ #~ msgid "Type in your name, email, subject and the detailed message."
1467
+ #~ msgstr "Type in your name, email, subject and the detailed message."
1468
+
1469
+ #~ msgid ""
1470
+ #~ "If you can make a screenshot demonstrating the problem, please attach it."
1471
+ #~ msgstr ""
1472
+ #~ "If you can make a screenshot demonstrating the problem, please attach it."
1473
+
1474
+ #~ msgid ""
1475
+ #~ "Please note: we will receive some debug data together with your request. "
1476
+ #~ "See the \"Technical Information\" table for the details."
1477
+ #~ msgstr ""
1478
+ #~ "Please note: we will receive some debug data together with your request. "
1479
+ #~ "See the \"Technical Information\" table for the details."
languages/wpglobus-en_US.mo CHANGED
Binary file
languages/wpglobus-en_US.po CHANGED
@@ -19,12 +19,12 @@ msgstr ""
19
  #: includes/admin/class-wpglobus-about.php:42,
20
  #: includes/admin/class-wpglobus-about.php:117,
21
  #: includes/admin/class-wpglobus-clean.php:600,
22
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
23
  msgid "Guide"
24
  msgstr "Guide"
25
 
26
  #: includes/admin/central/class-wpglobus-admin-central.php:142,
27
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:44
28
  msgid "WPGlobus Help Desk"
29
  msgstr "WPGlobus Help Desk"
30
 
@@ -34,7 +34,7 @@ msgstr "WPGlobus Help Desk"
34
  #: includes/admin/class-wpglobus-clean.php:606,
35
  #: includes/admin/class-wpglobus-customize-options.php:1254,
36
  #: includes/admin/class-wpglobus-customize-options.php:1286,
37
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:31
38
  msgid "Add-ons"
39
  msgstr "Add-ons"
40
 
@@ -43,7 +43,7 @@ msgid "Quick Start"
43
  msgstr "Quick Start"
44
 
45
  #: includes/admin/class-wpglobus-about.php:48,
46
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
47
  msgid "FAQ"
48
  msgstr "FAQ"
49
 
@@ -551,13 +551,11 @@ msgstr ""
551
  "us."
552
 
553
  #: includes/admin/class-wpglobus-customize-options.php:1360,
554
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69,
555
  #: includes/options/class-wpglobus-options.php:586
556
  msgid "Sincerely Yours,"
557
  msgstr "Sincerely Yours,"
558
 
559
  #: includes/admin/class-wpglobus-customize-options.php:1362,
560
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:70,
561
  #: includes/options/class-wpglobus-options.php:588,
562
  #: includes/options/wpglobus-options-header.php:34
563
  msgid "The WPGlobus Team"
@@ -739,46 +737,37 @@ msgstr "Premium add-on"
739
  msgid "Installed"
740
  msgstr "Installed"
741
 
742
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:45,
743
  #: includes/options/class-wpglobus-options.php:659
744
  msgid "Help Desk"
745
  msgstr "Help Desk"
746
 
747
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:55
748
- msgid "Thank you for using WPGlobus!"
749
- msgstr "Thank you for using WPGlobus!"
750
-
751
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:56
752
- msgid "Our Support Team is here to answer your questions or concerns."
753
- msgstr "Our Support Team is here to answer your questions or concerns."
754
-
755
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:58
756
- msgid "Click here to open the Contact Form."
757
- msgstr "Click here to open the Contact Form."
758
-
759
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:59
760
- msgid "Type in your name, email, subject and the detailed message."
761
- msgstr "Type in your name, email, subject and the detailed message."
762
 
763
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:60
764
  msgid ""
765
- "If you can make a screenshot demonstrating the problem, please attach it."
766
  msgstr ""
767
- "If you can make a screenshot demonstrating the problem, please attach it."
768
 
769
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:61
770
- msgid ""
771
- "Please note: we will receive some debug data together with your request. See "
772
- "the \"Technical Information\" table for the details."
773
  msgstr ""
774
- "Please note: we will receive some debug data together with your request. See "
775
- "the \"Technical Information\" table for the details."
776
 
777
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:63
 
 
 
 
 
 
 
 
778
  msgid "To help us serve you better:"
779
  msgstr "To help us serve you better:"
780
 
781
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:65
782
  msgid ""
783
  "Please check if the problem persists if you switch to a standard WordPress "
784
  "theme."
@@ -786,16 +775,46 @@ msgstr ""
786
  "Please check if the problem persists if you switch to a standard WordPress "
787
  "theme."
788
 
789
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:66
790
  msgid ""
791
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
792
  msgstr ""
793
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
794
 
795
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
796
  msgid "Technical Information"
797
  msgstr "Technical Information"
798
 
 
 
 
 
 
 
 
 
 
 
799
  #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:58
800
  msgid "WPGlobus Recommends:"
801
  msgstr "WPGlobus Recommends:"
@@ -1484,3 +1503,21 @@ msgstr ""
1484
  #: wpglobus.php:19
1485
  msgid "https://wpglobus.com/"
1486
  msgstr "https://wpglobus.com/"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  #: includes/admin/class-wpglobus-about.php:42,
20
  #: includes/admin/class-wpglobus-about.php:117,
21
  #: includes/admin/class-wpglobus-clean.php:600,
22
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
23
  msgid "Guide"
24
  msgstr "Guide"
25
 
26
  #: includes/admin/central/class-wpglobus-admin-central.php:142,
27
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:102
28
  msgid "WPGlobus Help Desk"
29
  msgstr "WPGlobus Help Desk"
30
 
34
  #: includes/admin/class-wpglobus-clean.php:606,
35
  #: includes/admin/class-wpglobus-customize-options.php:1254,
36
  #: includes/admin/class-wpglobus-customize-options.php:1286,
37
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
38
  msgid "Add-ons"
39
  msgstr "Add-ons"
40
 
43
  msgstr "Quick Start"
44
 
45
  #: includes/admin/class-wpglobus-about.php:48,
46
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:49
47
  msgid "FAQ"
48
  msgstr "FAQ"
49
 
551
  "us."
552
 
553
  #: includes/admin/class-wpglobus-customize-options.php:1360,
 
554
  #: includes/options/class-wpglobus-options.php:586
555
  msgid "Sincerely Yours,"
556
  msgstr "Sincerely Yours,"
557
 
558
  #: includes/admin/class-wpglobus-customize-options.php:1362,
 
559
  #: includes/options/class-wpglobus-options.php:588,
560
  #: includes/options/wpglobus-options-header.php:34
561
  msgid "The WPGlobus Team"
737
  msgid "Installed"
738
  msgstr "Installed"
739
 
740
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:103,
741
  #: includes/options/class-wpglobus-options.php:659
742
  msgid "Help Desk"
743
  msgstr "Help Desk"
744
 
745
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:182
746
+ msgid "Email not sent. Please fill in the entire form."
747
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
748
 
749
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:192
750
  msgid ""
751
+ "Email not sent. Please verify that your name and email are entered correctly."
752
  msgstr ""
 
753
 
754
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:213
755
+ msgid "Email sent."
 
 
756
  msgstr ""
 
 
757
 
758
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:68
759
+ msgid "Thank you for using WPGlobus!"
760
+ msgstr "Thank you for using WPGlobus!"
761
+
762
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69
763
+ msgid "Our Support Team is here to answer your questions or concerns."
764
+ msgstr "Our Support Team is here to answer your questions or concerns."
765
+
766
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:71
767
  msgid "To help us serve you better:"
768
  msgstr "To help us serve you better:"
769
 
770
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
771
  msgid ""
772
  "Please check if the problem persists if you switch to a standard WordPress "
773
  "theme."
775
  "Please check if the problem persists if you switch to a standard WordPress "
776
  "theme."
777
 
778
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:74
779
  msgid ""
780
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
781
  msgstr ""
782
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
783
 
784
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:77
785
+ msgid "Please fill in and submit the contact form:"
786
+ msgstr ""
787
+
788
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:97
789
+ msgid "Please make sure the email address is correct."
790
+ msgstr ""
791
+
792
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:103
793
+ msgid "Subject"
794
+ msgstr ""
795
+
796
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:108
797
+ msgid "Short description of the problem"
798
+ msgstr ""
799
+
800
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:113
801
+ msgid "Detailed description"
802
+ msgstr ""
803
+
804
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:120
805
  msgid "Technical Information"
806
  msgstr "Technical Information"
807
 
808
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:127
809
+ msgid "This information helps us to find the problem source"
810
+ msgstr ""
811
+
812
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:143
813
+ msgid ""
814
+ "Alternatively, please email %s. Do not forget to copy and paste the "
815
+ "technical information to your email message."
816
+ msgstr ""
817
+
818
  #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:58
819
  msgid "WPGlobus Recommends:"
820
  msgstr "WPGlobus Recommends:"
1503
  #: wpglobus.php:19
1504
  msgid "https://wpglobus.com/"
1505
  msgstr "https://wpglobus.com/"
1506
+
1507
+ #~ msgid "Click here to open the Contact Form."
1508
+ #~ msgstr "Click here to open the Contact Form."
1509
+
1510
+ #~ msgid "Type in your name, email, subject and the detailed message."
1511
+ #~ msgstr "Type in your name, email, subject and the detailed message."
1512
+
1513
+ #~ msgid ""
1514
+ #~ "If you can make a screenshot demonstrating the problem, please attach it."
1515
+ #~ msgstr ""
1516
+ #~ "If you can make a screenshot demonstrating the problem, please attach it."
1517
+
1518
+ #~ msgid ""
1519
+ #~ "Please note: we will receive some debug data together with your request. "
1520
+ #~ "See the \"Technical Information\" table for the details."
1521
+ #~ msgstr ""
1522
+ #~ "Please note: we will receive some debug data together with your request. "
1523
+ #~ "See the \"Technical Information\" table for the details."
languages/wpglobus-en_ZA.mo CHANGED
Binary file
languages/wpglobus-en_ZA.po CHANGED
@@ -20,12 +20,12 @@ msgstr ""
20
  #: includes/admin/class-wpglobus-about.php:42,
21
  #: includes/admin/class-wpglobus-about.php:117,
22
  #: includes/admin/class-wpglobus-clean.php:600,
23
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
24
  msgid "Guide"
25
  msgstr "Guide"
26
 
27
  #: includes/admin/central/class-wpglobus-admin-central.php:142,
28
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:44
29
  msgid "WPGlobus Help Desk"
30
  msgstr "WPGlobus Help Desk"
31
 
@@ -35,7 +35,7 @@ msgstr "WPGlobus Help Desk"
35
  #: includes/admin/class-wpglobus-clean.php:606,
36
  #: includes/admin/class-wpglobus-customize-options.php:1254,
37
  #: includes/admin/class-wpglobus-customize-options.php:1286,
38
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:31
39
  msgid "Add-ons"
40
  msgstr "Add-ons"
41
 
@@ -44,7 +44,7 @@ msgid "Quick Start"
44
  msgstr "Quick Start"
45
 
46
  #: includes/admin/class-wpglobus-about.php:48,
47
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
48
  msgid "FAQ"
49
  msgstr "FAQ"
50
 
@@ -550,13 +550,11 @@ msgstr ""
550
  "us."
551
 
552
  #: includes/admin/class-wpglobus-customize-options.php:1360,
553
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69,
554
  #: includes/options/class-wpglobus-options.php:586
555
  msgid "Sincerely Yours,"
556
  msgstr "Sincerely Yours,"
557
 
558
  #: includes/admin/class-wpglobus-customize-options.php:1362,
559
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:70,
560
  #: includes/options/class-wpglobus-options.php:588,
561
  #: includes/options/wpglobus-options-header.php:34
562
  msgid "The WPGlobus Team"
@@ -738,46 +736,37 @@ msgstr "Premium add-on"
738
  msgid "Installed"
739
  msgstr "Installed"
740
 
741
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:45,
742
  #: includes/options/class-wpglobus-options.php:659
743
  msgid "Help Desk"
744
  msgstr "Help Desk"
745
 
746
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:55
747
- msgid "Thank you for using WPGlobus!"
748
- msgstr "Thank you for using WPGlobus!"
749
-
750
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:56
751
- msgid "Our Support Team is here to answer your questions or concerns."
752
- msgstr "Our Support Team is here to answer your questions or concerns."
753
-
754
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:58
755
- msgid "Click here to open the Contact Form."
756
  msgstr ""
757
 
758
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:59
759
- msgid "Type in your name, email, subject and the detailed message."
760
- msgstr "Type in your name, email, subject and the detailed message."
761
-
762
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:60
763
  msgid ""
764
- "If you can make a screenshot demonstrating the problem, please attach it."
765
  msgstr ""
766
- "If you can make a screenshot demonstrating the problem, please attach it."
767
 
768
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:61
769
- msgid ""
770
- "Please note: we will receive some debug data together with your request. See "
771
- "the \"Technical Information\" table for the details."
772
  msgstr ""
773
- "Please note: we will receive some debug data together with your request. See "
774
- "the \"Technical Information\" table for the details."
775
 
776
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:63
 
 
 
 
 
 
 
 
777
  msgid "To help us serve you better:"
778
  msgstr "To help us serve you better:"
779
 
780
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:65
781
  msgid ""
782
  "Please check if the problem persists if you switch to a standard WordPress "
783
  "theme."
@@ -785,16 +774,46 @@ msgstr ""
785
  "Please check if the problem persists if you switch to a standard WordPress "
786
  "theme."
787
 
788
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:66
789
  msgid ""
790
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
791
  msgstr ""
792
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
793
 
794
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
795
  msgid "Technical Information"
796
  msgstr "Technical Information"
797
 
 
 
 
 
 
 
 
 
 
 
798
  #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:58
799
  msgid "WPGlobus Recommends:"
800
  msgstr "WPGlobus Recommends:"
@@ -1443,3 +1462,18 @@ msgstr ""
1443
  #: wpglobus.php:19
1444
  msgid "https://wpglobus.com/"
1445
  msgstr "https://wpglobus.com/"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
  #: includes/admin/class-wpglobus-about.php:42,
21
  #: includes/admin/class-wpglobus-about.php:117,
22
  #: includes/admin/class-wpglobus-clean.php:600,
23
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
24
  msgid "Guide"
25
  msgstr "Guide"
26
 
27
  #: includes/admin/central/class-wpglobus-admin-central.php:142,
28
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:102
29
  msgid "WPGlobus Help Desk"
30
  msgstr "WPGlobus Help Desk"
31
 
35
  #: includes/admin/class-wpglobus-clean.php:606,
36
  #: includes/admin/class-wpglobus-customize-options.php:1254,
37
  #: includes/admin/class-wpglobus-customize-options.php:1286,
38
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
39
  msgid "Add-ons"
40
  msgstr "Add-ons"
41
 
44
  msgstr "Quick Start"
45
 
46
  #: includes/admin/class-wpglobus-about.php:48,
47
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:49
48
  msgid "FAQ"
49
  msgstr "FAQ"
50
 
550
  "us."
551
 
552
  #: includes/admin/class-wpglobus-customize-options.php:1360,
 
553
  #: includes/options/class-wpglobus-options.php:586
554
  msgid "Sincerely Yours,"
555
  msgstr "Sincerely Yours,"
556
 
557
  #: includes/admin/class-wpglobus-customize-options.php:1362,
 
558
  #: includes/options/class-wpglobus-options.php:588,
559
  #: includes/options/wpglobus-options-header.php:34
560
  msgid "The WPGlobus Team"
736
  msgid "Installed"
737
  msgstr "Installed"
738
 
739
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:103,
740
  #: includes/options/class-wpglobus-options.php:659
741
  msgid "Help Desk"
742
  msgstr "Help Desk"
743
 
744
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:182
745
+ msgid "Email not sent. Please fill in the entire form."
 
 
 
 
 
 
 
 
746
  msgstr ""
747
 
748
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:192
 
 
 
 
749
  msgid ""
750
+ "Email not sent. Please verify that your name and email are entered correctly."
751
  msgstr ""
 
752
 
753
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:213
754
+ msgid "Email sent."
 
 
755
  msgstr ""
 
 
756
 
757
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:68
758
+ msgid "Thank you for using WPGlobus!"
759
+ msgstr "Thank you for using WPGlobus!"
760
+
761
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69
762
+ msgid "Our Support Team is here to answer your questions or concerns."
763
+ msgstr "Our Support Team is here to answer your questions or concerns."
764
+
765
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:71
766
  msgid "To help us serve you better:"
767
  msgstr "To help us serve you better:"
768
 
769
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
770
  msgid ""
771
  "Please check if the problem persists if you switch to a standard WordPress "
772
  "theme."
774
  "Please check if the problem persists if you switch to a standard WordPress "
775
  "theme."
776
 
777
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:74
778
  msgid ""
779
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
780
  msgstr ""
781
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
782
 
783
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:77
784
+ msgid "Please fill in and submit the contact form:"
785
+ msgstr ""
786
+
787
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:97
788
+ msgid "Please make sure the email address is correct."
789
+ msgstr ""
790
+
791
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:103
792
+ msgid "Subject"
793
+ msgstr ""
794
+
795
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:108
796
+ msgid "Short description of the problem"
797
+ msgstr ""
798
+
799
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:113
800
+ msgid "Detailed description"
801
+ msgstr ""
802
+
803
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:120
804
  msgid "Technical Information"
805
  msgstr "Technical Information"
806
 
807
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:127
808
+ msgid "This information helps us to find the problem source"
809
+ msgstr ""
810
+
811
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:143
812
+ msgid ""
813
+ "Alternatively, please email %s. Do not forget to copy and paste the "
814
+ "technical information to your email message."
815
+ msgstr ""
816
+
817
  #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:58
818
  msgid "WPGlobus Recommends:"
819
  msgstr "WPGlobus Recommends:"
1462
  #: wpglobus.php:19
1463
  msgid "https://wpglobus.com/"
1464
  msgstr "https://wpglobus.com/"
1465
+
1466
+ #~ msgid "Type in your name, email, subject and the detailed message."
1467
+ #~ msgstr "Type in your name, email, subject and the detailed message."
1468
+
1469
+ #~ msgid ""
1470
+ #~ "If you can make a screenshot demonstrating the problem, please attach it."
1471
+ #~ msgstr ""
1472
+ #~ "If you can make a screenshot demonstrating the problem, please attach it."
1473
+
1474
+ #~ msgid ""
1475
+ #~ "Please note: we will receive some debug data together with your request. "
1476
+ #~ "See the \"Technical Information\" table for the details."
1477
+ #~ msgstr ""
1478
+ #~ "Please note: we will receive some debug data together with your request. "
1479
+ #~ "See the \"Technical Information\" table for the details."
languages/wpglobus-es_AR.po CHANGED
@@ -20,12 +20,12 @@ msgstr ""
20
  #: includes/admin/class-wpglobus-about.php:42,
21
  #: includes/admin/class-wpglobus-about.php:117,
22
  #: includes/admin/class-wpglobus-clean.php:600,
23
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
24
  msgid "Guide"
25
  msgstr "Guía"
26
 
27
  #: includes/admin/central/class-wpglobus-admin-central.php:142,
28
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:44
29
  msgid "WPGlobus Help Desk"
30
  msgstr ""
31
 
@@ -35,7 +35,7 @@ msgstr ""
35
  #: includes/admin/class-wpglobus-clean.php:606,
36
  #: includes/admin/class-wpglobus-customize-options.php:1254,
37
  #: includes/admin/class-wpglobus-customize-options.php:1286,
38
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:31
39
  msgid "Add-ons"
40
  msgstr "Complementos"
41
 
@@ -44,7 +44,7 @@ msgid "Quick Start"
44
  msgstr "Inicio Rápido"
45
 
46
  #: includes/admin/class-wpglobus-about.php:48,
47
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
48
  msgid "FAQ"
49
  msgstr "FAQ"
50
 
@@ -521,13 +521,11 @@ msgstr ""
521
  "nosotros."
522
 
523
  #: includes/admin/class-wpglobus-customize-options.php:1360,
524
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69,
525
  #: includes/options/class-wpglobus-options.php:586
526
  msgid "Sincerely Yours,"
527
  msgstr "Sinceramente tuyo,"
528
 
529
  #: includes/admin/class-wpglobus-customize-options.php:1362,
530
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:70,
531
  #: includes/options/class-wpglobus-options.php:588,
532
  #: includes/options/wpglobus-options-header.php:34
533
  msgid "The WPGlobus Team"
@@ -704,57 +702,81 @@ msgstr ""
704
  msgid "Installed"
705
  msgstr "Instalado"
706
 
707
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:45,
708
  #: includes/options/class-wpglobus-options.php:659
709
  msgid "Help Desk"
710
  msgstr ""
711
 
712
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:55
713
- msgid "Thank you for using WPGlobus!"
714
- msgstr ""
715
-
716
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:56
717
- msgid "Our Support Team is here to answer your questions or concerns."
718
  msgstr ""
719
 
720
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:58
721
- msgid "Click here to open the Contact Form."
 
722
  msgstr ""
723
 
724
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:59
725
- msgid "Type in your name, email, subject and the detailed message."
726
  msgstr ""
727
 
728
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:60
729
- msgid ""
730
- "If you can make a screenshot demonstrating the problem, please attach it."
731
  msgstr ""
732
 
733
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:61
734
- msgid ""
735
- "Please note: we will receive some debug data together with your request. See "
736
- "the \"Technical Information\" table for the details."
737
  msgstr ""
738
 
739
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:63
740
  msgid "To help us serve you better:"
741
  msgstr ""
742
 
743
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:65
744
  msgid ""
745
  "Please check if the problem persists if you switch to a standard WordPress "
746
  "theme."
747
  msgstr ""
748
 
749
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:66
750
  msgid ""
751
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
752
  msgstr ""
753
 
754
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
755
  msgid "Technical Information"
756
  msgstr ""
757
 
 
 
 
 
 
 
 
 
 
 
758
  #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:58
759
  msgid "WPGlobus Recommends:"
760
  msgstr ""
20
  #: includes/admin/class-wpglobus-about.php:42,
21
  #: includes/admin/class-wpglobus-about.php:117,
22
  #: includes/admin/class-wpglobus-clean.php:600,
23
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
24
  msgid "Guide"
25
  msgstr "Guía"
26
 
27
  #: includes/admin/central/class-wpglobus-admin-central.php:142,
28
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:102
29
  msgid "WPGlobus Help Desk"
30
  msgstr ""
31
 
35
  #: includes/admin/class-wpglobus-clean.php:606,
36
  #: includes/admin/class-wpglobus-customize-options.php:1254,
37
  #: includes/admin/class-wpglobus-customize-options.php:1286,
38
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
39
  msgid "Add-ons"
40
  msgstr "Complementos"
41
 
44
  msgstr "Inicio Rápido"
45
 
46
  #: includes/admin/class-wpglobus-about.php:48,
47
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:49
48
  msgid "FAQ"
49
  msgstr "FAQ"
50
 
521
  "nosotros."
522
 
523
  #: includes/admin/class-wpglobus-customize-options.php:1360,
 
524
  #: includes/options/class-wpglobus-options.php:586
525
  msgid "Sincerely Yours,"
526
  msgstr "Sinceramente tuyo,"
527
 
528
  #: includes/admin/class-wpglobus-customize-options.php:1362,
 
529
  #: includes/options/class-wpglobus-options.php:588,
530
  #: includes/options/wpglobus-options-header.php:34
531
  msgid "The WPGlobus Team"
702
  msgid "Installed"
703
  msgstr "Instalado"
704
 
705
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:103,
706
  #: includes/options/class-wpglobus-options.php:659
707
  msgid "Help Desk"
708
  msgstr ""
709
 
710
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:182
711
+ msgid "Email not sent. Please fill in the entire form."
 
 
 
 
712
  msgstr ""
713
 
714
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:192
715
+ msgid ""
716
+ "Email not sent. Please verify that your name and email are entered correctly."
717
  msgstr ""
718
 
719
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:213
720
+ msgid "Email sent."
721
  msgstr ""
722
 
723
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:68
724
+ msgid "Thank you for using WPGlobus!"
 
725
  msgstr ""
726
 
727
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69
728
+ msgid "Our Support Team is here to answer your questions or concerns."
 
 
729
  msgstr ""
730
 
731
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:71
732
  msgid "To help us serve you better:"
733
  msgstr ""
734
 
735
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
736
  msgid ""
737
  "Please check if the problem persists if you switch to a standard WordPress "
738
  "theme."
739
  msgstr ""
740
 
741
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:74
742
  msgid ""
743
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
744
  msgstr ""
745
 
746
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:77
747
+ msgid "Please fill in and submit the contact form:"
748
+ msgstr ""
749
+
750
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:97
751
+ msgid "Please make sure the email address is correct."
752
+ msgstr ""
753
+
754
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:103
755
+ msgid "Subject"
756
+ msgstr ""
757
+
758
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:108
759
+ msgid "Short description of the problem"
760
+ msgstr ""
761
+
762
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:113
763
+ msgid "Detailed description"
764
+ msgstr ""
765
+
766
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:120
767
  msgid "Technical Information"
768
  msgstr ""
769
 
770
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:127
771
+ msgid "This information helps us to find the problem source"
772
+ msgstr ""
773
+
774
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:143
775
+ msgid ""
776
+ "Alternatively, please email %s. Do not forget to copy and paste the "
777
+ "technical information to your email message."
778
+ msgstr ""
779
+
780
  #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:58
781
  msgid "WPGlobus Recommends:"
782
  msgstr ""
languages/wpglobus-es_CL.po CHANGED
@@ -20,12 +20,12 @@ msgstr ""
20
  #: includes/admin/class-wpglobus-about.php:42,
21
  #: includes/admin/class-wpglobus-about.php:117,
22
  #: includes/admin/class-wpglobus-clean.php:600,
23
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
24
  msgid "Guide"
25
  msgstr "Guía"
26
 
27
  #: includes/admin/central/class-wpglobus-admin-central.php:142,
28
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:44
29
  msgid "WPGlobus Help Desk"
30
  msgstr ""
31
 
@@ -35,7 +35,7 @@ msgstr ""
35
  #: includes/admin/class-wpglobus-clean.php:606,
36
  #: includes/admin/class-wpglobus-customize-options.php:1254,
37
  #: includes/admin/class-wpglobus-customize-options.php:1286,
38
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:31
39
  msgid "Add-ons"
40
  msgstr "Complementos"
41
 
@@ -44,7 +44,7 @@ msgid "Quick Start"
44
  msgstr "Inicio Rápido"
45
 
46
  #: includes/admin/class-wpglobus-about.php:48,
47
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
48
  msgid "FAQ"
49
  msgstr "FAQ"
50
 
@@ -521,13 +521,11 @@ msgstr ""
521
  "nosotros."
522
 
523
  #: includes/admin/class-wpglobus-customize-options.php:1360,
524
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69,
525
  #: includes/options/class-wpglobus-options.php:586
526
  msgid "Sincerely Yours,"
527
  msgstr "Sinceramente tuyo,"
528
 
529
  #: includes/admin/class-wpglobus-customize-options.php:1362,
530
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:70,
531
  #: includes/options/class-wpglobus-options.php:588,
532
  #: includes/options/wpglobus-options-header.php:34
533
  msgid "The WPGlobus Team"
@@ -704,57 +702,81 @@ msgstr ""
704
  msgid "Installed"
705
  msgstr "Instalado"
706
 
707
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:45,
708
  #: includes/options/class-wpglobus-options.php:659
709
  msgid "Help Desk"
710
  msgstr ""
711
 
712
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:55
713
- msgid "Thank you for using WPGlobus!"
714
- msgstr ""
715
-
716
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:56
717
- msgid "Our Support Team is here to answer your questions or concerns."
718
  msgstr ""
719
 
720
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:58
721
- msgid "Click here to open the Contact Form."
 
722
  msgstr ""
723
 
724
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:59
725
- msgid "Type in your name, email, subject and the detailed message."
726
  msgstr ""
727
 
728
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:60
729
- msgid ""
730
- "If you can make a screenshot demonstrating the problem, please attach it."
731
  msgstr ""
732
 
733
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:61
734
- msgid ""
735
- "Please note: we will receive some debug data together with your request. See "
736
- "the \"Technical Information\" table for the details."
737
  msgstr ""
738
 
739
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:63
740
  msgid "To help us serve you better:"
741
  msgstr ""
742
 
743
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:65
744
  msgid ""
745
  "Please check if the problem persists if you switch to a standard WordPress "
746
  "theme."
747
  msgstr ""
748
 
749
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:66
750
  msgid ""
751
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
752
  msgstr ""
753
 
754
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
755
  msgid "Technical Information"
756
  msgstr ""
757
 
 
 
 
 
 
 
 
 
 
 
758
  #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:58
759
  msgid "WPGlobus Recommends:"
760
  msgstr ""
20
  #: includes/admin/class-wpglobus-about.php:42,
21
  #: includes/admin/class-wpglobus-about.php:117,
22
  #: includes/admin/class-wpglobus-clean.php:600,
23
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
24
  msgid "Guide"
25
  msgstr "Guía"
26
 
27
  #: includes/admin/central/class-wpglobus-admin-central.php:142,
28
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:102
29
  msgid "WPGlobus Help Desk"
30
  msgstr ""
31
 
35
  #: includes/admin/class-wpglobus-clean.php:606,
36
  #: includes/admin/class-wpglobus-customize-options.php:1254,
37
  #: includes/admin/class-wpglobus-customize-options.php:1286,
38
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
39
  msgid "Add-ons"
40
  msgstr "Complementos"
41
 
44
  msgstr "Inicio Rápido"
45
 
46
  #: includes/admin/class-wpglobus-about.php:48,
47
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:49
48
  msgid "FAQ"
49
  msgstr "FAQ"
50
 
521
  "nosotros."
522
 
523
  #: includes/admin/class-wpglobus-customize-options.php:1360,
 
524
  #: includes/options/class-wpglobus-options.php:586
525
  msgid "Sincerely Yours,"
526
  msgstr "Sinceramente tuyo,"
527
 
528
  #: includes/admin/class-wpglobus-customize-options.php:1362,
 
529
  #: includes/options/class-wpglobus-options.php:588,
530
  #: includes/options/wpglobus-options-header.php:34
531
  msgid "The WPGlobus Team"
702
  msgid "Installed"
703
  msgstr "Instalado"
704
 
705
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:103,
706
  #: includes/options/class-wpglobus-options.php:659
707
  msgid "Help Desk"
708
  msgstr ""
709
 
710
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:182
711
+ msgid "Email not sent. Please fill in the entire form."
 
 
 
 
712
  msgstr ""
713
 
714
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:192
715
+ msgid ""
716
+ "Email not sent. Please verify that your name and email are entered correctly."
717
  msgstr ""
718
 
719
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:213
720
+ msgid "Email sent."
721
  msgstr ""
722
 
723
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:68
724
+ msgid "Thank you for using WPGlobus!"
 
725
  msgstr ""
726
 
727
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69
728
+ msgid "Our Support Team is here to answer your questions or concerns."
 
 
729
  msgstr ""
730
 
731
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:71
732
  msgid "To help us serve you better:"
733
  msgstr ""
734
 
735
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
736
  msgid ""
737
  "Please check if the problem persists if you switch to a standard WordPress "
738
  "theme."
739
  msgstr ""
740
 
741
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:74
742
  msgid ""
743
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
744
  msgstr ""
745
 
746
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:77
747
+ msgid "Please fill in and submit the contact form:"
748
+ msgstr ""
749
+
750
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:97
751
+ msgid "Please make sure the email address is correct."
752
+ msgstr ""
753
+
754
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:103
755
+ msgid "Subject"
756
+ msgstr ""
757
+
758
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:108
759
+ msgid "Short description of the problem"
760
+ msgstr ""
761
+
762
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:113
763
+ msgid "Detailed description"
764
+ msgstr ""
765
+
766
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:120
767
  msgid "Technical Information"
768
  msgstr ""
769
 
770
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:127
771
+ msgid "This information helps us to find the problem source"
772
+ msgstr ""
773
+
774
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:143
775
+ msgid ""
776
+ "Alternatively, please email %s. Do not forget to copy and paste the "
777
+ "technical information to your email message."
778
+ msgstr ""
779
+
780
  #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:58
781
  msgid "WPGlobus Recommends:"
782
  msgstr ""
languages/wpglobus-es_CO.po CHANGED
@@ -20,12 +20,12 @@ msgstr ""
20
  #: includes/admin/class-wpglobus-about.php:42,
21
  #: includes/admin/class-wpglobus-about.php:117,
22
  #: includes/admin/class-wpglobus-clean.php:600,
23
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
24
  msgid "Guide"
25
  msgstr "Guía"
26
 
27
  #: includes/admin/central/class-wpglobus-admin-central.php:142,
28
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:44
29
  msgid "WPGlobus Help Desk"
30
  msgstr ""
31
 
@@ -35,7 +35,7 @@ msgstr ""
35
  #: includes/admin/class-wpglobus-clean.php:606,
36
  #: includes/admin/class-wpglobus-customize-options.php:1254,
37
  #: includes/admin/class-wpglobus-customize-options.php:1286,
38
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:31
39
  msgid "Add-ons"
40
  msgstr "Complementos"
41
 
@@ -44,7 +44,7 @@ msgid "Quick Start"
44
  msgstr "Inicio Rápido"
45
 
46
  #: includes/admin/class-wpglobus-about.php:48,
47
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
48
  msgid "FAQ"
49
  msgstr "FAQ"
50
 
@@ -521,13 +521,11 @@ msgstr ""
521
  "nosotros."
522
 
523
  #: includes/admin/class-wpglobus-customize-options.php:1360,
524
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69,
525
  #: includes/options/class-wpglobus-options.php:586
526
  msgid "Sincerely Yours,"
527
  msgstr "Sinceramente tuyo,"
528
 
529
  #: includes/admin/class-wpglobus-customize-options.php:1362,
530
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:70,
531
  #: includes/options/class-wpglobus-options.php:588,
532
  #: includes/options/wpglobus-options-header.php:34
533
  msgid "The WPGlobus Team"
@@ -704,57 +702,81 @@ msgstr ""
704
  msgid "Installed"
705
  msgstr "Instalado"
706
 
707
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:45,
708
  #: includes/options/class-wpglobus-options.php:659
709
  msgid "Help Desk"
710
  msgstr ""
711
 
712
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:55
713
- msgid "Thank you for using WPGlobus!"
714
- msgstr ""
715
-
716
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:56
717
- msgid "Our Support Team is here to answer your questions or concerns."
718
  msgstr ""
719
 
720
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:58
721
- msgid "Click here to open the Contact Form."
 
722
  msgstr ""
723
 
724
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:59
725
- msgid "Type in your name, email, subject and the detailed message."
726
  msgstr ""
727
 
728
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:60
729
- msgid ""
730
- "If you can make a screenshot demonstrating the problem, please attach it."
731
  msgstr ""
732
 
733
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:61
734
- msgid ""
735
- "Please note: we will receive some debug data together with your request. See "
736
- "the \"Technical Information\" table for the details."
737
  msgstr ""
738
 
739
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:63
740
  msgid "To help us serve you better:"
741
  msgstr ""
742
 
743
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:65
744
  msgid ""
745
  "Please check if the problem persists if you switch to a standard WordPress "
746
  "theme."
747
  msgstr ""
748
 
749
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:66
750
  msgid ""
751
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
752
  msgstr ""
753
 
754
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
755
  msgid "Technical Information"
756
  msgstr ""
757
 
 
 
 
 
 
 
 
 
 
 
758
  #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:58
759
  msgid "WPGlobus Recommends:"
760
  msgstr ""
20
  #: includes/admin/class-wpglobus-about.php:42,
21
  #: includes/admin/class-wpglobus-about.php:117,
22
  #: includes/admin/class-wpglobus-clean.php:600,
23
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
24
  msgid "Guide"
25
  msgstr "Guía"
26
 
27
  #: includes/admin/central/class-wpglobus-admin-central.php:142,
28
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:102
29
  msgid "WPGlobus Help Desk"
30
  msgstr ""
31
 
35
  #: includes/admin/class-wpglobus-clean.php:606,
36
  #: includes/admin/class-wpglobus-customize-options.php:1254,
37
  #: includes/admin/class-wpglobus-customize-options.php:1286,
38
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
39
  msgid "Add-ons"
40
  msgstr "Complementos"
41
 
44
  msgstr "Inicio Rápido"
45
 
46
  #: includes/admin/class-wpglobus-about.php:48,
47
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:49
48
  msgid "FAQ"
49
  msgstr "FAQ"
50
 
521
  "nosotros."
522
 
523
  #: includes/admin/class-wpglobus-customize-options.php:1360,
 
524
  #: includes/options/class-wpglobus-options.php:586
525
  msgid "Sincerely Yours,"
526
  msgstr "Sinceramente tuyo,"
527
 
528
  #: includes/admin/class-wpglobus-customize-options.php:1362,
 
529
  #: includes/options/class-wpglobus-options.php:588,
530
  #: includes/options/wpglobus-options-header.php:34
531
  msgid "The WPGlobus Team"
702
  msgid "Installed"
703
  msgstr "Instalado"
704
 
705
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:103,
706
  #: includes/options/class-wpglobus-options.php:659
707
  msgid "Help Desk"
708
  msgstr ""
709
 
710
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:182
711
+ msgid "Email not sent. Please fill in the entire form."
 
 
 
 
712
  msgstr ""
713
 
714
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:192
715
+ msgid ""
716
+ "Email not sent. Please verify that your name and email are entered correctly."
717
  msgstr ""
718
 
719
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:213
720
+ msgid "Email sent."
721
  msgstr ""
722
 
723
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:68
724
+ msgid "Thank you for using WPGlobus!"
 
725
  msgstr ""
726
 
727
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69
728
+ msgid "Our Support Team is here to answer your questions or concerns."
 
 
729
  msgstr ""
730
 
731
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:71
732
  msgid "To help us serve you better:"
733
  msgstr ""
734
 
735
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
736
  msgid ""
737
  "Please check if the problem persists if you switch to a standard WordPress "
738
  "theme."
739
  msgstr ""
740
 
741
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:74
742
  msgid ""
743
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
744
  msgstr ""
745
 
746
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:77
747
+ msgid "Please fill in and submit the contact form:"
748
+ msgstr ""
749
+
750
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:97
751
+ msgid "Please make sure the email address is correct."
752
+ msgstr ""
753
+
754
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:103
755
+ msgid "Subject"
756
+ msgstr ""
757
+
758
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:108
759
+ msgid "Short description of the problem"
760
+ msgstr ""
761
+
762
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:113
763
+ msgid "Detailed description"
764
+ msgstr ""
765
+
766
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:120
767
  msgid "Technical Information"
768
  msgstr ""
769
 
770
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:127
771
+ msgid "This information helps us to find the problem source"
772
+ msgstr ""
773
+
774
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:143
775
+ msgid ""
776
+ "Alternatively, please email %s. Do not forget to copy and paste the "
777
+ "technical information to your email message."
778
+ msgstr ""
779
+
780
  #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:58
781
  msgid "WPGlobus Recommends:"
782
  msgstr ""
languages/wpglobus-es_CR.po CHANGED
@@ -20,12 +20,12 @@ msgstr ""
20
  #: includes/admin/class-wpglobus-about.php:42,
21
  #: includes/admin/class-wpglobus-about.php:117,
22
  #: includes/admin/class-wpglobus-clean.php:600,
23
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
24
  msgid "Guide"
25
  msgstr "Guía"
26
 
27
  #: includes/admin/central/class-wpglobus-admin-central.php:142,
28
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:44
29
  msgid "WPGlobus Help Desk"
30
  msgstr ""
31
 
@@ -35,7 +35,7 @@ msgstr ""
35
  #: includes/admin/class-wpglobus-clean.php:606,
36
  #: includes/admin/class-wpglobus-customize-options.php:1254,
37
  #: includes/admin/class-wpglobus-customize-options.php:1286,
38
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:31
39
  msgid "Add-ons"
40
  msgstr "Complementos"
41
 
@@ -44,7 +44,7 @@ msgid "Quick Start"
44
  msgstr "Inicio Rápido"
45
 
46
  #: includes/admin/class-wpglobus-about.php:48,
47
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
48
  msgid "FAQ"
49
  msgstr "FAQ"
50
 
@@ -521,13 +521,11 @@ msgstr ""
521
  "nosotros."
522
 
523
  #: includes/admin/class-wpglobus-customize-options.php:1360,
524
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69,
525
  #: includes/options/class-wpglobus-options.php:586
526
  msgid "Sincerely Yours,"
527
  msgstr "Sinceramente tuyo,"
528
 
529
  #: includes/admin/class-wpglobus-customize-options.php:1362,
530
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:70,
531
  #: includes/options/class-wpglobus-options.php:588,
532
  #: includes/options/wpglobus-options-header.php:34
533
  msgid "The WPGlobus Team"
@@ -704,57 +702,81 @@ msgstr ""
704
  msgid "Installed"
705
  msgstr "Instalado"
706
 
707
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:45,
708
  #: includes/options/class-wpglobus-options.php:659
709
  msgid "Help Desk"
710
  msgstr ""
711
 
712
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:55
713
- msgid "Thank you for using WPGlobus!"
714
- msgstr ""
715
-
716
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:56
717
- msgid "Our Support Team is here to answer your questions or concerns."
718
  msgstr ""
719
 
720
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:58
721
- msgid "Click here to open the Contact Form."
 
722
  msgstr ""
723
 
724
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:59
725
- msgid "Type in your name, email, subject and the detailed message."
726
  msgstr ""
727
 
728
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:60
729
- msgid ""
730
- "If you can make a screenshot demonstrating the problem, please attach it."
731
  msgstr ""
732
 
733
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:61
734
- msgid ""
735
- "Please note: we will receive some debug data together with your request. See "
736
- "the \"Technical Information\" table for the details."
737
  msgstr ""
738
 
739
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:63
740
  msgid "To help us serve you better:"
741
  msgstr ""
742
 
743
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:65
744
  msgid ""
745
  "Please check if the problem persists if you switch to a standard WordPress "
746
  "theme."
747
  msgstr ""
748
 
749
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:66
750
  msgid ""
751
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
752
  msgstr ""
753
 
754
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
755
  msgid "Technical Information"
756
  msgstr ""
757
 
 
 
 
 
 
 
 
 
 
 
758
  #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:58
759
  msgid "WPGlobus Recommends:"
760
  msgstr ""
20
  #: includes/admin/class-wpglobus-about.php:42,
21
  #: includes/admin/class-wpglobus-about.php:117,
22
  #: includes/admin/class-wpglobus-clean.php:600,
23
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
24
  msgid "Guide"
25
  msgstr "Guía"
26
 
27
  #: includes/admin/central/class-wpglobus-admin-central.php:142,
28
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:102
29
  msgid "WPGlobus Help Desk"
30
  msgstr ""
31
 
35
  #: includes/admin/class-wpglobus-clean.php:606,
36
  #: includes/admin/class-wpglobus-customize-options.php:1254,
37
  #: includes/admin/class-wpglobus-customize-options.php:1286,
38
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
39
  msgid "Add-ons"
40
  msgstr "Complementos"
41
 
44
  msgstr "Inicio Rápido"
45
 
46
  #: includes/admin/class-wpglobus-about.php:48,
47
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:49
48
  msgid "FAQ"
49
  msgstr "FAQ"
50
 
521
  "nosotros."
522
 
523
  #: includes/admin/class-wpglobus-customize-options.php:1360,
 
524
  #: includes/options/class-wpglobus-options.php:586
525
  msgid "Sincerely Yours,"
526
  msgstr "Sinceramente tuyo,"
527
 
528
  #: includes/admin/class-wpglobus-customize-options.php:1362,
 
529
  #: includes/options/class-wpglobus-options.php:588,
530
  #: includes/options/wpglobus-options-header.php:34
531
  msgid "The WPGlobus Team"
702
  msgid "Installed"
703
  msgstr "Instalado"
704
 
705
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:103,
706
  #: includes/options/class-wpglobus-options.php:659
707
  msgid "Help Desk"
708
  msgstr ""
709
 
710
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:182
711
+ msgid "Email not sent. Please fill in the entire form."
 
 
 
 
712
  msgstr ""
713
 
714
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:192
715
+ msgid ""
716
+ "Email not sent. Please verify that your name and email are entered correctly."
717
  msgstr ""
718
 
719
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:213
720
+ msgid "Email sent."
721
  msgstr ""
722
 
723
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:68
724
+ msgid "Thank you for using WPGlobus!"
 
725
  msgstr ""
726
 
727
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69
728
+ msgid "Our Support Team is here to answer your questions or concerns."
 
 
729
  msgstr ""
730
 
731
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:71
732
  msgid "To help us serve you better:"
733
  msgstr ""
734
 
735
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
736
  msgid ""
737
  "Please check if the problem persists if you switch to a standard WordPress "
738
  "theme."
739
  msgstr ""
740
 
741
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:74
742
  msgid ""
743
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
744
  msgstr ""
745
 
746
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:77
747
+ msgid "Please fill in and submit the contact form:"
748
+ msgstr ""
749
+
750
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:97
751
+ msgid "Please make sure the email address is correct."
752
+ msgstr ""
753
+
754
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:103
755
+ msgid "Subject"
756
+ msgstr ""
757
+
758
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:108
759
+ msgid "Short description of the problem"
760
+ msgstr ""
761
+
762
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:113
763
+ msgid "Detailed description"
764
+ msgstr ""
765
+
766
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:120
767
  msgid "Technical Information"
768
  msgstr ""
769
 
770
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:127
771
+ msgid "This information helps us to find the problem source"
772
+ msgstr ""
773
+
774
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:143
775
+ msgid ""
776
+ "Alternatively, please email %s. Do not forget to copy and paste the "
777
+ "technical information to your email message."
778
+ msgstr ""
779
+
780
  #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:58
781
  msgid "WPGlobus Recommends:"
782
  msgstr ""
languages/wpglobus-es_ES.po CHANGED
@@ -20,12 +20,12 @@ msgstr ""
20
  #: includes/admin/class-wpglobus-about.php:42,
21
  #: includes/admin/class-wpglobus-about.php:117,
22
  #: includes/admin/class-wpglobus-clean.php:600,
23
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
24
  msgid "Guide"
25
  msgstr "Guía"
26
 
27
  #: includes/admin/central/class-wpglobus-admin-central.php:142,
28
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:44
29
  msgid "WPGlobus Help Desk"
30
  msgstr ""
31
 
@@ -35,7 +35,7 @@ msgstr ""
35
  #: includes/admin/class-wpglobus-clean.php:606,
36
  #: includes/admin/class-wpglobus-customize-options.php:1254,
37
  #: includes/admin/class-wpglobus-customize-options.php:1286,
38
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:31
39
  msgid "Add-ons"
40
  msgstr "Complementos"
41
 
@@ -44,7 +44,7 @@ msgid "Quick Start"
44
  msgstr "Inicio Rápido"
45
 
46
  #: includes/admin/class-wpglobus-about.php:48,
47
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
48
  msgid "FAQ"
49
  msgstr "FAQ"
50
 
@@ -521,13 +521,11 @@ msgstr ""
521
  "nosotros."
522
 
523
  #: includes/admin/class-wpglobus-customize-options.php:1360,
524
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69,
525
  #: includes/options/class-wpglobus-options.php:586
526
  msgid "Sincerely Yours,"
527
  msgstr "Sinceramente tuyo,"
528
 
529
  #: includes/admin/class-wpglobus-customize-options.php:1362,
530
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:70,
531
  #: includes/options/class-wpglobus-options.php:588,
532
  #: includes/options/wpglobus-options-header.php:34
533
  msgid "The WPGlobus Team"
@@ -704,57 +702,81 @@ msgstr ""
704
  msgid "Installed"
705
  msgstr "Instalado"
706
 
707
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:45,
708
  #: includes/options/class-wpglobus-options.php:659
709
  msgid "Help Desk"
710
  msgstr ""
711
 
712
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:55
713
- msgid "Thank you for using WPGlobus!"
714
- msgstr ""
715
-
716
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:56
717
- msgid "Our Support Team is here to answer your questions or concerns."
718
  msgstr ""
719
 
720
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:58
721
- msgid "Click here to open the Contact Form."
 
722
  msgstr ""
723
 
724
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:59
725
- msgid "Type in your name, email, subject and the detailed message."
726
  msgstr ""
727
 
728
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:60
729
- msgid ""
730
- "If you can make a screenshot demonstrating the problem, please attach it."
731
  msgstr ""
732
 
733
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:61
734
- msgid ""
735
- "Please note: we will receive some debug data together with your request. See "
736
- "the \"Technical Information\" table for the details."
737
  msgstr ""
738
 
739
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:63
740
  msgid "To help us serve you better:"
741
  msgstr ""
742
 
743
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:65
744
  msgid ""
745
  "Please check if the problem persists if you switch to a standard WordPress "
746
  "theme."
747
  msgstr ""
748
 
749
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:66
750
  msgid ""
751
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
752
  msgstr ""
753
 
754
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
755
  msgid "Technical Information"
756
  msgstr ""
757
 
 
 
 
 
 
 
 
 
 
 
758
  #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:58
759
  msgid "WPGlobus Recommends:"
760
  msgstr ""
20
  #: includes/admin/class-wpglobus-about.php:42,
21
  #: includes/admin/class-wpglobus-about.php:117,
22
  #: includes/admin/class-wpglobus-clean.php:600,
23
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
24
  msgid "Guide"
25
  msgstr "Guía"
26
 
27
  #: includes/admin/central/class-wpglobus-admin-central.php:142,
28
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:102
29
  msgid "WPGlobus Help Desk"
30
  msgstr ""
31
 
35
  #: includes/admin/class-wpglobus-clean.php:606,
36
  #: includes/admin/class-wpglobus-customize-options.php:1254,
37
  #: includes/admin/class-wpglobus-customize-options.php:1286,
38
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
39
  msgid "Add-ons"
40
  msgstr "Complementos"
41
 
44
  msgstr "Inicio Rápido"
45
 
46
  #: includes/admin/class-wpglobus-about.php:48,
47
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:49
48
  msgid "FAQ"
49
  msgstr "FAQ"
50
 
521
  "nosotros."
522
 
523
  #: includes/admin/class-wpglobus-customize-options.php:1360,
 
524
  #: includes/options/class-wpglobus-options.php:586
525
  msgid "Sincerely Yours,"
526
  msgstr "Sinceramente tuyo,"
527
 
528
  #: includes/admin/class-wpglobus-customize-options.php:1362,
 
529
  #: includes/options/class-wpglobus-options.php:588,
530
  #: includes/options/wpglobus-options-header.php:34
531
  msgid "The WPGlobus Team"
702
  msgid "Installed"
703
  msgstr "Instalado"
704
 
705
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:103,
706
  #: includes/options/class-wpglobus-options.php:659
707
  msgid "Help Desk"
708
  msgstr ""
709
 
710
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:182
711
+ msgid "Email not sent. Please fill in the entire form."
 
 
 
 
712
  msgstr ""
713
 
714
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:192
715
+ msgid ""
716
+ "Email not sent. Please verify that your name and email are entered correctly."
717
  msgstr ""
718
 
719
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:213
720
+ msgid "Email sent."
721
  msgstr ""
722
 
723
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:68
724
+ msgid "Thank you for using WPGlobus!"
 
725
  msgstr ""
726
 
727
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69
728
+ msgid "Our Support Team is here to answer your questions or concerns."
 
 
729
  msgstr ""
730
 
731
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:71
732
  msgid "To help us serve you better:"
733
  msgstr ""
734
 
735
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
736
  msgid ""
737
  "Please check if the problem persists if you switch to a standard WordPress "
738
  "theme."
739
  msgstr ""
740
 
741
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:74
742
  msgid ""
743
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
744
  msgstr ""
745
 
746
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:77
747
+ msgid "Please fill in and submit the contact form:"
748
+ msgstr ""
749
+
750
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:97
751
+ msgid "Please make sure the email address is correct."
752
+ msgstr ""
753
+
754
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:103
755
+ msgid "Subject"
756
+ msgstr ""
757
+
758
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:108
759
+ msgid "Short description of the problem"
760
+ msgstr ""
761
+
762
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:113
763
+ msgid "Detailed description"
764
+ msgstr ""
765
+
766
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:120
767
  msgid "Technical Information"
768
  msgstr ""
769
 
770
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:127
771
+ msgid "This information helps us to find the problem source"
772
+ msgstr ""
773
+
774
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:143
775
+ msgid ""
776
+ "Alternatively, please email %s. Do not forget to copy and paste the "
777
+ "technical information to your email message."
778
+ msgstr ""
779
+
780
  #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:58
781
  msgid "WPGlobus Recommends:"
782
  msgstr ""
languages/wpglobus-es_GT.po CHANGED
@@ -20,12 +20,12 @@ msgstr ""
20
  #: includes/admin/class-wpglobus-about.php:42,
21
  #: includes/admin/class-wpglobus-about.php:117,
22
  #: includes/admin/class-wpglobus-clean.php:600,
23
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
24
  msgid "Guide"
25
  msgstr "Guía"
26
 
27
  #: includes/admin/central/class-wpglobus-admin-central.php:142,
28
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:44
29
  msgid "WPGlobus Help Desk"
30
  msgstr ""
31
 
@@ -35,7 +35,7 @@ msgstr ""
35
  #: includes/admin/class-wpglobus-clean.php:606,
36
  #: includes/admin/class-wpglobus-customize-options.php:1254,
37
  #: includes/admin/class-wpglobus-customize-options.php:1286,
38
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:31
39
  msgid "Add-ons"
40
  msgstr "Complementos"
41
 
@@ -44,7 +44,7 @@ msgid "Quick Start"
44
  msgstr "Inicio Rápido"
45
 
46
  #: includes/admin/class-wpglobus-about.php:48,
47
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
48
  msgid "FAQ"
49
  msgstr "FAQ"
50
 
@@ -521,13 +521,11 @@ msgstr ""
521
  "nosotros."
522
 
523
  #: includes/admin/class-wpglobus-customize-options.php:1360,
524
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69,
525
  #: includes/options/class-wpglobus-options.php:586
526
  msgid "Sincerely Yours,"
527
  msgstr "Sinceramente tuyo,"
528
 
529
  #: includes/admin/class-wpglobus-customize-options.php:1362,
530
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:70,
531
  #: includes/options/class-wpglobus-options.php:588,
532
  #: includes/options/wpglobus-options-header.php:34
533
  msgid "The WPGlobus Team"
@@ -704,57 +702,81 @@ msgstr ""
704
  msgid "Installed"
705
  msgstr "Instalado"
706
 
707
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:45,
708
  #: includes/options/class-wpglobus-options.php:659
709
  msgid "Help Desk"
710
  msgstr ""
711
 
712
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:55
713
- msgid "Thank you for using WPGlobus!"
714
- msgstr ""
715
-
716
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:56
717
- msgid "Our Support Team is here to answer your questions or concerns."
718
  msgstr ""
719
 
720
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:58
721
- msgid "Click here to open the Contact Form."
 
722
  msgstr ""
723
 
724
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:59
725
- msgid "Type in your name, email, subject and the detailed message."
726
  msgstr ""
727
 
728
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:60
729
- msgid ""
730
- "If you can make a screenshot demonstrating the problem, please attach it."
731
  msgstr ""
732
 
733
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:61
734
- msgid ""
735
- "Please note: we will receive some debug data together with your request. See "
736
- "the \"Technical Information\" table for the details."
737
  msgstr ""
738
 
739
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:63
740
  msgid "To help us serve you better:"
741
  msgstr ""
742
 
743
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:65
744
  msgid ""
745
  "Please check if the problem persists if you switch to a standard WordPress "
746
  "theme."
747
  msgstr ""
748
 
749
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:66
750
  msgid ""
751
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
752
  msgstr ""
753
 
754
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
755
  msgid "Technical Information"
756
  msgstr ""
757
 
 
 
 
 
 
 
 
 
 
 
758
  #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:58
759
  msgid "WPGlobus Recommends:"
760
  msgstr ""
20
  #: includes/admin/class-wpglobus-about.php:42,
21
  #: includes/admin/class-wpglobus-about.php:117,
22
  #: includes/admin/class-wpglobus-clean.php:600,
23
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
24
  msgid "Guide"
25
  msgstr "Guía"
26
 
27
  #: includes/admin/central/class-wpglobus-admin-central.php:142,
28
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:102
29
  msgid "WPGlobus Help Desk"
30
  msgstr ""
31
 
35
  #: includes/admin/class-wpglobus-clean.php:606,
36
  #: includes/admin/class-wpglobus-customize-options.php:1254,
37
  #: includes/admin/class-wpglobus-customize-options.php:1286,
38
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
39
  msgid "Add-ons"
40
  msgstr "Complementos"
41
 
44
  msgstr "Inicio Rápido"
45
 
46
  #: includes/admin/class-wpglobus-about.php:48,
47
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:49
48
  msgid "FAQ"
49
  msgstr "FAQ"
50
 
521
  "nosotros."
522
 
523
  #: includes/admin/class-wpglobus-customize-options.php:1360,
 
524
  #: includes/options/class-wpglobus-options.php:586
525
  msgid "Sincerely Yours,"
526
  msgstr "Sinceramente tuyo,"
527
 
528
  #: includes/admin/class-wpglobus-customize-options.php:1362,
 
529
  #: includes/options/class-wpglobus-options.php:588,
530
  #: includes/options/wpglobus-options-header.php:34
531
  msgid "The WPGlobus Team"
702
  msgid "Installed"
703
  msgstr "Instalado"
704
 
705
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:103,
706
  #: includes/options/class-wpglobus-options.php:659
707
  msgid "Help Desk"
708
  msgstr ""
709
 
710
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:182
711
+ msgid "Email not sent. Please fill in the entire form."
 
 
 
 
712
  msgstr ""
713
 
714
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:192
715
+ msgid ""
716
+ "Email not sent. Please verify that your name and email are entered correctly."
717
  msgstr ""
718
 
719
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:213
720
+ msgid "Email sent."
721
  msgstr ""
722
 
723
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:68
724
+ msgid "Thank you for using WPGlobus!"
 
725
  msgstr ""
726
 
727
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69
728
+ msgid "Our Support Team is here to answer your questions or concerns."
 
 
729
  msgstr ""
730
 
731
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:71
732
  msgid "To help us serve you better:"
733
  msgstr ""
734
 
735
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
736
  msgid ""
737
  "Please check if the problem persists if you switch to a standard WordPress "
738
  "theme."
739
  msgstr ""
740
 
741
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:74
742
  msgid ""
743
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
744
  msgstr ""
745
 
746
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:77
747
+ msgid "Please fill in and submit the contact form:"
748
+ msgstr ""
749
+
750
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:97
751
+ msgid "Please make sure the email address is correct."
752
+ msgstr ""
753
+
754
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:103
755
+ msgid "Subject"
756
+ msgstr ""
757
+
758
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:108
759
+ msgid "Short description of the problem"
760
+ msgstr ""
761
+
762
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:113
763
+ msgid "Detailed description"
764
+ msgstr ""
765
+
766
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:120
767
  msgid "Technical Information"
768
  msgstr ""
769
 
770
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:127
771
+ msgid "This information helps us to find the problem source"
772
+ msgstr ""
773
+
774
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:143
775
+ msgid ""
776
+ "Alternatively, please email %s. Do not forget to copy and paste the "
777
+ "technical information to your email message."
778
+ msgstr ""
779
+
780
  #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:58
781
  msgid "WPGlobus Recommends:"
782
  msgstr ""
languages/wpglobus-es_MX.po CHANGED
@@ -20,12 +20,12 @@ msgstr ""
20
  #: includes/admin/class-wpglobus-about.php:42,
21
  #: includes/admin/class-wpglobus-about.php:117,
22
  #: includes/admin/class-wpglobus-clean.php:600,
23
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
24
  msgid "Guide"
25
  msgstr "Guía"
26
 
27
  #: includes/admin/central/class-wpglobus-admin-central.php:142,
28
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:44
29
  msgid "WPGlobus Help Desk"
30
  msgstr ""
31
 
@@ -35,7 +35,7 @@ msgstr ""
35
  #: includes/admin/class-wpglobus-clean.php:606,
36
  #: includes/admin/class-wpglobus-customize-options.php:1254,
37
  #: includes/admin/class-wpglobus-customize-options.php:1286,
38
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:31
39
  msgid "Add-ons"
40
  msgstr "Complementos"
41
 
@@ -44,7 +44,7 @@ msgid "Quick Start"
44
  msgstr "Inicio Rápido"
45
 
46
  #: includes/admin/class-wpglobus-about.php:48,
47
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
48
  msgid "FAQ"
49
  msgstr "FAQ"
50
 
@@ -521,13 +521,11 @@ msgstr ""
521
  "nosotros."
522
 
523
  #: includes/admin/class-wpglobus-customize-options.php:1360,
524
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69,
525
  #: includes/options/class-wpglobus-options.php:586
526
  msgid "Sincerely Yours,"
527
  msgstr "Sinceramente tuyo,"
528
 
529
  #: includes/admin/class-wpglobus-customize-options.php:1362,
530
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:70,
531
  #: includes/options/class-wpglobus-options.php:588,
532
  #: includes/options/wpglobus-options-header.php:34
533
  msgid "The WPGlobus Team"
@@ -704,57 +702,81 @@ msgstr ""
704
  msgid "Installed"
705
  msgstr "Instalado"
706
 
707
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:45,
708
  #: includes/options/class-wpglobus-options.php:659
709
  msgid "Help Desk"
710
  msgstr ""
711
 
712
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:55
713
- msgid "Thank you for using WPGlobus!"
714
- msgstr ""
715
-
716
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:56
717
- msgid "Our Support Team is here to answer your questions or concerns."
718
  msgstr ""
719
 
720
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:58
721
- msgid "Click here to open the Contact Form."
 
722
  msgstr ""
723
 
724
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:59
725
- msgid "Type in your name, email, subject and the detailed message."
726
  msgstr ""
727
 
728
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:60
729
- msgid ""
730
- "If you can make a screenshot demonstrating the problem, please attach it."
731
  msgstr ""
732
 
733
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:61
734
- msgid ""
735
- "Please note: we will receive some debug data together with your request. See "
736
- "the \"Technical Information\" table for the details."
737
  msgstr ""
738
 
739
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:63
740
  msgid "To help us serve you better:"
741
  msgstr ""
742
 
743
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:65
744
  msgid ""
745
  "Please check if the problem persists if you switch to a standard WordPress "
746
  "theme."
747
  msgstr ""
748
 
749
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:66
750
  msgid ""
751
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
752
  msgstr ""
753
 
754
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
755
  msgid "Technical Information"
756
  msgstr ""
757
 
 
 
 
 
 
 
 
 
 
 
758
  #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:58
759
  msgid "WPGlobus Recommends:"
760
  msgstr ""
20
  #: includes/admin/class-wpglobus-about.php:42,
21
  #: includes/admin/class-wpglobus-about.php:117,
22
  #: includes/admin/class-wpglobus-clean.php:600,
23
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
24
  msgid "Guide"
25
  msgstr "Guía"
26
 
27
  #: includes/admin/central/class-wpglobus-admin-central.php:142,
28
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:102
29
  msgid "WPGlobus Help Desk"
30
  msgstr ""
31
 
35
  #: includes/admin/class-wpglobus-clean.php:606,
36
  #: includes/admin/class-wpglobus-customize-options.php:1254,
37
  #: includes/admin/class-wpglobus-customize-options.php:1286,
38
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
39
  msgid "Add-ons"
40
  msgstr "Complementos"
41
 
44
  msgstr "Inicio Rápido"
45
 
46
  #: includes/admin/class-wpglobus-about.php:48,
47
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:49
48
  msgid "FAQ"
49
  msgstr "FAQ"
50
 
521
  "nosotros."
522
 
523
  #: includes/admin/class-wpglobus-customize-options.php:1360,
 
524
  #: includes/options/class-wpglobus-options.php:586
525
  msgid "Sincerely Yours,"
526
  msgstr "Sinceramente tuyo,"
527
 
528
  #: includes/admin/class-wpglobus-customize-options.php:1362,
 
529
  #: includes/options/class-wpglobus-options.php:588,
530
  #: includes/options/wpglobus-options-header.php:34
531
  msgid "The WPGlobus Team"
702
  msgid "Installed"
703
  msgstr "Instalado"
704
 
705
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:103,
706
  #: includes/options/class-wpglobus-options.php:659
707
  msgid "Help Desk"
708
  msgstr ""
709
 
710
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:182
711
+ msgid "Email not sent. Please fill in the entire form."
 
 
 
 
712
  msgstr ""
713
 
714
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:192
715
+ msgid ""
716
+ "Email not sent. Please verify that your name and email are entered correctly."
717
  msgstr ""
718
 
719
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:213
720
+ msgid "Email sent."
721
  msgstr ""
722
 
723
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:68
724
+ msgid "Thank you for using WPGlobus!"
 
725
  msgstr ""
726
 
727
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69
728
+ msgid "Our Support Team is here to answer your questions or concerns."
 
 
729
  msgstr ""
730
 
731
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:71
732
  msgid "To help us serve you better:"
733
  msgstr ""
734
 
735
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
736
  msgid ""
737
  "Please check if the problem persists if you switch to a standard WordPress "
738
  "theme."
739
  msgstr ""
740
 
741
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:74
742
  msgid ""
743
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
744
  msgstr ""
745
 
746
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:77
747
+ msgid "Please fill in and submit the contact form:"
748
+ msgstr ""
749
+
750
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:97
751
+ msgid "Please make sure the email address is correct."
752
+ msgstr ""
753
+
754
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:103
755
+ msgid "Subject"
756
+ msgstr ""
757
+
758
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:108
759
+ msgid "Short description of the problem"
760
+ msgstr ""
761
+
762
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:113
763
+ msgid "Detailed description"
764
+ msgstr ""
765
+
766
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:120
767
  msgid "Technical Information"
768
  msgstr ""
769
 
770
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:127
771
+ msgid "This information helps us to find the problem source"
772
+ msgstr ""
773
+
774
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:143
775
+ msgid ""
776
+ "Alternatively, please email %s. Do not forget to copy and paste the "
777
+ "technical information to your email message."
778
+ msgstr ""
779
+
780
  #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:58
781
  msgid "WPGlobus Recommends:"
782
  msgstr ""
languages/wpglobus-es_PE.po CHANGED
@@ -20,12 +20,12 @@ msgstr ""
20
  #: includes/admin/class-wpglobus-about.php:42,
21
  #: includes/admin/class-wpglobus-about.php:117,
22
  #: includes/admin/class-wpglobus-clean.php:600,
23
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
24
  msgid "Guide"
25
  msgstr "Guía"
26
 
27
  #: includes/admin/central/class-wpglobus-admin-central.php:142,
28
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:44
29
  msgid "WPGlobus Help Desk"
30
  msgstr ""
31
 
@@ -35,7 +35,7 @@ msgstr ""
35
  #: includes/admin/class-wpglobus-clean.php:606,
36
  #: includes/admin/class-wpglobus-customize-options.php:1254,
37
  #: includes/admin/class-wpglobus-customize-options.php:1286,
38
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:31
39
  msgid "Add-ons"
40
  msgstr "Complementos"
41
 
@@ -44,7 +44,7 @@ msgid "Quick Start"
44
  msgstr "Inicio Rápido"
45
 
46
  #: includes/admin/class-wpglobus-about.php:48,
47
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
48
  msgid "FAQ"
49
  msgstr "FAQ"
50
 
@@ -521,13 +521,11 @@ msgstr ""
521
  "nosotros."
522
 
523
  #: includes/admin/class-wpglobus-customize-options.php:1360,
524
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69,
525
  #: includes/options/class-wpglobus-options.php:586
526
  msgid "Sincerely Yours,"
527
  msgstr "Sinceramente tuyo,"
528
 
529
  #: includes/admin/class-wpglobus-customize-options.php:1362,
530
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:70,
531
  #: includes/options/class-wpglobus-options.php:588,
532
  #: includes/options/wpglobus-options-header.php:34
533
  msgid "The WPGlobus Team"
@@ -704,57 +702,81 @@ msgstr ""
704
  msgid "Installed"
705
  msgstr "Instalado"
706
 
707
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:45,
708
  #: includes/options/class-wpglobus-options.php:659
709
  msgid "Help Desk"
710
  msgstr ""
711
 
712
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:55
713
- msgid "Thank you for using WPGlobus!"
714
- msgstr ""
715
-
716
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:56
717
- msgid "Our Support Team is here to answer your questions or concerns."
718
  msgstr ""
719
 
720
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:58
721
- msgid "Click here to open the Contact Form."
 
722
  msgstr ""
723
 
724
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:59
725
- msgid "Type in your name, email, subject and the detailed message."
726
  msgstr ""
727
 
728
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:60
729
- msgid ""
730
- "If you can make a screenshot demonstrating the problem, please attach it."
731
  msgstr ""
732
 
733
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:61
734
- msgid ""
735
- "Please note: we will receive some debug data together with your request. See "
736
- "the \"Technical Information\" table for the details."
737
  msgstr ""
738
 
739
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:63
740
  msgid "To help us serve you better:"
741
  msgstr ""
742
 
743
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:65
744
  msgid ""
745
  "Please check if the problem persists if you switch to a standard WordPress "
746
  "theme."
747
  msgstr ""
748
 
749
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:66
750
  msgid ""
751
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
752
  msgstr ""
753
 
754
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
755
  msgid "Technical Information"
756
  msgstr ""
757
 
 
 
 
 
 
 
 
 
 
 
758
  #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:58
759
  msgid "WPGlobus Recommends:"
760
  msgstr ""
20
  #: includes/admin/class-wpglobus-about.php:42,
21
  #: includes/admin/class-wpglobus-about.php:117,
22
  #: includes/admin/class-wpglobus-clean.php:600,
23
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
24
  msgid "Guide"
25
  msgstr "Guía"
26
 
27
  #: includes/admin/central/class-wpglobus-admin-central.php:142,
28
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:102
29
  msgid "WPGlobus Help Desk"
30
  msgstr ""
31
 
35
  #: includes/admin/class-wpglobus-clean.php:606,
36
  #: includes/admin/class-wpglobus-customize-options.php:1254,
37
  #: includes/admin/class-wpglobus-customize-options.php:1286,
38
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
39
  msgid "Add-ons"
40
  msgstr "Complementos"
41
 
44
  msgstr "Inicio Rápido"
45
 
46
  #: includes/admin/class-wpglobus-about.php:48,
47
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:49
48
  msgid "FAQ"
49
  msgstr "FAQ"
50
 
521
  "nosotros."
522
 
523
  #: includes/admin/class-wpglobus-customize-options.php:1360,
 
524
  #: includes/options/class-wpglobus-options.php:586
525
  msgid "Sincerely Yours,"
526
  msgstr "Sinceramente tuyo,"
527
 
528
  #: includes/admin/class-wpglobus-customize-options.php:1362,
 
529
  #: includes/options/class-wpglobus-options.php:588,
530
  #: includes/options/wpglobus-options-header.php:34
531
  msgid "The WPGlobus Team"
702
  msgid "Installed"
703
  msgstr "Instalado"
704
 
705
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:103,
706
  #: includes/options/class-wpglobus-options.php:659
707
  msgid "Help Desk"
708
  msgstr ""
709
 
710
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:182
711
+ msgid "Email not sent. Please fill in the entire form."
 
 
 
 
712
  msgstr ""
713
 
714
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:192
715
+ msgid ""
716
+ "Email not sent. Please verify that your name and email are entered correctly."
717
  msgstr ""
718
 
719
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:213
720
+ msgid "Email sent."
721
  msgstr ""
722
 
723
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:68
724
+ msgid "Thank you for using WPGlobus!"
 
725
  msgstr ""
726
 
727
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69
728
+ msgid "Our Support Team is here to answer your questions or concerns."
 
 
729
  msgstr ""
730
 
731
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:71
732
  msgid "To help us serve you better:"
733
  msgstr ""
734
 
735
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
736
  msgid ""
737
  "Please check if the problem persists if you switch to a standard WordPress "
738
  "theme."
739
  msgstr ""
740
 
741
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:74
742
  msgid ""
743
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
744
  msgstr ""
745
 
746
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:77
747
+ msgid "Please fill in and submit the contact form:"
748
+ msgstr ""
749
+
750
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:97
751
+ msgid "Please make sure the email address is correct."
752
+ msgstr ""
753
+
754
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:103
755
+ msgid "Subject"
756
+ msgstr ""
757
+
758
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:108
759
+ msgid "Short description of the problem"
760
+ msgstr ""
761
+
762
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:113
763
+ msgid "Detailed description"
764
+ msgstr ""
765
+
766
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:120
767
  msgid "Technical Information"
768
  msgstr ""
769
 
770
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:127
771
+ msgid "This information helps us to find the problem source"
772
+ msgstr ""
773
+
774
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:143
775
+ msgid ""
776
+ "Alternatively, please email %s. Do not forget to copy and paste the "
777
+ "technical information to your email message."
778
+ msgstr ""
779
+
780
  #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:58
781
  msgid "WPGlobus Recommends:"
782
  msgstr ""
languages/wpglobus-es_PR.po CHANGED
@@ -20,12 +20,12 @@ msgstr ""
20
  #: includes/admin/class-wpglobus-about.php:42,
21
  #: includes/admin/class-wpglobus-about.php:117,
22
  #: includes/admin/class-wpglobus-clean.php:600,
23
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
24
  msgid "Guide"
25
  msgstr "Guía"
26
 
27
  #: includes/admin/central/class-wpglobus-admin-central.php:142,
28
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:44
29
  msgid "WPGlobus Help Desk"
30
  msgstr ""
31
 
@@ -35,7 +35,7 @@ msgstr ""
35
  #: includes/admin/class-wpglobus-clean.php:606,
36
  #: includes/admin/class-wpglobus-customize-options.php:1254,
37
  #: includes/admin/class-wpglobus-customize-options.php:1286,
38
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:31
39
  msgid "Add-ons"
40
  msgstr "Complementos"
41
 
@@ -44,7 +44,7 @@ msgid "Quick Start"
44
  msgstr "Inicio Rápido"
45
 
46
  #: includes/admin/class-wpglobus-about.php:48,
47
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
48
  msgid "FAQ"
49
  msgstr "FAQ"
50
 
@@ -521,13 +521,11 @@ msgstr ""
521
  "nosotros."
522
 
523
  #: includes/admin/class-wpglobus-customize-options.php:1360,
524
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69,
525
  #: includes/options/class-wpglobus-options.php:586
526
  msgid "Sincerely Yours,"
527
  msgstr "Sinceramente tuyo,"
528
 
529
  #: includes/admin/class-wpglobus-customize-options.php:1362,
530
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:70,
531
  #: includes/options/class-wpglobus-options.php:588,
532
  #: includes/options/wpglobus-options-header.php:34
533
  msgid "The WPGlobus Team"
@@ -704,57 +702,81 @@ msgstr ""
704
  msgid "Installed"
705
  msgstr "Instalado"
706
 
707
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:45,
708
  #: includes/options/class-wpglobus-options.php:659
709
  msgid "Help Desk"
710
  msgstr ""
711
 
712
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:55
713
- msgid "Thank you for using WPGlobus!"
714
- msgstr ""
715
-
716
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:56
717
- msgid "Our Support Team is here to answer your questions or concerns."
718
  msgstr ""
719
 
720
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:58
721
- msgid "Click here to open the Contact Form."
 
722
  msgstr ""
723
 
724
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:59
725
- msgid "Type in your name, email, subject and the detailed message."
726
  msgstr ""
727
 
728
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:60
729
- msgid ""
730
- "If you can make a screenshot demonstrating the problem, please attach it."
731
  msgstr ""
732
 
733
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:61
734
- msgid ""
735
- "Please note: we will receive some debug data together with your request. See "
736
- "the \"Technical Information\" table for the details."
737
  msgstr ""
738
 
739
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:63
740
  msgid "To help us serve you better:"
741
  msgstr ""
742
 
743
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:65
744
  msgid ""
745
  "Please check if the problem persists if you switch to a standard WordPress "
746
  "theme."
747
  msgstr ""
748
 
749
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:66
750
  msgid ""
751
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
752
  msgstr ""
753
 
754
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
755
  msgid "Technical Information"
756
  msgstr ""
757
 
 
 
 
 
 
 
 
 
 
 
758
  #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:58
759
  msgid "WPGlobus Recommends:"
760
  msgstr ""
20
  #: includes/admin/class-wpglobus-about.php:42,
21
  #: includes/admin/class-wpglobus-about.php:117,
22
  #: includes/admin/class-wpglobus-clean.php:600,
23
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
24
  msgid "Guide"
25
  msgstr "Guía"
26
 
27
  #: includes/admin/central/class-wpglobus-admin-central.php:142,
28
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:102
29
  msgid "WPGlobus Help Desk"
30
  msgstr ""
31
 
35
  #: includes/admin/class-wpglobus-clean.php:606,
36
  #: includes/admin/class-wpglobus-customize-options.php:1254,
37
  #: includes/admin/class-wpglobus-customize-options.php:1286,
38
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
39
  msgid "Add-ons"
40
  msgstr "Complementos"
41
 
44
  msgstr "Inicio Rápido"
45
 
46
  #: includes/admin/class-wpglobus-about.php:48,
47
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:49
48
  msgid "FAQ"
49
  msgstr "FAQ"
50
 
521
  "nosotros."
522
 
523
  #: includes/admin/class-wpglobus-customize-options.php:1360,
 
524
  #: includes/options/class-wpglobus-options.php:586
525
  msgid "Sincerely Yours,"
526
  msgstr "Sinceramente tuyo,"
527
 
528
  #: includes/admin/class-wpglobus-customize-options.php:1362,
 
529
  #: includes/options/class-wpglobus-options.php:588,
530
  #: includes/options/wpglobus-options-header.php:34
531
  msgid "The WPGlobus Team"
702
  msgid "Installed"
703
  msgstr "Instalado"
704
 
705
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:103,
706
  #: includes/options/class-wpglobus-options.php:659
707
  msgid "Help Desk"
708
  msgstr ""
709
 
710
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:182
711
+ msgid "Email not sent. Please fill in the entire form."
 
 
 
 
712
  msgstr ""
713
 
714
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:192
715
+ msgid ""
716
+ "Email not sent. Please verify that your name and email are entered correctly."
717
  msgstr ""
718
 
719
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:213
720
+ msgid "Email sent."
721
  msgstr ""
722
 
723
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:68
724
+ msgid "Thank you for using WPGlobus!"
 
725
  msgstr ""
726
 
727
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69
728
+ msgid "Our Support Team is here to answer your questions or concerns."
 
 
729
  msgstr ""
730
 
731
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:71
732
  msgid "To help us serve you better:"
733
  msgstr ""
734
 
735
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
736
  msgid ""
737
  "Please check if the problem persists if you switch to a standard WordPress "
738
  "theme."
739
  msgstr ""
740
 
741
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:74
742
  msgid ""
743
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
744
  msgstr ""
745
 
746
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:77
747
+ msgid "Please fill in and submit the contact form:"
748
+ msgstr ""
749
+
750
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:97
751
+ msgid "Please make sure the email address is correct."
752
+ msgstr ""
753
+
754
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:103
755
+ msgid "Subject"
756
+ msgstr ""
757
+
758
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:108
759
+ msgid "Short description of the problem"
760
+ msgstr ""
761
+
762
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:113
763
+ msgid "Detailed description"
764
+ msgstr ""
765
+
766
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:120
767
  msgid "Technical Information"
768
  msgstr ""
769
 
770
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:127
771
+ msgid "This information helps us to find the problem source"
772
+ msgstr ""
773
+
774
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:143
775
+ msgid ""
776
+ "Alternatively, please email %s. Do not forget to copy and paste the "
777
+ "technical information to your email message."
778
+ msgstr ""
779
+
780
  #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:58
781
  msgid "WPGlobus Recommends:"
782
  msgstr ""
languages/wpglobus-es_VE.po CHANGED
@@ -20,12 +20,12 @@ msgstr ""
20
  #: includes/admin/class-wpglobus-about.php:42,
21
  #: includes/admin/class-wpglobus-about.php:117,
22
  #: includes/admin/class-wpglobus-clean.php:600,
23
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
24
  msgid "Guide"
25
  msgstr "Guía"
26
 
27
  #: includes/admin/central/class-wpglobus-admin-central.php:142,
28
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:44
29
  msgid "WPGlobus Help Desk"
30
  msgstr ""
31
 
@@ -35,7 +35,7 @@ msgstr ""
35
  #: includes/admin/class-wpglobus-clean.php:606,
36
  #: includes/admin/class-wpglobus-customize-options.php:1254,
37
  #: includes/admin/class-wpglobus-customize-options.php:1286,
38
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:31
39
  msgid "Add-ons"
40
  msgstr "Complementos"
41
 
@@ -44,7 +44,7 @@ msgid "Quick Start"
44
  msgstr "Inicio Rápido"
45
 
46
  #: includes/admin/class-wpglobus-about.php:48,
47
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
48
  msgid "FAQ"
49
  msgstr "FAQ"
50
 
@@ -521,13 +521,11 @@ msgstr ""
521
  "nosotros."
522
 
523
  #: includes/admin/class-wpglobus-customize-options.php:1360,
524
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69,
525
  #: includes/options/class-wpglobus-options.php:586
526
  msgid "Sincerely Yours,"
527
  msgstr "Sinceramente tuyo,"
528
 
529
  #: includes/admin/class-wpglobus-customize-options.php:1362,
530
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:70,
531
  #: includes/options/class-wpglobus-options.php:588,
532
  #: includes/options/wpglobus-options-header.php:34
533
  msgid "The WPGlobus Team"
@@ -704,57 +702,81 @@ msgstr ""
704
  msgid "Installed"
705
  msgstr "Instalado"
706
 
707
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:45,
708
  #: includes/options/class-wpglobus-options.php:659
709
  msgid "Help Desk"
710
  msgstr ""
711
 
712
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:55
713
- msgid "Thank you for using WPGlobus!"
714
- msgstr ""
715
-
716
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:56
717
- msgid "Our Support Team is here to answer your questions or concerns."
718
  msgstr ""
719
 
720
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:58
721
- msgid "Click here to open the Contact Form."
 
722
  msgstr ""
723
 
724
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:59
725
- msgid "Type in your name, email, subject and the detailed message."
726
  msgstr ""
727
 
728
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:60
729
- msgid ""
730
- "If you can make a screenshot demonstrating the problem, please attach it."
731
  msgstr ""
732
 
733
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:61
734
- msgid ""
735
- "Please note: we will receive some debug data together with your request. See "
736
- "the \"Technical Information\" table for the details."
737
  msgstr ""
738
 
739
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:63
740
  msgid "To help us serve you better:"
741
  msgstr ""
742
 
743
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:65
744
  msgid ""
745
  "Please check if the problem persists if you switch to a standard WordPress "
746
  "theme."
747
  msgstr ""
748
 
749
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:66
750
  msgid ""
751
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
752
  msgstr ""
753
 
754
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
755
  msgid "Technical Information"
756
  msgstr ""
757
 
 
 
 
 
 
 
 
 
 
 
758
  #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:58
759
  msgid "WPGlobus Recommends:"
760
  msgstr ""
20
  #: includes/admin/class-wpglobus-about.php:42,
21
  #: includes/admin/class-wpglobus-about.php:117,
22
  #: includes/admin/class-wpglobus-clean.php:600,
23
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
24
  msgid "Guide"
25
  msgstr "Guía"
26
 
27
  #: includes/admin/central/class-wpglobus-admin-central.php:142,
28
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:102
29
  msgid "WPGlobus Help Desk"
30
  msgstr ""
31
 
35
  #: includes/admin/class-wpglobus-clean.php:606,
36
  #: includes/admin/class-wpglobus-customize-options.php:1254,
37
  #: includes/admin/class-wpglobus-customize-options.php:1286,
38
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
39
  msgid "Add-ons"
40
  msgstr "Complementos"
41
 
44
  msgstr "Inicio Rápido"
45
 
46
  #: includes/admin/class-wpglobus-about.php:48,
47
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:49
48
  msgid "FAQ"
49
  msgstr "FAQ"
50
 
521
  "nosotros."
522
 
523
  #: includes/admin/class-wpglobus-customize-options.php:1360,
 
524
  #: includes/options/class-wpglobus-options.php:586
525
  msgid "Sincerely Yours,"
526
  msgstr "Sinceramente tuyo,"
527
 
528
  #: includes/admin/class-wpglobus-customize-options.php:1362,
 
529
  #: includes/options/class-wpglobus-options.php:588,
530
  #: includes/options/wpglobus-options-header.php:34
531
  msgid "The WPGlobus Team"
702
  msgid "Installed"
703
  msgstr "Instalado"
704
 
705
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:103,
706
  #: includes/options/class-wpglobus-options.php:659
707
  msgid "Help Desk"
708
  msgstr ""
709
 
710
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:182
711
+ msgid "Email not sent. Please fill in the entire form."
 
 
 
 
712
  msgstr ""
713
 
714
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:192
715
+ msgid ""
716
+ "Email not sent. Please verify that your name and email are entered correctly."
717
  msgstr ""
718
 
719
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:213
720
+ msgid "Email sent."
721
  msgstr ""
722
 
723
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:68
724
+ msgid "Thank you for using WPGlobus!"
 
725
  msgstr ""
726
 
727
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69
728
+ msgid "Our Support Team is here to answer your questions or concerns."
 
 
729
  msgstr ""
730
 
731
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:71
732
  msgid "To help us serve you better:"
733
  msgstr ""
734
 
735
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
736
  msgid ""
737
  "Please check if the problem persists if you switch to a standard WordPress "
738
  "theme."
739
  msgstr ""
740
 
741
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:74
742
  msgid ""
743
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
744
  msgstr ""
745
 
746
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:77
747
+ msgid "Please fill in and submit the contact form:"
748
+ msgstr ""
749
+
750
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:97
751
+ msgid "Please make sure the email address is correct."
752
+ msgstr ""
753
+
754
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:103
755
+ msgid "Subject"
756
+ msgstr ""
757
+
758
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:108
759
+ msgid "Short description of the problem"
760
+ msgstr ""
761
+
762
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:113
763
+ msgid "Detailed description"
764
+ msgstr ""
765
+
766
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:120
767
  msgid "Technical Information"
768
  msgstr ""
769
 
770
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:127
771
+ msgid "This information helps us to find the problem source"
772
+ msgstr ""
773
+
774
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:143
775
+ msgid ""
776
+ "Alternatively, please email %s. Do not forget to copy and paste the "
777
+ "technical information to your email message."
778
+ msgstr ""
779
+
780
  #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:58
781
  msgid "WPGlobus Recommends:"
782
  msgstr ""
languages/wpglobus-et.po CHANGED
@@ -20,12 +20,12 @@ msgstr ""
20
  #: includes/admin/class-wpglobus-about.php:42,
21
  #: includes/admin/class-wpglobus-about.php:117,
22
  #: includes/admin/class-wpglobus-clean.php:600,
23
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
24
  msgid "Guide"
25
  msgstr "Juhend"
26
 
27
  #: includes/admin/central/class-wpglobus-admin-central.php:142,
28
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:44
29
  msgid "WPGlobus Help Desk"
30
  msgstr ""
31
 
@@ -35,7 +35,7 @@ msgstr ""
35
  #: includes/admin/class-wpglobus-clean.php:606,
36
  #: includes/admin/class-wpglobus-customize-options.php:1254,
37
  #: includes/admin/class-wpglobus-customize-options.php:1286,
38
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:31
39
  msgid "Add-ons"
40
  msgstr "Lisad"
41
 
@@ -44,7 +44,7 @@ msgid "Quick Start"
44
  msgstr ""
45
 
46
  #: includes/admin/class-wpglobus-about.php:48,
47
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
48
  msgid "FAQ"
49
  msgstr "KKK"
50
 
@@ -493,13 +493,11 @@ msgid ""
493
  msgstr ""
494
 
495
  #: includes/admin/class-wpglobus-customize-options.php:1360,
496
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69,
497
  #: includes/options/class-wpglobus-options.php:586
498
  msgid "Sincerely Yours,"
499
  msgstr ""
500
 
501
  #: includes/admin/class-wpglobus-customize-options.php:1362,
502
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:70,
503
  #: includes/options/class-wpglobus-options.php:588,
504
  #: includes/options/wpglobus-options-header.php:34
505
  msgid "The WPGlobus Team"
@@ -670,57 +668,81 @@ msgstr ""
670
  msgid "Installed"
671
  msgstr "Paigaldatud"
672
 
673
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:45,
674
  #: includes/options/class-wpglobus-options.php:659
675
  msgid "Help Desk"
676
  msgstr "Kasutajatugi"
677
 
678
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:55
679
- msgid "Thank you for using WPGlobus!"
680
- msgstr ""
681
-
682
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:56
683
- msgid "Our Support Team is here to answer your questions or concerns."
684
  msgstr ""
685
 
686
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:58
687
- msgid "Click here to open the Contact Form."
 
688
  msgstr ""
689
 
690
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:59
691
- msgid "Type in your name, email, subject and the detailed message."
692
  msgstr ""
693
 
694
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:60
695
- msgid ""
696
- "If you can make a screenshot demonstrating the problem, please attach it."
697
  msgstr ""
698
 
699
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:61
700
- msgid ""
701
- "Please note: we will receive some debug data together with your request. See "
702
- "the \"Technical Information\" table for the details."
703
  msgstr ""
704
 
705
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:63
706
  msgid "To help us serve you better:"
707
  msgstr ""
708
 
709
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:65
710
  msgid ""
711
  "Please check if the problem persists if you switch to a standard WordPress "
712
  "theme."
713
  msgstr ""
714
 
715
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:66
716
  msgid ""
717
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
718
  msgstr ""
719
 
720
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
721
  msgid "Technical Information"
722
  msgstr "Tehniline info"
723
 
 
 
 
 
 
 
 
 
 
 
724
  #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:58
725
  msgid "WPGlobus Recommends:"
726
  msgstr ""
20
  #: includes/admin/class-wpglobus-about.php:42,
21
  #: includes/admin/class-wpglobus-about.php:117,
22
  #: includes/admin/class-wpglobus-clean.php:600,
23
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
24
  msgid "Guide"
25
  msgstr "Juhend"
26
 
27
  #: includes/admin/central/class-wpglobus-admin-central.php:142,
28
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:102
29
  msgid "WPGlobus Help Desk"
30
  msgstr ""
31
 
35
  #: includes/admin/class-wpglobus-clean.php:606,
36
  #: includes/admin/class-wpglobus-customize-options.php:1254,
37
  #: includes/admin/class-wpglobus-customize-options.php:1286,
38
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
39
  msgid "Add-ons"
40
  msgstr "Lisad"
41
 
44
  msgstr ""
45
 
46
  #: includes/admin/class-wpglobus-about.php:48,
47
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:49
48
  msgid "FAQ"
49
  msgstr "KKK"
50
 
493
  msgstr ""
494
 
495
  #: includes/admin/class-wpglobus-customize-options.php:1360,
 
496
  #: includes/options/class-wpglobus-options.php:586
497
  msgid "Sincerely Yours,"
498
  msgstr ""
499
 
500
  #: includes/admin/class-wpglobus-customize-options.php:1362,
 
501
  #: includes/options/class-wpglobus-options.php:588,
502
  #: includes/options/wpglobus-options-header.php:34
503
  msgid "The WPGlobus Team"
668
  msgid "Installed"
669
  msgstr "Paigaldatud"
670
 
671
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:103,
672
  #: includes/options/class-wpglobus-options.php:659
673
  msgid "Help Desk"
674
  msgstr "Kasutajatugi"
675
 
676
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:182
677
+ msgid "Email not sent. Please fill in the entire form."
 
 
 
 
678
  msgstr ""
679
 
680
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:192
681
+ msgid ""
682
+ "Email not sent. Please verify that your name and email are entered correctly."
683
  msgstr ""
684
 
685
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:213
686
+ msgid "Email sent."
687
  msgstr ""
688
 
689
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:68
690
+ msgid "Thank you for using WPGlobus!"
 
691
  msgstr ""
692
 
693
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69
694
+ msgid "Our Support Team is here to answer your questions or concerns."
 
 
695
  msgstr ""
696
 
697
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:71
698
  msgid "To help us serve you better:"
699
  msgstr ""
700
 
701
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
702
  msgid ""
703
  "Please check if the problem persists if you switch to a standard WordPress "
704
  "theme."
705
  msgstr ""
706
 
707
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:74
708
  msgid ""
709
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
710
  msgstr ""
711
 
712
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:77
713
+ msgid "Please fill in and submit the contact form:"
714
+ msgstr ""
715
+
716
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:97
717
+ msgid "Please make sure the email address is correct."
718
+ msgstr ""
719
+
720
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:103
721
+ msgid "Subject"
722
+ msgstr ""
723
+
724
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:108
725
+ msgid "Short description of the problem"
726
+ msgstr ""
727
+
728
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:113
729
+ msgid "Detailed description"
730
+ msgstr ""
731
+
732
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:120
733
  msgid "Technical Information"
734
  msgstr "Tehniline info"
735
 
736
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:127
737
+ msgid "This information helps us to find the problem source"
738
+ msgstr ""
739
+
740
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:143
741
+ msgid ""
742
+ "Alternatively, please email %s. Do not forget to copy and paste the "
743
+ "technical information to your email message."
744
+ msgstr ""
745
+
746
  #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:58
747
  msgid "WPGlobus Recommends:"
748
  msgstr ""
languages/wpglobus-fr_BE.mo CHANGED
Binary file
languages/wpglobus-fr_BE.po CHANGED
@@ -20,12 +20,12 @@ msgstr ""
20
  #: includes/admin/class-wpglobus-about.php:42,
21
  #: includes/admin/class-wpglobus-about.php:117,
22
  #: includes/admin/class-wpglobus-clean.php:600,
23
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
24
  msgid "Guide"
25
  msgstr "Guide"
26
 
27
  #: includes/admin/central/class-wpglobus-admin-central.php:142,
28
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:44
29
  msgid "WPGlobus Help Desk"
30
  msgstr "Centre d’aide de WPGlobus"
31
 
@@ -35,7 +35,7 @@ msgstr "Centre d’aide de WPGlobus"
35
  #: includes/admin/class-wpglobus-clean.php:606,
36
  #: includes/admin/class-wpglobus-customize-options.php:1254,
37
  #: includes/admin/class-wpglobus-customize-options.php:1286,
38
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:31
39
  msgid "Add-ons"
40
  msgstr "Modules"
41
 
@@ -44,7 +44,7 @@ msgid "Quick Start"
44
  msgstr "Démarrage rapide"
45
 
46
  #: includes/admin/class-wpglobus-about.php:48,
47
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
48
  msgid "FAQ"
49
  msgstr "FAQ"
50
 
@@ -568,13 +568,11 @@ msgstr ""
568
  "contacter."
569
 
570
  #: includes/admin/class-wpglobus-customize-options.php:1360,
571
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69,
572
  #: includes/options/class-wpglobus-options.php:586
573
  msgid "Sincerely Yours,"
574
  msgstr "Cordialement,"
575
 
576
  #: includes/admin/class-wpglobus-customize-options.php:1362,
577
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:70,
578
  #: includes/options/class-wpglobus-options.php:588,
579
  #: includes/options/wpglobus-options-header.php:34
580
  msgid "The WPGlobus Team"
@@ -761,49 +759,39 @@ msgstr "Module premium"
761
  msgid "Installed"
762
  msgstr "Installée"
763
 
764
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:45,
765
  #: includes/options/class-wpglobus-options.php:659
766
  msgid "Help Desk"
767
  msgstr "Centre de support"
768
 
769
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:55
770
- msgid "Thank you for using WPGlobus!"
771
- msgstr "Merci d'utiliser WPGlobus&nbsp:;!"
772
-
773
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:56
774
- msgid "Our Support Team is here to answer your questions or concerns."
775
  msgstr ""
776
- "Notre équipe d'assistance est là pour répondre à vos questions ou "
777
- "préoccupations."
778
 
779
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:58
780
- msgid "Click here to open the Contact Form."
 
781
  msgstr ""
782
 
783
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:59
784
- msgid "Type in your name, email, subject and the detailed message."
785
- msgstr "Saisissez votre nom, e-mail, sujet et le message détaillé."
786
-
787
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:60
788
- msgid ""
789
- "If you can make a screenshot demonstrating the problem, please attach it."
790
  msgstr ""
791
- "Si vous pouvez faire une capture d'écran illustrant le problème, veuillez le "
792
- "joindre."
793
 
794
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:61
795
- msgid ""
796
- "Please note: we will receive some debug data together with your request. See "
797
- "the \"Technical Information\" table for the details."
 
 
798
  msgstr ""
799
- "Veuillez notez que nous recevrons quelques données de débogage avec votre "
800
- "demande. Voir le tableau \"Informations techniques\" pour les détails."
801
 
802
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:63
803
  msgid "To help us serve you better:"
804
  msgstr "Pour nous aider à mieux vous servir&nbsp;:"
805
 
806
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:65
807
  msgid ""
808
  "Please check if the problem persists if you switch to a standard WordPress "
809
  "theme."
@@ -811,17 +799,47 @@ msgstr ""
811
  "Veuillez vérifier si le problème persiste si vous basculez vers un thème "
812
  "WordPress standard."
813
 
814
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:66
815
  msgid ""
816
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
817
  msgstr ""
818
  "Essayez de désactiver d'autres extension pour voir si l'une d'entre elles "
819
  "est en conflit avec WPGlobus."
820
 
821
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
822
  msgid "Technical Information"
823
  msgstr "Informations techniques"
824
 
 
 
 
 
 
 
 
 
 
 
825
  #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:58
826
  msgid "WPGlobus Recommends:"
827
  msgstr ""
@@ -1473,3 +1491,19 @@ msgstr ""
1473
  #: wpglobus.php:19
1474
  msgid "https://wpglobus.com/"
1475
  msgstr "https://wpglobus.com/"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
  #: includes/admin/class-wpglobus-about.php:42,
21
  #: includes/admin/class-wpglobus-about.php:117,
22
  #: includes/admin/class-wpglobus-clean.php:600,
23
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
24
  msgid "Guide"
25
  msgstr "Guide"
26
 
27
  #: includes/admin/central/class-wpglobus-admin-central.php:142,
28
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:102
29
  msgid "WPGlobus Help Desk"
30
  msgstr "Centre d’aide de WPGlobus"
31
 
35
  #: includes/admin/class-wpglobus-clean.php:606,
36
  #: includes/admin/class-wpglobus-customize-options.php:1254,
37
  #: includes/admin/class-wpglobus-customize-options.php:1286,
38
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
39
  msgid "Add-ons"
40
  msgstr "Modules"
41
 
44
  msgstr "Démarrage rapide"
45
 
46
  #: includes/admin/class-wpglobus-about.php:48,
47
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:49
48
  msgid "FAQ"
49
  msgstr "FAQ"
50
 
568
  "contacter."
569
 
570
  #: includes/admin/class-wpglobus-customize-options.php:1360,
 
571
  #: includes/options/class-wpglobus-options.php:586
572
  msgid "Sincerely Yours,"
573
  msgstr "Cordialement,"
574
 
575
  #: includes/admin/class-wpglobus-customize-options.php:1362,
 
576
  #: includes/options/class-wpglobus-options.php:588,
577
  #: includes/options/wpglobus-options-header.php:34
578
  msgid "The WPGlobus Team"
759
  msgid "Installed"
760
  msgstr "Installée"
761
 
762
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:103,
763
  #: includes/options/class-wpglobus-options.php:659
764
  msgid "Help Desk"
765
  msgstr "Centre de support"
766
 
767
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:182
768
+ msgid "Email not sent. Please fill in the entire form."
 
 
 
 
769
  msgstr ""
 
 
770
 
771
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:192
772
+ msgid ""
773
+ "Email not sent. Please verify that your name and email are entered correctly."
774
  msgstr ""
775
 
776
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:213
777
+ msgid "Email sent."
 
 
 
 
 
778
  msgstr ""
 
 
779
 
780
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:68
781
+ msgid "Thank you for using WPGlobus!"
782
+ msgstr "Merci d'utiliser WPGlobus&nbsp:;!"
783
+
784
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69
785
+ msgid "Our Support Team is here to answer your questions or concerns."
786
  msgstr ""
787
+ "Notre équipe d'assistance est pour répondre à vos questions ou "
788
+ "préoccupations."
789
 
790
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:71
791
  msgid "To help us serve you better:"
792
  msgstr "Pour nous aider à mieux vous servir&nbsp;:"
793
 
794
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
795
  msgid ""
796
  "Please check if the problem persists if you switch to a standard WordPress "
797
  "theme."
799
  "Veuillez vérifier si le problème persiste si vous basculez vers un thème "
800
  "WordPress standard."
801
 
802
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:74
803
  msgid ""
804
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
805
  msgstr ""
806
  "Essayez de désactiver d'autres extension pour voir si l'une d'entre elles "
807
  "est en conflit avec WPGlobus."
808
 
809
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:77
810
+ msgid "Please fill in and submit the contact form:"
811
+ msgstr ""
812
+
813
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:97
814
+ msgid "Please make sure the email address is correct."
815
+ msgstr ""
816
+
817
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:103
818
+ msgid "Subject"
819
+ msgstr ""
820
+
821
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:108
822
+ msgid "Short description of the problem"
823
+ msgstr ""
824
+
825
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:113
826
+ msgid "Detailed description"
827
+ msgstr ""
828
+
829
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:120
830
  msgid "Technical Information"
831
  msgstr "Informations techniques"
832
 
833
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:127
834
+ msgid "This information helps us to find the problem source"
835
+ msgstr ""
836
+
837
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:143
838
+ msgid ""
839
+ "Alternatively, please email %s. Do not forget to copy and paste the "
840
+ "technical information to your email message."
841
+ msgstr ""
842
+
843
  #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:58
844
  msgid "WPGlobus Recommends:"
845
  msgstr ""
1491
  #: wpglobus.php:19
1492
  msgid "https://wpglobus.com/"
1493
  msgstr "https://wpglobus.com/"
1494
+
1495
+ #~ msgid "Type in your name, email, subject and the detailed message."
1496
+ #~ msgstr "Saisissez votre nom, e-mail, sujet et le message détaillé."
1497
+
1498
+ #~ msgid ""
1499
+ #~ "If you can make a screenshot demonstrating the problem, please attach it."
1500
+ #~ msgstr ""
1501
+ #~ "Si vous pouvez faire une capture d'écran illustrant le problème, veuillez "
1502
+ #~ "le joindre."
1503
+
1504
+ #~ msgid ""
1505
+ #~ "Please note: we will receive some debug data together with your request. "
1506
+ #~ "See the \"Technical Information\" table for the details."
1507
+ #~ msgstr ""
1508
+ #~ "Veuillez notez que nous recevrons quelques données de débogage avec votre "
1509
+ #~ "demande. Voir le tableau \"Informations techniques\" pour les détails."
languages/wpglobus-fr_CA.mo CHANGED
Binary file
languages/wpglobus-fr_CA.po CHANGED
@@ -22,12 +22,12 @@ msgstr ""
22
  #: includes/admin/class-wpglobus-about.php:42,
23
  #: includes/admin/class-wpglobus-about.php:117,
24
  #: includes/admin/class-wpglobus-clean.php:600,
25
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
26
  msgid "Guide"
27
  msgstr "Guide"
28
 
29
  #: includes/admin/central/class-wpglobus-admin-central.php:142,
30
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:44
31
  msgid "WPGlobus Help Desk"
32
  msgstr "Centre d’aide de WPGlobus"
33
 
@@ -37,7 +37,7 @@ msgstr "Centre d’aide de WPGlobus"
37
  #: includes/admin/class-wpglobus-clean.php:606,
38
  #: includes/admin/class-wpglobus-customize-options.php:1254,
39
  #: includes/admin/class-wpglobus-customize-options.php:1286,
40
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:31
41
  msgid "Add-ons"
42
  msgstr "Modules"
43
 
@@ -46,7 +46,7 @@ msgid "Quick Start"
46
  msgstr "Démarrage rapide"
47
 
48
  #: includes/admin/class-wpglobus-about.php:48,
49
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
50
  msgid "FAQ"
51
  msgstr "FAQ"
52
 
@@ -570,13 +570,11 @@ msgstr ""
570
  "contacter."
571
 
572
  #: includes/admin/class-wpglobus-customize-options.php:1360,
573
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69,
574
  #: includes/options/class-wpglobus-options.php:586
575
  msgid "Sincerely Yours,"
576
  msgstr "Cordialement,"
577
 
578
  #: includes/admin/class-wpglobus-customize-options.php:1362,
579
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:70,
580
  #: includes/options/class-wpglobus-options.php:588,
581
  #: includes/options/wpglobus-options-header.php:34
582
  msgid "The WPGlobus Team"
@@ -763,49 +761,39 @@ msgstr "Module premium"
763
  msgid "Installed"
764
  msgstr "Installée"
765
 
766
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:45,
767
  #: includes/options/class-wpglobus-options.php:659
768
  msgid "Help Desk"
769
  msgstr "Centre de support"
770
 
771
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:55
772
- msgid "Thank you for using WPGlobus!"
773
- msgstr "Merci d'utiliser WPGlobus&nbsp:;!"
774
-
775
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:56
776
- msgid "Our Support Team is here to answer your questions or concerns."
777
  msgstr ""
778
- "Notre équipe d'assistance est là pour répondre à vos questions ou "
779
- "préoccupations."
780
 
781
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:58
782
- msgid "Click here to open the Contact Form."
 
783
  msgstr ""
784
 
785
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:59
786
- msgid "Type in your name, email, subject and the detailed message."
787
- msgstr "Saisissez votre nom, e-mail, sujet et le message détaillé."
788
-
789
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:60
790
- msgid ""
791
- "If you can make a screenshot demonstrating the problem, please attach it."
792
  msgstr ""
793
- "Si vous pouvez faire une capture d'écran illustrant le problème, veuillez le "
794
- "joindre."
795
 
796
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:61
797
- msgid ""
798
- "Please note: we will receive some debug data together with your request. See "
799
- "the \"Technical Information\" table for the details."
 
 
800
  msgstr ""
801
- "Veuillez notez que nous recevrons quelques données de débogage avec votre "
802
- "demande. Voir le tableau \"Informations techniques\" pour les détails."
803
 
804
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:63
805
  msgid "To help us serve you better:"
806
  msgstr "Pour nous aider à mieux vous servir&nbsp;:"
807
 
808
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:65
809
  msgid ""
810
  "Please check if the problem persists if you switch to a standard WordPress "
811
  "theme."
@@ -813,17 +801,47 @@ msgstr ""
813
  "Veuillez vérifier si le problème persiste si vous basculez vers un thème "
814
  "WordPress standard."
815
 
816
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:66
817
  msgid ""
818
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
819
  msgstr ""
820
  "Essayez de désactiver d'autres extension pour voir si l'une d'entre elles "
821
  "est en conflit avec WPGlobus."
822
 
823
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
824
  msgid "Technical Information"
825
  msgstr "Informations techniques"
826
 
 
 
 
 
 
 
 
 
 
 
827
  #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:58
828
  msgid "WPGlobus Recommends:"
829
  msgstr ""
@@ -1475,3 +1493,19 @@ msgstr ""
1475
  #: wpglobus.php:19
1476
  msgid "https://wpglobus.com/"
1477
  msgstr "https://wpglobus.com/"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
22
  #: includes/admin/class-wpglobus-about.php:42,
23
  #: includes/admin/class-wpglobus-about.php:117,
24
  #: includes/admin/class-wpglobus-clean.php:600,
25
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
26
  msgid "Guide"
27
  msgstr "Guide"
28
 
29
  #: includes/admin/central/class-wpglobus-admin-central.php:142,
30
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:102
31
  msgid "WPGlobus Help Desk"
32
  msgstr "Centre d’aide de WPGlobus"
33
 
37
  #: includes/admin/class-wpglobus-clean.php:606,
38
  #: includes/admin/class-wpglobus-customize-options.php:1254,
39
  #: includes/admin/class-wpglobus-customize-options.php:1286,
40
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
41
  msgid "Add-ons"
42
  msgstr "Modules"
43
 
46
  msgstr "Démarrage rapide"
47
 
48
  #: includes/admin/class-wpglobus-about.php:48,
49
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:49
50
  msgid "FAQ"
51
  msgstr "FAQ"
52
 
570
  "contacter."
571
 
572
  #: includes/admin/class-wpglobus-customize-options.php:1360,
 
573
  #: includes/options/class-wpglobus-options.php:586
574
  msgid "Sincerely Yours,"
575
  msgstr "Cordialement,"
576
 
577
  #: includes/admin/class-wpglobus-customize-options.php:1362,
 
578
  #: includes/options/class-wpglobus-options.php:588,
579
  #: includes/options/wpglobus-options-header.php:34
580
  msgid "The WPGlobus Team"
761
  msgid "Installed"
762
  msgstr "Installée"
763
 
764
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:103,
765
  #: includes/options/class-wpglobus-options.php:659
766
  msgid "Help Desk"
767
  msgstr "Centre de support"
768
 
769
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:182
770
+ msgid "Email not sent. Please fill in the entire form."
 
 
 
 
771
  msgstr ""
 
 
772
 
773
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:192
774
+ msgid ""
775
+ "Email not sent. Please verify that your name and email are entered correctly."
776
  msgstr ""
777
 
778
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:213
779
+ msgid "Email sent."
 
 
 
 
 
780
  msgstr ""
 
 
781
 
782
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:68
783
+ msgid "Thank you for using WPGlobus!"
784
+ msgstr "Merci d'utiliser WPGlobus&nbsp:;!"
785
+
786
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69
787
+ msgid "Our Support Team is here to answer your questions or concerns."
788
  msgstr ""
789
+ "Notre équipe d'assistance est pour répondre à vos questions ou "
790
+ "préoccupations."
791
 
792
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:71
793
  msgid "To help us serve you better:"
794
  msgstr "Pour nous aider à mieux vous servir&nbsp;:"
795
 
796
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
797
  msgid ""
798
  "Please check if the problem persists if you switch to a standard WordPress "
799
  "theme."
801
  "Veuillez vérifier si le problème persiste si vous basculez vers un thème "
802
  "WordPress standard."
803
 
804
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:74
805
  msgid ""
806
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
807
  msgstr ""
808
  "Essayez de désactiver d'autres extension pour voir si l'une d'entre elles "
809
  "est en conflit avec WPGlobus."
810
 
811
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:77
812
+ msgid "Please fill in and submit the contact form:"
813
+ msgstr ""
814
+
815
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:97
816
+ msgid "Please make sure the email address is correct."
817
+ msgstr ""
818
+
819
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:103
820
+ msgid "Subject"
821
+ msgstr ""
822
+
823
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:108
824
+ msgid "Short description of the problem"
825
+ msgstr ""
826
+
827
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:113
828
+ msgid "Detailed description"
829
+ msgstr ""
830
+
831
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:120
832
  msgid "Technical Information"
833
  msgstr "Informations techniques"
834
 
835
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:127
836
+ msgid "This information helps us to find the problem source"
837
+ msgstr ""
838
+
839
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:143
840
+ msgid ""
841
+ "Alternatively, please email %s. Do not forget to copy and paste the "
842
+ "technical information to your email message."
843
+ msgstr ""
844
+
845
  #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:58
846
  msgid "WPGlobus Recommends:"
847
  msgstr ""
1493
  #: wpglobus.php:19
1494
  msgid "https://wpglobus.com/"
1495
  msgstr "https://wpglobus.com/"
1496
+
1497
+ #~ msgid "Type in your name, email, subject and the detailed message."
1498
+ #~ msgstr "Saisissez votre nom, e-mail, sujet et le message détaillé."
1499
+
1500
+ #~ msgid ""
1501
+ #~ "If you can make a screenshot demonstrating the problem, please attach it."
1502
+ #~ msgstr ""
1503
+ #~ "Si vous pouvez faire une capture d'écran illustrant le problème, veuillez "
1504
+ #~ "le joindre."
1505
+
1506
+ #~ msgid ""
1507
+ #~ "Please note: we will receive some debug data together with your request. "
1508
+ #~ "See the \"Technical Information\" table for the details."
1509
+ #~ msgstr ""
1510
+ #~ "Veuillez notez que nous recevrons quelques données de débogage avec votre "
1511
+ #~ "demande. Voir le tableau \"Informations techniques\" pour les détails."
languages/wpglobus-fr_FR.mo CHANGED
Binary file
languages/wpglobus-fr_FR.po CHANGED
@@ -22,12 +22,12 @@ msgstr ""
22
  #: includes/admin/class-wpglobus-about.php:42,
23
  #: includes/admin/class-wpglobus-about.php:117,
24
  #: includes/admin/class-wpglobus-clean.php:600,
25
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
26
  msgid "Guide"
27
  msgstr "Guide"
28
 
29
  #: includes/admin/central/class-wpglobus-admin-central.php:142,
30
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:44
31
  msgid "WPGlobus Help Desk"
32
  msgstr "Centre d’aide de WPGlobus"
33
 
@@ -37,7 +37,7 @@ msgstr "Centre d’aide de WPGlobus"
37
  #: includes/admin/class-wpglobus-clean.php:606,
38
  #: includes/admin/class-wpglobus-customize-options.php:1254,
39
  #: includes/admin/class-wpglobus-customize-options.php:1286,
40
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:31
41
  msgid "Add-ons"
42
  msgstr "Modules"
43
 
@@ -46,7 +46,7 @@ msgid "Quick Start"
46
  msgstr "Démarrage rapide"
47
 
48
  #: includes/admin/class-wpglobus-about.php:48,
49
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
50
  msgid "FAQ"
51
  msgstr "FAQ"
52
 
@@ -570,13 +570,11 @@ msgstr ""
570
  "contacter."
571
 
572
  #: includes/admin/class-wpglobus-customize-options.php:1360,
573
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69,
574
  #: includes/options/class-wpglobus-options.php:586
575
  msgid "Sincerely Yours,"
576
  msgstr "Cordialement,"
577
 
578
  #: includes/admin/class-wpglobus-customize-options.php:1362,
579
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:70,
580
  #: includes/options/class-wpglobus-options.php:588,
581
  #: includes/options/wpglobus-options-header.php:34
582
  msgid "The WPGlobus Team"
@@ -763,49 +761,39 @@ msgstr "Module premium"
763
  msgid "Installed"
764
  msgstr "Installée"
765
 
766
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:45,
767
  #: includes/options/class-wpglobus-options.php:659
768
  msgid "Help Desk"
769
  msgstr "Centre de support"
770
 
771
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:55
 
 
 
 
 
 
 
 
 
 
 
 
 
772
  msgid "Thank you for using WPGlobus!"
773
  msgstr "Merci d'utiliser WPGlobus&nbsp:;!"
774
 
775
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:56
776
  msgid "Our Support Team is here to answer your questions or concerns."
777
  msgstr ""
778
  "Notre équipe d'assistance est là pour répondre à vos questions ou "
779
  "préoccupations."
780
 
781
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:58
782
- msgid "Click here to open the Contact Form."
783
- msgstr "Cliquez ici pour ouvrir le formulaire de contact."
784
-
785
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:59
786
- msgid "Type in your name, email, subject and the detailed message."
787
- msgstr "Saisissez votre nom, e-mail, sujet et le message détaillé."
788
-
789
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:60
790
- msgid ""
791
- "If you can make a screenshot demonstrating the problem, please attach it."
792
- msgstr ""
793
- "Si vous pouvez faire une capture d'écran illustrant le problème, veuillez le "
794
- "joindre."
795
-
796
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:61
797
- msgid ""
798
- "Please note: we will receive some debug data together with your request. See "
799
- "the \"Technical Information\" table for the details."
800
- msgstr ""
801
- "Veuillez notez que nous recevrons quelques données de débogage avec votre "
802
- "demande. Voir le tableau \"Informations techniques\" pour les détails."
803
-
804
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:63
805
  msgid "To help us serve you better:"
806
  msgstr "Pour nous aider à mieux vous servir&nbsp;:"
807
 
808
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:65
809
  msgid ""
810
  "Please check if the problem persists if you switch to a standard WordPress "
811
  "theme."
@@ -813,17 +801,47 @@ msgstr ""
813
  "Veuillez vérifier si le problème persiste si vous basculez vers un thème "
814
  "WordPress standard."
815
 
816
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:66
817
  msgid ""
818
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
819
  msgstr ""
820
  "Essayez de désactiver d'autres extension pour voir si l'une d'entre elles "
821
  "est en conflit avec WPGlobus."
822
 
823
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
824
  msgid "Technical Information"
825
  msgstr "Informations techniques"
826
 
 
 
 
 
 
 
 
 
 
 
827
  #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:58
828
  msgid "WPGlobus Recommends:"
829
  msgstr ""
@@ -1475,3 +1493,22 @@ msgstr ""
1475
  #: wpglobus.php:19
1476
  msgid "https://wpglobus.com/"
1477
  msgstr "https://wpglobus.com/"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
22
  #: includes/admin/class-wpglobus-about.php:42,
23
  #: includes/admin/class-wpglobus-about.php:117,
24
  #: includes/admin/class-wpglobus-clean.php:600,
25
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
26
  msgid "Guide"
27
  msgstr "Guide"
28
 
29
  #: includes/admin/central/class-wpglobus-admin-central.php:142,
30
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:102
31
  msgid "WPGlobus Help Desk"
32
  msgstr "Centre d’aide de WPGlobus"
33
 
37
  #: includes/admin/class-wpglobus-clean.php:606,
38
  #: includes/admin/class-wpglobus-customize-options.php:1254,
39
  #: includes/admin/class-wpglobus-customize-options.php:1286,
40
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
41
  msgid "Add-ons"
42
  msgstr "Modules"
43
 
46
  msgstr "Démarrage rapide"
47
 
48
  #: includes/admin/class-wpglobus-about.php:48,
49
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:49
50
  msgid "FAQ"
51
  msgstr "FAQ"
52
 
570
  "contacter."
571
 
572
  #: includes/admin/class-wpglobus-customize-options.php:1360,
 
573
  #: includes/options/class-wpglobus-options.php:586
574
  msgid "Sincerely Yours,"
575
  msgstr "Cordialement,"
576
 
577
  #: includes/admin/class-wpglobus-customize-options.php:1362,
 
578
  #: includes/options/class-wpglobus-options.php:588,
579
  #: includes/options/wpglobus-options-header.php:34
580
  msgid "The WPGlobus Team"
761
  msgid "Installed"
762
  msgstr "Installée"
763
 
764
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:103,
765
  #: includes/options/class-wpglobus-options.php:659
766
  msgid "Help Desk"
767
  msgstr "Centre de support"
768
 
769
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:182
770
+ msgid "Email not sent. Please fill in the entire form."
771
+ msgstr ""
772
+
773
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:192
774
+ msgid ""
775
+ "Email not sent. Please verify that your name and email are entered correctly."
776
+ msgstr ""
777
+
778
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:213
779
+ msgid "Email sent."
780
+ msgstr ""
781
+
782
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:68
783
  msgid "Thank you for using WPGlobus!"
784
  msgstr "Merci d'utiliser WPGlobus&nbsp:;!"
785
 
786
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69
787
  msgid "Our Support Team is here to answer your questions or concerns."
788
  msgstr ""
789
  "Notre équipe d'assistance est là pour répondre à vos questions ou "
790
  "préoccupations."
791
 
792
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:71
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
793
  msgid "To help us serve you better:"
794
  msgstr "Pour nous aider à mieux vous servir&nbsp;:"
795
 
796
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
797
  msgid ""
798
  "Please check if the problem persists if you switch to a standard WordPress "
799
  "theme."
801
  "Veuillez vérifier si le problème persiste si vous basculez vers un thème "
802
  "WordPress standard."
803
 
804
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:74
805
  msgid ""
806
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
807
  msgstr ""
808
  "Essayez de désactiver d'autres extension pour voir si l'une d'entre elles "
809
  "est en conflit avec WPGlobus."
810
 
811
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:77
812
+ msgid "Please fill in and submit the contact form:"
813
+ msgstr ""
814
+
815
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:97
816
+ msgid "Please make sure the email address is correct."
817
+ msgstr ""
818
+
819
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:103
820
+ msgid "Subject"
821
+ msgstr ""
822
+
823
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:108
824
+ msgid "Short description of the problem"
825
+ msgstr ""
826
+
827
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:113
828
+ msgid "Detailed description"
829
+ msgstr ""
830
+
831
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:120
832
  msgid "Technical Information"
833
  msgstr "Informations techniques"
834
 
835
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:127
836
+ msgid "This information helps us to find the problem source"
837
+ msgstr ""
838
+
839
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:143
840
+ msgid ""
841
+ "Alternatively, please email %s. Do not forget to copy and paste the "
842
+ "technical information to your email message."
843
+ msgstr ""
844
+
845
  #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:58
846
  msgid "WPGlobus Recommends:"
847
  msgstr ""
1493
  #: wpglobus.php:19
1494
  msgid "https://wpglobus.com/"
1495
  msgstr "https://wpglobus.com/"
1496
+
1497
+ #~ msgid "Click here to open the Contact Form."
1498
+ #~ msgstr "Cliquez ici pour ouvrir le formulaire de contact."
1499
+
1500
+ #~ msgid "Type in your name, email, subject and the detailed message."
1501
+ #~ msgstr "Saisissez votre nom, e-mail, sujet et le message détaillé."
1502
+
1503
+ #~ msgid ""
1504
+ #~ "If you can make a screenshot demonstrating the problem, please attach it."
1505
+ #~ msgstr ""
1506
+ #~ "Si vous pouvez faire une capture d'écran illustrant le problème, veuillez "
1507
+ #~ "le joindre."
1508
+
1509
+ #~ msgid ""
1510
+ #~ "Please note: we will receive some debug data together with your request. "
1511
+ #~ "See the \"Technical Information\" table for the details."
1512
+ #~ msgstr ""
1513
+ #~ "Veuillez notez que nous recevrons quelques données de débogage avec votre "
1514
+ #~ "demande. Voir le tableau \"Informations techniques\" pour les détails."
languages/wpglobus-id_ID.mo CHANGED
Binary file
languages/wpglobus-id_ID.po CHANGED
@@ -21,12 +21,12 @@ msgstr ""
21
  #: includes/admin/class-wpglobus-about.php:42,
22
  #: includes/admin/class-wpglobus-about.php:117,
23
  #: includes/admin/class-wpglobus-clean.php:600,
24
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
25
  msgid "Guide"
26
  msgstr "Panduan"
27
 
28
  #: includes/admin/central/class-wpglobus-admin-central.php:142,
29
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:44
30
  msgid "WPGlobus Help Desk"
31
  msgstr "Meja Bantuan WPGlobus"
32
 
@@ -36,7 +36,7 @@ msgstr "Meja Bantuan WPGlobus"
36
  #: includes/admin/class-wpglobus-clean.php:606,
37
  #: includes/admin/class-wpglobus-customize-options.php:1254,
38
  #: includes/admin/class-wpglobus-customize-options.php:1286,
39
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:31
40
  msgid "Add-ons"
41
  msgstr "Add-ons"
42
 
@@ -45,7 +45,7 @@ msgid "Quick Start"
45
  msgstr "Mulai cepat"
46
 
47
  #: includes/admin/class-wpglobus-about.php:48,
48
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
49
  msgid "FAQ"
50
  msgstr "FAQ"
51
 
@@ -553,13 +553,11 @@ msgstr ""
553
  "kami."
554
 
555
  #: includes/admin/class-wpglobus-customize-options.php:1360,
556
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69,
557
  #: includes/options/class-wpglobus-options.php:586
558
  msgid "Sincerely Yours,"
559
  msgstr "Hormat kami,"
560
 
561
  #: includes/admin/class-wpglobus-customize-options.php:1362,
562
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:70,
563
  #: includes/options/class-wpglobus-options.php:588,
564
  #: includes/options/wpglobus-options-header.php:34
565
  msgid "The WPGlobus Team"
@@ -740,47 +738,37 @@ msgstr "Premium add-on"
740
  msgid "Installed"
741
  msgstr "Dipasang"
742
 
743
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:45,
744
  #: includes/options/class-wpglobus-options.php:659
745
  msgid "Help Desk"
746
  msgstr "help Desk"
747
 
748
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:55
749
- msgid "Thank you for using WPGlobus!"
750
- msgstr "Terima kasih telah menggunakan WPGlobus!"
751
-
752
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:56
753
- msgid "Our Support Team is here to answer your questions or concerns."
754
- msgstr "Tim Dukungan kami di sini untuk menjawab pertanyaan Anda atau masalah."
755
-
756
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:58
757
- msgid "Click here to open the Contact Form."
758
  msgstr ""
759
 
760
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:59
761
- msgid "Type in your name, email, subject and the detailed message."
762
- msgstr "Ketik nama, email, subjek dan pesan terperinci Anda."
763
-
764
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:60
765
  msgid ""
766
- "If you can make a screenshot demonstrating the problem, please attach it."
767
  msgstr ""
768
- "Jika Anda bisa membuat tangkapan layar yang menunjukkan masalahnya, "
769
- "lampirkan."
770
 
771
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:61
772
- msgid ""
773
- "Please note: we will receive some debug data together with your request. See "
774
- "the \"Technical Information\" table for the details."
775
  msgstr ""
776
- "Harap dicatat: kami akan menerima beberapa data debug bersama dengan "
777
- "permintaan Anda. Lihat tabel \\ \"Informasi Teknis \" untuk rinciannya."
778
 
779
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:63
 
 
 
 
 
 
 
 
780
  msgid "To help us serve you better:"
781
  msgstr "Untuk membantu kami melayani Anda lebih baik:"
782
 
783
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:65
784
  msgid ""
785
  "Please check if the problem persists if you switch to a standard WordPress "
786
  "theme."
@@ -788,17 +776,47 @@ msgstr ""
788
  "Harap periksa apakah masalah berlanjut jika Anda beralih ke tema standar "
789
  "WordPress."
790
 
791
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:66
792
  msgid ""
793
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
794
  msgstr ""
795
  "Cobalah menonaktifkan plugin lain untuk melihat apakah salah satu dari "
796
  "mereka bertentangan dengan WPGlobus."
797
 
798
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
799
  msgid "Technical Information"
800
  msgstr "Informasi teknis"
801
 
 
 
 
 
 
 
 
 
 
 
802
  #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:58
803
  msgid "WPGlobus Recommends:"
804
  msgstr ""
@@ -1447,3 +1465,19 @@ msgstr ""
1447
  #: wpglobus.php:19
1448
  msgid "https://wpglobus.com/"
1449
  msgstr "https://wpglobus.com/"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21
  #: includes/admin/class-wpglobus-about.php:42,
22
  #: includes/admin/class-wpglobus-about.php:117,
23
  #: includes/admin/class-wpglobus-clean.php:600,
24
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
25
  msgid "Guide"
26
  msgstr "Panduan"
27
 
28
  #: includes/admin/central/class-wpglobus-admin-central.php:142,
29
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:102
30
  msgid "WPGlobus Help Desk"
31
  msgstr "Meja Bantuan WPGlobus"
32
 
36
  #: includes/admin/class-wpglobus-clean.php:606,
37
  #: includes/admin/class-wpglobus-customize-options.php:1254,
38
  #: includes/admin/class-wpglobus-customize-options.php:1286,
39
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
40
  msgid "Add-ons"
41
  msgstr "Add-ons"
42
 
45
  msgstr "Mulai cepat"
46
 
47
  #: includes/admin/class-wpglobus-about.php:48,
48
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:49
49
  msgid "FAQ"
50
  msgstr "FAQ"
51
 
553
  "kami."
554
 
555
  #: includes/admin/class-wpglobus-customize-options.php:1360,
 
556
  #: includes/options/class-wpglobus-options.php:586
557
  msgid "Sincerely Yours,"
558
  msgstr "Hormat kami,"
559
 
560
  #: includes/admin/class-wpglobus-customize-options.php:1362,
 
561
  #: includes/options/class-wpglobus-options.php:588,
562
  #: includes/options/wpglobus-options-header.php:34
563
  msgid "The WPGlobus Team"
738
  msgid "Installed"
739
  msgstr "Dipasang"
740
 
741
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:103,
742
  #: includes/options/class-wpglobus-options.php:659
743
  msgid "Help Desk"
744
  msgstr "help Desk"
745
 
746
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:182
747
+ msgid "Email not sent. Please fill in the entire form."
 
 
 
 
 
 
 
 
748
  msgstr ""
749
 
750
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:192
 
 
 
 
751
  msgid ""
752
+ "Email not sent. Please verify that your name and email are entered correctly."
753
  msgstr ""
 
 
754
 
755
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:213
756
+ msgid "Email sent."
 
 
757
  msgstr ""
 
 
758
 
759
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:68
760
+ msgid "Thank you for using WPGlobus!"
761
+ msgstr "Terima kasih telah menggunakan WPGlobus!"
762
+
763
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69
764
+ msgid "Our Support Team is here to answer your questions or concerns."
765
+ msgstr "Tim Dukungan kami di sini untuk menjawab pertanyaan Anda atau masalah."
766
+
767
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:71
768
  msgid "To help us serve you better:"
769
  msgstr "Untuk membantu kami melayani Anda lebih baik:"
770
 
771
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
772
  msgid ""
773
  "Please check if the problem persists if you switch to a standard WordPress "
774
  "theme."
776
  "Harap periksa apakah masalah berlanjut jika Anda beralih ke tema standar "
777
  "WordPress."
778
 
779
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:74
780
  msgid ""
781
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
782
  msgstr ""
783
  "Cobalah menonaktifkan plugin lain untuk melihat apakah salah satu dari "
784
  "mereka bertentangan dengan WPGlobus."
785
 
786
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:77
787
+ msgid "Please fill in and submit the contact form:"
788
+ msgstr ""
789
+
790
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:97
791
+ msgid "Please make sure the email address is correct."
792
+ msgstr ""
793
+
794
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:103
795
+ msgid "Subject"
796
+ msgstr ""
797
+
798
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:108
799
+ msgid "Short description of the problem"
800
+ msgstr ""
801
+
802
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:113
803
+ msgid "Detailed description"
804
+ msgstr ""
805
+
806
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:120
807
  msgid "Technical Information"
808
  msgstr "Informasi teknis"
809
 
810
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:127
811
+ msgid "This information helps us to find the problem source"
812
+ msgstr ""
813
+
814
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:143
815
+ msgid ""
816
+ "Alternatively, please email %s. Do not forget to copy and paste the "
817
+ "technical information to your email message."
818
+ msgstr ""
819
+
820
  #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:58
821
  msgid "WPGlobus Recommends:"
822
  msgstr ""
1465
  #: wpglobus.php:19
1466
  msgid "https://wpglobus.com/"
1467
  msgstr "https://wpglobus.com/"
1468
+
1469
+ #~ msgid "Type in your name, email, subject and the detailed message."
1470
+ #~ msgstr "Ketik nama, email, subjek dan pesan terperinci Anda."
1471
+
1472
+ #~ msgid ""
1473
+ #~ "If you can make a screenshot demonstrating the problem, please attach it."
1474
+ #~ msgstr ""
1475
+ #~ "Jika Anda bisa membuat tangkapan layar yang menunjukkan masalahnya, "
1476
+ #~ "lampirkan."
1477
+
1478
+ #~ msgid ""
1479
+ #~ "Please note: we will receive some debug data together with your request. "
1480
+ #~ "See the \"Technical Information\" table for the details."
1481
+ #~ msgstr ""
1482
+ #~ "Harap dicatat: kami akan menerima beberapa data debug bersama dengan "
1483
+ #~ "permintaan Anda. Lihat tabel \\ \"Informasi Teknis \" untuk rinciannya."
languages/wpglobus-ko_KR.po CHANGED
@@ -19,12 +19,12 @@ msgstr ""
19
  #: includes/admin/class-wpglobus-about.php:42,
20
  #: includes/admin/class-wpglobus-about.php:117,
21
  #: includes/admin/class-wpglobus-clean.php:600,
22
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
23
  msgid "Guide"
24
  msgstr ""
25
 
26
  #: includes/admin/central/class-wpglobus-admin-central.php:142,
27
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:44
28
  msgid "WPGlobus Help Desk"
29
  msgstr ""
30
 
@@ -34,7 +34,7 @@ msgstr ""
34
  #: includes/admin/class-wpglobus-clean.php:606,
35
  #: includes/admin/class-wpglobus-customize-options.php:1254,
36
  #: includes/admin/class-wpglobus-customize-options.php:1286,
37
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:31
38
  msgid "Add-ons"
39
  msgstr "애드온"
40
 
@@ -43,7 +43,7 @@ msgid "Quick Start"
43
  msgstr "퀵스타트"
44
 
45
  #: includes/admin/class-wpglobus-about.php:48,
46
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
47
  msgid "FAQ"
48
  msgstr ""
49
 
@@ -492,13 +492,11 @@ msgid ""
492
  msgstr ""
493
 
494
  #: includes/admin/class-wpglobus-customize-options.php:1360,
495
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69,
496
  #: includes/options/class-wpglobus-options.php:586
497
  msgid "Sincerely Yours,"
498
  msgstr ""
499
 
500
  #: includes/admin/class-wpglobus-customize-options.php:1362,
501
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:70,
502
  #: includes/options/class-wpglobus-options.php:588,
503
  #: includes/options/wpglobus-options-header.php:34
504
  msgid "The WPGlobus Team"
@@ -669,57 +667,81 @@ msgstr ""
669
  msgid "Installed"
670
  msgstr ""
671
 
672
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:45,
673
  #: includes/options/class-wpglobus-options.php:659
674
  msgid "Help Desk"
675
  msgstr ""
676
 
677
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:55
678
- msgid "Thank you for using WPGlobus!"
679
- msgstr ""
680
-
681
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:56
682
- msgid "Our Support Team is here to answer your questions or concerns."
683
  msgstr ""
684
 
685
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:58
686
- msgid "Click here to open the Contact Form."
 
687
  msgstr ""
688
 
689
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:59
690
- msgid "Type in your name, email, subject and the detailed message."
691
  msgstr ""
692
 
693
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:60
694
- msgid ""
695
- "If you can make a screenshot demonstrating the problem, please attach it."
696
  msgstr ""
697
 
698
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:61
699
- msgid ""
700
- "Please note: we will receive some debug data together with your request. See "
701
- "the \"Technical Information\" table for the details."
702
  msgstr ""
703
 
704
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:63
705
  msgid "To help us serve you better:"
706
  msgstr ""
707
 
708
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:65
709
  msgid ""
710
  "Please check if the problem persists if you switch to a standard WordPress "
711
  "theme."
712
  msgstr ""
713
 
714
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:66
715
  msgid ""
716
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
717
  msgstr ""
718
 
719
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
720
  msgid "Technical Information"
721
  msgstr ""
722
 
 
 
 
 
 
 
 
 
 
 
723
  #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:58
724
  msgid "WPGlobus Recommends:"
725
  msgstr ""
19
  #: includes/admin/class-wpglobus-about.php:42,
20
  #: includes/admin/class-wpglobus-about.php:117,
21
  #: includes/admin/class-wpglobus-clean.php:600,
22
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
23
  msgid "Guide"
24
  msgstr ""
25
 
26
  #: includes/admin/central/class-wpglobus-admin-central.php:142,
27
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:102
28
  msgid "WPGlobus Help Desk"
29
  msgstr ""
30
 
34
  #: includes/admin/class-wpglobus-clean.php:606,
35
  #: includes/admin/class-wpglobus-customize-options.php:1254,
36
  #: includes/admin/class-wpglobus-customize-options.php:1286,
37
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
38
  msgid "Add-ons"
39
  msgstr "애드온"
40
 
43
  msgstr "퀵스타트"
44
 
45
  #: includes/admin/class-wpglobus-about.php:48,
46
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:49
47
  msgid "FAQ"
48
  msgstr ""
49
 
492
  msgstr ""
493
 
494
  #: includes/admin/class-wpglobus-customize-options.php:1360,
 
495
  #: includes/options/class-wpglobus-options.php:586
496
  msgid "Sincerely Yours,"
497
  msgstr ""
498
 
499
  #: includes/admin/class-wpglobus-customize-options.php:1362,
 
500
  #: includes/options/class-wpglobus-options.php:588,
501
  #: includes/options/wpglobus-options-header.php:34
502
  msgid "The WPGlobus Team"
667
  msgid "Installed"
668
  msgstr ""
669
 
670
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:103,
671
  #: includes/options/class-wpglobus-options.php:659
672
  msgid "Help Desk"
673
  msgstr ""
674
 
675
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:182
676
+ msgid "Email not sent. Please fill in the entire form."
 
 
 
 
677
  msgstr ""
678
 
679
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:192
680
+ msgid ""
681
+ "Email not sent. Please verify that your name and email are entered correctly."
682
  msgstr ""
683
 
684
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:213
685
+ msgid "Email sent."
686
  msgstr ""
687
 
688
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:68
689
+ msgid "Thank you for using WPGlobus!"
 
690
  msgstr ""
691
 
692
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69
693
+ msgid "Our Support Team is here to answer your questions or concerns."
 
 
694
  msgstr ""
695
 
696
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:71
697
  msgid "To help us serve you better:"
698
  msgstr ""
699
 
700
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
701
  msgid ""
702
  "Please check if the problem persists if you switch to a standard WordPress "
703
  "theme."
704
  msgstr ""
705
 
706
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:74
707
  msgid ""
708
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
709
  msgstr ""
710
 
711
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:77
712
+ msgid "Please fill in and submit the contact form:"
713
+ msgstr ""
714
+
715
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:97
716
+ msgid "Please make sure the email address is correct."
717
+ msgstr ""
718
+
719
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:103
720
+ msgid "Subject"
721
+ msgstr ""
722
+
723
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:108
724
+ msgid "Short description of the problem"
725
+ msgstr ""
726
+
727
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:113
728
+ msgid "Detailed description"
729
+ msgstr ""
730
+
731
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:120
732
  msgid "Technical Information"
733
  msgstr ""
734
 
735
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:127
736
+ msgid "This information helps us to find the problem source"
737
+ msgstr ""
738
+
739
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:143
740
+ msgid ""
741
+ "Alternatively, please email %s. Do not forget to copy and paste the "
742
+ "technical information to your email message."
743
+ msgstr ""
744
+
745
  #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:58
746
  msgid "WPGlobus Recommends:"
747
  msgstr ""
languages/wpglobus-pl_PL.po CHANGED
@@ -21,12 +21,12 @@ msgstr ""
21
  #: includes/admin/class-wpglobus-about.php:42,
22
  #: includes/admin/class-wpglobus-about.php:117,
23
  #: includes/admin/class-wpglobus-clean.php:600,
24
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
25
  msgid "Guide"
26
  msgstr "Instrukcja"
27
 
28
  #: includes/admin/central/class-wpglobus-admin-central.php:142,
29
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:44
30
  msgid "WPGlobus Help Desk"
31
  msgstr ""
32
 
@@ -36,7 +36,7 @@ msgstr ""
36
  #: includes/admin/class-wpglobus-clean.php:606,
37
  #: includes/admin/class-wpglobus-customize-options.php:1254,
38
  #: includes/admin/class-wpglobus-customize-options.php:1286,
39
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:31
40
  msgid "Add-ons"
41
  msgstr "Dodatki"
42
 
@@ -45,7 +45,7 @@ msgid "Quick Start"
45
  msgstr "Szybki start"
46
 
47
  #: includes/admin/class-wpglobus-about.php:48,
48
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
49
  msgid "FAQ"
50
  msgstr "FAQ"
51
 
@@ -518,13 +518,11 @@ msgstr ""
518
  "Jeżeli masz jakieś pytania lub sugestie, nie krępuj się z nami skontaktować."
519
 
520
  #: includes/admin/class-wpglobus-customize-options.php:1360,
521
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69,
522
  #: includes/options/class-wpglobus-options.php:586
523
  msgid "Sincerely Yours,"
524
  msgstr "Z poważaniem,"
525
 
526
  #: includes/admin/class-wpglobus-customize-options.php:1362,
527
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:70,
528
  #: includes/options/class-wpglobus-options.php:588,
529
  #: includes/options/wpglobus-options-header.php:34
530
  msgid "The WPGlobus Team"
@@ -696,57 +694,81 @@ msgstr ""
696
  msgid "Installed"
697
  msgstr "Zainstalowano"
698
 
699
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:45,
700
  #: includes/options/class-wpglobus-options.php:659
701
  msgid "Help Desk"
702
  msgstr ""
703
 
704
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:55
705
- msgid "Thank you for using WPGlobus!"
706
- msgstr ""
707
-
708
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:56
709
- msgid "Our Support Team is here to answer your questions or concerns."
710
  msgstr ""
711
 
712
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:58
713
- msgid "Click here to open the Contact Form."
 
714
  msgstr ""
715
 
716
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:59
717
- msgid "Type in your name, email, subject and the detailed message."
718
  msgstr ""
719
 
720
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:60
721
- msgid ""
722
- "If you can make a screenshot demonstrating the problem, please attach it."
723
  msgstr ""
724
 
725
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:61
726
- msgid ""
727
- "Please note: we will receive some debug data together with your request. See "
728
- "the \"Technical Information\" table for the details."
729
  msgstr ""
730
 
731
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:63
732
  msgid "To help us serve you better:"
733
  msgstr ""
734
 
735
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:65
736
  msgid ""
737
  "Please check if the problem persists if you switch to a standard WordPress "
738
  "theme."
739
  msgstr ""
740
 
741
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:66
742
  msgid ""
743
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
744
  msgstr ""
745
 
746
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
747
  msgid "Technical Information"
748
  msgstr ""
749
 
 
 
 
 
 
 
 
 
 
 
750
  #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:58
751
  msgid "WPGlobus Recommends:"
752
  msgstr ""
21
  #: includes/admin/class-wpglobus-about.php:42,
22
  #: includes/admin/class-wpglobus-about.php:117,
23
  #: includes/admin/class-wpglobus-clean.php:600,
24
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
25
  msgid "Guide"
26
  msgstr "Instrukcja"
27
 
28
  #: includes/admin/central/class-wpglobus-admin-central.php:142,
29
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:102
30
  msgid "WPGlobus Help Desk"
31
  msgstr ""
32
 
36
  #: includes/admin/class-wpglobus-clean.php:606,
37
  #: includes/admin/class-wpglobus-customize-options.php:1254,
38
  #: includes/admin/class-wpglobus-customize-options.php:1286,
39
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
40
  msgid "Add-ons"
41
  msgstr "Dodatki"
42
 
45
  msgstr "Szybki start"
46
 
47
  #: includes/admin/class-wpglobus-about.php:48,
48
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:49
49
  msgid "FAQ"
50
  msgstr "FAQ"
51
 
518
  "Jeżeli masz jakieś pytania lub sugestie, nie krępuj się z nami skontaktować."
519
 
520
  #: includes/admin/class-wpglobus-customize-options.php:1360,
 
521
  #: includes/options/class-wpglobus-options.php:586
522
  msgid "Sincerely Yours,"
523
  msgstr "Z poważaniem,"
524
 
525
  #: includes/admin/class-wpglobus-customize-options.php:1362,
 
526
  #: includes/options/class-wpglobus-options.php:588,
527
  #: includes/options/wpglobus-options-header.php:34
528
  msgid "The WPGlobus Team"
694
  msgid "Installed"
695
  msgstr "Zainstalowano"
696
 
697
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:103,
698
  #: includes/options/class-wpglobus-options.php:659
699
  msgid "Help Desk"
700
  msgstr ""
701
 
702
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:182
703
+ msgid "Email not sent. Please fill in the entire form."
 
 
 
 
704
  msgstr ""
705
 
706
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:192
707
+ msgid ""
708
+ "Email not sent. Please verify that your name and email are entered correctly."
709
  msgstr ""
710
 
711
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:213
712
+ msgid "Email sent."
713
  msgstr ""
714
 
715
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:68
716
+ msgid "Thank you for using WPGlobus!"
 
717
  msgstr ""
718
 
719
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69
720
+ msgid "Our Support Team is here to answer your questions or concerns."
 
 
721
  msgstr ""
722
 
723
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:71
724
  msgid "To help us serve you better:"
725
  msgstr ""
726
 
727
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
728
  msgid ""
729
  "Please check if the problem persists if you switch to a standard WordPress "
730
  "theme."
731
  msgstr ""
732
 
733
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:74
734
  msgid ""
735
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
736
  msgstr ""
737
 
738
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:77
739
+ msgid "Please fill in and submit the contact form:"
740
+ msgstr ""
741
+
742
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:97
743
+ msgid "Please make sure the email address is correct."
744
+ msgstr ""
745
+
746
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:103
747
+ msgid "Subject"
748
+ msgstr ""
749
+
750
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:108
751
+ msgid "Short description of the problem"
752
+ msgstr ""
753
+
754
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:113
755
+ msgid "Detailed description"
756
+ msgstr ""
757
+
758
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:120
759
  msgid "Technical Information"
760
  msgstr ""
761
 
762
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:127
763
+ msgid "This information helps us to find the problem source"
764
+ msgstr ""
765
+
766
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:143
767
+ msgid ""
768
+ "Alternatively, please email %s. Do not forget to copy and paste the "
769
+ "technical information to your email message."
770
+ msgstr ""
771
+
772
  #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:58
773
  msgid "WPGlobus Recommends:"
774
  msgstr ""
languages/wpglobus-pt_BR.po CHANGED
@@ -19,12 +19,12 @@ msgstr ""
19
  #: includes/admin/class-wpglobus-about.php:42,
20
  #: includes/admin/class-wpglobus-about.php:117,
21
  #: includes/admin/class-wpglobus-clean.php:600,
22
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
23
  msgid "Guide"
24
  msgstr ""
25
 
26
  #: includes/admin/central/class-wpglobus-admin-central.php:142,
27
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:44
28
  msgid "WPGlobus Help Desk"
29
  msgstr ""
30
 
@@ -34,7 +34,7 @@ msgstr ""
34
  #: includes/admin/class-wpglobus-clean.php:606,
35
  #: includes/admin/class-wpglobus-customize-options.php:1254,
36
  #: includes/admin/class-wpglobus-customize-options.php:1286,
37
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:31
38
  msgid "Add-ons"
39
  msgstr "Add-ons"
40
 
@@ -43,7 +43,7 @@ msgid "Quick Start"
43
  msgstr ""
44
 
45
  #: includes/admin/class-wpglobus-about.php:48,
46
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
47
  msgid "FAQ"
48
  msgstr "Perguntas Mais Frequentes"
49
 
@@ -492,13 +492,11 @@ msgid ""
492
  msgstr ""
493
 
494
  #: includes/admin/class-wpglobus-customize-options.php:1360,
495
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69,
496
  #: includes/options/class-wpglobus-options.php:586
497
  msgid "Sincerely Yours,"
498
  msgstr ""
499
 
500
  #: includes/admin/class-wpglobus-customize-options.php:1362,
501
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:70,
502
  #: includes/options/class-wpglobus-options.php:588,
503
  #: includes/options/wpglobus-options-header.php:34
504
  msgid "The WPGlobus Team"
@@ -669,57 +667,81 @@ msgstr ""
669
  msgid "Installed"
670
  msgstr "Instalado"
671
 
672
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:45,
673
  #: includes/options/class-wpglobus-options.php:659
674
  msgid "Help Desk"
675
  msgstr ""
676
 
677
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:55
678
- msgid "Thank you for using WPGlobus!"
679
- msgstr ""
680
-
681
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:56
682
- msgid "Our Support Team is here to answer your questions or concerns."
683
  msgstr ""
684
 
685
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:58
686
- msgid "Click here to open the Contact Form."
 
687
  msgstr ""
688
 
689
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:59
690
- msgid "Type in your name, email, subject and the detailed message."
691
  msgstr ""
692
 
693
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:60
694
- msgid ""
695
- "If you can make a screenshot demonstrating the problem, please attach it."
696
  msgstr ""
697
 
698
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:61
699
- msgid ""
700
- "Please note: we will receive some debug data together with your request. See "
701
- "the \"Technical Information\" table for the details."
702
  msgstr ""
703
 
704
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:63
705
  msgid "To help us serve you better:"
706
  msgstr ""
707
 
708
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:65
709
  msgid ""
710
  "Please check if the problem persists if you switch to a standard WordPress "
711
  "theme."
712
  msgstr ""
713
 
714
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:66
715
  msgid ""
716
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
717
  msgstr ""
718
 
719
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
720
  msgid "Technical Information"
721
  msgstr ""
722
 
 
 
 
 
 
 
 
 
 
 
723
  #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:58
724
  msgid "WPGlobus Recommends:"
725
  msgstr ""
19
  #: includes/admin/class-wpglobus-about.php:42,
20
  #: includes/admin/class-wpglobus-about.php:117,
21
  #: includes/admin/class-wpglobus-clean.php:600,
22
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
23
  msgid "Guide"
24
  msgstr ""
25
 
26
  #: includes/admin/central/class-wpglobus-admin-central.php:142,
27
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:102
28
  msgid "WPGlobus Help Desk"
29
  msgstr ""
30
 
34
  #: includes/admin/class-wpglobus-clean.php:606,
35
  #: includes/admin/class-wpglobus-customize-options.php:1254,
36
  #: includes/admin/class-wpglobus-customize-options.php:1286,
37
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
38
  msgid "Add-ons"
39
  msgstr "Add-ons"
40
 
43
  msgstr ""
44
 
45
  #: includes/admin/class-wpglobus-about.php:48,
46
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:49
47
  msgid "FAQ"
48
  msgstr "Perguntas Mais Frequentes"
49
 
492
  msgstr ""
493
 
494
  #: includes/admin/class-wpglobus-customize-options.php:1360,
 
495
  #: includes/options/class-wpglobus-options.php:586
496
  msgid "Sincerely Yours,"
497
  msgstr ""
498
 
499
  #: includes/admin/class-wpglobus-customize-options.php:1362,
 
500
  #: includes/options/class-wpglobus-options.php:588,
501
  #: includes/options/wpglobus-options-header.php:34
502
  msgid "The WPGlobus Team"
667
  msgid "Installed"
668
  msgstr "Instalado"
669
 
670
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:103,
671
  #: includes/options/class-wpglobus-options.php:659
672
  msgid "Help Desk"
673
  msgstr ""
674
 
675
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:182
676
+ msgid "Email not sent. Please fill in the entire form."
 
 
 
 
677
  msgstr ""
678
 
679
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:192
680
+ msgid ""
681
+ "Email not sent. Please verify that your name and email are entered correctly."
682
  msgstr ""
683
 
684
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:213
685
+ msgid "Email sent."
686
  msgstr ""
687
 
688
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:68
689
+ msgid "Thank you for using WPGlobus!"
 
690
  msgstr ""
691
 
692
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69
693
+ msgid "Our Support Team is here to answer your questions or concerns."
 
 
694
  msgstr ""
695
 
696
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:71
697
  msgid "To help us serve you better:"
698
  msgstr ""
699
 
700
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
701
  msgid ""
702
  "Please check if the problem persists if you switch to a standard WordPress "
703
  "theme."
704
  msgstr ""
705
 
706
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:74
707
  msgid ""
708
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
709
  msgstr ""
710
 
711
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:77
712
+ msgid "Please fill in and submit the contact form:"
713
+ msgstr ""
714
+
715
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:97
716
+ msgid "Please make sure the email address is correct."
717
+ msgstr ""
718
+
719
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:103
720
+ msgid "Subject"
721
+ msgstr ""
722
+
723
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:108
724
+ msgid "Short description of the problem"
725
+ msgstr ""
726
+
727
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:113
728
+ msgid "Detailed description"
729
+ msgstr ""
730
+
731
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:120
732
  msgid "Technical Information"
733
  msgstr ""
734
 
735
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:127
736
+ msgid "This information helps us to find the problem source"
737
+ msgstr ""
738
+
739
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:143
740
+ msgid ""
741
+ "Alternatively, please email %s. Do not forget to copy and paste the "
742
+ "technical information to your email message."
743
+ msgstr ""
744
+
745
  #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:58
746
  msgid "WPGlobus Recommends:"
747
  msgstr ""
languages/wpglobus-pt_PT.po CHANGED
@@ -19,12 +19,12 @@ msgstr ""
19
  #: includes/admin/class-wpglobus-about.php:42,
20
  #: includes/admin/class-wpglobus-about.php:117,
21
  #: includes/admin/class-wpglobus-clean.php:600,
22
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
23
  msgid "Guide"
24
  msgstr ""
25
 
26
  #: includes/admin/central/class-wpglobus-admin-central.php:142,
27
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:44
28
  msgid "WPGlobus Help Desk"
29
  msgstr ""
30
 
@@ -34,7 +34,7 @@ msgstr ""
34
  #: includes/admin/class-wpglobus-clean.php:606,
35
  #: includes/admin/class-wpglobus-customize-options.php:1254,
36
  #: includes/admin/class-wpglobus-customize-options.php:1286,
37
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:31
38
  msgid "Add-ons"
39
  msgstr "Add-ons"
40
 
@@ -43,7 +43,7 @@ msgid "Quick Start"
43
  msgstr ""
44
 
45
  #: includes/admin/class-wpglobus-about.php:48,
46
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
47
  msgid "FAQ"
48
  msgstr "Perguntas Mais Frequentes"
49
 
@@ -492,13 +492,11 @@ msgid ""
492
  msgstr ""
493
 
494
  #: includes/admin/class-wpglobus-customize-options.php:1360,
495
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69,
496
  #: includes/options/class-wpglobus-options.php:586
497
  msgid "Sincerely Yours,"
498
  msgstr ""
499
 
500
  #: includes/admin/class-wpglobus-customize-options.php:1362,
501
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:70,
502
  #: includes/options/class-wpglobus-options.php:588,
503
  #: includes/options/wpglobus-options-header.php:34
504
  msgid "The WPGlobus Team"
@@ -669,57 +667,81 @@ msgstr ""
669
  msgid "Installed"
670
  msgstr "Instalado"
671
 
672
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:45,
673
  #: includes/options/class-wpglobus-options.php:659
674
  msgid "Help Desk"
675
  msgstr ""
676
 
677
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:55
678
- msgid "Thank you for using WPGlobus!"
679
- msgstr ""
680
-
681
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:56
682
- msgid "Our Support Team is here to answer your questions or concerns."
683
  msgstr ""
684
 
685
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:58
686
- msgid "Click here to open the Contact Form."
 
687
  msgstr ""
688
 
689
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:59
690
- msgid "Type in your name, email, subject and the detailed message."
691
  msgstr ""
692
 
693
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:60
694
- msgid ""
695
- "If you can make a screenshot demonstrating the problem, please attach it."
696
  msgstr ""
697
 
698
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:61
699
- msgid ""
700
- "Please note: we will receive some debug data together with your request. See "
701
- "the \"Technical Information\" table for the details."
702
  msgstr ""
703
 
704
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:63
705
  msgid "To help us serve you better:"
706
  msgstr ""
707
 
708
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:65
709
  msgid ""
710
  "Please check if the problem persists if you switch to a standard WordPress "
711
  "theme."
712
  msgstr ""
713
 
714
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:66
715
  msgid ""
716
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
717
  msgstr ""
718
 
719
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
720
  msgid "Technical Information"
721
  msgstr ""
722
 
 
 
 
 
 
 
 
 
 
 
723
  #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:58
724
  msgid "WPGlobus Recommends:"
725
  msgstr ""
19
  #: includes/admin/class-wpglobus-about.php:42,
20
  #: includes/admin/class-wpglobus-about.php:117,
21
  #: includes/admin/class-wpglobus-clean.php:600,
22
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
23
  msgid "Guide"
24
  msgstr ""
25
 
26
  #: includes/admin/central/class-wpglobus-admin-central.php:142,
27
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:102
28
  msgid "WPGlobus Help Desk"
29
  msgstr ""
30
 
34
  #: includes/admin/class-wpglobus-clean.php:606,
35
  #: includes/admin/class-wpglobus-customize-options.php:1254,
36
  #: includes/admin/class-wpglobus-customize-options.php:1286,
37
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
38
  msgid "Add-ons"
39
  msgstr "Add-ons"
40
 
43
  msgstr ""
44
 
45
  #: includes/admin/class-wpglobus-about.php:48,
46
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:49
47
  msgid "FAQ"
48
  msgstr "Perguntas Mais Frequentes"
49
 
492
  msgstr ""
493
 
494
  #: includes/admin/class-wpglobus-customize-options.php:1360,
 
495
  #: includes/options/class-wpglobus-options.php:586
496
  msgid "Sincerely Yours,"
497
  msgstr ""
498
 
499
  #: includes/admin/class-wpglobus-customize-options.php:1362,
 
500
  #: includes/options/class-wpglobus-options.php:588,
501
  #: includes/options/wpglobus-options-header.php:34
502
  msgid "The WPGlobus Team"
667
  msgid "Installed"
668
  msgstr "Instalado"
669
 
670
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:103,
671
  #: includes/options/class-wpglobus-options.php:659
672
  msgid "Help Desk"
673
  msgstr ""
674
 
675
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:182
676
+ msgid "Email not sent. Please fill in the entire form."
 
 
 
 
677
  msgstr ""
678
 
679
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:192
680
+ msgid ""
681
+ "Email not sent. Please verify that your name and email are entered correctly."
682
  msgstr ""
683
 
684
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:213
685
+ msgid "Email sent."
686
  msgstr ""
687
 
688
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:68
689
+ msgid "Thank you for using WPGlobus!"
 
690
  msgstr ""
691
 
692
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69
693
+ msgid "Our Support Team is here to answer your questions or concerns."
 
 
694
  msgstr ""
695
 
696
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:71
697
  msgid "To help us serve you better:"
698
  msgstr ""
699
 
700
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
701
  msgid ""
702
  "Please check if the problem persists if you switch to a standard WordPress "
703
  "theme."
704
  msgstr ""
705
 
706
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:74
707
  msgid ""
708
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
709
  msgstr ""
710
 
711
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:77
712
+ msgid "Please fill in and submit the contact form:"
713
+ msgstr ""
714
+
715
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:97
716
+ msgid "Please make sure the email address is correct."
717
+ msgstr ""
718
+
719
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:103
720
+ msgid "Subject"
721
+ msgstr ""
722
+
723
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:108
724
+ msgid "Short description of the problem"
725
+ msgstr ""
726
+
727
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:113
728
+ msgid "Detailed description"
729
+ msgstr ""
730
+
731
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:120
732
  msgid "Technical Information"
733
  msgstr ""
734
 
735
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:127
736
+ msgid "This information helps us to find the problem source"
737
+ msgstr ""
738
+
739
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:143
740
+ msgid ""
741
+ "Alternatively, please email %s. Do not forget to copy and paste the "
742
+ "technical information to your email message."
743
+ msgstr ""
744
+
745
  #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:58
746
  msgid "WPGlobus Recommends:"
747
  msgstr ""
languages/wpglobus-ro_RO.po CHANGED
@@ -20,12 +20,12 @@ msgstr ""
20
  #: includes/admin/class-wpglobus-about.php:42,
21
  #: includes/admin/class-wpglobus-about.php:117,
22
  #: includes/admin/class-wpglobus-clean.php:600,
23
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
24
  msgid "Guide"
25
  msgstr "Ghid"
26
 
27
  #: includes/admin/central/class-wpglobus-admin-central.php:142,
28
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:44
29
  msgid "WPGlobus Help Desk"
30
  msgstr ""
31
 
@@ -35,7 +35,7 @@ msgstr ""
35
  #: includes/admin/class-wpglobus-clean.php:606,
36
  #: includes/admin/class-wpglobus-customize-options.php:1254,
37
  #: includes/admin/class-wpglobus-customize-options.php:1286,
38
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:31
39
  msgid "Add-ons"
40
  msgstr "Add-ons"
41
 
@@ -44,7 +44,7 @@ msgid "Quick Start"
44
  msgstr "Început rapid"
45
 
46
  #: includes/admin/class-wpglobus-about.php:48,
47
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
48
  msgid "FAQ"
49
  msgstr "Întrebări/Răspunsuri"
50
 
@@ -520,13 +520,11 @@ msgstr ""
520
  "ezitați să ne contactați."
521
 
522
  #: includes/admin/class-wpglobus-customize-options.php:1360,
523
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69,
524
  #: includes/options/class-wpglobus-options.php:586
525
  msgid "Sincerely Yours,"
526
  msgstr "Al dumneavoastră,"
527
 
528
  #: includes/admin/class-wpglobus-customize-options.php:1362,
529
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:70,
530
  #: includes/options/class-wpglobus-options.php:588,
531
  #: includes/options/wpglobus-options-header.php:34
532
  msgid "The WPGlobus Team"
@@ -699,57 +697,81 @@ msgstr ""
699
  msgid "Installed"
700
  msgstr "Instalat"
701
 
702
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:45,
703
  #: includes/options/class-wpglobus-options.php:659
704
  msgid "Help Desk"
705
  msgstr ""
706
 
707
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:55
708
- msgid "Thank you for using WPGlobus!"
709
- msgstr ""
710
-
711
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:56
712
- msgid "Our Support Team is here to answer your questions or concerns."
713
  msgstr ""
714
 
715
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:58
716
- msgid "Click here to open the Contact Form."
 
717
  msgstr ""
718
 
719
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:59
720
- msgid "Type in your name, email, subject and the detailed message."
721
  msgstr ""
722
 
723
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:60
724
- msgid ""
725
- "If you can make a screenshot demonstrating the problem, please attach it."
726
  msgstr ""
727
 
728
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:61
729
- msgid ""
730
- "Please note: we will receive some debug data together with your request. See "
731
- "the \"Technical Information\" table for the details."
732
  msgstr ""
733
 
734
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:63
735
  msgid "To help us serve you better:"
736
  msgstr ""
737
 
738
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:65
739
  msgid ""
740
  "Please check if the problem persists if you switch to a standard WordPress "
741
  "theme."
742
  msgstr ""
743
 
744
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:66
745
  msgid ""
746
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
747
  msgstr ""
748
 
749
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
750
  msgid "Technical Information"
751
  msgstr ""
752
 
 
 
 
 
 
 
 
 
 
 
753
  #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:58
754
  msgid "WPGlobus Recommends:"
755
  msgstr ""
20
  #: includes/admin/class-wpglobus-about.php:42,
21
  #: includes/admin/class-wpglobus-about.php:117,
22
  #: includes/admin/class-wpglobus-clean.php:600,
23
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
24
  msgid "Guide"
25
  msgstr "Ghid"
26
 
27
  #: includes/admin/central/class-wpglobus-admin-central.php:142,
28
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:102
29
  msgid "WPGlobus Help Desk"
30
  msgstr ""
31
 
35
  #: includes/admin/class-wpglobus-clean.php:606,
36
  #: includes/admin/class-wpglobus-customize-options.php:1254,
37
  #: includes/admin/class-wpglobus-customize-options.php:1286,
38
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
39
  msgid "Add-ons"
40
  msgstr "Add-ons"
41
 
44
  msgstr "Început rapid"
45
 
46
  #: includes/admin/class-wpglobus-about.php:48,
47
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:49
48
  msgid "FAQ"
49
  msgstr "Întrebări/Răspunsuri"
50
 
520
  "ezitați să ne contactați."
521
 
522
  #: includes/admin/class-wpglobus-customize-options.php:1360,
 
523
  #: includes/options/class-wpglobus-options.php:586
524
  msgid "Sincerely Yours,"
525
  msgstr "Al dumneavoastră,"
526
 
527
  #: includes/admin/class-wpglobus-customize-options.php:1362,
 
528
  #: includes/options/class-wpglobus-options.php:588,
529
  #: includes/options/wpglobus-options-header.php:34
530
  msgid "The WPGlobus Team"
697
  msgid "Installed"
698
  msgstr "Instalat"
699
 
700
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:103,
701
  #: includes/options/class-wpglobus-options.php:659
702
  msgid "Help Desk"
703
  msgstr ""
704
 
705
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:182
706
+ msgid "Email not sent. Please fill in the entire form."
 
 
 
 
707
  msgstr ""
708
 
709
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:192
710
+ msgid ""
711
+ "Email not sent. Please verify that your name and email are entered correctly."
712
  msgstr ""
713
 
714
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:213
715
+ msgid "Email sent."
716
  msgstr ""
717
 
718
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:68
719
+ msgid "Thank you for using WPGlobus!"
 
720
  msgstr ""
721
 
722
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69
723
+ msgid "Our Support Team is here to answer your questions or concerns."
 
 
724
  msgstr ""
725
 
726
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:71
727
  msgid "To help us serve you better:"
728
  msgstr ""
729
 
730
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
731
  msgid ""
732
  "Please check if the problem persists if you switch to a standard WordPress "
733
  "theme."
734
  msgstr ""
735
 
736
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:74
737
  msgid ""
738
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
739
  msgstr ""
740
 
741
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:77
742
+ msgid "Please fill in and submit the contact form:"
743
+ msgstr ""
744
+
745
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:97
746
+ msgid "Please make sure the email address is correct."
747
+ msgstr ""
748
+
749
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:103
750
+ msgid "Subject"
751
+ msgstr ""
752
+
753
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:108
754
+ msgid "Short description of the problem"
755
+ msgstr ""
756
+
757
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:113
758
+ msgid "Detailed description"
759
+ msgstr ""
760
+
761
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:120
762
  msgid "Technical Information"
763
  msgstr ""
764
 
765
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:127
766
+ msgid "This information helps us to find the problem source"
767
+ msgstr ""
768
+
769
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:143
770
+ msgid ""
771
+ "Alternatively, please email %s. Do not forget to copy and paste the "
772
+ "technical information to your email message."
773
+ msgstr ""
774
+
775
  #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:58
776
  msgid "WPGlobus Recommends:"
777
  msgstr ""
languages/wpglobus-ru_RU.mo CHANGED
Binary file
languages/wpglobus-ru_RU.po CHANGED
@@ -1,5 +1,5 @@
1
- # Copyright (C) 2018 WPGlobus 1.9.15
2
- # This file is distributed under the same license as the WPGlobus 1.9.15 package.
3
  # Translators:
4
  # Gregory Karpinsky <gregory@tiv.net>, 2015-2018
5
  msgid ""
@@ -22,12 +22,12 @@ msgstr ""
22
  #: includes/admin/class-wpglobus-about.php:42,
23
  #: includes/admin/class-wpglobus-about.php:117,
24
  #: includes/admin/class-wpglobus-clean.php:600,
25
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
26
  msgid "Guide"
27
  msgstr "Инструкция"
28
 
29
  #: includes/admin/central/class-wpglobus-admin-central.php:142,
30
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:44
31
  msgid "WPGlobus Help Desk"
32
  msgstr "Поддержка"
33
 
@@ -37,7 +37,7 @@ msgstr "Поддержка"
37
  #: includes/admin/class-wpglobus-clean.php:606,
38
  #: includes/admin/class-wpglobus-customize-options.php:1254,
39
  #: includes/admin/class-wpglobus-customize-options.php:1286,
40
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:31
41
  msgid "Add-ons"
42
  msgstr "Расширения"
43
 
@@ -46,7 +46,7 @@ msgid "Quick Start"
46
  msgstr "Быстрый Старт"
47
 
48
  #: includes/admin/class-wpglobus-about.php:48,
49
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
50
  msgid "FAQ"
51
  msgstr "ЧаВо"
52
 
@@ -555,13 +555,11 @@ msgstr ""
555
  "поддержкой."
556
 
557
  #: includes/admin/class-wpglobus-customize-options.php:1360,
558
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69,
559
  #: includes/options/class-wpglobus-options.php:586
560
  msgid "Sincerely Yours,"
561
  msgstr "С Уважением,"
562
 
563
  #: includes/admin/class-wpglobus-customize-options.php:1362,
564
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:70,
565
  #: includes/options/class-wpglobus-options.php:588,
566
  #: includes/options/wpglobus-options-header.php:34
567
  msgid "The WPGlobus Team"
@@ -742,47 +740,39 @@ msgstr "Платное расширение"
742
  msgid "Installed"
743
  msgstr "Установлен"
744
 
745
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:45,
746
  #: includes/options/class-wpglobus-options.php:659
747
  msgid "Help Desk"
748
  msgstr "Поддержка"
749
 
750
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:55
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
751
  msgid "Thank you for using WPGlobus!"
752
  msgstr "Спасибо за то, что вы выбрали WPGlobus!"
753
 
754
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:56
755
  msgid "Our Support Team is here to answer your questions or concerns."
756
  msgstr "Наша Служба Поддержки постарается ответить на любой из ваших вопросов."
757
 
758
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:58
759
- msgid "Click here to open the Contact Form."
760
- msgstr "Нажмите здесь, чтобы открыть форму контакта."
761
-
762
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:59
763
- msgid "Type in your name, email, subject and the detailed message."
764
- msgstr "Введите ваше имя, почту, тему и подробное сообщение."
765
-
766
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:60
767
- msgid ""
768
- "If you can make a screenshot demonstrating the problem, please attach it."
769
- msgstr ""
770
- "Если вы можете сделать скриншот, демонстрирующий проблему, пожалуйста, "
771
- "присоедините его."
772
-
773
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:61
774
- msgid ""
775
- "Please note: we will receive some debug data together with your request. See "
776
- "the \"Technical Information\" table for the details."
777
- msgstr ""
778
- "Внимание: вместе с вашим сообщением мы получим некоторые технические данные "
779
- "о вашем сайте. Детали - смотрите в таблице."
780
-
781
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:63
782
  msgid "To help us serve you better:"
783
  msgstr "Чтобы ускорить поиск решения вашей проблемы:"
784
 
785
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:65
786
  msgid ""
787
  "Please check if the problem persists if you switch to a standard WordPress "
788
  "theme."
@@ -790,17 +780,47 @@ msgstr ""
790
  "Пожалуйста, убедитесь, что проблема сохраняется, если вы переключитесь на "
791
  "стандартную тему ВордПресс."
792
 
793
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:66
794
  msgid ""
795
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
796
  msgstr ""
797
  "Попробуйте деактивировать плагины, чтобы убедиться, не конфликтует ли какой-"
798
  "то из них с WPGlobus."
799
 
800
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
801
  msgid "Technical Information"
802
  msgstr "Техническая информация"
803
 
 
 
 
 
 
 
 
 
 
 
804
  #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:58
805
  msgid "WPGlobus Recommends:"
806
  msgstr "WPGlobus рекомендует:"
1
+ # Copyright (C) 2018 WPGlobus
2
+ # This file is distributed under the same license as the WPGlobus package.
3
  # Translators:
4
  # Gregory Karpinsky <gregory@tiv.net>, 2015-2018
5
  msgid ""
22
  #: includes/admin/class-wpglobus-about.php:42,
23
  #: includes/admin/class-wpglobus-about.php:117,
24
  #: includes/admin/class-wpglobus-clean.php:600,
25
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
26
  msgid "Guide"
27
  msgstr "Инструкция"
28
 
29
  #: includes/admin/central/class-wpglobus-admin-central.php:142,
30
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:102
31
  msgid "WPGlobus Help Desk"
32
  msgstr "Поддержка"
33
 
37
  #: includes/admin/class-wpglobus-clean.php:606,
38
  #: includes/admin/class-wpglobus-customize-options.php:1254,
39
  #: includes/admin/class-wpglobus-customize-options.php:1286,
40
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
41
  msgid "Add-ons"
42
  msgstr "Расширения"
43
 
46
  msgstr "Быстрый Старт"
47
 
48
  #: includes/admin/class-wpglobus-about.php:48,
49
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:49
50
  msgid "FAQ"
51
  msgstr "ЧаВо"
52
 
555
  "поддержкой."
556
 
557
  #: includes/admin/class-wpglobus-customize-options.php:1360,
 
558
  #: includes/options/class-wpglobus-options.php:586
559
  msgid "Sincerely Yours,"
560
  msgstr "С Уважением,"
561
 
562
  #: includes/admin/class-wpglobus-customize-options.php:1362,
 
563
  #: includes/options/class-wpglobus-options.php:588,
564
  #: includes/options/wpglobus-options-header.php:34
565
  msgid "The WPGlobus Team"
740
  msgid "Installed"
741
  msgstr "Установлен"
742
 
743
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:103,
744
  #: includes/options/class-wpglobus-options.php:659
745
  msgid "Help Desk"
746
  msgstr "Поддержка"
747
 
748
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:182
749
+ msgid "Email not sent. Please fill in the entire form."
750
+ msgstr "Сообщение не отправлено. Пожалуйста, заполните правильно все поля."
751
+
752
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:192
753
+ msgid ""
754
+ "Email not sent. Please verify that your name and email are entered correctly."
755
+ msgstr ""
756
+ "Сообщение не отправлено. Убедитесь, что ваше имя и адрес email заполнены без "
757
+ "ошибок."
758
+
759
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:213
760
+ msgid "Email sent."
761
+ msgstr "Сообщение отправлено."
762
+
763
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:68
764
  msgid "Thank you for using WPGlobus!"
765
  msgstr "Спасибо за то, что вы выбрали WPGlobus!"
766
 
767
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69
768
  msgid "Our Support Team is here to answer your questions or concerns."
769
  msgstr "Наша Служба Поддержки постарается ответить на любой из ваших вопросов."
770
 
771
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:71
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
772
  msgid "To help us serve you better:"
773
  msgstr "Чтобы ускорить поиск решения вашей проблемы:"
774
 
775
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
776
  msgid ""
777
  "Please check if the problem persists if you switch to a standard WordPress "
778
  "theme."
780
  "Пожалуйста, убедитесь, что проблема сохраняется, если вы переключитесь на "
781
  "стандартную тему ВордПресс."
782
 
783
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:74
784
  msgid ""
785
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
786
  msgstr ""
787
  "Попробуйте деактивировать плагины, чтобы убедиться, не конфликтует ли какой-"
788
  "то из них с WPGlobus."
789
 
790
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:77
791
+ msgid "Please fill in and submit the contact form:"
792
+ msgstr "Пожалуйста, заполните и отправьте форму:"
793
+
794
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:97
795
+ msgid "Please make sure the email address is correct."
796
+ msgstr "Внимательно проверьте адрес email."
797
+
798
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:103
799
+ msgid "Subject"
800
+ msgstr "Тема сообщения"
801
+
802
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:108
803
+ msgid "Short description of the problem"
804
+ msgstr "Короткое описание проблемы"
805
+
806
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:113
807
+ msgid "Detailed description"
808
+ msgstr "Детальное описание"
809
+
810
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:120
811
  msgid "Technical Information"
812
  msgstr "Техническая информация"
813
 
814
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:127
815
+ msgid "This information helps us to find the problem source"
816
+ msgstr "Эта информация поможет нам в поиске источника проблемы"
817
+
818
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:143
819
+ msgid ""
820
+ "Alternatively, please email %s. Do not forget to copy and paste the "
821
+ "technical information to your email message."
822
+ msgstr "Вы также можете отправить нам сообщение на %s. Не забудьте скопировать техническую информацию в текст вашего сообщения."
823
+
824
  #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:58
825
  msgid "WPGlobus Recommends:"
826
  msgstr "WPGlobus рекомендует:"
languages/wpglobus-sv_SE.po CHANGED
@@ -21,12 +21,12 @@ msgstr ""
21
  #: includes/admin/class-wpglobus-about.php:42,
22
  #: includes/admin/class-wpglobus-about.php:117,
23
  #: includes/admin/class-wpglobus-clean.php:600,
24
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
25
  msgid "Guide"
26
  msgstr "Guide"
27
 
28
  #: includes/admin/central/class-wpglobus-admin-central.php:142,
29
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:44
30
  msgid "WPGlobus Help Desk"
31
  msgstr ""
32
 
@@ -36,7 +36,7 @@ msgstr ""
36
  #: includes/admin/class-wpglobus-clean.php:606,
37
  #: includes/admin/class-wpglobus-customize-options.php:1254,
38
  #: includes/admin/class-wpglobus-customize-options.php:1286,
39
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:31
40
  msgid "Add-ons"
41
  msgstr "Tillägg"
42
 
@@ -45,7 +45,7 @@ msgid "Quick Start"
45
  msgstr "Snabbstart"
46
 
47
  #: includes/admin/class-wpglobus-about.php:48,
48
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
49
  msgid "FAQ"
50
  msgstr "FAQ"
51
 
@@ -514,13 +514,11 @@ msgid ""
514
  msgstr "Om du har några frågor eller kommentarer, tveka inte att kontakta oss."
515
 
516
  #: includes/admin/class-wpglobus-customize-options.php:1360,
517
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69,
518
  #: includes/options/class-wpglobus-options.php:586
519
  msgid "Sincerely Yours,"
520
  msgstr "Med vänlig hälsning,"
521
 
522
  #: includes/admin/class-wpglobus-customize-options.php:1362,
523
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:70,
524
  #: includes/options/class-wpglobus-options.php:588,
525
  #: includes/options/wpglobus-options-header.php:34
526
  msgid "The WPGlobus Team"
@@ -692,57 +690,81 @@ msgstr ""
692
  msgid "Installed"
693
  msgstr "Installerad"
694
 
695
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:45,
696
  #: includes/options/class-wpglobus-options.php:659
697
  msgid "Help Desk"
698
  msgstr ""
699
 
700
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:55
701
- msgid "Thank you for using WPGlobus!"
702
- msgstr ""
703
-
704
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:56
705
- msgid "Our Support Team is here to answer your questions or concerns."
706
  msgstr ""
707
 
708
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:58
709
- msgid "Click here to open the Contact Form."
 
710
  msgstr ""
711
 
712
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:59
713
- msgid "Type in your name, email, subject and the detailed message."
714
  msgstr ""
715
 
716
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:60
717
- msgid ""
718
- "If you can make a screenshot demonstrating the problem, please attach it."
719
  msgstr ""
720
 
721
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:61
722
- msgid ""
723
- "Please note: we will receive some debug data together with your request. See "
724
- "the \"Technical Information\" table for the details."
725
  msgstr ""
726
 
727
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:63
728
  msgid "To help us serve you better:"
729
  msgstr ""
730
 
731
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:65
732
  msgid ""
733
  "Please check if the problem persists if you switch to a standard WordPress "
734
  "theme."
735
  msgstr ""
736
 
737
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:66
738
  msgid ""
739
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
740
  msgstr ""
741
 
742
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
743
  msgid "Technical Information"
744
  msgstr ""
745
 
 
 
 
 
 
 
 
 
 
 
746
  #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:58
747
  msgid "WPGlobus Recommends:"
748
  msgstr ""
21
  #: includes/admin/class-wpglobus-about.php:42,
22
  #: includes/admin/class-wpglobus-about.php:117,
23
  #: includes/admin/class-wpglobus-clean.php:600,
24
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
25
  msgid "Guide"
26
  msgstr "Guide"
27
 
28
  #: includes/admin/central/class-wpglobus-admin-central.php:142,
29
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:102
30
  msgid "WPGlobus Help Desk"
31
  msgstr ""
32
 
36
  #: includes/admin/class-wpglobus-clean.php:606,
37
  #: includes/admin/class-wpglobus-customize-options.php:1254,
38
  #: includes/admin/class-wpglobus-customize-options.php:1286,
39
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
40
  msgid "Add-ons"
41
  msgstr "Tillägg"
42
 
45
  msgstr "Snabbstart"
46
 
47
  #: includes/admin/class-wpglobus-about.php:48,
48
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:49
49
  msgid "FAQ"
50
  msgstr "FAQ"
51
 
514
  msgstr "Om du har några frågor eller kommentarer, tveka inte att kontakta oss."
515
 
516
  #: includes/admin/class-wpglobus-customize-options.php:1360,
 
517
  #: includes/options/class-wpglobus-options.php:586
518
  msgid "Sincerely Yours,"
519
  msgstr "Med vänlig hälsning,"
520
 
521
  #: includes/admin/class-wpglobus-customize-options.php:1362,
 
522
  #: includes/options/class-wpglobus-options.php:588,
523
  #: includes/options/wpglobus-options-header.php:34
524
  msgid "The WPGlobus Team"
690
  msgid "Installed"
691
  msgstr "Installerad"
692
 
693
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:103,
694
  #: includes/options/class-wpglobus-options.php:659
695
  msgid "Help Desk"
696
  msgstr ""
697
 
698
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:182
699
+ msgid "Email not sent. Please fill in the entire form."
 
 
 
 
700
  msgstr ""
701
 
702
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:192
703
+ msgid ""
704
+ "Email not sent. Please verify that your name and email are entered correctly."
705
  msgstr ""
706
 
707
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:213
708
+ msgid "Email sent."
709
  msgstr ""
710
 
711
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:68
712
+ msgid "Thank you for using WPGlobus!"
 
713
  msgstr ""
714
 
715
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69
716
+ msgid "Our Support Team is here to answer your questions or concerns."
 
 
717
  msgstr ""
718
 
719
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:71
720
  msgid "To help us serve you better:"
721
  msgstr ""
722
 
723
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
724
  msgid ""
725
  "Please check if the problem persists if you switch to a standard WordPress "
726
  "theme."
727
  msgstr ""
728
 
729
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:74
730
  msgid ""
731
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
732
  msgstr ""
733
 
734
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:77
735
+ msgid "Please fill in and submit the contact form:"
736
+ msgstr ""
737
+
738
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:97
739
+ msgid "Please make sure the email address is correct."
740
+ msgstr ""
741
+
742
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:103
743
+ msgid "Subject"
744
+ msgstr ""
745
+
746
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:108
747
+ msgid "Short description of the problem"
748
+ msgstr ""
749
+
750
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:113
751
+ msgid "Detailed description"
752
+ msgstr ""
753
+
754
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:120
755
  msgid "Technical Information"
756
  msgstr ""
757
 
758
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:127
759
+ msgid "This information helps us to find the problem source"
760
+ msgstr ""
761
+
762
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:143
763
+ msgid ""
764
+ "Alternatively, please email %s. Do not forget to copy and paste the "
765
+ "technical information to your email message."
766
+ msgstr ""
767
+
768
  #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:58
769
  msgid "WPGlobus Recommends:"
770
  msgstr ""
languages/wpglobus-tr_TR.po CHANGED
@@ -20,12 +20,12 @@ msgstr ""
20
  #: includes/admin/class-wpglobus-about.php:42,
21
  #: includes/admin/class-wpglobus-about.php:117,
22
  #: includes/admin/class-wpglobus-clean.php:600,
23
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
24
  msgid "Guide"
25
  msgstr "Rehber"
26
 
27
  #: includes/admin/central/class-wpglobus-admin-central.php:142,
28
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:44
29
  msgid "WPGlobus Help Desk"
30
  msgstr ""
31
 
@@ -35,7 +35,7 @@ msgstr ""
35
  #: includes/admin/class-wpglobus-clean.php:606,
36
  #: includes/admin/class-wpglobus-customize-options.php:1254,
37
  #: includes/admin/class-wpglobus-customize-options.php:1286,
38
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:31
39
  msgid "Add-ons"
40
  msgstr "Eklentiler"
41
 
@@ -44,7 +44,7 @@ msgid "Quick Start"
44
  msgstr "Hızlı Başlangıç"
45
 
46
  #: includes/admin/class-wpglobus-about.php:48,
47
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
48
  msgid "FAQ"
49
  msgstr "S.S.S."
50
 
@@ -517,13 +517,11 @@ msgstr ""
517
  "Sorularınız veya yorumlarınız olursa, lütfen bizi aramakta tereddüt etmeyin."
518
 
519
  #: includes/admin/class-wpglobus-customize-options.php:1360,
520
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69,
521
  #: includes/options/class-wpglobus-options.php:586
522
  msgid "Sincerely Yours,"
523
  msgstr "Saygılarımızla,"
524
 
525
  #: includes/admin/class-wpglobus-customize-options.php:1362,
526
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:70,
527
  #: includes/options/class-wpglobus-options.php:588,
528
  #: includes/options/wpglobus-options-header.php:34
529
  msgid "The WPGlobus Team"
@@ -695,57 +693,81 @@ msgstr ""
695
  msgid "Installed"
696
  msgstr "Yüklü"
697
 
698
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:45,
699
  #: includes/options/class-wpglobus-options.php:659
700
  msgid "Help Desk"
701
  msgstr ""
702
 
703
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:55
704
- msgid "Thank you for using WPGlobus!"
705
- msgstr ""
706
-
707
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:56
708
- msgid "Our Support Team is here to answer your questions or concerns."
709
  msgstr ""
710
 
711
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:58
712
- msgid "Click here to open the Contact Form."
 
713
  msgstr ""
714
 
715
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:59
716
- msgid "Type in your name, email, subject and the detailed message."
717
  msgstr ""
718
 
719
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:60
720
- msgid ""
721
- "If you can make a screenshot demonstrating the problem, please attach it."
722
  msgstr ""
723
 
724
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:61
725
- msgid ""
726
- "Please note: we will receive some debug data together with your request. See "
727
- "the \"Technical Information\" table for the details."
728
  msgstr ""
729
 
730
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:63
731
  msgid "To help us serve you better:"
732
  msgstr ""
733
 
734
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:65
735
  msgid ""
736
  "Please check if the problem persists if you switch to a standard WordPress "
737
  "theme."
738
  msgstr ""
739
 
740
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:66
741
  msgid ""
742
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
743
  msgstr ""
744
 
745
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
746
  msgid "Technical Information"
747
  msgstr ""
748
 
 
 
 
 
 
 
 
 
 
 
749
  #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:58
750
  msgid "WPGlobus Recommends:"
751
  msgstr ""
20
  #: includes/admin/class-wpglobus-about.php:42,
21
  #: includes/admin/class-wpglobus-about.php:117,
22
  #: includes/admin/class-wpglobus-clean.php:600,
23
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
24
  msgid "Guide"
25
  msgstr "Rehber"
26
 
27
  #: includes/admin/central/class-wpglobus-admin-central.php:142,
28
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:102
29
  msgid "WPGlobus Help Desk"
30
  msgstr ""
31
 
35
  #: includes/admin/class-wpglobus-clean.php:606,
36
  #: includes/admin/class-wpglobus-customize-options.php:1254,
37
  #: includes/admin/class-wpglobus-customize-options.php:1286,
38
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
39
  msgid "Add-ons"
40
  msgstr "Eklentiler"
41
 
44
  msgstr "Hızlı Başlangıç"
45
 
46
  #: includes/admin/class-wpglobus-about.php:48,
47
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:49
48
  msgid "FAQ"
49
  msgstr "S.S.S."
50
 
517
  "Sorularınız veya yorumlarınız olursa, lütfen bizi aramakta tereddüt etmeyin."
518
 
519
  #: includes/admin/class-wpglobus-customize-options.php:1360,
 
520
  #: includes/options/class-wpglobus-options.php:586
521
  msgid "Sincerely Yours,"
522
  msgstr "Saygılarımızla,"
523
 
524
  #: includes/admin/class-wpglobus-customize-options.php:1362,
 
525
  #: includes/options/class-wpglobus-options.php:588,
526
  #: includes/options/wpglobus-options-header.php:34
527
  msgid "The WPGlobus Team"
693
  msgid "Installed"
694
  msgstr "Yüklü"
695
 
696
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:103,
697
  #: includes/options/class-wpglobus-options.php:659
698
  msgid "Help Desk"
699
  msgstr ""
700
 
701
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:182
702
+ msgid "Email not sent. Please fill in the entire form."
 
 
 
 
703
  msgstr ""
704
 
705
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:192
706
+ msgid ""
707
+ "Email not sent. Please verify that your name and email are entered correctly."
708
  msgstr ""
709
 
710
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:213
711
+ msgid "Email sent."
712
  msgstr ""
713
 
714
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:68
715
+ msgid "Thank you for using WPGlobus!"
 
716
  msgstr ""
717
 
718
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69
719
+ msgid "Our Support Team is here to answer your questions or concerns."
 
 
720
  msgstr ""
721
 
722
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:71
723
  msgid "To help us serve you better:"
724
  msgstr ""
725
 
726
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
727
  msgid ""
728
  "Please check if the problem persists if you switch to a standard WordPress "
729
  "theme."
730
  msgstr ""
731
 
732
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:74
733
  msgid ""
734
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
735
  msgstr ""
736
 
737
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:77
738
+ msgid "Please fill in and submit the contact form:"
739
+ msgstr ""
740
+
741
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:97
742
+ msgid "Please make sure the email address is correct."
743
+ msgstr ""
744
+
745
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:103
746
+ msgid "Subject"
747
+ msgstr ""
748
+
749
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:108
750
+ msgid "Short description of the problem"
751
+ msgstr ""
752
+
753
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:113
754
+ msgid "Detailed description"
755
+ msgstr ""
756
+
757
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:120
758
  msgid "Technical Information"
759
  msgstr ""
760
 
761
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:127
762
+ msgid "This information helps us to find the problem source"
763
+ msgstr ""
764
+
765
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:143
766
+ msgid ""
767
+ "Alternatively, please email %s. Do not forget to copy and paste the "
768
+ "technical information to your email message."
769
+ msgstr ""
770
+
771
  #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:58
772
  msgid "WPGlobus Recommends:"
773
  msgstr ""
languages/wpglobus-uk.po CHANGED
@@ -21,12 +21,12 @@ msgstr ""
21
  #: includes/admin/class-wpglobus-about.php:42,
22
  #: includes/admin/class-wpglobus-about.php:117,
23
  #: includes/admin/class-wpglobus-clean.php:600,
24
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
25
  msgid "Guide"
26
  msgstr "Інструкція"
27
 
28
  #: includes/admin/central/class-wpglobus-admin-central.php:142,
29
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:44
30
  msgid "WPGlobus Help Desk"
31
  msgstr ""
32
 
@@ -36,7 +36,7 @@ msgstr ""
36
  #: includes/admin/class-wpglobus-clean.php:606,
37
  #: includes/admin/class-wpglobus-customize-options.php:1254,
38
  #: includes/admin/class-wpglobus-customize-options.php:1286,
39
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:31
40
  msgid "Add-ons"
41
  msgstr "Додатки"
42
 
@@ -45,7 +45,7 @@ msgid "Quick Start"
45
  msgstr "Швидкий Старт"
46
 
47
  #: includes/admin/class-wpglobus-about.php:48,
48
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
49
  msgid "FAQ"
50
  msgstr "ЧаПи"
51
 
@@ -538,13 +538,11 @@ msgstr ""
538
  "підтримкою."
539
 
540
  #: includes/admin/class-wpglobus-customize-options.php:1360,
541
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69,
542
  #: includes/options/class-wpglobus-options.php:586
543
  msgid "Sincerely Yours,"
544
  msgstr "З Повагою,"
545
 
546
  #: includes/admin/class-wpglobus-customize-options.php:1362,
547
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:70,
548
  #: includes/options/class-wpglobus-options.php:588,
549
  #: includes/options/wpglobus-options-header.php:34
550
  msgid "The WPGlobus Team"
@@ -725,57 +723,81 @@ msgstr ""
725
  msgid "Installed"
726
  msgstr "Встановлено"
727
 
728
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:45,
729
  #: includes/options/class-wpglobus-options.php:659
730
  msgid "Help Desk"
731
  msgstr ""
732
 
733
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:55
734
- msgid "Thank you for using WPGlobus!"
735
- msgstr ""
736
-
737
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:56
738
- msgid "Our Support Team is here to answer your questions or concerns."
739
  msgstr ""
740
 
741
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:58
742
- msgid "Click here to open the Contact Form."
 
743
  msgstr ""
744
 
745
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:59
746
- msgid "Type in your name, email, subject and the detailed message."
747
  msgstr ""
748
 
749
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:60
750
- msgid ""
751
- "If you can make a screenshot demonstrating the problem, please attach it."
752
  msgstr ""
753
 
754
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:61
755
- msgid ""
756
- "Please note: we will receive some debug data together with your request. See "
757
- "the \"Technical Information\" table for the details."
758
  msgstr ""
759
 
760
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:63
761
  msgid "To help us serve you better:"
762
  msgstr ""
763
 
764
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:65
765
  msgid ""
766
  "Please check if the problem persists if you switch to a standard WordPress "
767
  "theme."
768
  msgstr ""
769
 
770
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:66
771
  msgid ""
772
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
773
  msgstr ""
774
 
775
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
776
  msgid "Technical Information"
777
  msgstr ""
778
 
 
 
 
 
 
 
 
 
 
 
779
  #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:58
780
  msgid "WPGlobus Recommends:"
781
  msgstr ""
21
  #: includes/admin/class-wpglobus-about.php:42,
22
  #: includes/admin/class-wpglobus-about.php:117,
23
  #: includes/admin/class-wpglobus-clean.php:600,
24
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
25
  msgid "Guide"
26
  msgstr "Інструкція"
27
 
28
  #: includes/admin/central/class-wpglobus-admin-central.php:142,
29
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:102
30
  msgid "WPGlobus Help Desk"
31
  msgstr ""
32
 
36
  #: includes/admin/class-wpglobus-clean.php:606,
37
  #: includes/admin/class-wpglobus-customize-options.php:1254,
38
  #: includes/admin/class-wpglobus-customize-options.php:1286,
39
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
40
  msgid "Add-ons"
41
  msgstr "Додатки"
42
 
45
  msgstr "Швидкий Старт"
46
 
47
  #: includes/admin/class-wpglobus-about.php:48,
48
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:49
49
  msgid "FAQ"
50
  msgstr "ЧаПи"
51
 
538
  "підтримкою."
539
 
540
  #: includes/admin/class-wpglobus-customize-options.php:1360,
 
541
  #: includes/options/class-wpglobus-options.php:586
542
  msgid "Sincerely Yours,"
543
  msgstr "З Повагою,"
544
 
545
  #: includes/admin/class-wpglobus-customize-options.php:1362,
 
546
  #: includes/options/class-wpglobus-options.php:588,
547
  #: includes/options/wpglobus-options-header.php:34
548
  msgid "The WPGlobus Team"
723
  msgid "Installed"
724
  msgstr "Встановлено"
725
 
726
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:103,
727
  #: includes/options/class-wpglobus-options.php:659
728
  msgid "Help Desk"
729
  msgstr ""
730
 
731
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:182
732
+ msgid "Email not sent. Please fill in the entire form."
 
 
 
 
733
  msgstr ""
734
 
735
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:192
736
+ msgid ""
737
+ "Email not sent. Please verify that your name and email are entered correctly."
738
  msgstr ""
739
 
740
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:213
741
+ msgid "Email sent."
742
  msgstr ""
743
 
744
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:68
745
+ msgid "Thank you for using WPGlobus!"
 
746
  msgstr ""
747
 
748
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69
749
+ msgid "Our Support Team is here to answer your questions or concerns."
 
 
750
  msgstr ""
751
 
752
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:71
753
  msgid "To help us serve you better:"
754
  msgstr ""
755
 
756
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
757
  msgid ""
758
  "Please check if the problem persists if you switch to a standard WordPress "
759
  "theme."
760
  msgstr ""
761
 
762
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:74
763
  msgid ""
764
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
765
  msgstr ""
766
 
767
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:77
768
+ msgid "Please fill in and submit the contact form:"
769
+ msgstr ""
770
+
771
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:97
772
+ msgid "Please make sure the email address is correct."
773
+ msgstr ""
774
+
775
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:103
776
+ msgid "Subject"
777
+ msgstr ""
778
+
779
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:108
780
+ msgid "Short description of the problem"
781
+ msgstr ""
782
+
783
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:113
784
+ msgid "Detailed description"
785
+ msgstr ""
786
+
787
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:120
788
  msgid "Technical Information"
789
  msgstr ""
790
 
791
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:127
792
+ msgid "This information helps us to find the problem source"
793
+ msgstr ""
794
+
795
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:143
796
+ msgid ""
797
+ "Alternatively, please email %s. Do not forget to copy and paste the "
798
+ "technical information to your email message."
799
+ msgstr ""
800
+
801
  #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:58
802
  msgid "WPGlobus Recommends:"
803
  msgstr ""
languages/wpglobus.pot CHANGED
@@ -1,8 +1,8 @@
1
- # Copyright (C) 2018 WPGlobus 1.9.23
2
- # This file is distributed under the same license as the WPGlobus 1.9.23 package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: WPGlobus 1.9.23\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -10,15 +10,15 @@ msgstr ""
10
  "Report-Msgid-Bugs-To: support@wpglobus.com\n"
11
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
12
 
13
- #: includes/admin/central/class-wpglobus-admin-central.php:122, includes/admin/class-wpglobus-about.php:42, includes/admin/class-wpglobus-about.php:117, includes/admin/class-wpglobus-clean.php:600, includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
14
  msgid "Guide"
15
  msgstr ""
16
 
17
- #: includes/admin/central/class-wpglobus-admin-central.php:142, includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:44
18
  msgid "WPGlobus Help Desk"
19
  msgstr ""
20
 
21
- #: includes/admin/central/class-wpglobus-admin-central.php:157, includes/admin/class-wpglobus-about.php:36, includes/admin/class-wpglobus-admin-menu.php:22, includes/admin/class-wpglobus-clean.php:606, includes/admin/class-wpglobus-customize-options.php:1254, includes/admin/class-wpglobus-customize-options.php:1286, includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:31
22
  msgid "Add-ons"
23
  msgstr ""
24
 
@@ -26,7 +26,7 @@ msgstr ""
26
  msgid "Quick Start"
27
  msgstr ""
28
 
29
- #: includes/admin/class-wpglobus-about.php:48, includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
30
  msgid "FAQ"
31
  msgstr ""
32
 
@@ -379,11 +379,11 @@ msgstr ""
379
  msgid "Should you have any questions or comments, please do not hesitate to contact us."
380
  msgstr ""
381
 
382
- #: includes/admin/class-wpglobus-customize-options.php:1360, includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69, includes/options/class-wpglobus-options.php:586
383
  msgid "Sincerely Yours,"
384
  msgstr ""
385
 
386
- #: includes/admin/class-wpglobus-customize-options.php:1362, includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:70, includes/options/class-wpglobus-options.php:588, includes/options/wpglobus-options-header.php:34
387
  msgid "The WPGlobus Team"
388
  msgstr ""
389
 
@@ -531,50 +531,74 @@ msgstr ""
531
  msgid "Installed"
532
  msgstr ""
533
 
534
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:45, includes/options/class-wpglobus-options.php:659
535
  msgid "Help Desk"
536
  msgstr ""
537
 
538
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:55
 
 
 
 
 
 
 
 
 
 
 
 
539
  msgid "Thank you for using WPGlobus!"
540
  msgstr ""
541
 
542
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:56
543
  msgid "Our Support Team is here to answer your questions or concerns."
544
  msgstr ""
545
 
546
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:58
547
- msgid "Click here to open the Contact Form."
 
 
 
 
548
  msgstr ""
549
 
550
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:59
551
- msgid "Type in your name, email, subject and the detailed message."
552
  msgstr ""
553
 
554
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:60
555
- msgid "If you can make a screenshot demonstrating the problem, please attach it."
556
  msgstr ""
557
 
558
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:61
559
- msgid "Please note: we will receive some debug data together with your request. See the \"Technical Information\" table for the details."
560
  msgstr ""
561
 
562
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:63
563
- msgid "To help us serve you better:"
564
  msgstr ""
565
 
566
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:65
567
- msgid "Please check if the problem persists if you switch to a standard WordPress theme."
568
  msgstr ""
569
 
570
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:66
571
- msgid "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
572
  msgstr ""
573
 
574
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
575
  msgid "Technical Information"
576
  msgstr ""
577
 
 
 
 
 
 
 
 
 
578
  #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:58
579
  msgid "WPGlobus Recommends:"
580
  msgstr ""
1
+ # Copyright (C) 2018 WPGlobus 1.9.24
2
+ # This file is distributed under the same license as the WPGlobus 1.9.24 package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: WPGlobus 1.9.24\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
10
  "Report-Msgid-Bugs-To: support@wpglobus.com\n"
11
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
12
 
13
+ #: includes/admin/central/class-wpglobus-admin-central.php:122, includes/admin/class-wpglobus-about.php:42, includes/admin/class-wpglobus-about.php:117, includes/admin/class-wpglobus-clean.php:600, includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
14
  msgid "Guide"
15
  msgstr ""
16
 
17
+ #: includes/admin/central/class-wpglobus-admin-central.php:142, includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:102
18
  msgid "WPGlobus Help Desk"
19
  msgstr ""
20
 
21
+ #: includes/admin/central/class-wpglobus-admin-central.php:157, includes/admin/class-wpglobus-about.php:36, includes/admin/class-wpglobus-admin-menu.php:22, includes/admin/class-wpglobus-clean.php:606, includes/admin/class-wpglobus-customize-options.php:1254, includes/admin/class-wpglobus-customize-options.php:1286, includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
22
  msgid "Add-ons"
23
  msgstr ""
24
 
26
  msgid "Quick Start"
27
  msgstr ""
28
 
29
+ #: includes/admin/class-wpglobus-about.php:48, includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:49
30
  msgid "FAQ"
31
  msgstr ""
32
 
379
  msgid "Should you have any questions or comments, please do not hesitate to contact us."
380
  msgstr ""
381
 
382
+ #: includes/admin/class-wpglobus-customize-options.php:1360, includes/options/class-wpglobus-options.php:586
383
  msgid "Sincerely Yours,"
384
  msgstr ""
385
 
386
+ #: includes/admin/class-wpglobus-customize-options.php:1362, includes/options/class-wpglobus-options.php:588, includes/options/wpglobus-options-header.php:34
387
  msgid "The WPGlobus Team"
388
  msgstr ""
389
 
531
  msgid "Installed"
532
  msgstr ""
533
 
534
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:103, includes/options/class-wpglobus-options.php:659
535
  msgid "Help Desk"
536
  msgstr ""
537
 
538
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:182
539
+ msgid "Email not sent. Please fill in the entire form."
540
+ msgstr ""
541
+
542
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:192
543
+ msgid "Email not sent. Please verify that your name and email are entered correctly."
544
+ msgstr ""
545
+
546
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:213
547
+ msgid "Email sent."
548
+ msgstr ""
549
+
550
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:68
551
  msgid "Thank you for using WPGlobus!"
552
  msgstr ""
553
 
554
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69
555
  msgid "Our Support Team is here to answer your questions or concerns."
556
  msgstr ""
557
 
558
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:71
559
+ msgid "To help us serve you better:"
560
+ msgstr ""
561
+
562
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
563
+ msgid "Please check if the problem persists if you switch to a standard WordPress theme."
564
  msgstr ""
565
 
566
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:74
567
+ msgid "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
568
  msgstr ""
569
 
570
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:77
571
+ msgid "Please fill in and submit the contact form:"
572
  msgstr ""
573
 
574
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:97
575
+ msgid "Please make sure the email address is correct."
576
  msgstr ""
577
 
578
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:103
579
+ msgid "Subject"
580
  msgstr ""
581
 
582
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:108
583
+ msgid "Short description of the problem"
584
  msgstr ""
585
 
586
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:113
587
+ msgid "Detailed description"
588
  msgstr ""
589
 
590
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:120
591
  msgid "Technical Information"
592
  msgstr ""
593
 
594
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:127
595
+ msgid "This information helps us to find the problem source"
596
+ msgstr ""
597
+
598
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:143
599
+ msgid "Alternatively, please email %s. Do not forget to copy and paste the technical information to your email message."
600
+ msgstr ""
601
+
602
  #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:58
603
  msgid "WPGlobus Recommends:"
604
  msgstr ""
readme.txt CHANGED
@@ -218,6 +218,13 @@ This maintenance release introduces Gutenberg support in beta-stage.
218
 
219
  == Changelog ==
220
 
 
 
 
 
 
 
 
221
  = 1.9.23 =
222
 
223
  * FIXED:
218
 
219
  == Changelog ==
220
 
221
+ = 1.9.24 =
222
+
223
+ * FIXED:
224
+ * Vendor: load config file of All in One SEO Pack for builder page only.
225
+ * INTERNAL:
226
+ * Helpdesk page refactored.
227
+
228
  = 1.9.23 =
229
 
230
  * FIXED:
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: 1.9.23
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', '1.9.23' );
46
  define( 'WPGLOBUS_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
47
 
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: 1.9.24
19
  * Author: WPGlobus
20
  * Author URI: https://wpglobus.com/
21
  * Network: false
42
  exit;
43
  }
44
 
45
+ define( 'WPGLOBUS_VERSION', '1.9.24' );
46
  define( 'WPGLOBUS_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
47
 
48
  /**