Facebook Button by BestWebSoft - Version 2.53

Version Description

  • 31.01.2017 =
  • Update : The plugin settings page has been updated.
Download this release

Release Info

Developer bestwebsoft
Plugin Icon 128x128 Facebook Button by BestWebSoft
Version 2.53
Comparing to
See all releases

Code changes from version 2.52 to 2.53

Files changed (46) hide show
  1. bws_menu/bws_functions.php +276 -797
  2. bws_menu/bws_include.php +37 -18
  3. bws_menu/bws_menu.php +142 -129
  4. bws_menu/class-bws-settings.php +1074 -0
  5. bws_menu/css/codemirror.css +1 -0
  6. bws_menu/css/general_style.css +333 -149
  7. bws_menu/css/style.css +11 -22
  8. bws_menu/css/tipTip.css +113 -0
  9. bws_menu/deprecated.php +717 -0
  10. bws_menu/images/pattern.png +0 -0
  11. bws_menu/images/pattern_bg.png +0 -0
  12. bws_menu/js/general_script.js +100 -3
  13. bws_menu/js/jquery.tipTip.minified.js +21 -0
  14. bws_menu/languages/bestwebsoft-cs_CZ.mo +0 -0
  15. bws_menu/languages/bestwebsoft-cs_CZ.po +1334 -0
  16. bws_menu/languages/bestwebsoft-fr_FR.mo +0 -0
  17. bws_menu/languages/bestwebsoft-fr_FR.po +754 -491
  18. bws_menu/languages/bestwebsoft-pl_PL.mo +0 -0
  19. bws_menu/languages/bestwebsoft-pl_PL.po +727 -474
  20. bws_menu/languages/bestwebsoft-ru_RU.mo +0 -0
  21. bws_menu/languages/bestwebsoft-ru_RU.po +712 -480
  22. bws_menu/languages/bestwebsoft-uk.mo +0 -0
  23. bws_menu/languages/bestwebsoft-uk.po +709 -477
  24. bws_menu/product_list.php +8 -1
  25. css/style.css +2 -40
  26. facebook-button-plugin.php +93 -548
  27. includes/class-fcbkbttn-settings.php +528 -0
  28. js/script.js +49 -49
  29. languages/facebook-button-plugin-es_ES.mo +0 -0
  30. languages/facebook-button-plugin-es_ES.po +314 -209
  31. languages/facebook-button-plugin-fi_FI.mo +0 -0
  32. languages/facebook-button-plugin-fi_FI.po +259 -197
  33. languages/facebook-button-plugin-fr_FR.mo +0 -0
  34. languages/facebook-button-plugin-fr_FR.po +224 -188
  35. languages/facebook-button-plugin-hu_HU.mo +0 -0
  36. languages/facebook-button-plugin-hu_HU.po +273 -196
  37. languages/facebook-button-plugin-id_ID.mo +0 -0
  38. languages/facebook-button-plugin-id_ID.po +230 -192
  39. languages/facebook-button-plugin-ru_RU.mo +0 -0
  40. languages/facebook-button-plugin-ru_RU.po +315 -226
  41. languages/facebook-button-plugin-tr_TR.mo +0 -0
  42. languages/facebook-button-plugin-tr_TR.po +247 -197
  43. languages/facebook-button-plugin-uk.mo +0 -0
  44. languages/facebook-button-plugin-uk.po +310 -224
  45. readme.txt +11 -4
  46. screenshot-3.png +0 -0
bws_menu/bws_functions.php CHANGED
@@ -3,54 +3,51 @@
3
  * General functions for BestWebSoft plugins
4
  */
5
 
6
- /* Internationalization, first(!) */
7
- load_plugin_textdomain( 'bestwebsoft', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' );
8
 
9
  /**
10
- * Function add BWS Plugins page - for old plugin version
11
- * @deprecated 1.7.9
12
- */
13
- if ( ! function_exists ( 'bws_add_general_menu' ) ) {
14
- function bws_add_general_menu() {
15
- bws_general_menu();
 
 
 
 
 
 
16
  }
17
  }
18
 
19
- /**
20
- * Function add BWS Plugins page
21
- * @return void
22
- */
23
- if ( ! function_exists ( 'bws_general_menu' ) ) {
24
- function bws_general_menu() {
25
- global $menu, $bws_general_menu_exist;
26
-
27
- if ( ! $bws_general_menu_exist ) {
28
- /* we check also menu exist in global array as in old plugins $bws_general_menu_exist variable not exist */
29
- foreach ( $menu as $value_menu ) {
30
- if ( 'bws_panel' == $value_menu[2] ) {
31
- $bws_general_menu_exist = true;
32
- return;
33
- }
34
- }
35
-
36
- add_menu_page( 'BWS Panel', 'BWS Panel', 'manage_options', 'bws_panel', 'bws_add_menu_render', plugins_url( 'images/logo-white-min.png', __FILE__ ), '1001' );
37
-
38
- add_submenu_page( 'bws_panel', __( 'Plugins', 'bestwebsoft' ), __( 'Plugins', 'bestwebsoft' ), 'manage_options', 'bws_panel', 'bws_add_menu_render' );
39
- add_submenu_page( 'bws_panel', __( 'Themes', 'bestwebsoft' ), __( 'Themes', 'bestwebsoft' ), 'manage_options', 'bws_themes', 'bws_add_menu_render' );
40
- add_submenu_page( 'bws_panel', __( 'System Status', 'bestwebsoft' ), __( 'System Status', 'bestwebsoft' ), 'manage_options', 'bws_system_status', 'bws_add_menu_render' );
41
-
42
- $bws_general_menu_exist = true;
43
- }
44
- }
45
  }
46
 
47
  /**
48
- * Function check if plugin is compatible with current WP version - for old plugin version
49
- * @deprecated 1.7.4
50
- */
51
- if ( ! function_exists ( 'bws_wp_version_check' ) ) {
52
- function bws_wp_version_check( $plugin_basename, $plugin_info, $require_wp ) {
53
- bws_wp_min_version_check( $plugin_basename, $plugin_info, '3.8' , $require_wp );
 
 
 
 
 
 
 
 
 
 
 
54
  }
55
  }
56
 
@@ -68,7 +65,7 @@ if ( ! function_exists ( 'bws_wp_min_version_check' ) ) {
68
  if ( is_plugin_active( $plugin_basename ) ) {
69
  deactivate_plugins( $plugin_basename );
70
  $admin_url = ( function_exists( 'get_admin_url' ) ) ? get_admin_url( null, 'plugins.php' ) : esc_url( '/wp-admin/plugins.php' );
71
- wp_die(
72
  sprintf(
73
  "<strong>%s</strong> %s <strong>WordPress %s</strong> %s <br /><br />%s <a href='%s'>%s</a>.",
74
  $plugin_info['Name'],
@@ -87,9 +84,101 @@ if ( ! function_exists ( 'bws_wp_min_version_check' ) ) {
87
  }
88
  }
89
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
90
  if ( ! function_exists( 'bws_admin_notices' ) ) {
91
  function bws_admin_notices() {
92
- global $bws_versions_notice_array, $bws_plugin_banner_to_settings;
93
 
94
  /* versions notice */
95
  if ( ! empty( $bws_versions_notice_array ) ) {
@@ -107,19 +196,19 @@ if ( ! function_exists( 'bws_admin_notices' ) ) {
107
  }
108
 
109
  /* banner_to_settings notice */
110
- if ( ! empty( $bws_plugin_banner_to_settings ) ) {
111
  if ( 1 == count( $bws_plugin_banner_to_settings ) ) { ?>
112
  <div class="updated" style="padding: 0; margin: 0; border: none; background: none;">
113
  <div class="bws_banner_on_plugin_page bws_banner_to_settings">
114
  <div class="icon">
115
  <img title="" src="<?php echo esc_attr( $bws_plugin_banner_to_settings[0]['banner_url'] ); ?>" alt="" />
116
- </div>
117
  <div class="text">
118
  <strong><?php _e( 'Thank you for installing', 'bestwebsoft' ); ?> <?php echo $bws_plugin_banner_to_settings[0]['plugin_info']['Name']; ?> plugin!</strong><br />
119
- <?php _e( "Let's get started", 'bestwebsoft' ); ?>:
120
- <a href="<?php echo $bws_plugin_banner_to_settings[0]['settings_url']; ?>"><?php _e( 'Settings', 'bestwebsoft' ); ?></a>
121
  <?php if ( false != $bws_plugin_banner_to_settings[0]['post_type_url'] ) { ?>
122
- <?php _e( 'or', 'bestwebsoft' ); ?>
123
  <a href="<?php echo $bws_plugin_banner_to_settings[0]['post_type_url']; ?>"><?php _e( 'Add New', 'bestwebsoft' ); ?></a>
124
  <?php } ?>
125
  </div>
@@ -129,47 +218,75 @@ if ( ! function_exists( 'bws_admin_notices' ) ) {
129
  <?php wp_nonce_field( plugin_basename( __FILE__ ), 'bws_settings_nonce_name' ); ?>
130
  </form>
131
  </div>
132
- </div>
133
  <?php } else { ?>
134
  <div class="updated" style="padding: 0; margin: 0; border: none; background: none;">
135
- <div class="bws_banner_on_plugin_page bws_banner_to_settings_joint">
136
  <form action="" method="post">
137
  <button class="notice-dismiss bws_hide_settings_notice" title="<?php _e( 'Close notice', 'bestwebsoft' ); ?>"></button>
138
  <div class="bws-text">
139
  <div class="icon">
140
  <span class="dashicons dashicons-admin-plugins"></span>
141
- </div>
142
  <strong><?php _e( 'Thank you for installing plugins by BestWebSoft!', 'bestwebsoft' ); ?></strong>
143
  <div class="hide-if-no-js bws-more-links">
144
- <a href="#" class="bws-more"><?php _e( 'More Details', 'bestwebsoft' ); ?></a>
145
- <a href="#" class="bws-less hidden"><?php _e( 'Less Details', 'bestwebsoft' ); ?></a>
146
- </div>
147
- <?php wp_nonce_field( plugin_basename( __FILE__ ), 'bws_settings_nonce_name' ); ?>
148
  <div class="clear"></div>
149
  </div>
150
  <div class="bws-details hide-if-js">
151
- <?php foreach ( $bws_plugin_banner_to_settings as $value ) { ?>
152
- <div>
153
- <strong><?php echo str_replace( ' by BestWebSoft', '', $value['plugin_info']['Name'] ); ?></strong>&ensp;<a href="<?php echo $value['settings_url']; ?>"><?php _e( 'Settings', 'bestwebsoft' ); ?></a>
154
  <?php if ( false != $value['post_type_url'] ) { ?>
155
  &ensp;|&ensp;<a target="_blank" href="<?php echo $value['post_type_url']; ?>"><?php _e( 'Add New', 'bestwebsoft' ); ?></a>
156
  <?php } ?>
157
  <input type="hidden" name="bws_hide_settings_notice_<?php echo $value['plugin_options_name']; ?>" value="hide" />
158
- </div>
159
- <?php } ?>
160
  </div>
161
  </div>
162
  </form>
163
  </div>
164
  <?php }
165
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
166
  }
167
  }
168
 
169
  if ( ! function_exists( 'bws_plugin_banner' ) ) {
170
  function bws_plugin_banner( $plugin_info, $this_banner_prefix, $link_slug, $link_key, $link_pn, $banner_url_or_slug ) {
171
  global $wp_version, $bstwbsftwppdtplgns_cookie_add, $bstwbsftwppdtplgns_banner_array;
172
-
173
  if ( empty( $bstwbsftwppdtplgns_banner_array ) ) {
174
  if ( ! function_exists( 'bws_get_banner_array' ) )
175
  require_once( dirname( __FILE__ ) . '/bws_menu.php' );
@@ -189,7 +306,7 @@ if ( ! function_exists( 'bws_plugin_banner' ) ) {
189
  foreach ( $bstwbsftwppdtplgns_banner_array as $key => $value ) {
190
  if ( $this_banner == $value[0] ) {
191
  if ( ! isset( $bstwbsftwppdtplgns_cookie_add ) ) {
192
- echo '<script type="text/javascript" src="' . plugins_url( 'js/c_o_o_k_i_e.js', __FILE__ ) . '"></script>';
193
  $bstwbsftwppdtplgns_cookie_add = true;
194
  } ?>
195
  <script type="text/javascript">
@@ -213,7 +330,7 @@ if ( ! function_exists( 'bws_plugin_banner' ) ) {
213
  <button class="<?php echo $this_banner_prefix; ?>_close_icon close_icon notice-dismiss bws_hide_settings_notice" title="<?php _e( 'Close notice', 'bestwebsoft' ); ?>"></button>
214
  <div class="icon">
215
  <img title="" src="<?php echo esc_attr( $banner_url_or_slug ); ?>" alt="" />
216
- </div>
217
  <div class="text"><?php
218
  _e( 'It’s time to upgrade your', 'bestwebsoft' ); ?> <strong><?php echo $plugin_info['Name']; ?> plugin</strong> <?php _e( 'to', 'bestwebsoft' ); ?> <strong>Pro</strong> <?php _e( 'version!', 'bestwebsoft' ); ?><br />
219
  <span><?php _e( 'Extend standard plugin functionality with new great options.', 'bestwebsoft' ); ?></span>
@@ -232,516 +349,12 @@ if ( ! function_exists( 'bws_plugin_banner' ) ) {
232
  }
233
  }
234
 
235
- if ( ! function_exists( 'bws_plugin_reviews_block' ) ) {
236
- function bws_plugin_reviews_block( $plugin_name, $plugin_slug ) { ?>
237
- <div class="bws-plugin-reviews">
238
- <div class="bws-plugin-reviews-rate">
239
- <?php _e( 'If you enjoy our plugin, please give it 5 stars on WordPress', 'bestwebsoft' ); ?>:
240
- <a href="http://wordpress.org/support/view/plugin-reviews/<?php echo $plugin_slug; ?>?filter=5" target="_blank" title="<?php echo $plugin_name; ?> reviews"><?php _e( 'Rate the plugin', 'bestwebsoft' ); ?></a>
241
- </div>
242
- <div class="bws-plugin-reviews-support">
243
- <?php _e( 'If there is something wrong about it, please contact us', 'bestwebsoft' ); ?>:
244
- <a href="http://support.bestwebsoft.com">http://support.bestwebsoft.com</a>
245
- </div>
246
- <div class="bws-plugin-reviews-donate">
247
- <?php _e( 'Donations play an important role in supporting great projects', 'bestwebsoft' ); ?>:
248
- <a href="http://bestwebsoft.com/donate/">Donate</a>
249
- </div>
250
- </div>
251
- <?php }
252
- }
253
-
254
- if ( ! function_exists( 'bws_go_pro_tab_check' ) ) {
255
- function bws_go_pro_tab_check( $plugin_basename, $plugin_options_name = false, $is_network_option = false ) {
256
- global $wp_version, $bstwbsftwppdtplgns_options;
257
- $result = array();
258
-
259
- $bws_license_key = ( isset( $_POST['bws_license_key'] ) ) ? stripslashes( esc_html( trim( $_POST['bws_license_key'] ) ) ) : "";
260
-
261
- if ( ! empty( $plugin_options_name ) && isset( $_POST['bws_hide_premium_options_submit'] ) && check_admin_referer( $plugin_basename, 'bws_license_nonce_name' ) ) {
262
-
263
- $plugin_options = ( $is_network_option ) ? get_site_option( $plugin_options_name ) : get_option( $plugin_options_name );
264
-
265
- if ( !empty( $plugin_options['hide_premium_options'] ) ) {
266
-
267
- $key = array_search( get_current_user_id(), $plugin_options['hide_premium_options'] );
268
- if ( false !== $key ) {
269
- unset( $plugin_options['hide_premium_options'][ $key ] );
270
- }
271
-
272
- if ( $is_network_option )
273
- update_site_option( $plugin_options_name, $plugin_options );
274
- else
275
- update_option( $plugin_options_name, $plugin_options );
276
-
277
- $result['message'] = __( 'Check premium options on the plugin settings page!', 'bestwebsoft' );
278
- }
279
- }
280
-
281
- if ( isset( $_POST['bws_license_submit'] ) && check_admin_referer( $plugin_basename, 'bws_license_nonce_name' ) ) {
282
- if ( '' != $bws_license_key ) {
283
- if ( strlen( $bws_license_key ) != 18 ) {
284
- $result['error'] = __( "Wrong license key", 'bestwebsoft' );
285
- } else {
286
- $bws_license_plugin = stripslashes( esc_html( $_POST['bws_license_plugin'] ) );
287
- if ( isset( $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] ) && $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['time'] > ( time() - (24 * 60 * 60) ) ) {
288
- $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] = $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] + 1;
289
- } else {
290
- $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] = 1;
291
- $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['time'] = time();
292
- }
293
-
294
- /* download Pro */
295
- if ( ! function_exists( 'get_plugins' ) )
296
- require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
297
-
298
- $all_plugins = get_plugins();
299
-
300
- if ( ! array_key_exists( $bws_license_plugin, $all_plugins ) ) {
301
- $current = get_site_transient( 'update_plugins' );
302
- if ( is_array( $all_plugins ) && !empty( $all_plugins ) && isset( $current ) && is_array( $current->response ) ) {
303
- $to_send = array();
304
- $to_send["plugins"][ $bws_license_plugin ] = array();
305
- $to_send["plugins"][ $bws_license_plugin ]["bws_license_key"] = $bws_license_key;
306
- $to_send["plugins"][ $bws_license_plugin ]["bws_illegal_client"] = true;
307
- $options = array(
308
- 'timeout' => ( ( defined( 'DOING_CRON' ) && DOING_CRON ) ? 30 : 3 ),
309
- 'body' => array( 'plugins' => serialize( $to_send ) ),
310
- 'user-agent' => 'WordPress/' . $wp_version . '; ' . get_bloginfo( 'url' ) );
311
- $raw_response = wp_remote_post( 'http://bestwebsoft.com/wp-content/plugins/paid-products/plugins/update-check/1.0/', $options );
312
-
313
- if ( is_wp_error( $raw_response ) || 200 != wp_remote_retrieve_response_code( $raw_response ) ) {
314
- $result['error'] = __( "Something went wrong. Please try again later. If the error appears again, please contact us", 'bestwebsoft' ) . ' <a href="http://support.bestwebsoft.com">BestWebSoft</a>. ' . __( "We are sorry for inconvenience.", 'bestwebsoft' );
315
- } else {
316
- $response = maybe_unserialize( wp_remote_retrieve_body( $raw_response ) );
317
- if ( is_array( $response ) && !empty( $response ) ) {
318
- foreach ( $response as $key => $value ) {
319
- if ( "wrong_license_key" == $value->package ) {
320
- $result['error'] = __( "Wrong license key", 'bestwebsoft' );
321
- } elseif ( "wrong_domain" == $value->package ) {
322
- $result['error'] = __( "This license key is bind to another site", 'bestwebsoft' );
323
- } elseif ( "you_are_banned" == $value->package ) {
324
- $result['error'] = __( "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually.", 'bestwebsoft' );
325
- } elseif ( "time_out" == $value->package ) {
326
- $result['error'] = __( "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates you should extend it in your", 'bestwebsoft' ) . ' <a href="http://bestwebsoft.com/wp-admin/admin.php?page=client-area">Client area</a>';
327
- } elseif ( "duplicate_domen_for_trial" == $value->package ) {
328
- $result['error'] = __( "Unfortunately, the Pro licence was already installed to this domain. The Pro Trial license can be installed only once.", 'bestwebsoft' );
329
- }
330
- }
331
- if ( empty( $result['error'] ) ) {
332
- $bstwbsftwppdtplgns_options[ $bws_license_plugin ] = $bws_license_key;
333
-
334
- $url = 'http://bestwebsoft.com/wp-content/plugins/paid-products/plugins/downloads/?bws_first_download=' . $bws_license_plugin . '&bws_license_key=' . $bws_license_key . '&download_from=5';
335
- $uploadDir = wp_upload_dir();
336
- $zip_name = explode( '/', $bws_license_plugin );
337
-
338
- if ( !function_exists( 'curl_init' ) ) {
339
- $received_content = file_get_contents( $url );
340
- } else {
341
- $ch = curl_init();
342
- curl_setopt( $ch, CURLOPT_URL, $url );
343
- curl_setopt( $ch, CURLOPT_RETURNTRANSFER, true );
344
- $received_content = curl_exec( $ch );
345
- curl_close( $ch );
346
- }
347
-
348
- if ( ! $received_content ) {
349
- $result['error'] = __( "Failed to download the zip archive. Please, upload the plugin manually", 'bestwebsoft' );
350
- } else {
351
- if ( is_writable( $uploadDir["path"] ) ) {
352
- $file_put_contents = $uploadDir["path"] . "/" . $zip_name[0] . ".zip";
353
- if ( file_put_contents( $file_put_contents, $received_content ) ) {
354
- @chmod( $file_put_contents, octdec( 755 ) );
355
- if ( class_exists( 'ZipArchive' ) ) {
356
- $zip = new ZipArchive();
357
- if ( $zip->open( $file_put_contents ) === TRUE ) {
358
- $zip->extractTo( WP_PLUGIN_DIR );
359
- $zip->close();
360
- } else {
361
- $result['error'] = __( "Failed to open the zip archive. Please, upload the plugin manually", 'bestwebsoft' );
362
- }
363
- } elseif ( class_exists( 'Phar' ) ) {
364
- $phar = new PharData( $file_put_contents );
365
- $phar->extractTo( WP_PLUGIN_DIR );
366
- } else {
367
- $result['error'] = __( "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually", 'bestwebsoft' );
368
- }
369
- @unlink( $file_put_contents );
370
- } else {
371
- $result['error'] = __( "Failed to download the zip archive. Please, upload the plugin manually", 'bestwebsoft' );
372
- }
373
- } else {
374
- $result['error'] = __( "UploadDir is not writable. Please, upload the plugin manually", 'bestwebsoft' );
375
- }
376
- }
377
-
378
- /* activate Pro */
379
- if ( file_exists( WP_PLUGIN_DIR . '/' . $zip_name[0] ) ) {
380
- if ( is_multisite() && is_plugin_active_for_network( $plugin_basename ) ) {
381
- /* if multisite and free plugin is network activated */
382
- $active_plugins = get_site_option( 'active_sitewide_plugins' );
383
- $active_plugins[ $bws_license_plugin ] = time();
384
- update_site_option( 'active_sitewide_plugins', $active_plugins );
385
- } else {
386
- /* activate on a single blog */
387
- $active_plugins = get_option( 'active_plugins' );
388
- array_push( $active_plugins, $bws_license_plugin );
389
- update_option( 'active_plugins', $active_plugins );
390
- }
391
- $result['pro_plugin_is_activated'] = true;
392
- } elseif ( empty( $result['error'] ) ) {
393
- $result['error'] = __( "Failed to download the zip archive. Please, upload the plugin manually", 'bestwebsoft' );
394
- }
395
- }
396
- } else {
397
- $result['error'] = __( "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvenience.", 'bestwebsoft' );
398
- }
399
- }
400
- }
401
- } else {
402
- $bstwbsftwppdtplgns_options[ $bws_license_plugin ] = $bws_license_key;
403
- /* activate Pro */
404
- if ( ! is_plugin_active( $bws_license_plugin ) ) {
405
- if ( is_multisite() && is_plugin_active_for_network( $plugin_basename ) ) {
406
- /* if multisite and free plugin is network activated */
407
- $network_wide = true;
408
- } else {
409
- /* activate on a single blog */
410
- $network_wide = false;
411
- }
412
- activate_plugin( $bws_license_plugin, NULL, $network_wide );
413
- $result['pro_plugin_is_activated'] = true;
414
- }
415
- }
416
- if ( is_multisite() )
417
- update_site_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
418
- else
419
- update_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
420
-
421
- if ( ! empty( $result['pro_plugin_is_activated'] ) )
422
- delete_transient( 'bws_plugins_update' );
423
- }
424
- } else {
425
- $result['error'] = __( "Please, enter Your license key", 'bestwebsoft' );
426
- }
427
- }
428
- return $result;
429
- }
430
- }
431
-
432
- /**
433
- * Function display GO PRO tab - for old plugin version
434
- * @deprecated 1.7.6
435
- */
436
- if ( ! function_exists( 'bws_go_pro_tab' ) ) {
437
- function bws_go_pro_tab( $plugin_info, $plugin_basename, $page, $pro_page, $bws_license_plugin, $link_slug, $link_key, $link_pn, $pro_plugin_is_activated = false, $trial_days_number = false ) {
438
- bws_go_pro_tab_show( false, $plugin_info, $plugin_basename, $page, $pro_page, $bws_license_plugin, $link_slug, $link_key, $link_pn, $pro_plugin_is_activated, $trial_days_number );
439
- }
440
- }
441
-
442
- /**
443
- * Function display GO PRO tab
444
- */
445
- if ( ! function_exists( 'bws_go_pro_tab_show' ) ) {
446
- function bws_go_pro_tab_show( $bws_hide_premium_options_check, $plugin_info, $plugin_basename, $page, $pro_page, $bws_license_plugin, $link_slug, $link_key, $link_pn, $pro_plugin_is_activated = false, $trial_days_number = false ) {
447
- global $wp_version, $bstwbsftwppdtplgns_options;
448
- $bws_license_key = ( isset( $_POST['bws_license_key'] ) ) ? stripslashes( esc_html( trim( $_POST['bws_license_key'] ) ) ) : "";
449
- if ( $pro_plugin_is_activated ) { ?>
450
- <script type="text/javascript">
451
- window.setTimeout( function() {
452
- window.location.href = 'admin.php?page=<?php echo $pro_page; ?>';
453
- }, 5000 );
454
- </script>
455
- <p><?php _e( "Congratulations! Pro version of the plugin is successfully installed and activated.", 'bestwebsoft' ); ?></p>
456
- <p>
457
- <?php _e( "Please, go to", 'bestwebsoft' ); ?> <a href="admin.php?page=<?php echo $pro_page; ?>"><?php _e( 'the setting page', 'bestwebsoft' ); ?></a>
458
- (<?php _e( "You will be redirected automatically in 5 seconds.", 'bestwebsoft' ); ?>)
459
- </p>
460
- <?php } else {
461
- if ( $bws_hide_premium_options_check ) { ?>
462
- <form method="post" action="">
463
- <p>
464
- <input type="hidden" name="bws_hide_premium_options_submit" value="submit" />
465
- <input type="submit" class="button" value="<?php _e( 'Show Pro features', 'bestwebsoft' ); ?>" />
466
- <?php wp_nonce_field( $plugin_basename, 'bws_license_nonce_name' ); ?>
467
- </p>
468
- </form>
469
- <?php } ?>
470
- <form method="post" action="">
471
- <p>
472
- <?php _e( 'Enter your license key to install and activate', 'bestwebsoft' ); ?>
473
- <a href="http://bestwebsoft.com/products/wordpress/plugins/<?php echo $link_slug; ?>/?k=<?php echo $link_key; ?>&amp;pn=<?php echo $link_pn; ?>&amp;v=<?php echo $plugin_info["Version"]; ?>&amp;wp_v=<?php echo $wp_version; ?>" target="_blank" title="<?php echo $plugin_info["Name"]; ?> Pro">Pro</a>
474
- <?php _e( 'version of the plugin.', 'bestwebsoft' ); ?><br />
475
- <span class="bws_info">
476
- <?php _e( 'License key can be found in the', 'bestwebsoft' ); ?>
477
- <a href="http://bestwebsoft.com/wp-login.php">Client Area</a>
478
- <?php _e( '(your username is the email address specified during the purchase).', 'bestwebsoft' ); ?>
479
- </span>
480
- </p>
481
- <?php if ( $trial_days_number !== false )
482
- $trial_days_number = __( 'or', 'bestwebsoft' ) . ' <a href="http://bestwebsoft.com/products/wordpress/plugins/' . $link_slug . '/trial/" target="_blank">' . sprintf( __( 'Start Your Free %s-Day Trial Now', 'bestwebsoft' ), $trial_days_number ) . '</a>';
483
- if ( isset( $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] ) &&
484
- '5' < $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] &&
485
- $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['time'] > ( time() - ( 24 * 60 * 60 ) ) ) { ?>
486
- <p>
487
- <input disabled="disabled" type="text" name="bws_license_key" value="<?php echo $bws_license_key; ?>" />
488
- <input disabled="disabled" type="submit" class="button-primary" value="<?php _e( 'Activate', 'bestwebsoft' ); ?>" />
489
- <?php if ( $trial_days_number !== false ) echo $trial_days_number; ?>
490
- </p>
491
- <p><?php _e( "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually.", 'bestwebsoft' ); ?></p>
492
- <?php } else { ?>
493
- <p>
494
- <input type="text" maxlength="100" name="bws_license_key" value="<?php echo $bws_license_key; ?>" />
495
- <input type="hidden" name="bws_license_plugin" value="<?php echo $bws_license_plugin; ?>" />
496
- <input type="hidden" name="bws_license_submit" value="submit" />
497
- <input type="submit" class="button-primary" value="<?php _e( 'Activate', 'bestwebsoft' ); ?>" />
498
- <?php if ( $trial_days_number !== false ) echo $trial_days_number;
499
- wp_nonce_field( $plugin_basename, 'bws_license_nonce_name' ); ?>
500
- </p>
501
- <?php } ?>
502
- </form>
503
- <?php }
504
- }
505
- }
506
-
507
- if ( ! function_exists( 'bws_go_pro_from_trial_tab' ) ) {
508
- function bws_go_pro_from_trial_tab( $plugin_info, $plugin_basename, $page, $link_slug, $link_key, $link_pn, $trial_license_is_set = true ) {
509
- global $wp_version, $bstwbsftwppdtplgns_options;
510
- $bws_license_key = ( isset( $_POST['bws_license_key'] ) ) ? stripslashes( esc_html( trim( $_POST['bws_license_key'] ) ) ) : "";
511
- if ( $trial_license_is_set ) { ?>
512
- <form method="post" action="">
513
- <p>
514
- <?php echo sprintf( __( 'In order to continue using the plugin it is necessary to buy a %s license.', 'bestwebsoft' ), '<a href="http://bestwebsoft.com/products/wordpress/plugins/' . $link_slug . '/?k=' . $link_key . '&amp;pn=' . $link_pn . '&amp;v=' . $plugin_info["Version"] . '&amp;wp_v=' . $wp_version .'" target="_blank" title="' . $plugin_info["Name"] . '">Pro</a>' ) . ' ';
515
- _e( 'After that you can activate it by entering your license key.', 'bestwebsoft' ); ?><br />
516
- <span class="bws_info">
517
- <?php _e( 'License key can be found in the', 'bestwebsoft' ); ?>
518
- <a href="http://bestwebsoft.com/wp-login.php">Client Area</a>
519
- <?php _e( '(your username is the email address specified during the purchase).', 'bestwebsoft' ); ?>
520
- </span>
521
- </p>
522
- <?php if ( isset( $bstwbsftwppdtplgns_options['go_pro'][ $plugin_basename ]['count'] ) &&
523
- '5' < $bstwbsftwppdtplgns_options['go_pro'][ $plugin_basename ]['count'] &&
524
- $bstwbsftwppdtplgns_options['go_pro'][ $plugin_basename ]['time'] > ( time() - ( 24 * 60 * 60 ) ) ) { ?>
525
- <p>
526
- <input disabled="disabled" type="text" name="bws_license_key" value="" />
527
- <input disabled="disabled" type="submit" class="button-primary" value="<?php _e( 'Activate', 'bestwebsoft' ); ?>" />
528
- </p>
529
- <p><?php _e( "Unfortunately, you have exceeded the number of available tries per day.", 'bestwebsoft' ); ?></p>
530
- <?php } else { ?>
531
- <p>
532
- <input type="text" maxlength="100" name="bws_license_key" value="" />
533
- <input type="hidden" name="bws_license_plugin" value="<?php echo $plugin_basename; ?>" />
534
- <input type="hidden" name="bws_license_submit" value="submit" />
535
- <input type="submit" class="button-primary" value="<?php _e( 'Activate', 'bestwebsoft' ); ?>" />
536
- <?php wp_nonce_field( $plugin_basename, 'bws_license_nonce_name' ); ?>
537
- </p>
538
- <?php } ?>
539
- </form>
540
- <?php } else { ?>
541
- <script type="text/javascript">
542
- window.setTimeout( function() {
543
- window.location.href = 'admin.php?page=<?php echo $page; ?>';
544
- }, 5000 );
545
- </script>
546
- <p><?php _e( "Congratulations! The Pro license of the plugin is successfully activated.", 'bestwebsoft' ); ?></p>
547
- <p>
548
- <?php _e( "Please, go to", 'bestwebsoft' ); ?> <a href="admin.php?page=<?php echo $page; ?>"><?php _e( 'the setting page', 'bestwebsoft' ); ?></a>
549
- (<?php _e( "You will be redirected automatically in 5 seconds.", 'bestwebsoft' ); ?>)
550
- </p>
551
- <?php }
552
- }
553
- }
554
-
555
- if ( ! function_exists( 'bws_check_pro_license' ) ) {
556
- function bws_check_pro_license( $plugin_basename, $trial_plugin = false ) {
557
- global $wp_version, $bstwbsftwppdtplgns_options;
558
- $result = array();
559
-
560
- if ( isset( $_POST['bws_license_submit'] ) && check_admin_referer( $plugin_basename, 'bws_license_nonce_name' ) ) {
561
- $license_key = isset( $_POST['bws_license_key'] ) ? stripslashes( esc_html( trim( $_POST['bws_license_key'] ) ) ) : '';
562
-
563
- if ( '' != $license_key ) {
564
-
565
- delete_transient( 'bws_plugins_update' );
566
-
567
- if ( ! function_exists( 'get_plugins' ) )
568
- require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
569
- $plugins_all = get_plugins();
570
- $current = get_site_transient( 'update_plugins' );
571
-
572
- if ( is_array( $plugins_all ) && !empty( $plugins_all ) && isset( $current ) && is_array( $current->response ) ) {
573
- $to_send = array();
574
- $to_send["plugins"][ $plugin_basename ] = $plugins_all[ $plugin_basename ];
575
- $to_send["plugins"][ $plugin_basename ]["bws_license_key"] = $license_key;
576
- $to_send["plugins"][ $plugin_basename ]["bws_illegal_client"] = true;
577
- $options = array(
578
- 'timeout' => ( ( defined('DOING_CRON') && DOING_CRON ) ? 30 : 3),
579
- 'body' => array( 'plugins' => serialize( $to_send ) ),
580
- 'user-agent' => 'WordPress/' . $wp_version . '; ' . get_bloginfo( 'url' )
581
- );
582
- $raw_response = wp_remote_post( 'http://bestwebsoft.com/wp-content/plugins/paid-products/plugins/update-check/1.0/', $options );
583
- if ( is_wp_error( $raw_response ) || 200 != wp_remote_retrieve_response_code( $raw_response ) ) {
584
- $result['error'] = __( 'Something went wrong. Please try again later. If the error appears again, please contact us', 'bestwebsoft' ) . ' <a href=http://support.bestwebsoft.com>BestWebSoft</a>. ' . __( 'We are sorry for inconvenience.', 'bestwebsoft' );
585
- } else {
586
- $response = maybe_unserialize( wp_remote_retrieve_body( $raw_response ) );
587
- if ( is_array( $response ) && !empty( $response ) ) {
588
- foreach ( $response as $key => $value ) {
589
- if ( "wrong_license_key" == $value->package ) {
590
- $result['error'] = __( 'Wrong license key.', 'bestwebsoft' );
591
- } else if ( "wrong_domain" == $value->package ) {
592
- $result['error'] = __( 'This license key is bind to another site.', 'bestwebsoft' );
593
- } else if ( "time_out" == $value->package ) {
594
- $result['message'] = __( 'This license key is valid, but Your license has expired. If you want to update our plugin in future, you should extend the license.', 'bestwebsoft' );
595
- } elseif ( "you_are_banned" == $value->package ) {
596
- $result['error'] = __( "Unfortunately, you have exceeded the number of available tries.", 'bestwebsoft' );
597
- } elseif ( "duplicate_domen_for_trial" == $value->package ) {
598
- $result['error'] = __( "Unfortunately, the Pro Trial licence was already installed to this domain. The Pro Trial license can be installed only once.", 'bestwebsoft' );
599
- }
600
- if ( empty( $result['message'] ) && empty( $result['error'] ) ) {
601
- if ( isset( $value->trial ) )
602
- $result['message'] = __( 'The Pro Trial license key is valid.', 'bestwebsoft' );
603
- else
604
- $result['message'] = __( 'The license key is valid.', 'bestwebsoft' );
605
-
606
- if ( ! empty( $value->time_out ) )
607
- $result['message'] .= ' ' . __( 'Your license will expire on', 'bestwebsoft' ) . ' ' . $value->time_out . '.';
608
-
609
- if ( isset( $value->trial ) && $trial_plugin != false )
610
- $result['message'] .= ' ' . sprintf( __( 'In order to continue using the plugin it is necessary to buy a %s license.', 'bestwebsoft' ), '<a href="http://bestwebsoft.com/products/wordpress/plugins/' . $trial_plugin['link_slug'] . '/?k=' . $trial_plugin['link_key'] . '&pn=' . $trial_plugin['link_pn'] . '&v=' . $trial_plugin['plugin_info']['Version'] . '&wp_v=' . $wp_version . '" target="_blank" title="' . $trial_plugin['plugin_info']['Name'] . '">Pro</a>' );
611
-
612
- if ( isset( $value->trial ) ) {
613
- $bstwbsftwppdtplgns_options['trial'][ $plugin_basename ] = 1;
614
- } else {
615
- unset( $bstwbsftwppdtplgns_options['trial'][ $plugin_basename ] );
616
- }
617
- }
618
- if ( empty( $result['error'] ) ) {
619
- if ( $bstwbsftwppdtplgns_options[ $plugin_basename ] != $license_key ) {
620
- $bstwbsftwppdtplgns_options[ $plugin_basename ] = $license_key;
621
-
622
- $file = @fopen( dirname( dirname( __FILE__ ) ) . "/license_key.txt" , "w+" );
623
- if ( $file ) {
624
- @fwrite( $file, $license_key );
625
- @fclose( $file );
626
- }
627
- $update_option = true;
628
- }
629
-
630
- if ( $bstwbsftwppdtplgns_options['time_out'][ $plugin_basename ] != $value->time_out ) {
631
- $bstwbsftwppdtplgns_options['time_out'][ $plugin_basename ] = $value->time_out;
632
- $update_option = true;
633
- }
634
-
635
- if ( isset( $update_option ) ) {
636
- if ( is_multisite() )
637
- update_site_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
638
- else
639
- update_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
640
- }
641
- }
642
- }
643
- } else {
644
- $result['error'] = __( 'Something went wrong. Please try again later. If the error appears again, please contact us', 'bestwebsoft' ) . ' <a href=http://support.bestwebsoft.com>BestWebSoft</a>. ' . __( 'We are sorry for inconvenience.', 'bestwebsoft' );
645
- }
646
- }
647
- }
648
- } else {
649
- $result['error'] = __( 'Please, enter your license key', 'bestwebsoft' );
650
- }
651
- }
652
- return $result;
653
- }
654
- }
655
-
656
- if ( ! function_exists ( 'bws_check_pro_license_form' ) ) {
657
- function bws_check_pro_license_form( $plugin_basename ) {
658
- global $bstwbsftwppdtplgns_options;
659
- $license_key = ( isset( $bstwbsftwppdtplgns_options[ $plugin_basename ] ) ) ? $bstwbsftwppdtplgns_options[ $plugin_basename ] : ''; ?>
660
- <div class="clear"></div>
661
- <form method="post" action="">
662
- <p><?php echo _e( 'If needed you can check if the license key is correct or reenter it in the field below. You can find your license key on your personal page - Client area - on our website', 'bestwebsoft' ) . ' <a href="http://bestwebsoft.com/wp-login.php">http://bestwebsoft.com/wp-login.php</a> ' . __( '(your username is the email address specified during the purchase). If necessary, please submit "Lost your password?" request.', 'bestwebsoft' ); ?></p>
663
- <p>
664
- <input type="text" maxlength="100" name="bws_license_key" value="<?php echo $license_key; ?>" />
665
- <input type="hidden" name="bws_license_submit" value="submit" />
666
- <input type="submit" class="button" value="<?php _e( 'Check license key', 'bestwebsoft' ) ?>" />
667
- <?php wp_nonce_field( $plugin_basename, 'bws_license_nonce_name' ); ?>
668
- </p>
669
- </form>
670
- <?php }
671
- }
672
-
673
- if ( ! function_exists ( 'bws_plugin_update_row' ) ) {
674
- function bws_plugin_update_row( $plugin_key, $link_slug = false, $free_plugin_name = false ) {
675
- global $bstwbsftwppdtplgns_options, $wp_version;
676
- $wp_list_table = _get_list_table( 'WP_Plugins_List_Table' );
677
- if ( isset( $bstwbsftwppdtplgns_options['wrong_license_key'][ $plugin_key ] ) ) {
678
- $explode_plugin_key = explode( '/', $plugin_key );
679
- $class = ( $wp_version >= 4.6 ) ? 'active' : '';
680
- $style = ( $wp_version < 4.6 ) ? ' style="background-color: #FFEBE8;border-color: #CC0000;"' : '';
681
- $div_class = ( $wp_version >= 4.6 ) ? ' notice inline notice-warning notice-alt' : '';
682
- echo '<tr class="bws-plugin-update-tr plugin-update-tr ' . $class . '" id="' . $explode_plugin_key[0] . '-update" data-slug="' . $explode_plugin_key[0] . '" data-plugin="' . $plugin_key . '">
683
- <td colspan="' . $wp_list_table->get_column_count() . '" class="plugin-update colspanchange">
684
- <div class="update-message' . $div_class . '"' . $style . '>';
685
- if ( $wp_version >= 4.6 )
686
- echo '<p>';
687
- echo '<strong>' . __( 'WARNING: Illegal use notification', 'bestwebsoft' ) . '.</strong> ' . __( 'You can use one license of the Pro plugin for one domain only. Please check and edit your license or domain if necessary using you personal Client Area. We strongly recommend you to solve the problem within 24 hours, otherwise the Pro plugin will be deactivated.', 'bestwebsoft' ) . ' <a target="_blank" href="http://support.bestwebsoft.com/hc/en-us/articles/204240089">' . __( 'Learn More', 'bestwebsoft' ) . '</a>';
688
- if ( $wp_version >= 4.6 )
689
- echo '</p>';
690
- echo '</div>
691
- </td>
692
- </tr>';
693
- } elseif ( isset( $bstwbsftwppdtplgns_options['time_out'][ $plugin_key ] ) && strtotime( $bstwbsftwppdtplgns_options['time_out'][ $plugin_key ] ) < strtotime( date("m/d/Y") ) ) {
694
- $explode_plugin_key = explode( '/', $plugin_key );
695
- $class = ( $wp_version >= 4.6 ) ? 'active' : '';
696
- $style = ( $wp_version < 4.6 ) ? ' style="color: #8C0000;"' : '';
697
- $div_class = ( $wp_version >= 4.6 ) ? ' notice inline notice-warning notice-alt' : '';
698
- echo '<tr class="bws-plugin-update-tr plugin-update-tr ' . $class . '" id="' . $explode_plugin_key[0] . '-update" data-slug="' . $explode_plugin_key[0] . '" data-plugin="' . $plugin_key . '">
699
- <td colspan="' . $wp_list_table->get_column_count() . '" class="plugin-update colspanchange">
700
- <div class="update-message' . $div_class . '"' . $style . '>';
701
- if ( $wp_version >= 4.6 )
702
- echo '<p>';
703
- if ( isset( $bstwbsftwppdtplgns_options['trial'][ $plugin_key ] ) && $link_slug != false ) {
704
- echo __( 'Notice: Your Pro Trial license has expired. To continue using the plugin you should buy a Pro license', 'bestwebsoft' ) . ' - <a href="http://bestwebsoft.com/products/wordpress/plugins/' . $link_slug .'/">http://bestwebsoft.com/products/wordpress/plugins/' . $link_slug . '/</a>';
705
- } else {
706
- echo __( 'Your license has expired. To continue getting top-priority support and plugin updates you should extend it.', 'bestwebsoft' ) . ' <a target="_new" href="http://support.bestwebsoft.com/entries/53487136">' . __( "Learn more", 'bestwebsoft' ) . '</a>';
707
- }
708
- if ( $wp_version >= 4.6 )
709
- echo '</p>';
710
- echo '</div>
711
- </td>
712
- </tr>';
713
- } elseif ( isset( $bstwbsftwppdtplgns_options['trial'][ $plugin_key ] ) ) {
714
- $explode_plugin_key = explode( '/', $plugin_key );
715
- $class = ( $wp_version >= 4.6 ) ? 'active' : '';
716
- $style = ( $wp_version < 4.6 ) ? ' style="color: #8C0000;"' : '';
717
- $div_class = ( $wp_version >= 4.6 ) ? ' notice inline notice-warning notice-alt' : '';
718
- echo '<tr class="bws-plugin-update-tr plugin-update-tr ' . $class . '" id="' . $explode_plugin_key[0] . '-update" data-slug="' . $explode_plugin_key[0] . '" data-plugin="' . $plugin_key . '">
719
- <td colspan="' . $wp_list_table->get_column_count() . '" class="plugin-update colspanchange">
720
- <div class="update-message' . $div_class . '"' . $style . '>';
721
- if ( $wp_version >= 4.6 )
722
- echo '<p>';
723
- if ( $free_plugin_name != false ) {
724
- echo sprintf( __( 'Notice: You are using the Pro Trial license of %s plugin.', 'bestwebsoft' ), $free_plugin_name );
725
- } else {
726
- _e( 'Notice: You are using the Pro Trial license of plugin.', 'bestwebsoft' );
727
- }
728
- if ( isset( $bstwbsftwppdtplgns_options['time_out'][ $plugin_key ] ) )
729
- echo ' ' . __( "The Pro Trial license will expire on", 'bestwebsoft' ) . ' ' . $bstwbsftwppdtplgns_options['time_out'][ $plugin_key ] . '.';
730
- if ( $wp_version >= 4.6 )
731
- echo '</p>';
732
- echo '</div>
733
- </td>
734
- </tr>';
735
- }
736
- }
737
- }
738
-
739
  if ( ! function_exists ( 'bws_plugin_banner_timeout' ) ) {
740
  function bws_plugin_banner_timeout( $plugin_key, $plugin_prefix, $plugin_name, $banner_url = false ) {
741
  global $bstwbsftwppdtplgns_options, $bstwbsftwppdtplgns_cookie_add;
742
  if ( isset( $bstwbsftwppdtplgns_options['time_out'][ $plugin_key ] ) && ( strtotime( $bstwbsftwppdtplgns_options['time_out'][ $plugin_key ] ) < strtotime( date("m/d/Y") . '+1 month' ) ) && ( strtotime( $bstwbsftwppdtplgns_options['time_out'][ $plugin_key ] ) > strtotime( date("m/d/Y") ) ) ) {
743
  if ( ! isset( $bstwbsftwppdtplgns_cookie_add ) ) {
744
- echo '<script type="text/javascript" src="' . plugins_url( 'js/c_o_o_k_i_e.js', __FILE__ ) . '"></script>';
745
  $bstwbsftwppdtplgns_cookie_add = true;
746
  } ?>
747
  <script type="text/javascript">
@@ -766,8 +379,8 @@ if ( ! function_exists ( 'bws_plugin_banner_timeout' ) ) {
766
  <div class="icon">
767
  <img title="" src="<?php echo $banner_url; ?>" alt="" />
768
  </div>
769
- <div class="text"><?php _e( "You license for", 'bestwebsoft' ); ?> <strong><?php echo $plugin_name; ?></strong> <?php echo __( "expires on", 'bestwebsoft' ) . ' ' . $bstwbsftwppdtplgns_options['time_out'][ $plugin_key ] . ' ' . __( "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES.", 'bestwebsoft' ); ?> <a target="_new" href="http://support.bestwebsoft.com/entries/53487136"><?php _e( "Learn more", 'bestwebsoft' ); ?></a></div>
770
- </div>
771
  </div>
772
  <?php }
773
  }
@@ -783,7 +396,7 @@ if ( ! function_exists( 'bws_plugin_banner_to_settings' ) ) {
783
 
784
  if ( isset( $plugin_options['display_settings_notice'] ) && 0 == $plugin_options['display_settings_notice'] )
785
  return;
786
-
787
  if ( isset( $_POST['bws_hide_settings_notice_' . $plugin_options_name ] ) && check_admin_referer( plugin_basename( __FILE__ ), 'bws_settings_nonce_name' ) ) {
788
  $plugin_options['display_settings_notice'] = 0;
789
  if ( $is_network_admin )
@@ -795,10 +408,10 @@ if ( ! function_exists( 'bws_plugin_banner_to_settings' ) ) {
795
 
796
  if ( false == strrpos( $banner_url_or_slug, '/' ) ) {
797
  $banner_url_or_slug = '//ps.w.org/' . $banner_url_or_slug . '/assets/icon-128x128.png';
798
- }
799
 
800
  $bws_plugin_banner_to_settings[] = array(
801
- 'plugin_info' => $plugin_info,
802
  'plugin_options_name' => $plugin_options_name,
803
  'banner_url' => $banner_url_or_slug,
804
  'settings_url' => $settings_url,
@@ -842,7 +455,7 @@ if ( ! function_exists( 'bws_plugin_suggest_feature_banner' ) ) {
842
 
843
  if ( isset( $return ) )
844
  return;
845
-
846
  if ( isset( $_POST['bws_hide_suggest_feature_banner_' . $plugin_options_name ] ) && check_admin_referer( $plugin_info['Name'], 'bws_settings_nonce_name' ) ) {
847
  $plugin_options['display_suggest_feature_banner'] = 0;
848
  if ( $is_network_admin )
@@ -859,11 +472,11 @@ if ( ! function_exists( 'bws_plugin_suggest_feature_banner' ) ) {
859
  <div class="bws_banner_on_plugin_page bws_suggest_feature_banner">
860
  <div class="icon">
861
  <img title="" src="<?php echo esc_attr( $banner_url_or_slug ); ?>" alt="" />
862
- </div>
863
  <div class="text">
864
  <strong><?php _e( 'Thank you for choosing', 'bestwebsoft' ); ?> <?php echo $plugin_info['Name']; ?> plugin!</strong><br />
865
- <?php _e( "If you have a feature, suggestion or idea you'd like to see in the plugin, we'd love to hear about it!", 'bestwebsoft' ); ?>
866
- <a target="_blank" href="http://support.bestwebsoft.com/hc/en-us/requests/new"><?php _e( 'Suggest a Feature', 'bestwebsoft' ); ?></a>
867
  </div>
868
  <form action="" method="post">
869
  <button class="notice-dismiss bws_hide_settings_notice" title="<?php _e( 'Close notice', 'bestwebsoft' ); ?>"></button>
@@ -879,7 +492,7 @@ if ( ! function_exists( 'bws_show_settings_notice' ) ) {
879
  function bws_show_settings_notice() { ?>
880
  <div id="bws_save_settings_notice" class="updated fade below-h2" style="display:none;">
881
  <p>
882
- <strong><?php _e( 'Notice', 'bestwebsoft' ); ?></strong>: <?php _e( "The plugin's settings have been changed.", 'bestwebsoft' ); ?>
883
  <a class="bws_save_anchor" href="#bws-submit-button"><?php _e( 'Save Changes', 'bestwebsoft' ); ?></a>
884
  </p>
885
  </div>
@@ -890,11 +503,11 @@ if ( ! function_exists( 'bws_hide_premium_options' ) ) {
890
  function bws_hide_premium_options( $options ) {
891
  if ( ! isset( $options['hide_premium_options'] ) || ! is_array( $options['hide_premium_options'] ) )
892
  $options['hide_premium_options'] = array();
893
-
894
  $options['hide_premium_options'][] = get_current_user_id();
895
 
896
- return array(
897
- 'message' => __( 'You can always look at premium options by clicking on the "Show Pro features" in the "Go PRO" tab', 'bestwebsoft' ),
898
  'options' => $options );
899
  }
900
  }
@@ -910,11 +523,10 @@ if ( ! function_exists( 'bws_hide_premium_options_check' ) ) {
910
 
911
  if ( ! function_exists ( 'bws_plugins_admin_init' ) ) {
912
  function bws_plugins_admin_init() {
913
-
914
  if ( isset( $_GET['bws_activate_plugin'] ) && check_admin_referer( 'bws_activate_plugin' . $_GET['bws_activate_plugin'] ) ) {
915
 
916
- $plugin = isset( $_GET['bws_activate_plugin'] ) ? $_GET['bws_activate_plugin'] : '';
917
- $result = activate_plugin( $plugin, '', is_network_admin() );
918
  if ( is_wp_error( $result ) ) {
919
  if ( 'unexpected_output' == $result->get_error_code() ) {
920
  $redirect = self_admin_url( 'admin.php?page=bws_panel&error=true&charsout=' . strlen( $result->get_error_data() ) . '&plugin=' . $plugin );
@@ -949,13 +561,14 @@ if ( ! function_exists ( 'bws_plugins_admin_init' ) ) {
949
 
950
  if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) ) {
951
  function bws_admin_enqueue_scripts() {
952
- global $wp_version;
953
- wp_enqueue_style( 'bws-admin-css', plugins_url( 'css/general_style.css', __FILE__ ) );
954
- wp_enqueue_script( 'bws-admin-scripts', plugins_url( 'js/general_script.js', __FILE__ ), array( 'jquery' ) );
955
-
956
- if ( isset( $_GET['page'] ) && in_array( $_GET['page'], array( 'bws_panel', 'bws_themes', 'bws_system_status' ) ) ) {
957
- wp_enqueue_style( 'bws_menu_style', plugins_url( 'css/style.css', __FILE__ ) );
958
- wp_enqueue_script( 'bws_menu_script', plugins_url( 'js/bws_menu.js' , __FILE__ ) );
 
959
  wp_enqueue_script( 'theme-install' );
960
  add_thickbox();
961
  wp_enqueue_script( 'plugin-install' );
@@ -963,6 +576,18 @@ if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) ) {
963
  }
964
  }
965
 
 
 
 
 
 
 
 
 
 
 
 
 
966
  if ( ! function_exists ( 'bws_plugins_admin_head' ) ) {
967
  function bws_plugins_admin_head() {
968
  global $bws_shortcode_list, $wp_version, $post_type;
@@ -975,16 +600,14 @@ if ( ! function_exists ( 'bws_plugins_admin_head' ) ) {
975
  </style>
976
  </noscript>
977
  <?php }
978
- if ( 4.2 > $wp_version ) {
979
- $plugin_dir_array = explode( '/', plugin_basename( __FILE__ ) );
980
- $plugin_dir = $plugin_dir_array[0]; ?>
981
  <style type="text/css">
982
  .bws_hide_settings_notice,
983
  .bws_hide_premium_options {
984
  width: 11px;
985
  height: 11px;
986
  border: none;
987
- background: url("<?php echo plugins_url( $plugin_dir . '/bws_menu/images/close_banner.png' ); ?>") no-repeat center center;
988
  box-shadow: none;
989
  float: right;
990
  margin: 8px;
@@ -1004,11 +627,11 @@ if ( ! function_exists ( 'bws_plugins_admin_head' ) ) {
1004
  var bws_shortcode_button = {
1005
  'label': '<?php esc_attr_e( "Add BWS Shortcode", "bestwebsoft" ); ?>',
1006
  'title': '<?php esc_attr_e( "Add BWS Plugins Shortcode", "bestwebsoft" ); ?>',
1007
- 'icon_url': '<?php echo plugins_url( "images/shortcode-icon.png" , __FILE__ ); ?>',
1008
  'function_name': [
1009
  <?php foreach ( $bws_shortcode_list as $key => $value ) {
1010
  if ( isset( $value['js_function'] ) )
1011
- echo "'" . $value['js_function'] . "',";
1012
  } ?>
1013
  ],
1014
  'wp_version' : '<?php echo $wp_version; ?>'
@@ -1022,9 +645,9 @@ if ( ! function_exists ( 'bws_plugins_admin_head' ) ) {
1022
  'actions' => array(
1023
  'click' => false,
1024
  'onload' => true
1025
- ),
1026
  'content' => '<h3>' . __( 'Add shortcode', 'bestwebsoft' ) . '</h3><p>' . __( "Add BestWebSoft plugins' shortcodes using this button.", 'bestwebsoft' ) . '</p>',
1027
- 'position' => array(
1028
  'edge' => 'right'
1029
  ),
1030
  'set_timeout' => 2000
@@ -1033,14 +656,14 @@ if ( ! function_exists ( 'bws_plugins_admin_head' ) ) {
1033
  $tooltip_args['css_selector'] = '.mce_add_bws_shortcode';
1034
  bws_add_tooltip_in_admin( $tooltip_args );
1035
  }
1036
- }
1037
  }
1038
  }
1039
 
1040
  if ( ! function_exists ( 'bws_plugins_include_codemirror' ) ) {
1041
  function bws_plugins_include_codemirror() {
1042
- wp_enqueue_style( 'codemirror.css', plugins_url( 'css/codemirror.css', __FILE__ ) );
1043
- wp_enqueue_script( 'codemirror.js', plugins_url( 'js/codemirror.js', __FILE__ ), array( 'jquery' ) );
1044
  }
1045
  }
1046
 
@@ -1062,13 +685,13 @@ if ( ! class_exists( 'BWS_admin_tooltip' ) ) {
1062
  if ( 3.3 > $wp_version )
1063
  return;
1064
  /* Default arguments */
1065
- $tooltip_args_default = array(
1066
  'tooltip_id' => false,
1067
- 'css_selector' => false,
1068
  'actions' => array(
1069
  'click' => true,
1070
  'onload' => false,
1071
- ),
1072
  'buttons' => array(
1073
  'close' => array(
1074
  'type' => 'dismiss',
@@ -1076,11 +699,11 @@ if ( ! class_exists( 'BWS_admin_tooltip' ) ) {
1076
  ),
1077
  ),
1078
  'position' => array(
1079
- 'edge' => 'top',
1080
  'align' => 'center',
1081
- 'pos-left' => 0,
1082
- 'pos-top' => 0,
1083
- 'zindex' => 10000
1084
  ),
1085
  'set_timeout' => 0
1086
  );
@@ -1146,7 +769,7 @@ if ( ! class_exists( 'BWS_admin_tooltip' ) ) {
1146
  public function add_scripts() {
1147
  global $bstwbsftwppdtplgns_tooltip_script_add;
1148
  if ( ! isset( $bstwbsftwppdtplgns_tooltip_script_add ) ) {
1149
- echo '<script type="text/javascript" src="' . plugins_url( 'js/bws_tooltip.js', __FILE__ ) . '"></script>';
1150
  $bstwbsftwppdtplgns_tooltip_script_add = true;
1151
  }
1152
  $tooltip_args = $this->tooltip_args; ?>
@@ -1161,26 +784,13 @@ if ( ! class_exists( 'BWS_admin_tooltip' ) ) {
1161
  }
1162
  }
1163
 
1164
- if ( ! function_exists ( 'bws_form_restore_default_settings' ) ) {
1165
- function bws_form_restore_default_settings( $plugin_basename, $change_permission_attr = '' ) { ?>
1166
- <form method="post" action="">
1167
- <p><?php _e( 'Restore all plugin settings to defaults', 'bestwebsoft' ); ?></p>
1168
- <p>
1169
- <input <?php echo $change_permission_attr; ?> type="submit" class="button" value="<?php _e( 'Restore settings', 'bestwebsoft' ); ?>" />
1170
- </p>
1171
- <input type="hidden" name="bws_restore_default" value="submit" />
1172
- <?php wp_nonce_field( $plugin_basename, 'bws_settings_nonce_name' ); ?>
1173
- </form>
1174
- <?php }
1175
- }
1176
-
1177
  if ( ! function_exists ( 'bws_form_restore_default_confirm' ) ) {
1178
  function bws_form_restore_default_confirm( $plugin_basename ) { ?>
1179
  <div>
1180
- <p><?php _e( 'Are you sure you want to restore all settings by default?', 'bestwebsoft' ) ?></p>
1181
  <form method="post" action="">
1182
  <p>
1183
- <button class="button" name="bws_restore_confirm"><?php _e( 'Yes, restore all settings', 'bestwebsoft' ) ?></button>
1184
  <button class="button" name="bws_restore_deny"><?php _e( 'No, go back to the settings page', 'bestwebsoft' ) ?></button>
1185
  <?php wp_nonce_field( $plugin_basename, 'bws_settings_nonce_name' ); ?>
1186
  </p>
@@ -1204,7 +814,7 @@ if ( ! function_exists( 'bws_add_editor_buttons' ) ) {
1204
 
1205
  if ( ! function_exists( 'bws_add_buttons' ) ){
1206
  function bws_add_buttons( $plugin_array ) {
1207
- $plugin_array['add_bws_shortcode'] = plugins_url( 'js/shortcode-button.js', __FILE__ );
1208
  return $plugin_array;
1209
  }
1210
  }
@@ -1218,7 +828,7 @@ if ( ! function_exists( 'bws_register_buttons' ) ) {
1218
 
1219
  /* Generate inline content for the popup window when the "bws shortcode" button is clicked */
1220
  if ( ! function_exists( 'bws_shortcode_media_button_popup' ) ) {
1221
- function bws_shortcode_media_button_popup() {
1222
  global $bws_shortcode_list, $wp_version;
1223
  if ( $wp_version < '3.3' )
1224
  return;
@@ -1255,7 +865,7 @@ if ( ! function_exists( 'bws_shortcode_media_button_popup' ) ) {
1255
  if ( $wp_version < '3.9' ) { ?>
1256
  <script type="text/javascript">
1257
  (function($){
1258
- $( '.bws_shortcode_insert' ).on( 'click',function() {
1259
  var shortcode = $( '#TB_ajaxContent #bws_shortcode_display' ).text();
1260
  if ( '' != shortcode ) {
1261
  /* insert shortcode to tinymce */
@@ -1263,14 +873,36 @@ if ( ! function_exists( 'bws_shortcode_media_button_popup' ) ) {
1263
  $( 'textarea#content' ).val( shortcode );
1264
  } else {
1265
  tinyMCE.execCommand( 'mceInsertContent', false, shortcode );
1266
- }
1267
  }
1268
  /* close the thickbox after adding shortcode to editor */
1269
  self.parent.tb_remove();
1270
  });
1271
  })(jQuery);
1272
  </script>
1273
- <?php }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1274
  }
1275
  }
1276
 
@@ -1281,7 +913,7 @@ if ( ! function_exists( 'bws_help_tab' ) ) {
1281
 
1282
  $content = '<p><a href="' . $url . '" target="_blank">' . __( 'Visit Help Center', 'bestwebsoft' ) . '</a></p>';
1283
 
1284
- $screen->add_help_tab(
1285
  array(
1286
  'id' => $args['id'] . '_help_tab',
1287
  'title' => __( 'FAQ', 'bestwebsoft' ),
@@ -1298,169 +930,8 @@ if ( ! function_exists( 'bws_help_tab' ) ) {
1298
  }
1299
  }
1300
 
1301
- /**
1302
- * Function display 'Custom code' tab
1303
- */
1304
- if ( ! function_exists( 'bws_custom_code_tab' ) ) {
1305
- function bws_custom_code_tab() {
1306
- if ( ! current_user_can( 'edit_plugins' ) )
1307
- wp_die( __( 'You do not have sufficient permissions to edit plugins for this site.', 'bestwebsoft' ) );
1308
-
1309
- global $bstwbsftwppdtplgns_options;
1310
-
1311
- $message = $content = '';
1312
- $is_css_active = $is_php_active = false;
1313
-
1314
- $upload_dir = wp_upload_dir();
1315
- $folder = $upload_dir['basedir'] . '/bws-custom-code';
1316
- if ( ! $upload_dir["error"] ) {
1317
- if ( ! is_dir( $folder ) )
1318
- wp_mkdir_p( $folder, 0755 );
1319
-
1320
- $index_file = $upload_dir['basedir'] . '/bws-custom-code/index.php';
1321
- if ( ! file_exists( $index_file ) ) {
1322
- if ( $f = fopen( $index_file, 'w+' ) )
1323
- fclose( $f );
1324
- }
1325
- }
1326
-
1327
- $css_file = 'bws-custom-code.css';
1328
- $real_css_file = $folder . '/' . $css_file;
1329
-
1330
- $php_file = 'bws-custom-code.php';
1331
- $real_php_file = $folder . '/' . $php_file;
1332
-
1333
- $is_multisite = is_multisite();
1334
- if ( $is_multisite )
1335
- $blog_id = get_current_blog_id();
1336
-
1337
- if ( isset( $_REQUEST['bws_update_custom_code'] ) && check_admin_referer( 'bws_update_' . $css_file ) ) {
1338
-
1339
- /* CSS */
1340
- $newcontent_css = wp_unslash( $_POST['bws_newcontent_css'] );
1341
- if ( ! empty( $newcontent_css ) && isset( $_REQUEST['bws_custom_css_active'] ) ) {
1342
- if ( $is_multisite )
1343
- $bstwbsftwppdtplgns_options['custom_code'][ $blog_id ][ $css_file ] = $upload_dir['baseurl'] . '/bws-custom-code/' . $css_file;
1344
- else
1345
- $bstwbsftwppdtplgns_options['custom_code'][ $css_file ] = $upload_dir['baseurl'] . '/bws-custom-code/' . $css_file;
1346
- } else {
1347
- if ( $is_multisite ) {
1348
- if ( isset( $bstwbsftwppdtplgns_options['custom_code'][ $blog_id ][ $css_file ] ) )
1349
- unset( $bstwbsftwppdtplgns_options['custom_code'][ $blog_id ][ $css_file ] );
1350
- } else {
1351
- if ( isset( $bstwbsftwppdtplgns_options['custom_code'][ $css_file ] ) )
1352
- unset( $bstwbsftwppdtplgns_options['custom_code'][ $css_file ] );
1353
- }
1354
- }
1355
- if ( $f = fopen( $real_css_file, 'w+' ) ) {
1356
- fwrite( $f, $newcontent_css );
1357
- fclose( $f );
1358
- $message .= sprintf( __( 'File %s edited successfully.', 'bestwebsoft' ), '<i>' . $css_file . '</i>' ) . ' ';
1359
- } else {
1360
- $error .= __( 'Not enough permissions to create or update the file', 'bestwebsoft' ) . ' ' . $real_css_file . '. ';
1361
- }
1362
-
1363
- /* PHP */
1364
- $newcontent_php = wp_unslash( trim( $_POST['bws_newcontent_php'] ) );
1365
- if ( file_exists( $index_file ) ) {
1366
- if ( ! empty( $newcontent_php ) && isset( $_REQUEST['bws_custom_php_active'] ) ) {
1367
- if ( $is_multisite )
1368
- $bstwbsftwppdtplgns_options['custom_code'][ $blog_id ][ $php_file ] = $real_php_file;
1369
- else
1370
- $bstwbsftwppdtplgns_options['custom_code'][ $php_file ] = $real_php_file;
1371
- } else {
1372
- if ( $is_multisite ) {
1373
- if ( isset( $bstwbsftwppdtplgns_options['custom_code'][ $blog_id ][ $php_file ] ) )
1374
- unset( $bstwbsftwppdtplgns_options['custom_code'][ $blog_id ][ $php_file ] );
1375
- } else {
1376
- if ( isset( $bstwbsftwppdtplgns_options['custom_code'][ $php_file ] ) )
1377
- unset( $bstwbsftwppdtplgns_options['custom_code'][ $php_file ] );
1378
- }
1379
- }
1380
-
1381
- if ( $f = fopen( $real_php_file, 'w+' ) ) {
1382
- $newcontent_php = $newcontent_php;
1383
- fwrite( $f, $newcontent_php );
1384
- fclose( $f );
1385
- $message .= sprintf( __( 'File %s edited successfully.', 'bestwebsoft' ), '<i>' . $php_file . '</i>' );
1386
- } else {
1387
- $error .= __( 'Not enough permissions to create or update the file', 'bestwebsoft' ) . ' ' . $real_php_file . '. ';
1388
- }
1389
- } else {
1390
- $error .= __( 'Not enough permissions to create the file', 'bestwebsoft' ) . ' ' . $index_file . '. ';
1391
- }
1392
-
1393
- if ( ! empty( $error ) )
1394
- $error .= ' <a href="https://codex.wordpress.org/Changing_File_Permissions" target="_blank">' . __( 'Learn more', 'bestwebsoft' ) . '</a>';
1395
-
1396
- if ( $is_multisite )
1397
- update_site_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
1398
- else
1399
- update_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
1400
- }
1401
-
1402
- if ( file_exists( $real_css_file ) ) {
1403
- update_recently_edited( $real_css_file );
1404
- $content_css = esc_textarea( file_get_contents( $real_css_file ) );
1405
- if ( ( $is_multisite && isset( $bstwbsftwppdtplgns_options['custom_code'][ $blog_id ][ $css_file ] ) ) ||
1406
- ( ! $is_multisite && isset( $bstwbsftwppdtplgns_options['custom_code'][ $css_file ] ) ) ) {
1407
- $is_css_active = true;
1408
- }
1409
- }
1410
- if ( file_exists( $real_php_file ) ) {
1411
- update_recently_edited( $real_php_file );
1412
- $content_php = esc_textarea( file_get_contents( $real_php_file ) );
1413
- if ( ( $is_multisite && isset( $bstwbsftwppdtplgns_options['custom_code'][ $blog_id ][ $php_file ] ) ) ||
1414
- ( ! $is_multisite && isset( $bstwbsftwppdtplgns_options['custom_code'][ $php_file ] ) ) ) {
1415
- $is_php_active = true;
1416
- }
1417
- } else {
1418
- $content_php = "<?php" . "\n" . "if ( ! defined( 'ABSPATH' ) ) exit;" . "\n" . "if ( ! defined( 'BWS_GLOBAL' ) ) exit;" . "\n\n" . "/* Start your code here */" . "\n";
1419
- }
1420
-
1421
- if ( ! empty( $message ) ) { ?>
1422
- <div id="message" class="below-h2 updated notice is-dismissible"><p><?php echo $message; ?></p></div>
1423
- <?php } ?>
1424
- <form action="" method="post">
1425
- <?php foreach ( array( 'css', 'php' ) as $extension ) { ?>
1426
- <p>
1427
- <?php if ( 'css' == $extension )
1428
- _e( 'These styles will be added to the header on all pages of your site.', 'bestwebsoft' );
1429
- else
1430
- printf( __( 'This PHP code will be hooked to the %s action and will be printed on front end only.', 'bestwebsoft' ), '<a href="http://codex.wordpress.org/Plugin_API/Action_Reference/init" target="_blank"><code>init</code></a>' ); ?>
1431
- </p>
1432
- <p><big>
1433
- <?php if ( ! file_exists( ${"real_{$extension}_file"} ) || ( is_writeable( ${"real_{$extension}_file"} ) ) ) {
1434
- echo __( 'Editing', 'bestwebsoft' ) . ' <strong>' . ${"{$extension}_file"} . '</strong>';
1435
- } else {
1436
- echo __( 'Browsing', 'bestwebsoft' ) . ' <strong>' . ${"{$extension}_file"} . '</strong>';
1437
- } ?>
1438
- </big></p>
1439
- <p><label><input type="checkbox" name="bws_custom_<?php echo $extension; ?>_active" value="1" <?php if ( ${"is_{$extension}_active"} ) echo "checked"; ?> /> <?php _e( 'Activate', 'bestwebsoft' ); ?></label></p>
1440
- <textarea cols="70" rows="25" name="bws_newcontent_<?php echo $extension; ?>" id="bws_newcontent_<?php echo $extension; ?>"><?php if ( isset( ${"content_{$extension}"} ) ) echo ${"content_{$extension}"}; ?></textarea>
1441
- <p class="description">
1442
- <a href="<?php echo ( 'css' == $extension ) ? 'https://developer.mozilla.org/en-US/docs/Web/Guide/CSS/Getting_started' : 'http://php.net/' ?>" target="_blank">
1443
- <?php printf( __( 'Learn more about %s', 'bestwebsoft' ), strtoupper( $extension ) ); ?>
1444
- </a>
1445
- </p>
1446
- <?php }
1447
- if ( ( ! file_exists( $real_css_file ) || is_writeable( $real_css_file ) ) && ( ! file_exists( $real_php_file ) || is_writeable( $real_php_file ) ) ) { ?>
1448
- <p class="submit">
1449
- <input type="hidden" name="bws_update_custom_code" value="submit" />
1450
- <?php submit_button( __( 'Save Changes', 'bestwebsoft' ), 'primary', 'submit', false );
1451
- wp_nonce_field( 'bws_update_' . $css_file ); ?>
1452
- </p>
1453
- <?php } else { ?>
1454
- <p><em><?php printf( __( 'You need to make this files writable before you can save your changes. See %s the Codex %s for more information.', 'bestwebsoft' ),
1455
- '<a href="https://codex.wordpress.org/Changing_File_Permissions" target="_blank">',
1456
- '</a>' ); ?></em></p>
1457
- <?php } ?>
1458
- </form>
1459
- <?php }
1460
- }
1461
-
1462
- if ( ! function_exists( 'bws_enqueue_custom_code_css' ) ) {
1463
- function bws_enqueue_custom_code_css() {
1464
  global $bstwbsftwppdtplgns_options;
1465
 
1466
  if ( ! isset( $bstwbsftwppdtplgns_options ) )
@@ -1475,6 +946,11 @@ if ( ! function_exists( 'bws_enqueue_custom_code_css' ) ) {
1475
  wp_enqueue_style( 'bws-custom-style', $bstwbsftwppdtplgns_options['custom_code']['bws-custom-code.css'] );
1476
  elseif ( $is_multisite && ! empty( $bstwbsftwppdtplgns_options['custom_code'][ $blog_id ]['bws-custom-code.css'] ) )
1477
  wp_enqueue_style( 'bws-custom-style', $bstwbsftwppdtplgns_options['custom_code'][ $blog_id ]['bws-custom-code.css'] );
 
 
 
 
 
1478
  }
1479
  }
1480
  }
@@ -1496,7 +972,7 @@ if ( ! function_exists( 'bws_enqueue_custom_code_php' ) ) {
1496
  $blog_id = get_current_blog_id();
1497
 
1498
  if ( ! $is_multisite && ! empty( $bstwbsftwppdtplgns_options['custom_code']['bws-custom-code.php'] ) ) {
1499
-
1500
  if ( file_exists( $bstwbsftwppdtplgns_options['custom_code']['bws-custom-code.php'] ) ) {
1501
  if ( ! defined( 'BWS_GLOBAL' ) )
1502
  define( 'BWS_GLOBAL', true );
@@ -1538,10 +1014,13 @@ if ( ! function_exists( 'bws_delete_plugin' ) ) {
1538
 
1539
  /* remove bws_menu versions */
1540
  unset( $bstwbsftwppdtplgns_options['bws_menu']['version'][ $basename ] );
 
 
 
1541
  /* if empty ['bws_menu']['version'] - there is no other bws plugins - delete all */
1542
  if ( empty( $bstwbsftwppdtplgns_options['bws_menu']['version'] ) ) {
1543
  /* remove options */
1544
- if ( $is_multisite )
1545
  delete_site_option( 'bstwbsftwppdtplgns_options' );
1546
  else
1547
  delete_option( 'bstwbsftwppdtplgns_options' );
@@ -1570,7 +1049,7 @@ if ( ! function_exists( 'bws_delete_plugin' ) ) {
1570
  rmdir( $folder );
1571
  }
1572
  }
1573
- }
1574
  }
1575
  }
1576
 
@@ -1581,6 +1060,6 @@ add_action( 'admin_footer','bws_shortcode_media_button_popup' );
1581
 
1582
  add_action( 'admin_notices', 'bws_admin_notices', 30 );
1583
 
1584
- add_action( 'wp_enqueue_scripts', 'bws_enqueue_custom_code_css', 20 );
1585
 
1586
  bws_enqueue_custom_code_php();
3
  * General functions for BestWebSoft plugins
4
  */
5
 
6
+ require( dirname( __FILE__ ) . '/deprecated.php' );
 
7
 
8
  /**
9
+ * Function to add 'bestwebsoft' slug for BWS_Menu MO file if BWS_Menu loaded from theme.
10
+ *
11
+ * @since 1.9.7
12
+ */
13
+ if ( ! function_exists ( 'bws_get_mofile' ) ) {
14
+ function bws_get_mofile( $mofile, $domain ) {
15
+ if ( 'bestwebsoft' == $domain ) {
16
+ $locale = get_locale();
17
+ return str_replace( $locale, "bestwebsoft-{$locale}", $mofile );
18
+ }
19
+
20
+ return $mofile;
21
  }
22
  }
23
 
24
+ /* Internationalization, first(!) */
25
+ if ( isset( $bws_menu_source ) && 'themes' == $bws_menu_source ) {
26
+ add_filter( 'load_textdomain_mofile', 'bws_get_mofile', 10, 2 );
27
+ load_theme_textdomain( 'bestwebsoft', get_stylesheet_directory() . '/inc/bws_menu/languages' );
28
+ remove_filter( 'load_textdomain_mofile', 'bws_get_mofile' );
29
+ } else {
30
+ load_plugin_textdomain( 'bestwebsoft', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
31
  }
32
 
33
  /**
34
+ * Function to getting url to current BWS_Menu.
35
+ *
36
+ * @since 1.9.7
37
+ */
38
+ if ( ! function_exists ( 'bws_menu_url' ) ) {
39
+ if ( ! isset( $bws_menu_source ) || 'plugins' == $bws_menu_source ) {
40
+ function bws_menu_url( $path = '' ) {
41
+ return plugins_url( $path, __FILE__ );
42
+ }
43
+ } else {
44
+ function bws_menu_url( $path = '' ) {
45
+ $bws_menu_current_dir = str_replace( '\\', '/', dirname( __FILE__ ) );
46
+ $bws_menu_abspath = str_replace( '\\', '/', ABSPATH );
47
+ $bws_menu_current_url = site_url( str_replace( $bws_menu_abspath, '', $bws_menu_current_dir ) );
48
+
49
+ return sprintf( '%s/%s', $bws_menu_current_url, $path );
50
+ }
51
  }
52
  }
53
 
65
  if ( is_plugin_active( $plugin_basename ) ) {
66
  deactivate_plugins( $plugin_basename );
67
  $admin_url = ( function_exists( 'get_admin_url' ) ) ? get_admin_url( null, 'plugins.php' ) : esc_url( '/wp-admin/plugins.php' );
68
+ wp_die(
69
  sprintf(
70
  "<strong>%s</strong> %s <strong>WordPress %s</strong> %s <br /><br />%s <a href='%s'>%s</a>.",
71
  $plugin_info['Name'],
84
  }
85
  }
86
 
87
+ if ( ! function_exists( 'bws_plugin_reviews_block' ) ) {
88
+ function bws_plugin_reviews_block( $plugin_name, $plugin_slug ) { ?>
89
+ <div class="bws-plugin-reviews">
90
+ <div class="bws-plugin-reviews-rate">
91
+ <?php _e( 'Like the plugin?', 'bestwebsoft' ); ?>
92
+ <a href="http://wordpress.org/support/view/plugin-reviews/<?php echo $plugin_slug; ?>?filter=5" target="_blank" title="<?php echo $plugin_name; ?> reviews">
93
+ <?php _e( 'Rate it', 'bestwebsoft' ); ?>
94
+ <span class="dashicons dashicons-star-filled"></span>
95
+ <span class="dashicons dashicons-star-filled"></span>
96
+ <span class="dashicons dashicons-star-filled"></span>
97
+ <span class="dashicons dashicons-star-filled"></span>
98
+ <span class="dashicons dashicons-star-filled"></span>
99
+ </a>
100
+ </div>
101
+ <div class="bws-plugin-reviews-support">
102
+ <?php _e( 'Need help?', 'bestwebsoft' ); ?>
103
+ <a href="http://support.bestwebsoft.com"><?php _e( 'Visit Help Center', 'bestwebsoft' ); ?></a>
104
+ </div>
105
+ <div class="bws-plugin-reviews-donate">
106
+ <?php _e( 'Want to support the plugin?', 'bestwebsoft' ); ?>
107
+ <a href="http://bestwebsoft.com/donate/"><?php _e( 'Donate', 'bestwebsoft' ); ?></a>
108
+ </div>
109
+ </div>
110
+ <?php }
111
+ }
112
+
113
+ if ( ! function_exists ( 'bws_plugin_update_row' ) ) {
114
+ function bws_plugin_update_row( $plugin_key, $link_slug = false, $free_plugin_name = false ) {
115
+ global $bstwbsftwppdtplgns_options, $wp_version;
116
+ $wp_list_table = _get_list_table( 'WP_Plugins_List_Table' );
117
+ if ( isset( $bstwbsftwppdtplgns_options['wrong_license_key'][ $plugin_key ] ) ) {
118
+ $explode_plugin_key = explode( '/', $plugin_key );
119
+ $class = ( $wp_version >= 4.6 ) ? 'active' : '';
120
+ $style = ( $wp_version < 4.6 ) ? ' style="background-color: #FFEBE8;border-color: #CC0000;"' : '';
121
+ $div_class = ( $wp_version >= 4.6 ) ? ' notice inline notice-warning notice-alt' : '';
122
+ echo '<tr class="bws-plugin-update-tr plugin-update-tr ' . $class . '" id="' . $explode_plugin_key[0] . '-update" data-slug="' . $explode_plugin_key[0] . '" data-plugin="' . $plugin_key . '">
123
+ <td colspan="' . $wp_list_table->get_column_count() . '" class="plugin-update colspanchange">
124
+ <div class="update-message' . $div_class . '"' . $style . '>';
125
+ if ( $wp_version >= 4.6 )
126
+ echo '<p>';
127
+ echo '<strong>' . __( 'WARNING: Illegal use notification', 'bestwebsoft' ) . '.</strong> ' . __( 'You can use one license of the Pro plugin for one domain only. Please check and edit your license or domain if necessary using you personal Client Area. We strongly recommend you to solve the problem within 24 hours, otherwise the Pro plugin will be deactivated.', 'bestwebsoft' ) . ' <a target="_blank" href="http://support.bestwebsoft.com/hc/en-us/articles/204240089">' . __( 'Learn More', 'bestwebsoft' ) . '</a>';
128
+ if ( $wp_version >= 4.6 )
129
+ echo '</p>';
130
+ echo '</div>
131
+ </td>
132
+ </tr>';
133
+ } elseif ( isset( $bstwbsftwppdtplgns_options['time_out'][ $plugin_key ] ) && strtotime( $bstwbsftwppdtplgns_options['time_out'][ $plugin_key ] ) < strtotime( date("m/d/Y") ) ) {
134
+ $explode_plugin_key = explode( '/', $plugin_key );
135
+ $class = ( $wp_version >= 4.6 ) ? 'active' : '';
136
+ $style = ( $wp_version < 4.6 ) ? ' style="color: #8C0000;"' : '';
137
+ $div_class = ( $wp_version >= 4.6 ) ? ' notice inline notice-warning notice-alt' : '';
138
+ echo '<tr class="bws-plugin-update-tr plugin-update-tr ' . $class . '" id="' . $explode_plugin_key[0] . '-update" data-slug="' . $explode_plugin_key[0] . '" data-plugin="' . $plugin_key . '">
139
+ <td colspan="' . $wp_list_table->get_column_count() . '" class="plugin-update colspanchange">
140
+ <div class="update-message' . $div_class . '"' . $style . '>';
141
+ if ( $wp_version >= 4.6 )
142
+ echo '<p>';
143
+ if ( isset( $bstwbsftwppdtplgns_options['trial'][ $plugin_key ] ) && $link_slug != false ) {
144
+ echo __( 'Notice: Your Pro Trial license has expired. To continue using the plugin, you should buy a Pro license', 'bestwebsoft' ) . ' - <a href="http://bestwebsoft.com/products/wordpress/plugins/' . $link_slug .'/">http://bestwebsoft.com/products/wordpress/plugins/' . $link_slug . '/</a>';
145
+ } else {
146
+ echo __( 'Your license has expired. To continue getting top-priority support and plugin updates, you should extend it.', 'bestwebsoft' ) . ' <a target="_new" href="http://support.bestwebsoft.com/entries/53487136">' . __( "Learn more", 'bestwebsoft' ) . '</a>';
147
+ }
148
+ if ( $wp_version >= 4.6 )
149
+ echo '</p>';
150
+ echo '</div>
151
+ </td>
152
+ </tr>';
153
+ } elseif ( isset( $bstwbsftwppdtplgns_options['trial'][ $plugin_key ] ) ) {
154
+ $explode_plugin_key = explode( '/', $plugin_key );
155
+ $class = ( $wp_version >= 4.6 ) ? 'active' : '';
156
+ $style = ( $wp_version < 4.6 ) ? ' style="color: #8C0000;"' : '';
157
+ $div_class = ( $wp_version >= 4.6 ) ? ' notice inline notice-warning notice-alt' : '';
158
+ echo '<tr class="bws-plugin-update-tr plugin-update-tr ' . $class . '" id="' . $explode_plugin_key[0] . '-update" data-slug="' . $explode_plugin_key[0] . '" data-plugin="' . $plugin_key . '">
159
+ <td colspan="' . $wp_list_table->get_column_count() . '" class="plugin-update colspanchange">
160
+ <div class="update-message' . $div_class . '"' . $style . '>';
161
+ if ( $wp_version >= 4.6 )
162
+ echo '<p>';
163
+ if ( $free_plugin_name != false ) {
164
+ echo sprintf( __( 'Notice: You are using the Pro Trial license of %s plugin.', 'bestwebsoft' ), $free_plugin_name );
165
+ } else {
166
+ _e( 'Notice: You are using the Pro Trial license of plugin.', 'bestwebsoft' );
167
+ }
168
+ if ( isset( $bstwbsftwppdtplgns_options['time_out'][ $plugin_key ] ) )
169
+ echo ' ' . __( "The Pro Trial license will expire on", 'bestwebsoft' ) . ' ' . $bstwbsftwppdtplgns_options['time_out'][ $plugin_key ] . '.';
170
+ if ( $wp_version >= 4.6 )
171
+ echo '</p>';
172
+ echo '</div>
173
+ </td>
174
+ </tr>';
175
+ }
176
+ }
177
+ }
178
+
179
  if ( ! function_exists( 'bws_admin_notices' ) ) {
180
  function bws_admin_notices() {
181
+ global $bws_versions_notice_array, $bws_plugin_banner_to_settings, $bstwbsftwppdtplgns_options;
182
 
183
  /* versions notice */
184
  if ( ! empty( $bws_versions_notice_array ) ) {
196
  }
197
 
198
  /* banner_to_settings notice */
199
+ if ( ! empty( $bws_plugin_banner_to_settings ) ) {
200
  if ( 1 == count( $bws_plugin_banner_to_settings ) ) { ?>
201
  <div class="updated" style="padding: 0; margin: 0; border: none; background: none;">
202
  <div class="bws_banner_on_plugin_page bws_banner_to_settings">
203
  <div class="icon">
204
  <img title="" src="<?php echo esc_attr( $bws_plugin_banner_to_settings[0]['banner_url'] ); ?>" alt="" />
205
+ </div>
206
  <div class="text">
207
  <strong><?php _e( 'Thank you for installing', 'bestwebsoft' ); ?> <?php echo $bws_plugin_banner_to_settings[0]['plugin_info']['Name']; ?> plugin!</strong><br />
208
+ <?php _e( "Let's get started", 'bestwebsoft' ); ?>:
209
+ <a href="<?php echo $bws_plugin_banner_to_settings[0]['settings_url']; ?>"><?php _e( 'Settings', 'bestwebsoft' ); ?></a>
210
  <?php if ( false != $bws_plugin_banner_to_settings[0]['post_type_url'] ) { ?>
211
+ <?php _e( 'or', 'bestwebsoft' ); ?>
212
  <a href="<?php echo $bws_plugin_banner_to_settings[0]['post_type_url']; ?>"><?php _e( 'Add New', 'bestwebsoft' ); ?></a>
213
  <?php } ?>
214
  </div>
218
  <?php wp_nonce_field( plugin_basename( __FILE__ ), 'bws_settings_nonce_name' ); ?>
219
  </form>
220
  </div>
221
+ </div>
222
  <?php } else { ?>
223
  <div class="updated" style="padding: 0; margin: 0; border: none; background: none;">
224
+ <div class="bws_banner_on_plugin_page bws_banner_to_settings_joint">
225
  <form action="" method="post">
226
  <button class="notice-dismiss bws_hide_settings_notice" title="<?php _e( 'Close notice', 'bestwebsoft' ); ?>"></button>
227
  <div class="bws-text">
228
  <div class="icon">
229
  <span class="dashicons dashicons-admin-plugins"></span>
230
+ </div>
231
  <strong><?php _e( 'Thank you for installing plugins by BestWebSoft!', 'bestwebsoft' ); ?></strong>
232
  <div class="hide-if-no-js bws-more-links">
233
+ <a href="#" class="bws-more"><?php _e( 'More Details', 'bestwebsoft' ); ?></a>
234
+ <a href="#" class="bws-less hidden"><?php _e( 'Less Details', 'bestwebsoft' ); ?></a>
235
+ </div>
236
+ <?php wp_nonce_field( plugin_basename( __FILE__ ), 'bws_settings_nonce_name' ); ?>
237
  <div class="clear"></div>
238
  </div>
239
  <div class="bws-details hide-if-js">
240
+ <?php foreach ( $bws_plugin_banner_to_settings as $value ) { ?>
241
+ <div>
242
+ <strong><?php echo str_replace( ' by BestWebSoft', '', $value['plugin_info']['Name'] ); ?></strong>&ensp;<a href="<?php echo $value['settings_url']; ?>"><?php _e( 'Settings', 'bestwebsoft' ); ?></a>
243
  <?php if ( false != $value['post_type_url'] ) { ?>
244
  &ensp;|&ensp;<a target="_blank" href="<?php echo $value['post_type_url']; ?>"><?php _e( 'Add New', 'bestwebsoft' ); ?></a>
245
  <?php } ?>
246
  <input type="hidden" name="bws_hide_settings_notice_<?php echo $value['plugin_options_name']; ?>" value="hide" />
247
+ </div>
248
+ <?php } ?>
249
  </div>
250
  </div>
251
  </form>
252
  </div>
253
  <?php }
254
  }
255
+
256
+ /**
257
+ * show notices about deprecated_function
258
+ * @since 1.9.8
259
+ */
260
+ if ( ! empty( $bstwbsftwppdtplgns_options['deprecated_function'] ) ) { ?>
261
+ <div class="update-nag">
262
+ <strong><?php _e( 'Deprecated function(-s) is used on the site here:', 'bestwebsoft' ); ?></strong>
263
+ <?php $i = 1;
264
+ foreach ( $bstwbsftwppdtplgns_options['deprecated_function'] as $function_name => $attr ) {
265
+ if ( 1 != $i )
266
+ echo ' ,';
267
+ if ( ! empty( $attr['product-name'] ) ) {
268
+ echo $attr['product-name'];
269
+ } elseif ( ! empty( $attr['file'] ) ) {
270
+ echo $attr['file'];
271
+ }
272
+ unset( $bstwbsftwppdtplgns_options['deprecated_function'][ $function_name ] );
273
+ $i++;
274
+ } ?>.
275
+ <br/>
276
+ <?php _e( 'This function(-s) will be removed over time. Please update the product(-s).', 'bestwebsoft' ); ?>
277
+ </div>
278
+ <?php if ( is_multisite() )
279
+ update_site_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
280
+ else
281
+ update_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
282
+ }
283
  }
284
  }
285
 
286
  if ( ! function_exists( 'bws_plugin_banner' ) ) {
287
  function bws_plugin_banner( $plugin_info, $this_banner_prefix, $link_slug, $link_key, $link_pn, $banner_url_or_slug ) {
288
  global $wp_version, $bstwbsftwppdtplgns_cookie_add, $bstwbsftwppdtplgns_banner_array;
289
+
290
  if ( empty( $bstwbsftwppdtplgns_banner_array ) ) {
291
  if ( ! function_exists( 'bws_get_banner_array' ) )
292
  require_once( dirname( __FILE__ ) . '/bws_menu.php' );
306
  foreach ( $bstwbsftwppdtplgns_banner_array as $key => $value ) {
307
  if ( $this_banner == $value[0] ) {
308
  if ( ! isset( $bstwbsftwppdtplgns_cookie_add ) ) {
309
+ echo '<script type="text/javascript" src="' . bws_menu_url( 'js/c_o_o_k_i_e.js' ) . '"></script>';
310
  $bstwbsftwppdtplgns_cookie_add = true;
311
  } ?>
312
  <script type="text/javascript">
330
  <button class="<?php echo $this_banner_prefix; ?>_close_icon close_icon notice-dismiss bws_hide_settings_notice" title="<?php _e( 'Close notice', 'bestwebsoft' ); ?>"></button>
331
  <div class="icon">
332
  <img title="" src="<?php echo esc_attr( $banner_url_or_slug ); ?>" alt="" />
333
+ </div>
334
  <div class="text"><?php
335
  _e( 'It’s time to upgrade your', 'bestwebsoft' ); ?> <strong><?php echo $plugin_info['Name']; ?> plugin</strong> <?php _e( 'to', 'bestwebsoft' ); ?> <strong>Pro</strong> <?php _e( 'version!', 'bestwebsoft' ); ?><br />
336
  <span><?php _e( 'Extend standard plugin functionality with new great options.', 'bestwebsoft' ); ?></span>
349
  }
350
  }
351
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
352
  if ( ! function_exists ( 'bws_plugin_banner_timeout' ) ) {
353
  function bws_plugin_banner_timeout( $plugin_key, $plugin_prefix, $plugin_name, $banner_url = false ) {
354
  global $bstwbsftwppdtplgns_options, $bstwbsftwppdtplgns_cookie_add;
355
  if ( isset( $bstwbsftwppdtplgns_options['time_out'][ $plugin_key ] ) && ( strtotime( $bstwbsftwppdtplgns_options['time_out'][ $plugin_key ] ) < strtotime( date("m/d/Y") . '+1 month' ) ) && ( strtotime( $bstwbsftwppdtplgns_options['time_out'][ $plugin_key ] ) > strtotime( date("m/d/Y") ) ) ) {
356
  if ( ! isset( $bstwbsftwppdtplgns_cookie_add ) ) {
357
+ echo '<script type="text/javascript" src="' . bws_menu_url( 'js/c_o_o_k_i_e.js' ) . '"></script>';
358
  $bstwbsftwppdtplgns_cookie_add = true;
359
  } ?>
360
  <script type="text/javascript">
379
  <div class="icon">
380
  <img title="" src="<?php echo $banner_url; ?>" alt="" />
381
  </div>
382
+ <div class="text"><?php printf( __( "Your license key for %s expires on %s and you won't be granted TOP-PRIORITY SUPPORT or UPDATES.", 'bestwebsoft' ), '<strong>' . $plugin_name . '</strong>', $bstwbsftwppdtplgns_options['time_out'][ $plugin_key ] ); ?> <a target="_new" href="http://support.bestwebsoft.com/entries/53487136"><?php _e( "Learn more", 'bestwebsoft' ); ?></a></div>
383
+ </div>
384
  </div>
385
  <?php }
386
  }
396
 
397
  if ( isset( $plugin_options['display_settings_notice'] ) && 0 == $plugin_options['display_settings_notice'] )
398
  return;
399
+
400
  if ( isset( $_POST['bws_hide_settings_notice_' . $plugin_options_name ] ) && check_admin_referer( plugin_basename( __FILE__ ), 'bws_settings_nonce_name' ) ) {
401
  $plugin_options['display_settings_notice'] = 0;
402
  if ( $is_network_admin )
408
 
409
  if ( false == strrpos( $banner_url_or_slug, '/' ) ) {
410
  $banner_url_or_slug = '//ps.w.org/' . $banner_url_or_slug . '/assets/icon-128x128.png';
411
+ }
412
 
413
  $bws_plugin_banner_to_settings[] = array(
414
+ 'plugin_info' => $plugin_info,
415
  'plugin_options_name' => $plugin_options_name,
416
  'banner_url' => $banner_url_or_slug,
417
  'settings_url' => $settings_url,
455
 
456
  if ( isset( $return ) )
457
  return;
458
+
459
  if ( isset( $_POST['bws_hide_suggest_feature_banner_' . $plugin_options_name ] ) && check_admin_referer( $plugin_info['Name'], 'bws_settings_nonce_name' ) ) {
460
  $plugin_options['display_suggest_feature_banner'] = 0;
461
  if ( $is_network_admin )
472
  <div class="bws_banner_on_plugin_page bws_suggest_feature_banner">
473
  <div class="icon">
474
  <img title="" src="<?php echo esc_attr( $banner_url_or_slug ); ?>" alt="" />
475
+ </div>
476
  <div class="text">
477
  <strong><?php _e( 'Thank you for choosing', 'bestwebsoft' ); ?> <?php echo $plugin_info['Name']; ?> plugin!</strong><br />
478
+ <?php _e( "If you have a feature, suggestion or idea you'd like to see in the plugin, we'd love to hear about it!", 'bestwebsoft' ); ?>
479
+ <a target="_blank" href="http://support.bestwebsoft.com/hc/en-us/requests/new"><?php _e( 'Suggest a Feature', 'bestwebsoft' ); ?></a>
480
  </div>
481
  <form action="" method="post">
482
  <button class="notice-dismiss bws_hide_settings_notice" title="<?php _e( 'Close notice', 'bestwebsoft' ); ?>"></button>
492
  function bws_show_settings_notice() { ?>
493
  <div id="bws_save_settings_notice" class="updated fade below-h2" style="display:none;">
494
  <p>
495
+ <strong><?php _e( 'Notice', 'bestwebsoft' ); ?></strong>: <?php _e( "The plugin's settings have been changed.", 'bestwebsoft' ); ?>
496
  <a class="bws_save_anchor" href="#bws-submit-button"><?php _e( 'Save Changes', 'bestwebsoft' ); ?></a>
497
  </p>
498
  </div>
503
  function bws_hide_premium_options( $options ) {
504
  if ( ! isset( $options['hide_premium_options'] ) || ! is_array( $options['hide_premium_options'] ) )
505
  $options['hide_premium_options'] = array();
506
+
507
  $options['hide_premium_options'][] = get_current_user_id();
508
 
509
+ return array(
510
+ 'message' => __( 'You can always look at premium options by checking the "Pro Options" in the "Misc" tab.', 'bestwebsoft' ),
511
  'options' => $options );
512
  }
513
  }
523
 
524
  if ( ! function_exists ( 'bws_plugins_admin_init' ) ) {
525
  function bws_plugins_admin_init() {
 
526
  if ( isset( $_GET['bws_activate_plugin'] ) && check_admin_referer( 'bws_activate_plugin' . $_GET['bws_activate_plugin'] ) ) {
527
 
528
+ $plugin = isset( $_GET['bws_activate_plugin'] ) ? $_GET['bws_activate_plugin'] : '';
529
+ $result = activate_plugin( $plugin, '', is_network_admin() );
530
  if ( is_wp_error( $result ) ) {
531
  if ( 'unexpected_output' == $result->get_error_code() ) {
532
  $redirect = self_admin_url( 'admin.php?page=bws_panel&error=true&charsout=' . strlen( $result->get_error_data() ) . '&plugin=' . $plugin );
561
 
562
  if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) ) {
563
  function bws_admin_enqueue_scripts() {
564
+ wp_enqueue_style( 'bws-admin-css', bws_menu_url( 'css/general_style.css' ) );
565
+ wp_enqueue_style( 'tipTip.css', bws_menu_url( 'css/tipTip.css' ) );
566
+ wp_enqueue_script( 'jquery.tipTip.minified.js', bws_menu_url( 'js/jquery.tipTip.minified.js' ) );
567
+ wp_enqueue_script( 'bws-admin-scripts', bws_menu_url( 'js/general_script.js' ), array( 'jquery' ) );
568
+
569
+ if ( isset( $_GET['page'] ) && ( in_array( $_GET['page'], array( 'bws_panel', 'bws_themes', 'bws_system_status' ) ) || strpos( $_GET['page'], '-bws-panel' ) ) ) {
570
+ wp_enqueue_style( 'bws_menu_style', bws_menu_url( 'css/style.css' ) );
571
+ wp_enqueue_script( 'bws_menu_script', bws_menu_url( 'js/bws_menu.js' ) );
572
  wp_enqueue_script( 'theme-install' );
573
  add_thickbox();
574
  wp_enqueue_script( 'plugin-install' );
576
  }
577
  }
578
 
579
+ /**
580
+ * add styles and scripts for Bws_Settings_Tabs
581
+ *
582
+ * @since 1.9.8
583
+ */
584
+ if ( ! function_exists( 'bws_enqueue_settings_scripts' ) ) {
585
+ function bws_enqueue_settings_scripts() {
586
+ wp_enqueue_script( 'jquery-ui-resizable' );
587
+ wp_enqueue_script( 'jquery-ui-tabs' );
588
+ }
589
+ }
590
+
591
  if ( ! function_exists ( 'bws_plugins_admin_head' ) ) {
592
  function bws_plugins_admin_head() {
593
  global $bws_shortcode_list, $wp_version, $post_type;
600
  </style>
601
  </noscript>
602
  <?php }
603
+ if ( 4.2 > $wp_version ) { ?>
 
 
604
  <style type="text/css">
605
  .bws_hide_settings_notice,
606
  .bws_hide_premium_options {
607
  width: 11px;
608
  height: 11px;
609
  border: none;
610
+ background: url("<?php echo bws_menu_url( 'images/close_banner.png' ); ?>") no-repeat center center;
611
  box-shadow: none;
612
  float: right;
613
  margin: 8px;
627
  var bws_shortcode_button = {
628
  'label': '<?php esc_attr_e( "Add BWS Shortcode", "bestwebsoft" ); ?>',
629
  'title': '<?php esc_attr_e( "Add BWS Plugins Shortcode", "bestwebsoft" ); ?>',
630
+ 'icon_url': '<?php echo bws_menu_url( "images/shortcode-icon.png" ); ?>',
631
  'function_name': [
632
  <?php foreach ( $bws_shortcode_list as $key => $value ) {
633
  if ( isset( $value['js_function'] ) )
634
+ echo "'" . $value['js_function'] . "',";
635
  } ?>
636
  ],
637
  'wp_version' : '<?php echo $wp_version; ?>'
645
  'actions' => array(
646
  'click' => false,
647
  'onload' => true
648
+ ),
649
  'content' => '<h3>' . __( 'Add shortcode', 'bestwebsoft' ) . '</h3><p>' . __( "Add BestWebSoft plugins' shortcodes using this button.", 'bestwebsoft' ) . '</p>',
650
+ 'position' => array(
651
  'edge' => 'right'
652
  ),
653
  'set_timeout' => 2000
656
  $tooltip_args['css_selector'] = '.mce_add_bws_shortcode';
657
  bws_add_tooltip_in_admin( $tooltip_args );
658
  }
659
+ }
660
  }
661
  }
662
 
663
  if ( ! function_exists ( 'bws_plugins_include_codemirror' ) ) {
664
  function bws_plugins_include_codemirror() {
665
+ wp_enqueue_style( 'codemirror.css', bws_menu_url( 'css/codemirror.css' ) );
666
+ wp_enqueue_script( 'codemirror.js', bws_menu_url( 'js/codemirror.js' ), array( 'jquery' ) );
667
  }
668
  }
669
 
685
  if ( 3.3 > $wp_version )
686
  return;
687
  /* Default arguments */
688
+ $tooltip_args_default = array(
689
  'tooltip_id' => false,
690
+ 'css_selector' => false,
691
  'actions' => array(
692
  'click' => true,
693
  'onload' => false,
694
+ ),
695
  'buttons' => array(
696
  'close' => array(
697
  'type' => 'dismiss',
699
  ),
700
  ),
701
  'position' => array(
702
+ 'edge' => 'top',
703
  'align' => 'center',
704
+ 'pos-left' => 0,
705
+ 'pos-top' => 0,
706
+ 'zindex' => 10000
707
  ),
708
  'set_timeout' => 0
709
  );
769
  public function add_scripts() {
770
  global $bstwbsftwppdtplgns_tooltip_script_add;
771
  if ( ! isset( $bstwbsftwppdtplgns_tooltip_script_add ) ) {
772
+ echo '<script type="text/javascript" src="' . bws_menu_url( 'js/bws_tooltip.js' ) . '"></script>';
773
  $bstwbsftwppdtplgns_tooltip_script_add = true;
774
  }
775
  $tooltip_args = $this->tooltip_args; ?>
784
  }
785
  }
786
 
 
 
 
 
 
 
 
 
 
 
 
 
 
787
  if ( ! function_exists ( 'bws_form_restore_default_confirm' ) ) {
788
  function bws_form_restore_default_confirm( $plugin_basename ) { ?>
789
  <div>
790
+ <p><?php _e( 'Are you sure you want to restore default settings?', 'bestwebsoft' ) ?></p>
791
  <form method="post" action="">
792
  <p>
793
+ <button class="button button-primary" name="bws_restore_confirm"><?php _e( 'Yes, restore all settings', 'bestwebsoft' ) ?></button>
794
  <button class="button" name="bws_restore_deny"><?php _e( 'No, go back to the settings page', 'bestwebsoft' ) ?></button>
795
  <?php wp_nonce_field( $plugin_basename, 'bws_settings_nonce_name' ); ?>
796
  </p>
814
 
815
  if ( ! function_exists( 'bws_add_buttons' ) ){
816
  function bws_add_buttons( $plugin_array ) {
817
+ $plugin_array['add_bws_shortcode'] = bws_menu_url( 'js/shortcode-button.js' );
818
  return $plugin_array;
819
  }
820
  }
828
 
829
  /* Generate inline content for the popup window when the "bws shortcode" button is clicked */
830
  if ( ! function_exists( 'bws_shortcode_media_button_popup' ) ) {
831
+ function bws_shortcode_media_button_popup() {
832
  global $bws_shortcode_list, $wp_version;
833
  if ( $wp_version < '3.3' )
834
  return;
865
  if ( $wp_version < '3.9' ) { ?>
866
  <script type="text/javascript">
867
  (function($){
868
+ $( '.bws_shortcode_insert' ).on( 'click',function() {
869
  var shortcode = $( '#TB_ajaxContent #bws_shortcode_display' ).text();
870
  if ( '' != shortcode ) {
871
  /* insert shortcode to tinymce */
873
  $( 'textarea#content' ).val( shortcode );
874
  } else {
875
  tinyMCE.execCommand( 'mceInsertContent', false, shortcode );
876
+ }
877
  }
878
  /* close the thickbox after adding shortcode to editor */
879
  self.parent.tb_remove();
880
  });
881
  })(jQuery);
882
  </script>
883
+ <?php }
884
+ }
885
+ }
886
+
887
+ /**
888
+ * output shortcode in a special block
889
+ * @since 1.9.8
890
+ */
891
+ if ( ! function_exists( 'bws_shortcode_output' ) ) {
892
+ function bws_shortcode_output( $shortcode ) { ?>
893
+ <span class="bws_shortcode_output"><input type="text" onfocus="this.select();" readonly="readonly" value="<?php echo $shortcode; ?>" class="large-text bws_no_bind_notice"></span>
894
+ <?php }
895
+ }
896
+
897
+ /**
898
+ * output tooltip
899
+ * @since 1.9.8
900
+ */
901
+ if ( ! function_exists( 'bws_add_help_box' ) ) {
902
+ function bws_add_help_box( $content, $class = '' ) {
903
+ return '<span class="bws_help_box dashicons dashicons-editor-help ' . $class . ' hide-if-no-js">
904
+ <span class="bws_hidden_help_text">' . $content . '</span>
905
+ </span>';
906
  }
907
  }
908
 
913
 
914
  $content = '<p><a href="' . $url . '" target="_blank">' . __( 'Visit Help Center', 'bestwebsoft' ) . '</a></p>';
915
 
916
+ $screen->add_help_tab(
917
  array(
918
  'id' => $args['id'] . '_help_tab',
919
  'title' => __( 'FAQ', 'bestwebsoft' ),
930
  }
931
  }
932
 
933
+ if ( ! function_exists( 'bws_enqueue_custom_code_css_js' ) ) {
934
+ function bws_enqueue_custom_code_css_js() {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
935
  global $bstwbsftwppdtplgns_options;
936
 
937
  if ( ! isset( $bstwbsftwppdtplgns_options ) )
946
  wp_enqueue_style( 'bws-custom-style', $bstwbsftwppdtplgns_options['custom_code']['bws-custom-code.css'] );
947
  elseif ( $is_multisite && ! empty( $bstwbsftwppdtplgns_options['custom_code'][ $blog_id ]['bws-custom-code.css'] ) )
948
  wp_enqueue_style( 'bws-custom-style', $bstwbsftwppdtplgns_options['custom_code'][ $blog_id ]['bws-custom-code.css'] );
949
+
950
+ if ( ! $is_multisite && ! empty( $bstwbsftwppdtplgns_options['custom_code']['bws-custom-code.js'] ) )
951
+ wp_enqueue_script( 'bws-custom-style', $bstwbsftwppdtplgns_options['custom_code']['bws-custom-code.js'] );
952
+ elseif ( $is_multisite && ! empty( $bstwbsftwppdtplgns_options['custom_code'][ $blog_id ]['bws-custom-code.js'] ) )
953
+ wp_enqueue_script( 'bws-custom-style', $bstwbsftwppdtplgns_options['custom_code'][ $blog_id ]['bws-custom-code.js'] );
954
  }
955
  }
956
  }
972
  $blog_id = get_current_blog_id();
973
 
974
  if ( ! $is_multisite && ! empty( $bstwbsftwppdtplgns_options['custom_code']['bws-custom-code.php'] ) ) {
975
+
976
  if ( file_exists( $bstwbsftwppdtplgns_options['custom_code']['bws-custom-code.php'] ) ) {
977
  if ( ! defined( 'BWS_GLOBAL' ) )
978
  define( 'BWS_GLOBAL', true );
1014
 
1015
  /* remove bws_menu versions */
1016
  unset( $bstwbsftwppdtplgns_options['bws_menu']['version'][ $basename ] );
1017
+ /* remove track usage data */
1018
+ if ( isset( $bstwbsftwppdtplgns_options['bws_menu']['track_usage']['products'][ $basename ] ) )
1019
+ unset( $bstwbsftwppdtplgns_options['bws_menu']['track_usage']['products'][ $basename ] );
1020
  /* if empty ['bws_menu']['version'] - there is no other bws plugins - delete all */
1021
  if ( empty( $bstwbsftwppdtplgns_options['bws_menu']['version'] ) ) {
1022
  /* remove options */
1023
+ if ( $is_multisite )
1024
  delete_site_option( 'bstwbsftwppdtplgns_options' );
1025
  else
1026
  delete_option( 'bstwbsftwppdtplgns_options' );
1049
  rmdir( $folder );
1050
  }
1051
  }
1052
+ }
1053
  }
1054
  }
1055
 
1060
 
1061
  add_action( 'admin_notices', 'bws_admin_notices', 30 );
1062
 
1063
+ add_action( 'wp_enqueue_scripts', 'bws_enqueue_custom_code_css_js', 20 );
1064
 
1065
  bws_enqueue_custom_code_php();
bws_menu/bws_include.php CHANGED
@@ -4,12 +4,21 @@
4
  */
5
 
6
  if ( ! function_exists ( 'bws_include_init' ) ) {
7
- function bws_include_init( $base ) {
8
  global $bstwbsftwppdtplgns_options, $bstwbsftwppdtplgns_added_menu;
9
  if ( ! function_exists( 'get_plugin_data' ) )
10
  require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
11
 
12
- $bws_menu_info = get_plugin_data( dirname( dirname( plugin_dir_path( __FILE__ ) ) ) . '/' . dirname( $base ) . '/bws_menu/bws_menu.php' );
 
 
 
 
 
 
 
 
 
13
  $bws_menu_version = $bws_menu_info["Version"];
14
 
15
  if ( ! isset( $bstwbsftwppdtplgns_options ) ) {
@@ -42,14 +51,17 @@ if ( ! function_exists ( 'bws_include_init' ) ) {
42
  require_once( dirname( __FILE__ ) . '/bws_menu.php' );
43
  require_once( dirname( __FILE__ ) . '/bws_functions.php' );
44
  } else if ( ! isset( $bstwbsftwppdtplgns_added_menu ) ) {
 
45
  $all_plugins = get_plugins();
 
 
46
  foreach ( $bstwbsftwppdtplgns_options['bws_menu']['version'] as $key => $value ) {
47
- if ( array_key_exists( $key, $all_plugins ) ) {
48
- if ( $bws_menu_version < $value && is_plugin_active( $base ) ) {
49
- if ( ! isset( $plugin_with_newer_menu ) )
50
- $plugin_with_newer_menu = $key;
51
- elseif ( $bstwbsftwppdtplgns_options['bws_menu']['version'][ $plugin_with_newer_menu ] < $bstwbsftwppdtplgns_options['bws_menu']['version'][ $key ] )
52
- $plugin_with_newer_menu = $key;
53
  }
54
  } else {
55
  unset( $bstwbsftwppdtplgns_options['bws_menu']['version'][ $key ] );
@@ -59,24 +71,31 @@ if ( ! function_exists ( 'bws_include_init' ) ) {
59
  update_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
60
  }
61
  }
62
- if ( ! isset( $plugin_with_newer_menu ) )
63
- $plugin_with_newer_menu = $base;
64
- $plugin_with_newer_menu = explode( '/', $plugin_with_newer_menu );
65
- $wp_content_dir = defined( 'WP_CONTENT_DIR' ) ? basename( WP_CONTENT_DIR ) : 'wp-content';
66
 
67
- if ( file_exists( ABSPATH . $wp_content_dir . '/plugins/' . $plugin_with_newer_menu[0] . '/bws_menu/bws_menu.php' ) ) {
68
- require_once( ABSPATH . $wp_content_dir . '/plugins/' . $plugin_with_newer_menu[0] . '/bws_menu/bws_menu.php' );
 
 
 
 
 
 
 
 
 
69
  } else {
70
- require_once( dirname( __FILE__ ) . '/bws_menu.php' );
71
  }
72
 
73
- if ( file_exists( ABSPATH . $wp_content_dir . '/plugins/' . $plugin_with_newer_menu[0] . '/bws_menu/bws_functions.php' ) ) {
74
- require_once( ABSPATH . $wp_content_dir . '/plugins/' . $plugin_with_newer_menu[0] . '/bws_menu/bws_functions.php' );
 
75
  } else {
 
76
  require_once( dirname( __FILE__ ) . '/bws_functions.php' );
77
  }
78
 
79
  $bstwbsftwppdtplgns_added_menu = true;
80
- }
81
  }
82
  }
4
  */
5
 
6
  if ( ! function_exists ( 'bws_include_init' ) ) {
7
+ function bws_include_init( $base, $bws_menu_source = 'plugins' ) {
8
  global $bstwbsftwppdtplgns_options, $bstwbsftwppdtplgns_added_menu;
9
  if ( ! function_exists( 'get_plugin_data' ) )
10
  require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
11
 
12
+ $wp_content_dir = defined( 'WP_CONTENT_DIR' ) ? WP_CONTENT_DIR : ABSPATH . 'wp-content';
13
+ $wp_plugins_dir = defined( 'WP_PLUGIN_DIR' ) ? WP_PLUGIN_DIR : $wp_content_dir . '/plugins';
14
+
15
+ if ( $bws_menu_source == 'plugins' ) {
16
+ $bws_menu_dir = $wp_plugins_dir . '/' . dirname( $base ) . '/bws_menu/bws_menu.php';
17
+ } else {
18
+ $bws_menu_dir = $wp_content_dir . '/themes/' . $base . '/inc/bws_menu/bws_menu.php';
19
+ }
20
+
21
+ $bws_menu_info = get_plugin_data( $bws_menu_dir );
22
  $bws_menu_version = $bws_menu_info["Version"];
23
 
24
  if ( ! isset( $bstwbsftwppdtplgns_options ) ) {
51
  require_once( dirname( __FILE__ ) . '/bws_menu.php' );
52
  require_once( dirname( __FILE__ ) . '/bws_functions.php' );
53
  } else if ( ! isset( $bstwbsftwppdtplgns_added_menu ) ) {
54
+
55
  $all_plugins = get_plugins();
56
+ $all_themes = wp_get_themes();
57
+
58
  foreach ( $bstwbsftwppdtplgns_options['bws_menu']['version'] as $key => $value ) {
59
+ if ( array_key_exists( $key, $all_plugins ) || array_key_exists( $key, $all_themes ) ) {
60
+ if ( $bws_menu_version < $value && ( is_plugin_active( $key ) || preg_match( '|' . $key . '$|', get_template_directory() ) ) ) {
61
+ if ( ! isset( $product_with_newer_menu ) )
62
+ $product_with_newer_menu = $key;
63
+ elseif ( $bstwbsftwppdtplgns_options['bws_menu']['version'][ $product_with_newer_menu ] < $bstwbsftwppdtplgns_options['bws_menu']['version'][ $key ] )
64
+ $product_with_newer_menu = $key;
65
  }
66
  } else {
67
  unset( $bstwbsftwppdtplgns_options['bws_menu']['version'][ $key ] );
71
  update_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
72
  }
73
  }
 
 
 
 
74
 
75
+ if ( ! isset( $product_with_newer_menu ) )
76
+ $product_with_newer_menu = $base;
77
+
78
+ $folder_with_newer_menu = explode( '/', $product_with_newer_menu );
79
+
80
+ if ( array_key_exists( $product_with_newer_menu, $all_plugins ) ) {
81
+ $bws_menu_source = 'plugins';
82
+ $bws_menu_new_dir = $wp_plugins_dir . '/' . $folder_with_newer_menu[0];
83
+ } else if ( array_key_exists( $product_with_newer_menu, $all_themes ) ) {
84
+ $bws_menu_source = 'themes';
85
+ $bws_menu_new_dir = $wp_content_dir . '/themes/' . $folder_with_newer_menu[0] . '/inc';
86
  } else {
87
+ $bws_menu_new_dir = '';
88
  }
89
 
90
+ if ( file_exists( $bws_menu_new_dir . '/bws_menu/bws_functions.php' ) ) {
91
+ require_once( $bws_menu_new_dir . '/bws_menu/bws_functions.php' );
92
+ require_once( $bws_menu_new_dir . '/bws_menu/bws_menu.php' );
93
  } else {
94
+ require_once( dirname( __FILE__ ) . '/bws_menu.php' );
95
  require_once( dirname( __FILE__ ) . '/bws_functions.php' );
96
  }
97
 
98
  $bstwbsftwppdtplgns_added_menu = true;
99
+ }
100
  }
101
  }
bws_menu/bws_menu.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  * Function for displaying BestWebSoft menu
4
- * Version: 1.9.5
5
  */
6
 
7
  if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) )
@@ -12,13 +12,25 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
12
  global $wpdb, $wp_version, $bws_plugin_info, $bstwbsftwppdtplgns_options;
13
  $error = $message = $bwsmn_form_email = '';
14
 
15
- if ( 'bws_panel' == $_GET['page'] ) {
 
 
 
 
 
 
 
 
 
 
 
 
16
 
17
  if ( ! function_exists( 'is_plugin_active_for_network' ) )
18
  require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
19
 
20
  /* get $bws_plugins */
21
- require_once( dirname( __FILE__ ) . '/product_list.php' );
22
 
23
  $all_plugins = get_plugins();
24
  $active_plugins = get_option( 'active_plugins' );
@@ -111,25 +123,25 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
111
  if ( is_array( $response ) && !empty( $response ) ) {
112
  foreach ( $response as $key => $value ) {
113
  if ( "wrong_license_key" == $value->package ) {
114
- $error = __( "Wrong license key", 'bestwebsoft' );
115
  } elseif ( "wrong_domain" == $value->package ) {
116
- $error = __( 'This license key is bind to another website. Change it via personal Client Area.', 'bestwebsoft' ) . '<a target="_blank" href="http://bestwebsoft.com/wp-admin/admin.php?page=client-area">' . __( 'Log in', 'bestwebsoft' ) . '</a>';
117
  } elseif ( "you_are_banned" == $value->package ) {
118
  $error = __( "Unfortunately, you have exceeded the number of available tries per day.", 'bestwebsoft' );
119
  } elseif ( "time_out" == $value->package ) {
120
- $error = __( "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates you should extend it in your", 'bestwebsoft' ) . ' <a target="_blank" href="http://bestwebsoft.com/wp-admin/admin.php?page=client-area">Client Area</a>';
121
  } elseif ( "duplicate_domen_for_trial" == $value->package ) {
122
  $error = __( "Unfortunately, the Pro licence was already installed to this domain. The Pro Trial license can be installed only once.", 'bestwebsoft' );
123
  } elseif ( is_array( $value->package ) && ! empty( $value->package ) ) {
124
  $plugins_array = $_SESSION['bws_membership_list'] = $value->package;
125
  $_SESSION['bws_membership_time_check'] = strtotime( 'now' );
126
 
127
- if ( $bws_license_key == $bstwbsftwppdtplgns_options[ $bws_license_plugin ] ) {
128
  $message = __( 'The license key is valid.', 'bestwebsoft' );
129
  if ( isset( $value->time_out ) && $value->time_out != '' )
130
  $message .= ' ' . __( 'Your license will expire on', 'bestwebsoft' ) . ' ' . $value->time_out . '.';
131
  } else {
132
- $message = __( 'Congratulations! Pro Membership license is successfully activated.', 'bestwebsoft' );
133
  }
134
 
135
  $bstwbsftwppdtplgns_options[ $bws_license_plugin ] = $bws_license_key;
@@ -149,9 +161,8 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
149
  $error = __( "Please enter your license key.", 'bestwebsoft' );
150
  }
151
  }
152
- }
153
 
154
- if ( 'bws_system_status' == $_GET['page'] ) {
155
  $all_plugins = get_plugins();
156
  $active_plugins = get_option( 'active_plugins' );
157
  $mysql_info = $wpdb->get_results( "SHOW VARIABLES LIKE 'sql_mode'" );
@@ -166,6 +177,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
166
  $post_max_size = ( ini_get( 'post_max_size' ) ) ? ini_get( 'post_max_size' ) : __( 'N/A', 'bestwebsoft' );
167
  $max_execution_time = ( ini_get( 'max_execution_time' ) ) ? ini_get( 'max_execution_time' ) : __( 'N/A', 'bestwebsoft' );
168
  $memory_limit = ( ini_get( 'memory_limit' ) ) ? ini_get( 'memory_limit' ) : __( 'N/A', 'bestwebsoft' );
 
169
  $memory_usage = ( function_exists( 'memory_get_usage' ) ) ? round( memory_get_usage() / 1024 / 1024, 2 ) . __( ' Mb', 'bestwebsoft' ) : __( 'N/A', 'bestwebsoft' );
170
  $exif_read_data = ( is_callable( 'exif_read_data' ) ) ? __( 'Yes', 'bestwebsoft' ) . " ( V" . substr( phpversion( 'exif' ), 0,4 ) . ")" : __( 'No', 'bestwebsoft' );
171
  $iptcparse = ( is_callable( 'iptcparse' ) ) ? __( 'Yes', 'bestwebsoft' ) : __( 'No', 'bestwebsoft' );
@@ -173,53 +185,75 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
173
  $theme = ( function_exists( 'wp_get_theme' ) ) ? wp_get_theme() : get_theme( get_current_theme() );
174
 
175
  if ( function_exists( 'is_multisite' ) ) {
176
- if ( is_multisite() )
177
- $multisite = __( 'Yes', 'bestwebsoft' );
178
- else
179
- $multisite = __( 'No', 'bestwebsoft' );
180
  } else {
181
  $multisite = __( 'N/A', 'bestwebsoft' );
182
  }
183
 
184
  $system_info = array(
185
- 'system_info' => '',
186
- 'active_plugins' => '',
187
- 'inactive_plugins' => ''
188
- );
189
- $system_info['system_info'] = array(
190
- __( 'Operating System', 'bestwebsoft' ) => PHP_OS,
191
- __( 'Server', 'bestwebsoft' ) => $_SERVER["SERVER_SOFTWARE"],
192
- __( 'Memory usage', 'bestwebsoft' ) => $memory_usage,
193
- __( 'MYSQL Version', 'bestwebsoft' ) => $wpdb->get_var( "SELECT VERSION() AS version" ),
194
- __( 'SQL Mode', 'bestwebsoft' ) => $sql_mode,
195
- __( 'PHP Version', 'bestwebsoft' ) => PHP_VERSION,
196
- __( 'PHP Safe Mode', 'bestwebsoft' ) => $safe_mode,
197
- __( 'PHP Allow URL fopen', 'bestwebsoft' ) => $allow_url_fopen,
198
- __( 'PHP Memory Limit', 'bestwebsoft' ) => $memory_limit,
199
- __( 'PHP Max Upload Size', 'bestwebsoft' ) => $upload_max_filesize,
200
- __( 'PHP Max Post Size', 'bestwebsoft' ) => $post_max_size,
201
- __( 'PHP Max Script Execute Time', 'bestwebsoft' ) => $max_execution_time,
202
- __( 'PHP Exif support', 'bestwebsoft' ) => $exif_read_data,
203
- __( 'PHP IPTC support', 'bestwebsoft' ) => $iptcparse,
204
- __( 'PHP XML support', 'bestwebsoft' ) => $xml_parser_create,
205
- __( 'Site URL', 'bestwebsoft' ) => get_option( 'siteurl' ),
206
- __( 'Home URL', 'bestwebsoft' ) => home_url(),
207
- '$_SERVER[HTTP_HOST]' => $_SERVER['HTTP_HOST'],
208
- '$_SERVER[SERVER_NAME]' => $_SERVER['SERVER_NAME'],
209
- __( 'WordPress Version', 'bestwebsoft' ) => $wp_version,
210
- __( 'WordPress DB Version', 'bestwebsoft' ) => get_option( 'db_version' ),
211
- __( 'Multisite', 'bestwebsoft' ) => $multisite,
212
- __( 'Active Theme', 'bestwebsoft' ) => $theme['Name'] . ' ' . $theme['Version']
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
213
  );
 
214
  foreach ( $all_plugins as $path => $plugin ) {
215
- if ( is_plugin_active( $path ) )
216
- $system_info['active_plugins'][ $plugin['Name'] ] = $plugin['Version'];
217
- else
218
- $system_info['inactive_plugins'][ $plugin['Name'] ] = $plugin['Version'];
 
 
 
 
219
  }
220
 
221
-
222
- if ( ( isset( $_REQUEST['bwsmn_form_submit'] ) && check_admin_referer( plugin_basename(__FILE__), 'bwsmn_nonce_submit' ) ) || ( isset( $_REQUEST['bwsmn_form_submit_custom_email'] ) && check_admin_referer( plugin_basename(__FILE__), 'bwsmn_nonce_submit_custom_email' ) ) ) {
223
  if ( isset( $_REQUEST['bwsmn_form_email'] ) ) {
224
  $bwsmn_form_email = esc_html( trim( $_REQUEST['bwsmn_form_email'] ) );
225
  if ( $bwsmn_form_email == "" || ! is_email( $bwsmn_form_email ) ) {
@@ -227,7 +261,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
227
  } else {
228
  $email = $bwsmn_form_email;
229
  $bwsmn_form_email = '';
230
- $message = __( 'Email with system info is sent to ', 'bestwebsoft' ) . $email;
231
  }
232
  } else {
233
  $email = 'plugin_system_status@bestwebsoft.com';
@@ -238,28 +272,18 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
238
  $headers = 'MIME-Version: 1.0' . "\n";
239
  $headers .= 'Content-type: text/html; charset=utf-8' . "\n";
240
  $headers .= 'From: ' . get_option( 'admin_email' );
241
- $message_text = '<html><head><title>System Info From ' . home_url() . '</title></head><body>
242
- <h4>Environment</h4>
243
- <table>';
244
- foreach ( $system_info['system_info'] as $key => $value ) {
245
- $message_text .= '<tr><td>'. $key .'</td><td>'. $value .'</td></tr>';
246
- }
247
- $message_text .= '</table>';
248
- if ( ! empty( $system_info['active_plugins'] ) ) {
249
- $message_text .= '<h4>Active Plugins</h4>
250
- <table>';
251
- foreach ( $system_info['active_plugins'] as $key => $value ) {
252
- $message_text .= '<tr><td scope="row">'. $key .'</td><td scope="row">'. $value .'</td></tr>';
253
- }
254
- $message_text .= '</table>';
255
- }
256
- if ( ! empty( $system_info['inactive_plugins'] ) ) {
257
- $message_text .= '<h4>Inactive Plugins</h4>
258
- <table>';
259
- foreach ( $system_info['inactive_plugins'] as $key => $value ) {
260
- $message_text .= '<tr><td scope="row">'. $key .'</td><td scope="row">'. $value .'</td></tr>';
261
  }
262
- $message_text .= '</table>';
263
  }
264
  $message_text .= '</body></html>';
265
  $result = wp_mail( $email, 'System Info From ' . home_url(), $message_text, $headers );
@@ -271,25 +295,31 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
271
  <div class="bws-wrap">
272
  <div class="bws-header">
273
  <div class="bws-title">
274
- <a href="<?php echo self_admin_url( 'admin.php?page=bws_panel' ); ?>">
275
- <img class="bws-logo" src="<?php echo plugins_url( 'images/bestwebsoft-logo-white.svg', __FILE__ ); ?>" />
276
  BestWebSoft
277
  <span>panel</span>
278
  </a>
279
  </div>
280
- <div class="bws-menu-item-icon">&#8226;&#8226;&#8226;</div>
281
  <div class="bws-nav-tab-wrapper">
282
- <a class="bws-nav-tab<?php if ( 'bws_panel' == $_GET['page'] ) echo ' bws-nav-tab-active'; ?>" href="admin.php?page=bws_panel"><?php _e( 'Plugins', 'bestwebsoft' ); ?></a>
283
- <a class="bws-nav-tab<?php if ( 'bws_themes' == $_GET['page'] ) echo ' bws-nav-tab-active'; ?>" href="<?php echo self_admin_url( 'admin.php?page=bws_themes' ); ?>"><?php _e( 'Themes', 'bestwebsoft' ); ?></a>
 
 
 
 
 
 
 
284
  </div>
285
  <div class="bws-help-links-wrapper">
286
- <a <?php if ( 'bws_system_status' == $_GET['page'] ) echo ' class="bws-nav-tab-active"'; ?> href="<?php echo self_admin_url( 'admin.php?page=bws_system_status' ); ?>"><?php _e( 'System status', 'bestwebsoft' ); ?></a>
287
  <a href="<?php echo esc_url( 'http://support.bestwebsoft.com/home' ); ?>" target="_blank"><?php _e( 'Support', 'bestwebsoft' ); ?></a>
288
- <a href="<?php echo esc_url( 'http://bestwebsoft.com/wp-admin/admin.php?page=client-area' ); ?>" target="_blank" title="<?php _e( 'Manage purchased licenses & subscriptions', 'bestwebsoft' ); ?>"><?php _e( 'Client Area', 'bestwebsoft' ); ?></a>
289
  </div>
290
  <div class="clear"></div>
291
  </div>
292
- <?php if ( 'bws_panel' == $_GET['page'] && ! isset( $_POST['bws_plugin_action_submit'] ) ) { ?>
293
  <div class="bws-membership-wrap">
294
  <div class="bws-membership-backround"></div>
295
  <div class="bws-membership">
@@ -324,7 +354,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
324
  </div>
325
  <?php } ?>
326
  <div class="bws-wrap-content wrap">
327
- <?php if ( 'bws_panel' == $_GET['page'] ) { ?>
328
  <div class="updated notice is-dismissible inline" <?php if ( '' == $message || '' != $error ) echo "style=\"display:none\""; ?>><p><?php echo $message; ?></p></div>
329
  <h1>
330
  <?php _e( 'Plugins', 'bestwebsoft' ); ?>
@@ -394,7 +424,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
394
  $error = __( "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually", 'bestwebsoft' );
395
  }
396
  if ( empty( $error ) )
397
- echo '<p>' . __( 'Successfully installed the plugin', 'bestwebsoft' ) . ' <strong>' . $plugins_array[ $bws_license_plugin ]['name'] . '</strong></p>';
398
 
399
  @unlink( $file_put_contents );
400
  } else {
@@ -406,19 +436,19 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
406
  }
407
 
408
  if ( file_exists( WP_PLUGIN_DIR . '/' . $zip_name[0] ) ) {
409
- echo '<p><a href="' . wp_nonce_url( 'admin.php?page=bws_panel&amp;bws_activate_plugin=' . $bws_license_plugin, 'bws_activate_plugin' . $bws_license_plugin ) . '" target="_parent">' . __( 'Activate Plugin', 'bestwebsoft' ) . '</a> | <a href="' . self_admin_url( 'admin.php?page=bws_panel' ) . '" target="_parent">' . __( 'Return to BestWebSoft Panel', 'bestwebsoft' ) . '</a></p>';
410
  } else {
411
  if ( empty( $error ) )
412
  $error = __( "Failed to download the zip archive. Please, upload the plugin manually", 'bestwebsoft' );
413
 
414
  echo '<p class="error">' . $error . '</p>';
415
- echo '<p><a href="' . self_admin_url( 'admin.php?page=bws_panel' ) . '" target="_parent">' . __( 'Return to BestWebSoft Panel', 'bestwebsoft' ) . '</a></p>';
416
  }
417
  } else { ?>
418
  <ul class="subsubsub">
419
- <li><a <?php if ( !isset( $_GET['sub'] ) ) echo 'class="current" '; ?>href="admin.php?page=bws_panel<?php if ( 'all' != $plugin_category ) echo '&amp;category=' . $plugin_category; ?>"><?php _e( 'All', 'bestwebsoft' ); ?></a></li> |
420
- <li><a <?php if ( isset( $_GET['sub'] ) && 'installed' == $_GET['sub'] ) echo 'class="current" '; ?>href="admin.php?page=bws_panel&amp;sub=installed<?php if ( 'all' != $plugin_category ) echo '&amp;category=' . $plugin_category; ?>"><?php _e( 'Installed', 'bestwebsoft' ); ?></a></li> |
421
- <li><a <?php if ( isset( $_GET['sub'] ) && 'not_installed' == $_GET['sub'] ) echo 'class="current" '; ?>href="admin.php?page=bws_panel&amp;sub=not_installed<?php if ( 'all' != $plugin_category ) echo '&amp;category=' . $plugin_category; ?>"><?php _e( 'Not Installed', 'bestwebsoft' ); ?></a></li>
422
  </ul>
423
  <div class="clear"></div>
424
  <div class="bws-filter-top">
@@ -431,13 +461,13 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
431
  <ul class="bws-category">
432
  <li>
433
  <?php $sub_in_url = ( isset( $_GET['sub'] ) && in_array( $_GET['sub'], array( 'installed', 'not_installed' ) ) ) ? '&amp;sub=' . $_GET['sub'] : ''; ?>
434
- <a <?php if ( 'all' == $plugin_category ) echo ' class="bws-active"'; ?> href="<?php echo self_admin_url( 'admin.php?page=bws_panel' . $sub_in_url ); ?>"><?php _e( 'All', 'bestwebsoft' ); ?>
435
  <span>(<?php echo count( $bws_plugins ); ?>)</span>
436
  </a>
437
  </li>
438
  <?php foreach ( $bws_plugins_category as $category_key => $category_value ) { ?>
439
  <li>
440
- <a <?php if ( $category_key == $plugin_category ) echo ' class="bws-active"'; ?> href="<?php echo esc_url( self_admin_url( 'admin.php?page=bws_panel' . $sub_in_url . '&amp;category=' . $category_key ) ); ?>"><?php echo $category_value['name']; ?>
441
  <span>(<?php echo $category_value['count']; ?>)</span>
442
  </a>
443
  </li>
@@ -530,7 +560,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
530
  <?php }
531
  } else {
532
  if ( $is_pro_installed ) { ?>
533
- <a class="button button-secondary" href="<?php echo wp_nonce_url( 'admin.php?page=bws_panel&amp;bws_activate_plugin=' . $value_plugin['pro_version'], 'bws_activate_plugin' . $value_plugin['pro_version'] ); ?>" title="<?php _e( 'Activate this plugin', 'bestwebsoft' ); ?>"><?php _e( 'Activate', 'bestwebsoft' ); ?></a>
534
  <?php } elseif ( ! empty( $plugins_array ) && isset( $value_plugin['pro_version'] ) && array_key_exists( $value_plugin['pro_version'], $plugins_array ) ) { ?>
535
  <form method="post" action="">
536
  <input type="submit" class="button button-secondary" value="<?php _e( 'Install Now', 'bestwebsoft' ); ?>" />
@@ -539,9 +569,9 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
539
  <?php wp_nonce_field( plugin_basename(__FILE__), 'bws_license_install_nonce_name' ); ?>
540
  </form>
541
  <?php } elseif ( $is_installed ) { ?>
542
- <a class="button button-secondary" href="<?php echo wp_nonce_url( 'admin.php?page=bws_panel&amp;bws_activate_plugin=' . $key_plugin, 'bws_activate_plugin' . $key_plugin ); ?>" title="<?php _e( 'Activate this plugin', 'bestwebsoft' ); ?>"><?php _e( 'Activate', 'bestwebsoft' ); ?></a>
543
  <?php } else {
544
- $install_url = isset( $value_plugin['install_url'] ) ? $value_plugin['install_url'] : esc_url( self_admin_url( 'plugin-install.php?tab=search&type=term&s=' . str_replace( ' ', '+', $value_plugin['name'] ) . '+BestWebSoft&plugin-search-input=Search+Plugins' ) ); ?>
545
  <a class="button button-secondary" href="<?php echo $install_url; ?>" title="<?php _e( 'Install this plugin', 'bestwebsoft' ); ?>" target="_blank"><?php _e( 'Install Now', 'bestwebsoft' ); ?></a>
546
  <?php }
547
  } ?>
@@ -560,13 +590,13 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
560
  <ul class="bws-category">
561
  <li>
562
  <?php $sub_in_url = ( isset( $_GET['sub'] ) && in_array( $_GET['sub'], array( 'installed', 'not_installed' ) ) ) ? '&amp;sub=' . $_GET['sub'] : ''; ?>
563
- <a <?php if ( 'all' == $plugin_category ) echo ' class="bws-active"'; ?> href="<?php echo self_admin_url( 'admin.php?page=bws_panel' . $sub_in_url ); ?>"><?php _e( 'All', 'bestwebsoft' ); ?>
564
  <span>(<?php echo count( $bws_plugins ); ?>)</span>
565
  </a>
566
  </li>
567
  <?php foreach ( $bws_plugins_category as $category_key => $category_value ) { ?>
568
  <li>
569
- <a <?php if ( $category_key == $plugin_category ) echo ' class="bws-active"'; ?> href="<?php echo esc_url( self_admin_url( 'admin.php?page=bws_panel' . $sub_in_url . '&amp;category=' . $category_key ) ); ?>"><?php echo $category_value['name']; ?>
570
  <span>(<?php echo $category_value['count']; ?>)</span>
571
  </a>
572
  </li>
@@ -576,8 +606,8 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
576
  </div><!-- #bws-filter-wrapper -->
577
  <div class="clear"></div>
578
  <?php }
579
- } elseif ( 'bws_themes' == $_GET['page'] ) {
580
- require_once( dirname( __FILE__ ) . '/product_list.php' ); ?>
581
  <h1><?php _e( 'Themes', 'bestwebsoft' ); ?></h1>
582
  <div id="availablethemes" class="bws-availablethemes">
583
  <?php if ( $wp_version < '3.9' ) {
@@ -585,7 +615,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
585
  <div class="available-theme installable-theme"><?php
586
  $installed_theme = wp_get_theme( $theme->slug ); ?>
587
  <a class="screenshot" href="<?php echo esc_url( $theme->href ); ?>">
588
- <img src="<?php echo plugins_url( "icons/themes/" , __FILE__ ) . $theme->slug . '.png'; ?>" width='150' />
589
  </a>
590
  <h3><?php echo $theme->name; ?></h3>
591
  <div class="theme-author"><?php printf( __( 'By %s', 'bestwebsoft' ), 'BestWebSoft' ); ?></div>
@@ -606,7 +636,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
606
  $installed_theme = wp_get_theme( $theme->slug ); ?>
607
  <div class="theme" tabindex="0">
608
  <div class="theme-screenshot">
609
- <img src="<?php echo plugins_url( "icons/themes/" , __FILE__ ) . $theme->slug . '.png'; ?>" alt="" />
610
  </div>
611
  <div class="theme-author"><?php printf( __( 'By %s', 'bestwebsoft' ), 'BestWebSoft' ); ?></div>
612
  <h3 class="theme-name"><?php echo $theme->name; ?></h3>
@@ -628,7 +658,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
628
  <?php } ?>
629
  <p><a class="bws_browse_link" href="http://bestweblayout.com/categories/themes/" target="_blank"><?php _e( 'Browse Free WordPress Themes', 'bestwebsoft' ); ?> <span class="dashicons dashicons-arrow-right-alt2"></span></a></p>
630
  </div>
631
- <?php } elseif ( 'bws_system_status' == $_GET['page'] ) { ?>
632
  <h1><?php _e( 'System status', 'bestwebsoft' ); ?></h1>
633
  <div class="updated fade notice is-dismissible inline" <?php if ( ! ( isset( $_REQUEST['bwsmn_form_submit'] ) || isset( $_REQUEST['bwsmn_form_submit_custom_email'] ) ) || $error != "" ) echo "style=\"display:none\""; ?>><p><strong><?php echo $message; ?></strong></p></div>
634
  <div class="error" <?php if ( "" == $error ) echo "style=\"display:none\""; ?>><p><strong><?php echo $error; ?></strong></p></div>
@@ -647,47 +677,30 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
647
  <?php wp_nonce_field( plugin_basename(__FILE__), 'bwsmn_nonce_submit_custom_email' ); ?>
648
  </p>
649
  </form>
650
- <div class="inside">
651
- <table class="bws_system_info">
652
- <thead><tr><th><?php _e( 'Environment', 'bestwebsoft' ); ?></th><td></td></tr></thead>
653
- <tbody>
654
- <?php foreach ( $system_info['system_info'] as $key => $value ) { ?>
655
  <tr>
656
- <td scope="row"><?php echo $key; ?></td>
657
- <td scope="row"><?php echo $value; ?></td>
 
 
 
 
 
658
  </tr>
659
- <?php } ?>
660
- </tbody>
661
- </table>
662
- <table class="bws_system_info">
663
- <thead><tr><th><?php _e( 'Active Plugins', 'bestwebsoft' ); ?></th><th></th></tr></thead>
664
- <tbody>
665
- <?php if ( ! empty( $system_info['active_plugins'] ) ) {
666
- foreach ( $system_info['active_plugins'] as $key => $value ) { ?>
667
- <tr>
668
- <td scope="row"><?php echo $key; ?></td>
669
- <td scope="row"><?php echo $value; ?></td>
670
- </tr>
671
- <?php }
672
- } ?>
673
- </tbody>
674
- </table>
675
- <table class="bws_system_info">
676
- <thead><tr><th><?php _e( 'Inactive Plugins', 'bestwebsoft' ); ?></th><th></th></tr></thead>
677
  <tbody>
678
- <?php if ( ! empty( $system_info['inactive_plugins'] ) ) {
679
- foreach ( $system_info['inactive_plugins'] as $key => $value ) { ?>
680
  <tr>
681
  <td scope="row"><?php echo $key; ?></td>
682
  <td scope="row"><?php echo $value; ?></td>
683
  </tr>
684
- <?php }
685
- } ?>
686
  </tbody>
687
  </table>
688
- <div class="clear"></div>
689
- </div>
690
- <?php } ?>
691
  </div>
692
  </div>
693
  <?php }
1
  <?php
2
  /*
3
  * Function for displaying BestWebSoft menu
4
+ * Version: 1.9.8
5
  */
6
 
7
  if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) )
12
  global $wpdb, $wp_version, $bws_plugin_info, $bstwbsftwppdtplgns_options;
13
  $error = $message = $bwsmn_form_email = '';
14
 
15
+ /**
16
+ * @deprecated 1.9.8 (15.12.2016)
17
+ */
18
+ $is_main_page = in_array( $_GET['page'], array( 'bws_panel', 'bws_themes', 'bws_system_status' ) );
19
+ $page = esc_attr( $_GET['page'] );
20
+ $tab = isset( $_GET['tab'] ) ? esc_attr( $_GET['tab'] ) : '';
21
+
22
+ if ( $is_main_page )
23
+ $current_page = 'admin.php?page=' . $page;
24
+ else
25
+ $current_page = isset( $_GET['tab'] ) ? 'admin.php?page=' . $page . '&tab=' . $tab : 'admin.php?page=' . $page;
26
+
27
+ if ( 'bws_panel' == $page || ( ! $is_main_page && '' == $tab ) ) {
28
 
29
  if ( ! function_exists( 'is_plugin_active_for_network' ) )
30
  require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
31
 
32
  /* get $bws_plugins */
33
+ require( dirname( __FILE__ ) . '/product_list.php' );
34
 
35
  $all_plugins = get_plugins();
36
  $active_plugins = get_option( 'active_plugins' );
123
  if ( is_array( $response ) && !empty( $response ) ) {
124
  foreach ( $response as $key => $value ) {
125
  if ( "wrong_license_key" == $value->package ) {
126
+ $error = __( "Wrong license key.", 'bestwebsoft' );
127
  } elseif ( "wrong_domain" == $value->package ) {
128
+ $error = __( 'This license key is bound to another site. Change it via personal Client Area.', 'bestwebsoft' ) . '<a target="_blank" href="http://bestwebsoft.com/client-area">' . __( 'Log in', 'bestwebsoft' ) . '</a>';
129
  } elseif ( "you_are_banned" == $value->package ) {
130
  $error = __( "Unfortunately, you have exceeded the number of available tries per day.", 'bestwebsoft' );
131
  } elseif ( "time_out" == $value->package ) {
132
+ $error = sprintf( __( "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates, you should extend it in your %s", 'bestwebsoft' ), ' <a href="http://bestwebsoft.com/client-area">Client Area</a>' );
133
  } elseif ( "duplicate_domen_for_trial" == $value->package ) {
134
  $error = __( "Unfortunately, the Pro licence was already installed to this domain. The Pro Trial license can be installed only once.", 'bestwebsoft' );
135
  } elseif ( is_array( $value->package ) && ! empty( $value->package ) ) {
136
  $plugins_array = $_SESSION['bws_membership_list'] = $value->package;
137
  $_SESSION['bws_membership_time_check'] = strtotime( 'now' );
138
 
139
+ if ( isset( $bstwbsftwppdtplgns_options[ $bws_license_plugin ] ) && $bws_license_key == $bstwbsftwppdtplgns_options[ $bws_license_plugin ] ) {
140
  $message = __( 'The license key is valid.', 'bestwebsoft' );
141
  if ( isset( $value->time_out ) && $value->time_out != '' )
142
  $message .= ' ' . __( 'Your license will expire on', 'bestwebsoft' ) . ' ' . $value->time_out . '.';
143
  } else {
144
+ $message = __( 'Congratulations! Pro Membership license is activated successfully.', 'bestwebsoft' );
145
  }
146
 
147
  $bstwbsftwppdtplgns_options[ $bws_license_plugin ] = $bws_license_key;
161
  $error = __( "Please enter your license key.", 'bestwebsoft' );
162
  }
163
  }
164
+ } elseif ( 'bws_system_status' == $page || 'system-status' == $tab ) {
165
 
 
166
  $all_plugins = get_plugins();
167
  $active_plugins = get_option( 'active_plugins' );
168
  $mysql_info = $wpdb->get_results( "SHOW VARIABLES LIKE 'sql_mode'" );
177
  $post_max_size = ( ini_get( 'post_max_size' ) ) ? ini_get( 'post_max_size' ) : __( 'N/A', 'bestwebsoft' );
178
  $max_execution_time = ( ini_get( 'max_execution_time' ) ) ? ini_get( 'max_execution_time' ) : __( 'N/A', 'bestwebsoft' );
179
  $memory_limit = ( ini_get( 'memory_limit' ) ) ? ini_get( 'memory_limit' ) : __( 'N/A', 'bestwebsoft' );
180
+ $wp_memory_limit = ( defined( 'WP_MEMORY_LIMIT' ) ) ? WP_MEMORY_LIMIT : __( 'N/A', 'bestwebsoft' );
181
  $memory_usage = ( function_exists( 'memory_get_usage' ) ) ? round( memory_get_usage() / 1024 / 1024, 2 ) . __( ' Mb', 'bestwebsoft' ) : __( 'N/A', 'bestwebsoft' );
182
  $exif_read_data = ( is_callable( 'exif_read_data' ) ) ? __( 'Yes', 'bestwebsoft' ) . " ( V" . substr( phpversion( 'exif' ), 0,4 ) . ")" : __( 'No', 'bestwebsoft' );
183
  $iptcparse = ( is_callable( 'iptcparse' ) ) ? __( 'Yes', 'bestwebsoft' ) : __( 'No', 'bestwebsoft' );
185
  $theme = ( function_exists( 'wp_get_theme' ) ) ? wp_get_theme() : get_theme( get_current_theme() );
186
 
187
  if ( function_exists( 'is_multisite' ) ) {
188
+ $multisite = is_multisite() ? __( 'Yes', 'bestwebsoft' ) : __( 'No', 'bestwebsoft' );
 
 
 
189
  } else {
190
  $multisite = __( 'N/A', 'bestwebsoft' );
191
  }
192
 
193
  $system_info = array(
194
+ 'wp_environment' => array(
195
+ 'name' => __( 'WordPress Environment', 'bestwebsoft' ),
196
+ 'data' => array(
197
+ __( 'Home URL', 'bestwebsoft' ) => home_url(),
198
+ __( 'Website URL', 'bestwebsoft' ) => get_option( 'siteurl' ),
199
+ __( 'WP Version', 'bestwebsoft' ) => $wp_version,
200
+ __( 'WP Multisite', 'bestwebsoft' ) => $multisite,
201
+ __( 'WP Memory Limit', 'bestwebsoft' ) => $wp_memory_limit,
202
+ __( 'Active Theme', 'bestwebsoft' ) => $theme['Name'] . ' ' . $theme['Version'] . ' (' . sprintf( __( 'by %s', 'bestwebsoft' ), $theme['Author'] ) . ')'
203
+ ),
204
+ ),
205
+ 'server_environment' => array(
206
+ 'name' => __( 'Server Environment', 'bestwebsoft' ),
207
+ 'data' => array(
208
+ __( 'Operating System', 'bestwebsoft' ) => PHP_OS,
209
+ __( 'Server', 'bestwebsoft' ) => $_SERVER["SERVER_SOFTWARE"],
210
+ __( 'PHP Version', 'bestwebsoft' ) => PHP_VERSION,
211
+ __( 'PHP Safe Mode', 'bestwebsoft' ) => $safe_mode,
212
+ __( 'PHP Allow URL fopen', 'bestwebsoft' ) => $allow_url_fopen,
213
+ __( 'PHP Memory Limit', 'bestwebsoft' ) => $memory_limit,
214
+ __( 'Memory Usage', 'bestwebsoft' ) => $memory_usage,
215
+ __( 'PHP Max Upload Size', 'bestwebsoft' ) => $upload_max_filesize,
216
+ __( 'PHP Max Post Size', 'bestwebsoft' ) => $post_max_size,
217
+ __( 'PHP Max Script Execute Time', 'bestwebsoft' ) => $max_execution_time,
218
+ __( 'PHP Exif support', 'bestwebsoft' ) => $exif_read_data,
219
+ __( 'PHP IPTC support', 'bestwebsoft' ) => $iptcparse,
220
+ __( 'PHP XML support', 'bestwebsoft' ) => $xml_parser_create,
221
+ '$_SERVER[HTTP_HOST]' => $_SERVER['HTTP_HOST'],
222
+ '$_SERVER[SERVER_NAME]' => $_SERVER['SERVER_NAME'],
223
+ ),
224
+ ),
225
+ 'db' => array(
226
+ 'name' => __( 'Database', 'bestwebsoft' ),
227
+ 'data' => array(
228
+ __( 'WP DB version', 'bestwebsoft' ) => get_option( 'db_version' ),
229
+ __( 'MySQL version', 'bestwebsoft' ) => $wpdb->get_var( "SELECT VERSION() AS version" ),
230
+ __( 'SQL Mode', 'bestwebsoft' ) => $sql_mode,
231
+ ),
232
+ ),
233
+ 'active_plugins' => array(
234
+ 'name' => __( 'Active Plugins', 'bestwebsoft' ),
235
+ 'data' => array(),
236
+ 'count' => 0
237
+ ),
238
+ 'inactive_plugins' => array(
239
+ 'name' => __( 'Inactive Plugins', 'bestwebsoft' ),
240
+ 'data' => array(),
241
+ 'count' => 0
242
+ )
243
  );
244
+
245
  foreach ( $all_plugins as $path => $plugin ) {
246
+ $name = str_replace( 'by BestWebSoft', '', $plugin['Name'] );
247
+ if ( is_plugin_active( $path ) ) {
248
+ $system_info['active_plugins']['data'][ $name ] = sprintf( __( 'by %s', 'bestwebsoft' ), $plugin['Author'] ) . ' - ' . $plugin['Version'];
249
+ $system_info['active_plugins']['count'] = $system_info['active_plugins']['count'] + 1;
250
+ } else {
251
+ $system_info['inactive_plugins']['data'][ $name ] = sprintf( __( 'by %s', 'bestwebsoft' ), $plugin['Author'] ) . ' - ' . $plugin['Version'];
252
+ $system_info['inactive_plugins']['count'] = $system_info['inactive_plugins']['count'] + 1;
253
+ }
254
  }
255
 
256
+ if ( ( isset( $_REQUEST['bwsmn_form_submit'] ) && check_admin_referer( plugin_basename(__FILE__), 'bwsmn_nonce_submit' ) ) || ( isset( $_REQUEST['bwsmn_form_submit_custom_email'] ) && check_admin_referer( plugin_basename(__FILE__), 'bwsmn_nonce_submit_custom_email' ) ) ) {
 
257
  if ( isset( $_REQUEST['bwsmn_form_email'] ) ) {
258
  $bwsmn_form_email = esc_html( trim( $_REQUEST['bwsmn_form_email'] ) );
259
  if ( $bwsmn_form_email == "" || ! is_email( $bwsmn_form_email ) ) {
261
  } else {
262
  $email = $bwsmn_form_email;
263
  $bwsmn_form_email = '';
264
+ $message = __( 'Email with system info is sent to', 'bestwebsoft' ) . ' ' . $email;
265
  }
266
  } else {
267
  $email = 'plugin_system_status@bestwebsoft.com';
272
  $headers = 'MIME-Version: 1.0' . "\n";
273
  $headers .= 'Content-type: text/html; charset=utf-8' . "\n";
274
  $headers .= 'From: ' . get_option( 'admin_email' );
275
+ $message_text = '<html><head><title>System Info From ' . home_url() . '</title></head><body>';
276
+ foreach ( $system_info as $info ) {
277
+ if ( ! empty( $info['data'] ) ) {
278
+ $message_text .= '<h4>' . $info['name'];
279
+ if ( isset( $info['count'] ) )
280
+ $message_text .= ' (' . $info['count'] . ')';
281
+ $message_text .= '</h4><table>';
282
+ foreach ( $info['data'] as $key => $value ) {
283
+ $message_text .= '<tr><td>'. $key .'</td><td>'. $value .'</td></tr>';
284
+ }
285
+ $message_text .= '</table>';
 
 
 
 
 
 
 
 
 
286
  }
 
287
  }
288
  $message_text .= '</body></html>';
289
  $result = wp_mail( $email, 'System Info From ' . home_url(), $message_text, $headers );
295
  <div class="bws-wrap">
296
  <div class="bws-header">
297
  <div class="bws-title">
298
+ <a href="<?php echo ( $is_main_page ) ? self_admin_url( 'admin.php?page=bws_panel' ) : self_admin_url( 'admin.php?page=' . $page ); ?>">
299
+ <img class="bws-logo" src="<?php echo bws_menu_url( 'images/bestwebsoft-logo-white.svg' ); ?>" />
300
  BestWebSoft
301
  <span>panel</span>
302
  </a>
303
  </div>
304
+ <div class="bws-menu-item-icon">&#8226;&#8226;&#8226;</div>
305
  <div class="bws-nav-tab-wrapper">
306
+ <?php if ( $is_main_page ) { ?>
307
+ <a class="bws-nav-tab<?php if ( 'bws_panel' == $page ) echo ' bws-nav-tab-active'; ?>" href="<?php echo self_admin_url( 'admin.php?page=bws_panel' ); ?>"><?php _e( 'Plugins', 'bestwebsoft' ); ?></a>
308
+ <a class="bws-nav-tab<?php if ( 'bws_themes' == $page ) echo ' bws-nav-tab-active'; ?>" href="<?php echo self_admin_url( 'admin.php?page=bws_themes' ); ?>"><?php _e( 'Themes', 'bestwebsoft' ); ?></a>
309
+ <a class="bws-nav-tab<?php if ( 'bws_system_status' == $page ) echo ' bws-nav-tab-active'; ?>" href="<?php echo self_admin_url( 'admin.php?page=bws_system_status' ); ?>"><?php _e( 'System status', 'bestwebsoft' ); ?></a>
310
+ <?php } else { ?>
311
+ <a class="bws-nav-tab<?php if ( ! isset( $_GET['tab'] ) ) echo ' bws-nav-tab-active'; ?>" href="<?php echo self_admin_url( 'admin.php?page=' . $page ); ?>"><?php _e( 'Plugins', 'bestwebsoft' ); ?></a>
312
+ <a class="bws-nav-tab<?php if ( 'themes' == $tab ) echo ' bws-nav-tab-active'; ?>" href="<?php echo self_admin_url( 'admin.php?page=' . $page . '&tab=themes' ); ?>"><?php _e( 'Themes', 'bestwebsoft' ); ?></a>
313
+ <a class="bws-nav-tab<?php if ( 'system-status' == $tab ) echo ' bws-nav-tab-active'; ?>" href="<?php echo self_admin_url( 'admin.php?page=' . $page . '&tab=system-status' ); ?>"><?php _e( 'System status', 'bestwebsoft' ); ?></a>
314
+ <?php } ?>
315
  </div>
316
  <div class="bws-help-links-wrapper">
 
317
  <a href="<?php echo esc_url( 'http://support.bestwebsoft.com/home' ); ?>" target="_blank"><?php _e( 'Support', 'bestwebsoft' ); ?></a>
318
+ <a href="<?php echo esc_url( 'http://bestwebsoft.com/client-area' ); ?>" target="_blank" title="<?php _e( 'Manage purchased licenses & subscriptions', 'bestwebsoft' ); ?>">Client Area</a>
319
  </div>
320
  <div class="clear"></div>
321
  </div>
322
+ <?php if ( ( 'bws_panel' == $page || ( ! isset( $_GET['tab'] ) && ! $is_main_page ) ) && ! isset( $_POST['bws_plugin_action_submit'] ) ) { ?>
323
  <div class="bws-membership-wrap">
324
  <div class="bws-membership-backround"></div>
325
  <div class="bws-membership">
354
  </div>
355
  <?php } ?>
356
  <div class="bws-wrap-content wrap">
357
+ <?php if ( 'bws_panel' == $page || ( ! isset( $_GET['tab'] ) && ! $is_main_page ) ) { ?>
358
  <div class="updated notice is-dismissible inline" <?php if ( '' == $message || '' != $error ) echo "style=\"display:none\""; ?>><p><?php echo $message; ?></p></div>
359
  <h1>
360
  <?php _e( 'Plugins', 'bestwebsoft' ); ?>
424
  $error = __( "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually", 'bestwebsoft' );
425
  }
426
  if ( empty( $error ) )
427
+ echo '<p>' . sprintf( __( 'The plugin %s is successfully installed.', 'bestwebsoft' ), '<strong>' . $plugins_array[ $bws_license_plugin ]['name'] . '</strong>' ) . '</p>';
428
 
429
  @unlink( $file_put_contents );
430
  } else {
436
  }
437
 
438
  if ( file_exists( WP_PLUGIN_DIR . '/' . $zip_name[0] ) ) {
439
+ echo '<p><a href="' . wp_nonce_url( $current_page . '&amp;bws_activate_plugin=' . $bws_license_plugin, 'bws_activate_plugin' . $bws_license_plugin ) . '" target="_parent">' . __( 'Activate Plugin', 'bestwebsoft' ) . '</a> | <a href="' . self_admin_url( $current_page ) . '" target="_parent">' . __( 'Return to BestWebSoft Panel', 'bestwebsoft' ) . '</a></p>';
440
  } else {
441
  if ( empty( $error ) )
442
  $error = __( "Failed to download the zip archive. Please, upload the plugin manually", 'bestwebsoft' );
443
 
444
  echo '<p class="error">' . $error . '</p>';
445
+ echo '<p><a href="' . self_admin_url( $current_page ) . '" target="_parent">' . __( 'Return to BestWebSoft Panel', 'bestwebsoft' ) . '</a></p>';
446
  }
447
  } else { ?>
448
  <ul class="subsubsub">
449
+ <li><a <?php if ( ! isset( $_GET['sub'] ) ) echo 'class="current" '; ?>href="<?php echo $current_page; if ( 'all' != $plugin_category ) echo '&amp;category=' . $plugin_category; ?>"><?php _e( 'All', 'bestwebsoft' ); ?></a></li> |
450
+ <li><a <?php if ( isset( $_GET['sub'] ) && 'installed' == $_GET['sub'] ) echo 'class="current" '; ?>href="<?php echo $current_page; ?>&amp;sub=installed<?php if ( 'all' != $plugin_category ) echo '&amp;category=' . $plugin_category; ?>"><?php _e( 'Installed', 'bestwebsoft' ); ?></a></li> |
451
+ <li><a <?php if ( isset( $_GET['sub'] ) && 'not_installed' == $_GET['sub'] ) echo 'class="current" '; ?>href="<?php echo $current_page; ?>&amp;sub=not_installed<?php if ( 'all' != $plugin_category ) echo '&amp;category=' . $plugin_category; ?>"><?php _e( 'Not Installed', 'bestwebsoft' ); ?></a></li>
452
  </ul>
453
  <div class="clear"></div>
454
  <div class="bws-filter-top">
461
  <ul class="bws-category">
462
  <li>
463
  <?php $sub_in_url = ( isset( $_GET['sub'] ) && in_array( $_GET['sub'], array( 'installed', 'not_installed' ) ) ) ? '&amp;sub=' . $_GET['sub'] : ''; ?>
464
+ <a <?php if ( 'all' == $plugin_category ) echo ' class="bws-active"'; ?> href="<?php echo self_admin_url( $current_page . $sub_in_url ); ?>"><?php _e( 'All', 'bestwebsoft' ); ?>
465
  <span>(<?php echo count( $bws_plugins ); ?>)</span>
466
  </a>
467
  </li>
468
  <?php foreach ( $bws_plugins_category as $category_key => $category_value ) { ?>
469
  <li>
470
+ <a <?php if ( $category_key == $plugin_category ) echo ' class="bws-active"'; ?> href="<?php echo esc_url( self_admin_url( $current_page . $sub_in_url . '&amp;category=' . $category_key ) ); ?>"><?php echo $category_value['name']; ?>
471
  <span>(<?php echo $category_value['count']; ?>)</span>
472
  </a>
473
  </li>
560
  <?php }
561
  } else {
562
  if ( $is_pro_installed ) { ?>
563
+ <a class="button button-secondary" href="<?php echo wp_nonce_url( $current_page . '&amp;bws_activate_plugin=' . $value_plugin['pro_version'], 'bws_activate_plugin' . $value_plugin['pro_version'] ); ?>" title="<?php _e( 'Activate this plugin', 'bestwebsoft' ); ?>"><?php _e( 'Activate', 'bestwebsoft' ); ?></a>
564
  <?php } elseif ( ! empty( $plugins_array ) && isset( $value_plugin['pro_version'] ) && array_key_exists( $value_plugin['pro_version'], $plugins_array ) ) { ?>
565
  <form method="post" action="">
566
  <input type="submit" class="button button-secondary" value="<?php _e( 'Install Now', 'bestwebsoft' ); ?>" />
569
  <?php wp_nonce_field( plugin_basename(__FILE__), 'bws_license_install_nonce_name' ); ?>
570
  </form>
571
  <?php } elseif ( $is_installed ) { ?>
572
+ <a class="button button-secondary" href="<?php echo wp_nonce_url( $current_page . '&amp;bws_activate_plugin=' . $key_plugin, 'bws_activate_plugin' . $key_plugin ); ?>" title="<?php _e( 'Activate this plugin', 'bestwebsoft' ); ?>"><?php _e( 'Activate', 'bestwebsoft' ); ?></a>
573
  <?php } else {
574
+ $install_url = isset( $value_plugin['install_url'] ) ? $value_plugin['install_url'] : esc_url( self_admin_url( 'plugin-install.php?tab=search&type=term&s=' . str_replace( ' ', '+', str_replace( '-', '', $value_plugin['name'] ) ) . '+BestWebSoft&plugin-search-input=Search+Plugins' ) ); ?>
575
  <a class="button button-secondary" href="<?php echo $install_url; ?>" title="<?php _e( 'Install this plugin', 'bestwebsoft' ); ?>" target="_blank"><?php _e( 'Install Now', 'bestwebsoft' ); ?></a>
576
  <?php }
577
  } ?>
590
  <ul class="bws-category">
591
  <li>
592
  <?php $sub_in_url = ( isset( $_GET['sub'] ) && in_array( $_GET['sub'], array( 'installed', 'not_installed' ) ) ) ? '&amp;sub=' . $_GET['sub'] : ''; ?>
593
+ <a <?php if ( 'all' == $plugin_category ) echo ' class="bws-active"'; ?> href="<?php echo self_admin_url( $current_page . $sub_in_url ); ?>"><?php _e( 'All', 'bestwebsoft' ); ?>
594
  <span>(<?php echo count( $bws_plugins ); ?>)</span>
595
  </a>
596
  </li>
597
  <?php foreach ( $bws_plugins_category as $category_key => $category_value ) { ?>
598
  <li>
599
+ <a <?php if ( $category_key == $plugin_category ) echo ' class="bws-active"'; ?> href="<?php echo esc_url( self_admin_url( $current_page . $sub_in_url . '&amp;category=' . $category_key ) ); ?>"><?php echo $category_value['name']; ?>
600
  <span>(<?php echo $category_value['count']; ?>)</span>
601
  </a>
602
  </li>
606
  </div><!-- #bws-filter-wrapper -->
607
  <div class="clear"></div>
608
  <?php }
609
+ } elseif ( 'bws_themes' == $page || 'themes' == $tab ) {
610
+ require( dirname( __FILE__ ) . '/product_list.php' ); ?>
611
  <h1><?php _e( 'Themes', 'bestwebsoft' ); ?></h1>
612
  <div id="availablethemes" class="bws-availablethemes">
613
  <?php if ( $wp_version < '3.9' ) {
615
  <div class="available-theme installable-theme"><?php
616
  $installed_theme = wp_get_theme( $theme->slug ); ?>
617
  <a class="screenshot" href="<?php echo esc_url( $theme->href ); ?>">
618
+ <img src="<?php echo bws_menu_url( "icons/themes/" ) . $theme->slug . '.png'; ?>" width='150' />
619
  </a>
620
  <h3><?php echo $theme->name; ?></h3>
621
  <div class="theme-author"><?php printf( __( 'By %s', 'bestwebsoft' ), 'BestWebSoft' ); ?></div>
636
  $installed_theme = wp_get_theme( $theme->slug ); ?>
637
  <div class="theme" tabindex="0">
638
  <div class="theme-screenshot">
639
+ <img src="<?php echo bws_menu_url( "icons/themes/" ) . $theme->slug . '.png'; ?>" alt="" />
640
  </div>
641
  <div class="theme-author"><?php printf( __( 'By %s', 'bestwebsoft' ), 'BestWebSoft' ); ?></div>
642
  <h3 class="theme-name"><?php echo $theme->name; ?></h3>
658
  <?php } ?>
659
  <p><a class="bws_browse_link" href="http://bestweblayout.com/categories/themes/" target="_blank"><?php _e( 'Browse Free WordPress Themes', 'bestwebsoft' ); ?> <span class="dashicons dashicons-arrow-right-alt2"></span></a></p>
660
  </div>
661
+ <?php } elseif ( 'bws_system_status' == $page || 'system-status' == $tab ) { ?>
662
  <h1><?php _e( 'System status', 'bestwebsoft' ); ?></h1>
663
  <div class="updated fade notice is-dismissible inline" <?php if ( ! ( isset( $_REQUEST['bwsmn_form_submit'] ) || isset( $_REQUEST['bwsmn_form_submit_custom_email'] ) ) || $error != "" ) echo "style=\"display:none\""; ?>><p><strong><?php echo $message; ?></strong></p></div>
664
  <div class="error" <?php if ( "" == $error ) echo "style=\"display:none\""; ?>><p><strong><?php echo $error; ?></strong></p></div>
677
  <?php wp_nonce_field( plugin_basename(__FILE__), 'bwsmn_nonce_submit_custom_email' ); ?>
678
  </p>
679
  </form>
680
+ <?php foreach ( $system_info as $info ) { ?>
681
+ <table class="widefat bws-system-info" cellspacing="0">
682
+ <thead>
 
 
683
  <tr>
684
+ <th colspan="2">
685
+ <strong>
686
+ <?php echo $info['name'];
687
+ if ( isset( $info['count'] ) )
688
+ echo ' (' . $info['count'] . ')'; ?>
689
+ </strong>
690
+ </th>
691
  </tr>
692
+ </thead>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
693
  <tbody>
694
+ <?php foreach ( $info['data'] as $key => $value ) { ?>
 
695
  <tr>
696
  <td scope="row"><?php echo $key; ?></td>
697
  <td scope="row"><?php echo $value; ?></td>
698
  </tr>
699
+ <?php } ?>
 
700
  </tbody>
701
  </table>
702
+ <?php }
703
+ } ?>
 
704
  </div>
705
  </div>
706
  <?php }
bws_menu/class-bws-settings.php ADDED
@@ -0,0 +1,1074 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Displays the content on the plugin settings page
4
+ * @package BestWebSoft
5
+ * @since 1.9.8
6
+ */
7
+
8
+ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
9
+ class Bws_Settings_Tabs {
10
+ private $tabs;
11
+ private $plugin_basename;
12
+ private $prefix;
13
+ private $pro_plugin_is_activated = false;
14
+ private $custom_code_args = array();
15
+ private $wp_slug;
16
+
17
+ public $options;
18
+ public $default_options;
19
+ public $is_network_options;
20
+ public $plugins_info = array();
21
+ public $hide_pro_tabs = false;
22
+ public $demo_data;
23
+
24
+ public $is_pro = false;
25
+ public $pro_page;
26
+ public $bws_license_plugin;
27
+ public $link_key;
28
+ public $link_pn;
29
+ public $is_trial = false;
30
+ public $trial_days;
31
+
32
+ public $forbid_view = false;
33
+ public $change_permission_attr = '';
34
+
35
+ public $version;
36
+ public $upload_dir;
37
+ public $all_plugins;
38
+ public $is_multisite;
39
+
40
+ public $doc_link;
41
+ public $doc_video_link;
42
+
43
+ /**
44
+ * Constructor.
45
+ *
46
+ * The child class should call this constructor from its own constructor to override
47
+ * the default $args.
48
+ * @access public
49
+ *
50
+ * @param array|string $args
51
+ */
52
+ public function __construct( $args = array() ) {
53
+ $args = wp_parse_args( $args, array(
54
+ 'plugin_basename' => '',
55
+ 'prefix' => '',
56
+ 'plugins_info' => array(),
57
+ 'default_options' => array(),
58
+ 'options' => array(),
59
+ 'is_network_options' => false,
60
+ 'tabs' => array(),
61
+ 'doc_link' => '',
62
+ 'doc_video_link' => '',
63
+ 'wp_slug' => '',
64
+ 'demo_data' => false,
65
+ /* if this is free version and pro exist */
66
+ 'pro_page' => '',
67
+ 'bws_license_plugin'=> '',
68
+ 'link_key' => '',
69
+ 'link_pn' => '',
70
+ 'trial_days' => false
71
+ ) );
72
+
73
+ $args['plugins_info']['Name'] = str_replace( ' by BestWebSoft', '', $args['plugins_info']['Name'] );
74
+
75
+ $this->plugin_basename = $args['plugin_basename'];
76
+ $this->prefix = $args['prefix'];
77
+ $this->plugins_info = $args['plugins_info'];
78
+ $this->options = $args['options'];
79
+ $this->default_options = $args['default_options'];
80
+ $this->wp_slug = $args['wp_slug'];
81
+ $this->demo_data = $args['demo_data'];
82
+
83
+ $this->tabs = $args['tabs'];
84
+ $this->is_network_options = $args['is_network_options'];
85
+
86
+ $this->doc_link = $args['doc_link'];
87
+ $this->doc_video_link = $args['doc_video_link'];
88
+
89
+ $this->pro_page = $args['pro_page'];
90
+ $this->bws_license_plugin = $args['bws_license_plugin'];
91
+ $this->link_key = $args['link_key'];
92
+ $this->link_pn = $args['link_pn'];
93
+ $this->trial_days = $args['trial_days'];
94
+
95
+ $this->hide_pro_tabs = bws_hide_premium_options_check( $this->options );
96
+ $this->version = '1.0.0';
97
+ $this->is_multisite = is_multisite();
98
+
99
+ if ( empty( $this->pro_page ) && array_key_exists( 'license', $this->tabs ) )
100
+ $this->is_pro = true;
101
+ }
102
+
103
+ /**
104
+ * Displays the content of the "Settings" on the plugin settings page
105
+ * @access public
106
+ * @param void
107
+ * @return void
108
+ */
109
+ public function display_content() {
110
+ global $bstwbsftwppdtplgns_options;
111
+ if ( array_key_exists( 'custom_code', $this->tabs ) ) {
112
+ /* get args for `custom code` tab */
113
+ $this->get_custom_code();
114
+ }
115
+
116
+ $save_results = $this->save_all_tabs_options();
117
+
118
+ $this->display_messages( $save_results );
119
+ if ( isset( $_REQUEST['bws_restore_default'] ) && check_admin_referer( $this->plugin_basename, 'bws_nonce_name' ) ) {
120
+ bws_form_restore_default_confirm( $this->plugin_basename );
121
+ } elseif ( isset( $_POST['bws_handle_demo'] ) && check_admin_referer( $this->plugin_basename, 'bws_nonce_name' ) ) {
122
+ $this->demo_data->bws_demo_confirm();
123
+ } else {
124
+ bws_show_settings_notice(); ?>
125
+ <form class="bws_form" method="post" action="" enctype="multipart/form-data">
126
+ <div id="poststuff">
127
+ <div id="post-body" class="metabox-holder columns-2">
128
+ <div id="post-body-content" style="position: relative;">
129
+ <?php $this->display_tabs(); ?>
130
+ </div><!-- /post-body-content -->
131
+ <div id="postbox-container-1" class="postbox-container">
132
+ <div class="meta-box-sortables ui-sortable">
133
+ <div id="submitdiv" class="postbox">
134
+ <h3 class="hndle"><?php _e( 'Information', 'bestwebsoft' ); ?></h3>
135
+ <div class="inside">
136
+ <div class="submitbox" id="submitpost">
137
+ <div id="minor-publishing">
138
+ <div id="misc-publishing-actions">
139
+ <?php if ( $this->is_pro ) {
140
+ if ( ! isset( $bstwbsftwppdtplgns_options['time_out'][ $this->plugin_basename ] ) || isset( $bstwbsftwppdtplgns_options['wrong_license_key'][ $this->plugin_basename ] ) ) {
141
+ $license_type = 'Pro';
142
+ $license_status = __( 'Inactive', 'bestwebsoft' ) . ' <a href="#' . $this->prefix . '_license_tab" class="bws_trigger_tab_click">' . __( 'Learn More', 'bestwebsoft' ) . '</a>';
143
+ } else {
144
+ $finish = strtotime( $bstwbsftwppdtplgns_options['time_out'][ $this->plugin_basename ] );
145
+ $today = strtotime( date( "m/d/Y" ) );
146
+ if ( isset( $bstwbsftwppdtplgns_options['trial'][ $this->plugin_basename ] ) ) {
147
+ $license_type = 'Trial Pro';
148
+
149
+ if ( $finish < $today ) {
150
+ $license_status = __( 'Expired', 'bestwebsoft' );
151
+ } else {
152
+ $daysleft = floor( ( $finish - $today ) / ( 60*60*24 ) );
153
+ $license_status = sprintf( __( '%s day(-s) left', 'bestwebsoft' ), $daysleft );
154
+ }
155
+ $license_status .= '. <a target="_blank" href="' . $this->plugins_info['PluginURI'] . '">' . __( 'Upgrade to Pro', 'bestwebsoft' ) . '</a>';
156
+ } else {
157
+ $license_type = 'Pro';
158
+ if ( $finish < $today ) {
159
+ $license_status = sprintf( __( 'Expired on %s', 'bestwebsoft' ), $bstwbsftwppdtplgns_options['time_out'][ $this->plugin_basename ] ) . '. <a target="_blank" href="http://support.bestwebsoft.com/entries/53487136">' . __( 'Renew Now', 'bestwebsoft' ) . '</a>';
160
+ } else {
161
+ $license_status = __( 'Active', 'bestwebsoft' );
162
+ }
163
+ }
164
+ } ?>
165
+ <div class="misc-pub-section">
166
+ <strong><?php _e( 'License', 'bestwebsoft' ); ?>:</strong> <?php echo $license_type; ?>
167
+ </div>
168
+ <div class="misc-pub-section">
169
+ <strong><?php _e( 'Status', 'bestwebsoft' ); ?>:</strong> <?php echo $license_status; ?>
170
+ </div><!-- .misc-pub-section -->
171
+ <?php } ?>
172
+ <div class="misc-pub-section">
173
+ <strong><?php _e( 'Version', 'bestwebsoft' ); ?>:</strong> <?php echo $this->plugins_info['Version']; ?>
174
+ </div><!-- .misc-pub-section -->
175
+ </div>
176
+ <div class="clear"></div>
177
+ </div>
178
+ <div id="major-publishing-actions">
179
+ <div id="publishing-action">
180
+ <input type="hidden" name="<?php echo $this->prefix; ?>_form_submit" value="submit" />
181
+ <input id="bws-submit-button" type="submit" class="button button-primary button-large" value="<?php _e( 'Save Changes', 'bestwebsoft' ); ?>" />
182
+ <?php wp_nonce_field( $this->plugin_basename, 'bws_nonce_name' ); ?>
183
+ </div>
184
+ <div class="clear"></div>
185
+ </div>
186
+ </div>
187
+ </div>
188
+ </div>
189
+ <?php /**
190
+ * action - Display custom metabox
191
+ */
192
+ do_action( __CLASS__ . '_display_metabox' ); ?>
193
+ </div>
194
+ </div>
195
+ <div id="postbox-container-2" class="postbox-container">
196
+ <?php /**
197
+ * action - Display additional content for #postbox-container-2
198
+ */
199
+ do_action( __CLASS__ . '_display_second_postbox' ); ?>
200
+ <div class="submit">
201
+ <input type="submit" class="button button-primary button-large" value="<?php _e( 'Save Changes', 'bestwebsoft' ); ?>" />
202
+ </div>
203
+ <?php if ( ! empty( $this->wp_slug ) )
204
+ bws_plugin_reviews_block( $this->plugins_info['Name'], $this->wp_slug ); ?>
205
+ </div>
206
+ </div>
207
+ </form>
208
+ </div>
209
+ <?php }
210
+ }
211
+
212
+ /**
213
+ * Displays the Tabs
214
+ * @access public
215
+ * @param void
216
+ * @return void
217
+ */
218
+ public function display_tabs() {
219
+ global $wp_version; ?>
220
+ <div id="bws_settings_tabs_wrapper"<?php if ( version_compare( $wp_version, '4.0', '<' ) ) echo ' class="edit-form-section"'; ?>>
221
+ <ul id="bws_settings_tabs">
222
+ <?php $this->display_tabs_list(); ?>
223
+ </ul>
224
+ <?php $this->display_tabs_content(); ?>
225
+ <div class="clear"></div>
226
+ <input type="hidden" name="bws_active_tab" value="<?php if ( isset( $_REQUEST['bws_active_tab'] ) ) echo esc_attr( $_REQUEST['bws_active_tab'] ); ?>" />
227
+ </div>
228
+ <?php }
229
+
230
+ /**
231
+ * Displays the list of tabs
232
+ * @access private
233
+ * @return void
234
+ */
235
+ private function display_tabs_list() {
236
+ foreach ( $this->tabs as $tab_slug => $data ) {
237
+ if ( ! empty( $data['is_pro'] ) && $this->hide_pro_tabs )
238
+ continue;
239
+ $tab_class = 'bws-tab-' . $tab_slug;
240
+ if ( ! empty( $data['is_pro'] ) )
241
+ $tab_class .= ' bws_pro_tab';
242
+ if ( ! empty( $data['class'] ) )
243
+ $tab_class .= ' ' . $data['class']; ?>
244
+ <li class="<?php echo $tab_class; ?>" data-slug="<?php echo $tab_slug; ?>">
245
+ <a href="#<?php echo $this->prefix; ?>_<?php echo $tab_slug; ?>_tab">
246
+ <span><?php echo esc_html( $data['label'] ); ?></span>
247
+ </a>
248
+ </li>
249
+ <?php }
250
+ }
251
+
252
+ /**
253
+ * Displays the content of tabs
254
+ * @access private
255
+ * @param string $tab_slug
256
+ * @return void
257
+ */
258
+ public function display_tabs_content() {
259
+ foreach ( $this->tabs as $tab_slug => $data ) {
260
+ if ( ! empty( $data['is_pro'] ) && $this->hide_pro_tabs )
261
+ continue; ?>
262
+ <div class="bws_tab ui-tabs-panel ui-widget-content ui-corner-bottom" id="<?php echo $this->prefix . '_' . $tab_slug; ?>_tab" aria-labelledby="ui-id-2" role="tabpanel" aria-hidden="false" style="display: block;">
263
+ <?php if ( method_exists( $this, 'tab_' . str_replace( '-', '_', $tab_slug ) ) ) {
264
+ call_user_func( array( $this, 'tab_' . str_replace( '-', '_', $tab_slug ) ) );
265
+ } ?>
266
+ </div>
267
+ <?php }
268
+ }
269
+
270
+ /**
271
+ * Save all options from all tabs and display errors\messages
272
+ * @access public
273
+ * @param void
274
+ * @return void
275
+ */
276
+ public function save_all_tabs_options() {
277
+ $message = $notice = $error = '';
278
+ /* Restore default settings */
279
+ if ( isset( $_POST['bws_restore_confirm'] ) && check_admin_referer( $this->plugin_basename, 'bws_settings_nonce_name' ) ) {
280
+ $this->restore_options();
281
+ $message = __( 'All plugin settings were restored.', 'bestwebsoft' );
282
+ /* Go Pro - check license key */
283
+ } elseif ( isset( $_POST['bws_license_submit'] ) && check_admin_referer( $this->plugin_basename, 'bws_nonce_name' ) ) {
284
+ $result = $this->save_options_license_key();
285
+ if ( ! empty( $result['error'] ) )
286
+ $error = $result['error'];
287
+ if ( ! empty( $result['message'] ) )
288
+ $message = $result['message'];
289
+ if ( ! empty( $result['notice'] ) )
290
+ $notice = $result['notice'];
291
+ /* check demo data */
292
+ } else {
293
+ $demo_result = ! empty( $this->demo_data ) ? $this->demo_data->bws_handle_demo_data() : false;
294
+ if ( false !== $demo_result ) {
295
+ if ( ! empty( $demo_result ) && is_array( $demo_result ) ) {
296
+ $error = $demo_result['error'];
297
+ $message = $demo_result['done'];
298
+ if ( ! empty( $demo_result['done'] ) && ! empty( $demo_result['options'] ) )
299
+ $this->options = $demo_result['options'];
300
+ }
301
+ /* Save options */
302
+ } elseif ( ! isset( $_REQUEST['bws_restore_default'] ) && ! isset( $_POST['bws_handle_demo'] ) && isset( $_REQUEST[ $this->prefix . '_form_submit'] ) && check_admin_referer( $this->plugin_basename, 'bws_nonce_name' ) ) {
303
+ /* save tabs */
304
+ $result = $this->save_options();
305
+ if ( ! empty( $result['error'] ) )
306
+ $error = $result['error'];
307
+ if ( ! empty( $result['message'] ) )
308
+ $message = $result['message'];
309
+ if ( ! empty( $result['notice'] ) )
310
+ $notice = $result['notice'];
311
+
312
+ if ( '' == $this->change_permission_attr ) {
313
+ /* save `misc` tab */
314
+ $result = $this->save_options_misc();
315
+ if ( ! empty( $result['notice'] ) )
316
+ $notice .= $result['notice'];
317
+ }
318
+
319
+ if ( array_key_exists( 'custom_code', $this->tabs ) ) {
320
+ /* save `custom code` tab */
321
+ $this->save_options_custom_code();
322
+ }
323
+ }
324
+ }
325
+
326
+ return compact( 'message', 'notice', 'error' );
327
+ }
328
+
329
+ /**
330
+ * Display error\message\notice
331
+ * @access public
332
+ * @param $save_results - array with error\message\notice
333
+ * @return void
334
+ */
335
+ public function display_messages( $save_results ) {
336
+ /**
337
+ * action - Display custom error\message\notice
338
+ */
339
+ do_action( __CLASS__ . '_display_custom_messages', $save_results ); ?>
340
+ <div class="updated fade inline" <?php if ( empty( $save_results['message'] ) ) echo "style=\"display:none\""; ?>><p><strong><?php echo $save_results['message']; ?></strong></p></div>
341
+ <div class="updated bws-notice inline" <?php if ( empty( $save_results['notice'] ) ) echo "style=\"display:none\""; ?>><p><strong><?php echo $save_results['notice']; ?></strong></p></div>
342
+ <div class="error inline" <?php if ( empty( $save_results['error'] ) ) echo "style=\"display:none\""; ?>><p><strong><?php echo $save_results['error']; ?></strong></p></div>
343
+ <?php }
344
+
345
+ /**
346
+ * Save plugin options to the database
347
+ * @access public
348
+ * @param ab
349
+ * @return array The action results
350
+ * @abstract
351
+ */
352
+ public function save_options() {
353
+ die( 'function Bws_Settings_Tabs::save_options() must be over-ridden in a sub-class.' );
354
+ }
355
+
356
+ /**
357
+ * Get 'custom_code' status and content
358
+ * @access private
359
+ */
360
+ private function get_custom_code() {
361
+ global $bstwbsftwppdtplgns_options;
362
+
363
+ $this->custom_code_args = array(
364
+ 'is_css_active' => false,
365
+ 'content_css' => '',
366
+ 'css_writeable' => false,
367
+ 'is_php_active' => false,
368
+ 'content_php' => '',
369
+ 'php_writeable' => false,
370
+ 'is_js_active' => false,
371
+ 'content_js' => '',
372
+ 'js_writeable' => false,
373
+ );
374
+
375
+ if ( ! $this->upload_dir )
376
+ $this->upload_dir = wp_upload_dir();
377
+
378
+ $folder = $this->upload_dir['basedir'] . '/bws-custom-code';
379
+ if ( ! $this->upload_dir["error"] ) {
380
+ if ( ! is_dir( $folder ) )
381
+ wp_mkdir_p( $folder, 0755 );
382
+
383
+ $index_file = $this->upload_dir['basedir'] . '/bws-custom-code/index.php';
384
+ if ( ! file_exists( $index_file ) ) {
385
+ if ( $f = fopen( $index_file, 'w+' ) )
386
+ fclose( $f );
387
+ }
388
+ }
389
+
390
+ if ( $this->is_multisite )
391
+ $this->custom_code_args['blog_id'] = get_current_blog_id();
392
+
393
+ foreach ( array( 'css', 'php', 'js' ) as $extension ) {
394
+ $file = 'bws-custom-code.' . $extension;
395
+ $real_file = $folder . '/' . $file;
396
+
397
+ if ( file_exists( $real_file ) ) {
398
+ update_recently_edited( $real_file );
399
+ $this->custom_code_args["content_{$extension}"] = esc_textarea( file_get_contents( $real_file ) );
400
+ if ( ( $this->is_multisite && isset( $bstwbsftwppdtplgns_options['custom_code'][ $this->custom_code_args['blog_id'] ][ $file ] ) ) ||
401
+ ( ! $this->is_multisite && isset( $bstwbsftwppdtplgns_options['custom_code'][ $file ] ) ) ) {
402
+ $this->custom_code_args["is_{$extension}_active"] = true;
403
+ }
404
+ if ( is_writeable( $real_file ) )
405
+ $this->custom_code_args["{$extension}_writeable"] = true;
406
+ } else {
407
+ $this->custom_code_args["{$extension}_writeable"] = true;
408
+ if ( 'php' == $extension )
409
+ $this->custom_code_args["content_{$extension}"] = "<?php" . "\n" . "if ( ! defined( 'ABSPATH' ) ) exit;" . "\n" . "if ( ! defined( 'BWS_GLOBAL' ) ) exit;" . "\n\n" . "/* Start your code here */" . "\n";
410
+ }
411
+ }
412
+ }
413
+
414
+ /**
415
+ * Display 'custom_code' tab
416
+ * @access private
417
+ */
418
+ private function tab_custom_code() { ?>
419
+ <h3 class="bws_tab_label"><?php _e( 'Custom Code', 'bestwebsoft' ); ?></h3>
420
+ <?php $this->help_phrase(); ?>
421
+ <hr>
422
+ <?php if ( ! current_user_can( 'edit_plugins' ) ) {
423
+ echo '<p>' . __( 'You do not have sufficient permissions to edit plugins for this site.', 'bestwebsoft' ) . '</p>';
424
+ return;
425
+ }
426
+
427
+ $list = array(
428
+ 'css' => array( 'description' => __( 'These styles will be added to the header on all pages of your site.', 'bestwebsoft' ),
429
+ 'learn_more_link' => 'https://developer.mozilla.org/en-US/docs/Web/Guide/CSS/Getting_started'
430
+ ),
431
+ 'php' => array( 'description' => sprintf( __( 'This PHP code will be hooked to the %s action and will be printed on front end only.', 'bestwebsoft' ), '<a href="http://codex.wordpress.org/Plugin_API/Action_Reference/init" target="_blank"><code>init</code></a>' ),
432
+ 'learn_more_link' => 'http://php.net/'
433
+ ),
434
+ 'js' => array( 'description' => __( 'These code will be added to the header on all pages of your site.', 'bestwebsoft' ),
435
+ 'learn_more_link' => 'https://developer.mozilla.org/en-US/docs/Web/JavaScript'
436
+ ),
437
+ );
438
+
439
+ if ( ! $this->custom_code_args['css_writeable'] ||
440
+ ! $this->custom_code_args['php_writeable'] ||
441
+ ! $this->custom_code_args['js_writeable'] ) { ?>
442
+ <p><em><?php printf( __( 'You need to make this files writable before you can save your changes. See %s the Codex %s for more information.', 'bestwebsoft' ),
443
+ '<a href="https://codex.wordpress.org/Changing_File_Permissions" target="_blank">',
444
+ '</a>' ); ?></em></p>
445
+ <?php }
446
+
447
+ foreach ( $list as $extension => $extension_data ) {
448
+ $name = 'js' == $extension ? 'JavaScript' : strtoupper( $extension ); ?>
449
+ <p><big>
450
+ <strong><?php echo $name; ?></strong>
451
+ <?php if ( ! $this->custom_code_args["{$extension}_writeable"] )
452
+ echo '(' . __( 'Browsing', 'bestwebsoft' ) . ')'; ?>
453
+ </big></p>
454
+ <p class="bws_info">
455
+ <input type="checkbox" name="bws_custom_<?php echo $extension; ?>_active" value="1" <?php if ( $this->custom_code_args["is_{$extension}_active"] ) echo "checked"; ?> />
456
+ <?php printf( __( 'Activate custom %s code.', 'bestwebsoft' ), $name ); ?>
457
+ </p>
458
+ <textarea cols="70" rows="25" name="bws_newcontent_<?php echo $extension; ?>" id="bws_newcontent_<?php echo $extension; ?>"><?php if ( isset( $this->custom_code_args["content_{$extension}"] ) ) echo $this->custom_code_args["content_{$extension}"]; ?></textarea>
459
+ <p class="bws_info">
460
+ <?php echo $extension_data['description']; ?>
461
+ <br>
462
+ <a href="<?php echo $extension_data['learn_more_link']; ?>" target="_blank">
463
+ <?php printf( __( 'Learn more about %s', 'bestwebsoft' ), $name ); ?>
464
+ </a>
465
+ </p>
466
+ <?php }
467
+ }
468
+
469
+ /**
470
+ * Save plugin options to the database
471
+ * @access private
472
+ * @return array The action results
473
+ */
474
+ private function save_options_custom_code() {
475
+ global $bstwbsftwppdtplgns_options;
476
+ $folder = $this->upload_dir['basedir'] . '/bws-custom-code';
477
+
478
+ foreach ( array( 'css', 'php', 'js' ) as $extension ) {
479
+ $file = 'bws-custom-code.' . $extension;
480
+ $real_file = $folder . '/' . $file;
481
+
482
+ if ( isset( $_POST["bws_newcontent_{$extension}"] ) &&
483
+ $this->custom_code_args["{$extension}_writeable"] ) {
484
+ $newcontent = trim( wp_unslash( $_POST["bws_newcontent_{$extension}"] ) );
485
+
486
+ if ( ! empty( $newcontent ) && isset( $_POST["bws_custom_{$extension}_active"] ) ) {
487
+ $this->custom_code_args["is_{$extension}_active"] = true;
488
+ if ( $this->is_multisite )
489
+ $bstwbsftwppdtplgns_options['custom_code'][ $this->custom_code_args['blog_id'] ][ $file ] = $this->upload_dir['baseurl'] . '/bws-custom-code/' . $file;
490
+ else
491
+ $bstwbsftwppdtplgns_options['custom_code'][ $file ] = $this->upload_dir['baseurl'] . '/bws-custom-code/' . $file;
492
+ } else {
493
+ $this->custom_code_args["is_{$extension}_active"] = false;
494
+ if ( $this->is_multisite ) {
495
+ if ( isset( $bstwbsftwppdtplgns_options['custom_code'][ $this->custom_code_args['blog_id'] ][ $file ] ) )
496
+ unset( $bstwbsftwppdtplgns_options['custom_code'][ $this->custom_code_args['blog_id'] ][ $file ] );
497
+ } else {
498
+ if ( isset( $bstwbsftwppdtplgns_options['custom_code'][ $file ] ) )
499
+ unset( $bstwbsftwppdtplgns_options['custom_code'][ $file ] );
500
+ }
501
+ }
502
+ if ( $f = fopen( $real_file, 'w+' ) ) {
503
+ fwrite( $f, $newcontent );
504
+ fclose( $f );
505
+ $this->custom_code_args["content_{$extension}"] = $newcontent;
506
+ }
507
+ }
508
+ }
509
+
510
+ if ( $this->is_multisite )
511
+ update_site_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
512
+ else
513
+ update_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
514
+ }
515
+
516
+ /**
517
+ * Display 'misc' tab
518
+ * @access private
519
+ */
520
+ private function tab_misc() {
521
+ global $bstwbsftwppdtplgns_options; ?>
522
+ <h3 class="bws_tab_label"><?php _e( 'Miscellaneous Settings', 'bestwebsoft' ); ?></h3>
523
+ <?php $this->help_phrase(); ?>
524
+ <hr>
525
+ <?php /**
526
+ * action - Display custom options on the Import / Export' tab
527
+ */
528
+ do_action( __CLASS__ . '_additional_misc_options' );
529
+
530
+ if ( ! $this->forbid_view && ! empty( $this->change_permission_attr ) ) { ?>
531
+ <div class="error inline bws_visible"><p><strong><?php _e( "Notice", 'bestwebsoft' ); ?>:</strong> <strong><?php printf( __( "It is prohibited to change %s settings on this site in the %s network settings.", 'bestwebsoft' ), $this->plugins_info["Name"], $this->plugins_info["Name"] ); ?></strong></p></div>
532
+ <?php }
533
+ if ( $this->forbid_view ) { ?>
534
+ <div class="error inline bws_visible"><p><strong><?php _e( "Notice", 'bestwebsoft' ); ?>:</strong> <strong><?php printf( __( "It is prohibited to view %s settings on this site in the %s network settings.", 'bestwebsoft' ), $this->plugins_info["Name"], $this->plugins_info["Name"] ); ?></strong></p></div>
535
+ <?php } else { ?>
536
+ <table class="form-table">
537
+ <?php /**
538
+ * action - Display custom options on the 'misc' tab
539
+ */
540
+ do_action( __CLASS__ . '_additional_misc_options_affected' );
541
+ if ( ! empty( $this->pro_page ) ) { ?>
542
+ <tr>
543
+ <th scope="row"><?php _e( 'Pro Options', 'bestwebsoft' ); ?></th>
544
+ <td>
545
+ <input <?php echo $this->change_permission_attr; ?> name="bws_hide_premium_options_submit" type="checkbox" value="1" <?php if ( ! $this->hide_pro_tabs ) echo 'checked="checked "'; ?> />
546
+ <span class="bws_info"><?php _e( 'Enable to display plugin Pro options.', 'bestwebsoft' ); ?></span>
547
+ </td>
548
+ </tr>
549
+ <?php } ?>
550
+ <tr>
551
+ <th scope="row"><?php _e( 'Track Usage', 'bestwebsoft' ); ?></th>
552
+ <td>
553
+ <input <?php echo $this->change_permission_attr; ?> name="bws_track_usage" type="checkbox" value="1" <?php if ( ! empty( $bstwbsftwppdtplgns_options['track_usage']['products'][ $this->plugin_basename ] ) ) echo 'checked="checked "'; ?>/>
554
+ <span class="bws_info"><?php _e( 'Enable to allow tracking plugin usage anonymously in order to make it better.', 'bestwebsoft' ); ?></span>
555
+ </td>
556
+ </tr>
557
+ <tr>
558
+ <th scope="row"><?php _e( 'Default Settings', 'bestwebsoft' ); ?></th>
559
+ <td>
560
+ <input<?php echo $this->change_permission_attr; ?> name="bws_restore_default" type="submit" class="button" value="<?php _e( 'Restore Settings', 'bestwebsoft' ); ?>" />
561
+ <div class="bws_info"><?php _e( 'This will restore plugin settings to defaults.', 'bestwebsoft' ); ?></div>
562
+ </td>
563
+ </tr>
564
+ </table>
565
+ <?php }
566
+ }
567
+
568
+ /**
569
+ * Display 'Import / Export' tab
570
+ * @access private
571
+ */
572
+ public function tab_import_export() { ?>
573
+ <h3 class="bws_tab_label"><?php _e( 'Import / Export', 'bestwebsoft' ); ?></h3>
574
+ <?php $this->help_phrase(); ?>
575
+ <hr>
576
+ <?php /**
577
+ * action - Display custom options on the Import / Export' tab
578
+ */
579
+ do_action( __CLASS__ . '_additional_import_export_options' );
580
+
581
+ if ( ! $this->forbid_view && ! empty( $this->change_permission_attr ) ) { ?>
582
+ <div class="error inline bws_visible"><p><strong><?php _e( "Notice", 'bestwebsoft' ); ?>:</strong> <strong><?php printf( __( "It is prohibited to change %s settings on this site in the %s network settings.", 'bestwebsoft' ), $this->plugins_info["Name"], $this->plugins_info["Name"] ); ?></strong></p></div>
583
+ <?php }
584
+ if ( $this->forbid_view ) { ?>
585
+ <div class="error inline bws_visible"><p><strong><?php _e( "Notice", 'bestwebsoft' ); ?>:</strong> <strong><?php printf( __( "It is prohibited to view %s settings on this site in the %s network settings.", 'bestwebsoft' ), $this->plugins_info["Name"], $this->plugins_info["Name"] ); ?></strong></p></div>
586
+ <?php } else { ?>
587
+ <table class="form-table">
588
+ <?php /**
589
+ * action - Display custom options on the Import / Export' tab
590
+ */
591
+ do_action( __CLASS__ . '_additional_import_export_options_affected' ); ?>
592
+ </table>
593
+ <?php }
594
+ }
595
+
596
+ /**
597
+ * Save plugin options to the database
598
+ * @access private
599
+ */
600
+ private function save_options_misc() {
601
+ global $bstwbsftwppdtplgns_options, $wp_version;
602
+ /* hide premium options */
603
+ if ( ! empty( $this->pro_page ) ) {
604
+ if ( isset( $_POST['bws_hide_premium_options'] ) ) {
605
+ $hide_result = bws_hide_premium_options( $this->options );
606
+ $this->hide_pro_tabs = true;
607
+ $this->options = $hide_result['options'];
608
+ if ( ! empty( $hide_result['message'] ) )
609
+ $notice = $hide_result['message'];
610
+ if ( $this->is_network_options )
611
+ update_site_option( $this->prefix . '_options', $this->options );
612
+ else
613
+ update_option( $this->prefix . '_options', $this->options );
614
+ } else if ( isset( $_POST['bws_hide_premium_options_submit'] ) ) {
615
+ if ( ! empty( $this->options['hide_premium_options'] ) ) {
616
+ $key = array_search( get_current_user_id(), $this->options['hide_premium_options'] );
617
+ if ( false !== $key )
618
+ unset( $this->options['hide_premium_options'][ $key ] );
619
+ if ( $this->is_network_options )
620
+ update_site_option( $this->prefix . '_options', $this->options );
621
+ else
622
+ update_option( $this->prefix . '_options', $this->options );
623
+ }
624
+ $this->hide_pro_tabs = false;
625
+ } else {
626
+ if ( empty( $this->options['hide_premium_options'] ) ) {
627
+ $this->options['hide_premium_options'][] = get_current_user_id();
628
+ if ( $this->is_network_options )
629
+ update_site_option( $this->prefix . '_options', $this->options );
630
+ else
631
+ update_option( $this->prefix . '_options', $this->options );
632
+ }
633
+ $this->hide_pro_tabs = true;
634
+ }
635
+ }
636
+ /* Save 'Track Usage' option */
637
+ if ( isset( $_POST['bws_track_usage'] ) ) {
638
+ if ( empty( $bstwbsftwppdtplgns_options['track_usage']['products'][ $this->plugin_basename ] ) ) {
639
+ $bstwbsftwppdtplgns_options['track_usage']['products'][ $this->plugin_basename ] = true;
640
+ $track_usage = true;
641
+ }
642
+ } else {
643
+ if ( ! empty( $bstwbsftwppdtplgns_options['track_usage']['products'][ $this->plugin_basename ] ) ) {
644
+ unset( $bstwbsftwppdtplgns_options['track_usage']['products'][ $this->plugin_basename ] ); false;
645
+ $track_usage = false;
646
+ }
647
+ }
648
+ if ( isset( $track_usage ) ) {
649
+ $usage_id = ! empty( $bstwbsftwppdtplgns_options['track_usage']['usage_id'] ) ? $bstwbsftwppdtplgns_options['track_usage']['usage_id'] : false;
650
+ /* send data */
651
+ $options = array(
652
+ 'timeout' => 3,
653
+ 'body' => array(
654
+ 'url' => get_bloginfo( 'url' ),
655
+ 'wp_version' => $wp_version,
656
+ 'is_active' => $track_usage,
657
+ 'product' => $this->plugin_basename,
658
+ 'version' => $this->plugins_info['Version'],
659
+ 'usage_id' => $usage_id,
660
+ ),
661
+ 'user-agent' => 'WordPress/' . $wp_version . '; ' . get_bloginfo( 'url' )
662
+ );
663
+ $raw_response = wp_remote_post( 'http://bestwebsoft.com/wp-content/plugins/products-statistics/track-usage/', $options );
664
+
665
+ if ( ! is_wp_error( $raw_response ) && 200 == wp_remote_retrieve_response_code( $raw_response ) ) {
666
+ $response = maybe_unserialize( wp_remote_retrieve_body( $raw_response ) );
667
+
668
+ if ( is_array( $response ) &&
669
+ ! empty( $response['usage_id'] ) &&
670
+ $response['usage_id'] != $usage_id ) {
671
+ $bstwbsftwppdtplgns_options['track_usage']['usage_id'] = $response['usage_id'];
672
+ }
673
+ }
674
+
675
+ if ( $this->is_multisite )
676
+ update_site_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
677
+ else
678
+ update_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
679
+ }
680
+
681
+ return compact( 'notice' );
682
+ }
683
+
684
+ /**
685
+ *
686
+ */
687
+ public function tab_license() {
688
+ global $wp_version, $bstwbsftwppdtplgns_options; ?>
689
+ <h3 class="bws_tab_label"><?php _e( 'License Key', 'bestwebsoft' ); ?></h3>
690
+ <?php $this->help_phrase(); ?>
691
+ <hr>
692
+ <?php if ( ! empty( $this->pro_page ) ) {
693
+ $bws_license_key = ( isset( $_POST['bws_license_key'] ) ) ? stripslashes( esc_html( trim( $_POST['bws_license_key'] ) ) ) : "";
694
+
695
+ if ( $this->pro_plugin_is_activated ) {
696
+ deactivate_plugins( $this->plugin_basename ); ?>
697
+ <script type="text/javascript">
698
+ window.setTimeout( function() {
699
+ window.location.href = '<?php echo $this->pro_page; ?>';
700
+ }, 7000 );
701
+ </script>
702
+ <p><strong><?php _e( 'Congratulations! Pro license is activated successfully.', 'bestwebsoft' ); ?></strong></p>
703
+ <p><?php printf( __( 'You will be automatically redirected to the %s in 7 seconds.', 'bestwebsoft' ), '<a href="' . $this->pro_page . '">' . __( 'Settings page', 'bestwebsoft' ) . '</a>' ); ?></p>
704
+ <?php } else {
705
+ $attr = '';
706
+ if ( isset( $bstwbsftwppdtplgns_options['go_pro'][ $this->bws_license_plugin ]['count'] ) &&
707
+ '5' < $bstwbsftwppdtplgns_options['go_pro'][ $this->bws_license_plugin ]['count'] &&
708
+ $bstwbsftwppdtplgns_options['go_pro'][ $this->bws_license_plugin ]['time'] > ( time() - ( 24 * 60 * 60 ) ) )
709
+ $attr = 'disabled="disabled"'; ?>
710
+ <table class="form-table">
711
+ <tr>
712
+ <th scope="row"><?php _e( 'License Key', 'bestwebsoft' ); ?></th>
713
+ <td>
714
+ <input <?php echo $attr; ?> type="text" name="bws_license_key" value="<?php echo $bws_license_key; ?>" />
715
+ <input <?php echo $attr; ?> type="hidden" name="bws_license_plugin" value="<?php echo $this->bws_license_plugin; ?>" />
716
+ <input <?php echo $attr; ?> type="submit" class="button button-secondary" name="bws_license_submit" value="<?php _e( 'Activate', 'bestwebsoft' ); ?>" />
717
+ <div class="bws_info">
718
+ <?php printf( __( 'Enter your license key to activate %s and get premium plugin features.', 'bestwebsoft' ), '<a href="' . $this->plugins_info['PluginURI'] . '?k=' . $this->link_key . '&pn=' . $this->link_pn . '&v=' . $this->plugins_info["Version"] . '&wp_v=' . $wp_version . '" target="_blank" title="' . $this->plugins_info["Name"] . ' Pro">' . $this->plugins_info["Name"] . ' Pro</a>' ); ?>
719
+ </div>
720
+ <?php if ( '' != $attr ) { ?>
721
+ <p><?php _e( "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually.", 'bestwebsoft' ); ?></p>
722
+ <?php }
723
+ if ( $this->trial_days !== false )
724
+ echo '<p>' . __( 'or', 'bestwebsoft' ) . ' <a href="' . $this->plugins_info['PluginURI'] . 'trial/?k=' . $this->link_key . '&pn=' . $this->link_pn . '&v=' . $this->plugins_info["Version"] . '&wp_v=' . $wp_version . '" target="_blank">' . sprintf( __( 'Start Your Free %s-Day Trial Now', 'bestwebsoft' ), $this->trial_days ) . '</a></p>'; ?>
725
+ </td>
726
+ </tr>
727
+ </table>
728
+ <?php }
729
+ } else {
730
+ global $bstwbsftwppdtplgns_options;
731
+ $license_key = ( isset( $bstwbsftwppdtplgns_options[ $this->plugin_basename ] ) ) ? $bstwbsftwppdtplgns_options[ $this->plugin_basename ] : ''; ?>
732
+ <table class="form-table">
733
+ <tr>
734
+ <th scope="row"><?php _e( 'License Key', 'bestwebsoft' ); ?></th>
735
+ <td>
736
+ <input type="text" maxlength="100" name="bws_license_key" value="<?php echo $license_key; ?>" />
737
+ <input type="submit" class="button button-secondary" name="bws_license_submit" value="<?php _e( 'Check license key', 'bestwebsoft' ); ?>" />
738
+ <div class="bws_info">
739
+ <?php _e( 'If necessary, you can check if the license key is correct or reenter it in the field below.', 'bestwebsoft' ); ?>
740
+ </div>
741
+ </td>
742
+ </tr>
743
+ <tr>
744
+ <th scope="row"><?php _e( 'Manage License Settings', 'bestwebsoft' ); ?></th>
745
+ <td>
746
+ <a class="button button-secondary" href="http://bestwebsoft.com/client-area" target="_blank"><?php _e( 'Login to Client Area', 'bestwebsoft' ); ?></a>
747
+ <div class="bws_info">
748
+ <?php _e( 'Manage active licenses, download BWS products, and view your payment history using BestWebSoft Client Area.', 'bestwebsoft' ); ?>
749
+ </div>
750
+ </td>
751
+ </tr>
752
+ </table>
753
+ <?php }
754
+ }
755
+
756
+ /**
757
+ * Save plugin options to the database
758
+ * @access private
759
+ * @param ab
760
+ * @return array The action results
761
+ */
762
+ private function save_options_license_key() {
763
+ global $wp_version, $bstwbsftwppdtplgns_options;
764
+
765
+ $bws_license_key = ( isset( $_POST['bws_license_key'] ) ) ? stripslashes( esc_html( trim( $_POST['bws_license_key'] ) ) ) : '';
766
+
767
+ if ( '' != $bws_license_key ) {
768
+ if ( strlen( $bws_license_key ) != 18 ) {
769
+ $error = __( 'Wrong license key', 'bestwebsoft' );
770
+ } else {
771
+
772
+ /* CHECK license key */
773
+ if ( $this->is_pro ) {
774
+ delete_transient( 'bws_plugins_update' );
775
+ if ( ! $this->all_plugins ) {
776
+ if ( ! function_exists( 'get_plugins' ) )
777
+ require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
778
+ $this->all_plugins = get_plugins();
779
+ }
780
+ $current = get_site_transient( 'update_plugins' );
781
+
782
+ if ( ! empty( $this->all_plugins ) && isset( $current ) && is_array( $current->response ) ) {
783
+ $to_send = array();
784
+ $to_send["plugins"][ $this->plugin_basename ] = $this->all_plugins[ $this->plugin_basename ];
785
+ $to_send["plugins"][ $this->plugin_basename ]["bws_license_key"] = $bws_license_key;
786
+ $to_send["plugins"][ $this->plugin_basename ]["bws_illegal_client"] = true;
787
+ $options = array(
788
+ 'timeout' => ( ( defined('DOING_CRON') && DOING_CRON ) ? 30 : 3),
789
+ 'body' => array( 'plugins' => serialize( $to_send ) ),
790
+ 'user-agent' => 'WordPress/' . $wp_version . '; ' . get_bloginfo( 'url' )
791
+ );
792
+ $raw_response = wp_remote_post( 'http://bestwebsoft.com/wp-content/plugins/paid-products/plugins/update-check/1.0/', $options );
793
+
794
+ if ( is_wp_error( $raw_response ) || 200 != wp_remote_retrieve_response_code( $raw_response ) ) {
795
+ $error = __( 'Something went wrong. Please try again later. If the error appears again, please contact us', 'bestwebsoft' ) . ': <a href=http://support.bestwebsoft.com>BestWebSoft</a>. ' . __( 'We are sorry for inconvenience.', 'bestwebsoft' );
796
+ } else {
797
+ $response = maybe_unserialize( wp_remote_retrieve_body( $raw_response ) );
798
+ if ( is_array( $response ) && !empty( $response ) ) {
799
+ foreach ( $response as $single_response ) {
800
+ if ( "wrong_license_key" == $single_response->package ) {
801
+ $error = __( 'Wrong license key.', 'bestwebsoft' );
802
+ } else if ( "wrong_domain" == $single_response->package ) {
803
+ $error = __( 'This license key is bound to another site.', 'bestwebsoft' );
804
+ } else if ( "time_out" == $single_response->package ) {
805
+ $message = __( 'This license key is valid, but Your license has expired. If you want to update our plugin in future, you should extend the license.', 'bestwebsoft' );
806
+ } elseif ( "you_are_banned" == $single_response->package ) {
807
+ $error = __( "Unfortunately, you have exceeded the number of available tries.", 'bestwebsoft' );
808
+ } elseif ( "duplicate_domen_for_trial" == $single_response->package ) {
809
+ $error = __( "Unfortunately, the Pro Trial licence was already installed to this domain. The Pro Trial license can be installed only once.", 'bestwebsoft' );
810
+ }
811
+ if ( empty( $error ) ) {
812
+ if ( empty( $message ) ) {
813
+ if ( isset( $single_response->trial ) )
814
+ $message = __( 'The Pro Trial license key is valid.', 'bestwebsoft' );
815
+ else
816
+ $message = __( 'The license key is valid.', 'bestwebsoft' );
817
+
818
+ if ( ! empty( $single_response->time_out ) )
819
+ $message .= ' ' . __( 'Your license will expire on', 'bestwebsoft' ) . ' ' . $single_response->time_out . '.';
820
+
821
+ if ( isset( $single_response->trial ) && $this->is_trial )
822
+ $message .= ' ' . sprintf( __( 'In order to continue using the plugin it is necessary to buy a %s license.', 'bestwebsoft' ), '<a href="' . $this->plugins_info['PluginURI'] . '?k=' . $this->link_key . '&pn=' . $this->link_pn . '&v=' . $this->plugins_info["Version"] . '&wp_v=' . $wp_version . '" target="_blank" title="' . $this->plugins_info["Name"] . '">Pro</a>' );
823
+ }
824
+
825
+ if ( isset( $single_response->trial ) ) {
826
+ $bstwbsftwppdtplgns_options['trial'][ $this->plugin_basename ] = 1;
827
+ } else {
828
+ unset( $bstwbsftwppdtplgns_options['trial'][ $this->plugin_basename ] );
829
+ }
830
+
831
+ if ( isset( $single_response->nonprofit ) ) {
832
+ $bstwbsftwppdtplgns_options['nonprofit'][ $this->plugin_basename ] = 1;
833
+ } else {
834
+ unset( $bstwbsftwppdtplgns_options['nonprofit'][ $this->plugin_basename ] );
835
+ }
836
+
837
+ if ( ! isset( $bstwbsftwppdtplgns_options[ $this->plugin_basename ] ) || $bstwbsftwppdtplgns_options[ $this->plugin_basename ] != $bws_license_key ) {
838
+ $bstwbsftwppdtplgns_options[ $this->plugin_basename ] = $bws_license_key;
839
+
840
+ $file = @fopen( dirname( dirname( __FILE__ ) ) . "/license_key.txt" , "w+" );
841
+ if ( $file ) {
842
+ @fwrite( $file, $bws_license_key );
843
+ @fclose( $file );
844
+ }
845
+ $update_option = true;
846
+ }
847
+
848
+ if ( ! isset( $bstwbsftwppdtplgns_options['time_out'][ $this->plugin_basename ] ) || $bstwbsftwppdtplgns_options['time_out'][ $this->plugin_basename ] != $single_response->time_out ) {
849
+ $bstwbsftwppdtplgns_options['time_out'][ $this->plugin_basename ] = $single_response->time_out;
850
+ $update_option = true;
851
+ }
852
+
853
+ if ( isset( $update_option ) ) {
854
+ if ( $this->is_multisite )
855
+ update_site_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
856
+ else
857
+ update_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
858
+ }
859
+ }
860
+ }
861
+ } else {
862
+ $error = __( 'Something went wrong. Please try again later. If the error appears again, please contact us', 'bestwebsoft' ) . ' <a href=http://support.bestwebsoft.com>BestWebSoft</a>. ' . __( 'We are sorry for inconvenience.', 'bestwebsoft' );
863
+ }
864
+ }
865
+ }
866
+ /* Go Pro */
867
+ } else {
868
+
869
+ $bws_license_plugin = stripslashes( esc_html( $_POST['bws_license_plugin'] ) );
870
+ if ( isset( $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] ) && $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['time'] > ( time() - (24 * 60 * 60) ) ) {
871
+ $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] = $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] + 1;
872
+ } else {
873
+ $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] = 1;
874
+ $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['time'] = time();
875
+ }
876
+
877
+ /* download Pro */
878
+ if ( ! $this->all_plugins ) {
879
+ if ( ! function_exists( 'get_plugins' ) )
880
+ require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
881
+ $this->all_plugins = get_plugins();
882
+ }
883
+
884
+ if ( ! array_key_exists( $bws_license_plugin, $this->all_plugins ) ) {
885
+ $current = get_site_transient( 'update_plugins' );
886
+ if ( isset( $current ) && is_array( $current->response ) ) {
887
+ $to_send = array();
888
+ $to_send["plugins"][ $bws_license_plugin ] = array();
889
+ $to_send["plugins"][ $bws_license_plugin ]["bws_license_key"] = $bws_license_key;
890
+ $to_send["plugins"][ $bws_license_plugin ]["bws_illegal_client"] = true;
891
+ $options = array(
892
+ 'timeout' => ( ( defined( 'DOING_CRON' ) && DOING_CRON ) ? 30 : 3 ),
893
+ 'body' => array( 'plugins' => serialize( $to_send ) ),
894
+ 'user-agent' => 'WordPress/' . $wp_version . '; ' . get_bloginfo( 'url' ) );
895
+ $raw_response = wp_remote_post( 'http://bestwebsoft.com/wp-content/plugins/paid-products/plugins/update-check/1.0/', $options );
896
+
897
+ if ( is_wp_error( $raw_response ) || 200 != wp_remote_retrieve_response_code( $raw_response ) ) {
898
+ $error = __( "Something went wrong. Please try again later. If the error appears again, please contact us", 'bestwebsoft' ) . ': <a href="http://support.bestwebsoft.com">BestWebSoft</a>. ' . __( "We are sorry for inconvenience.", 'bestwebsoft' );
899
+ } else {
900
+ $response = maybe_unserialize( wp_remote_retrieve_body( $raw_response ) );
901
+ if ( is_array( $response ) && ! empty( $response ) ) {
902
+ foreach ( $response as $single_response ) {
903
+ if ( "wrong_license_key" == $single_response->package ) {
904
+ $error = __( "Wrong license key.", 'bestwebsoft' );
905
+ } elseif ( "wrong_domain" == $single_response->package ) {
906
+ $error = __( "This license key is bound to another site.", 'bestwebsoft' );
907
+ } elseif ( "you_are_banned" == $single_response->package ) {
908
+ $error = __( "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually.", 'bestwebsoft' );
909
+ } elseif ( "time_out" == $single_response->package ) {
910
+ $error = sprintf( __( "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates, you should extend it in your %s", 'bestwebsoft' ), ' <a href="http://bestwebsoft.com/client-area">Client Area</a>' );
911
+ } elseif ( "duplicate_domen_for_trial" == $single_response->package ) {
912
+ $error = __( "Unfortunately, the Pro licence was already installed to this domain. The Pro Trial license can be installed only once.", 'bestwebsoft' );
913
+ }
914
+ }
915
+ if ( empty( $error ) ) {
916
+ $bstwbsftwppdtplgns_options[ $bws_license_plugin ] = $bws_license_key;
917
+
918
+ $url = 'http://bestwebsoft.com/wp-content/plugins/paid-products/plugins/downloads/?bws_first_download=' . $bws_license_plugin . '&bws_license_key=' . $bws_license_key . '&download_from=5';
919
+
920
+ if ( ! $this->upload_dir )
921
+ $this->upload_dir = wp_upload_dir();
922
+
923
+ $zip_name = explode( '/', $bws_license_plugin );
924
+
925
+ if ( !function_exists( 'curl_init' ) ) {
926
+ $received_content = file_get_contents( $url );
927
+ } else {
928
+ $ch = curl_init();
929
+ curl_setopt( $ch, CURLOPT_URL, $url );
930
+ curl_setopt( $ch, CURLOPT_RETURNTRANSFER, true );
931
+ $received_content = curl_exec( $ch );
932
+ curl_close( $ch );
933
+ }
934
+
935
+ if ( ! $received_content ) {
936
+ $error = __( "Failed to download the zip archive. Please, upload the plugin manually", 'bestwebsoft' );
937
+ } else {
938
+ if ( is_writable( $this->upload_dir["path"] ) ) {
939
+ $file_put_contents = $this->upload_dir["path"] . "/" . $zip_name[0] . ".zip";
940
+ if ( file_put_contents( $file_put_contents, $received_content ) ) {
941
+ @chmod( $file_put_contents, octdec( 755 ) );
942
+ if ( class_exists( 'ZipArchive' ) ) {
943
+ $zip = new ZipArchive();
944
+ if ( $zip->open( $file_put_contents ) === TRUE ) {
945
+ $zip->extractTo( WP_PLUGIN_DIR );
946
+ $zip->close();
947
+ } else {
948
+ $error = __( "Failed to open the zip archive. Please, upload the plugin manually", 'bestwebsoft' );
949
+ }
950
+ } elseif ( class_exists( 'Phar' ) ) {
951
+ $phar = new PharData( $file_put_contents );
952
+ $phar->extractTo( WP_PLUGIN_DIR );
953
+ } else {
954
+ $error = __( "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually", 'bestwebsoft' );
955
+ }
956
+ @unlink( $file_put_contents );
957
+ } else {
958
+ $error = __( "Failed to download the zip archive. Please, upload the plugin manually", 'bestwebsoft' );
959
+ }
960
+ } else {
961
+ $error = __( "UploadDir is not writable. Please, upload the plugin manually", 'bestwebsoft' );
962
+ }
963
+ }
964
+
965
+ /* activate Pro */
966
+ if ( file_exists( WP_PLUGIN_DIR . '/' . $zip_name[0] ) ) {
967
+ if ( $this->is_multisite && is_plugin_active_for_network( $this->plugin_basename ) ) {
968
+ /* if multisite and free plugin is network activated */
969
+ $active_plugins = get_site_option( 'active_sitewide_plugins' );
970
+ $active_plugins[ $bws_license_plugin ] = time();
971
+ update_site_option( 'active_sitewide_plugins', $active_plugins );
972
+ } else {
973
+ /* activate on a single blog */
974
+ $active_plugins = get_option( 'active_plugins' );
975
+ array_push( $active_plugins, $bws_license_plugin );
976
+ update_option( 'active_plugins', $active_plugins );
977
+ }
978
+ $this->pro_plugin_is_activated = true;
979
+ } elseif ( empty( $error ) ) {
980
+ $error = __( "Failed to download the zip archive. Please, upload the plugin manually", 'bestwebsoft' );
981
+ }
982
+ }
983
+ } else {
984
+ $error = __( "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvenience.", 'bestwebsoft' );
985
+ }
986
+ }
987
+ }
988
+ } else {
989
+ $bstwbsftwppdtplgns_options[ $bws_license_plugin ] = $bws_license_key;
990
+ /* activate Pro */
991
+ if ( ! is_plugin_active( $bws_license_plugin ) ) {
992
+ if ( $this->is_multisite && is_plugin_active_for_network( $this->plugin_basename ) ) {
993
+ /* if multisite and free plugin is network activated */
994
+ $network_wide = true;
995
+ } else {
996
+ /* activate on a single blog */
997
+ $network_wide = false;
998
+ }
999
+ activate_plugin( $bws_license_plugin, NULL, $network_wide );
1000
+ $this->pro_plugin_is_activated = true;
1001
+ }
1002
+ }
1003
+ /* add 'track_usage' for Pro version */
1004
+ if ( ! empty( $bstwbsftwppdtplgns_options['track_usage'][ $this->plugin_basename ] ) &&
1005
+ empty( $bstwbsftwppdtplgns_options['track_usage'][ $bws_license_plugin ] ) ) {
1006
+ $bstwbsftwppdtplgns_options['track_usage'][ $bws_license_plugin ] = $bstwbsftwppdtplgns_options['track_usage'][ $this->plugin_basename ];
1007
+ }
1008
+
1009
+ if ( $this->is_multisite )
1010
+ update_site_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
1011
+ else
1012
+ update_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
1013
+
1014
+ if ( $this->pro_plugin_is_activated )
1015
+ delete_transient( 'bws_plugins_update' );
1016
+ }
1017
+ }
1018
+ } else {
1019
+ $error = __( "Please, enter Your license key", 'bestwebsoft' );
1020
+ }
1021
+ return compact( 'error', 'message' );
1022
+ }
1023
+
1024
+ /**
1025
+ * Display help phrase
1026
+ * @access public
1027
+ * @param void
1028
+ * @return array The action results
1029
+ */
1030
+ public function help_phrase() {
1031
+ if ( '' == $this->doc_link )
1032
+ return;
1033
+ echo '<div class="bws_tab_description">' . __( 'Need Help?', 'bestwebsoft' ) . ' ' . '<a href="' . $this->doc_link . '" target="_blank">' . __( 'Read the Instruction', 'bestwebsoft' );
1034
+ if ( '' != $this->doc_video_link )
1035
+ echo '</a>' . ' ' . __( 'or', 'bestwebsoft' ) . ' ' . '<a href="' . $this->doc_video_link . '" target="_blank">' . __( 'Watch the Video', 'bestwebsoft' );
1036
+ echo '</a></div>';
1037
+ }
1038
+
1039
+ public function bws_pro_block_links() {
1040
+ global $wp_version; ?>
1041
+ <div class="bws_pro_version_tooltip">
1042
+ <a class="bws_button" href="<?php echo $this->plugins_info['PluginURI']; ?>?k=<?php echo $this->link_key; ?>&amp;pn=<?php echo $this->link_pn; ?>&amp;v=<?php echo $this->plugins_info["Version"]; ?>&amp;wp_v=<?php echo $wp_version; ?>" target="_blank" title="<?php echo $this->plugins_info["Name"]; ?>"><?php _e( 'Upgrade to Pro', 'bestwebsoft' ); ?></a>
1043
+ <?php if ( $this->trial_days !== false ) { ?>
1044
+ <span class="bws_trial_info">
1045
+ <?php _e( 'or', 'bestwebsoft' ); ?>
1046
+ <a href="<?php echo $this->plugins_info['PluginURI']; ?>?k=<?php echo $this->link_key; ?>&amp;pn=<?php echo $this->link_pn; ?>&amp;v=<?php echo $this->plugins_info["Version"]; ?>&amp;wp_v=<?php echo $wp_version; ?>" target="_blank" title="<?php echo $this->plugins_info["Name"]; ?>"><?php _e( 'Start Your Free Trial', 'bestwebsoft' ); ?></a>
1047
+ </span>
1048
+ <?php } ?>
1049
+ <div class="clear"></div>
1050
+ </div>
1051
+ <?php }
1052
+
1053
+ /**
1054
+ * Restore plugin options to defaults
1055
+ * @access public
1056
+ * @param void
1057
+ * @return void
1058
+ */
1059
+ public function restore_options() {
1060
+ /**
1061
+ * filter - Change default_options array OR process custom functions
1062
+ */
1063
+ $this->options = apply_filters( __CLASS__ . '_additional_restore_options', $this->default_options );
1064
+ if ( $this->is_network_options ) {
1065
+ $this->options['network_apply'] = 'default';
1066
+ $this->options['network_view'] = '1';
1067
+ $this->options['network_change'] = '1';
1068
+ update_site_option( $this->prefix . '_options', $this->options );
1069
+ } else {
1070
+ update_option( $this->prefix . '_options', $this->options );
1071
+ }
1072
+ }
1073
+ }
1074
+ }
bws_menu/css/codemirror.css CHANGED
@@ -8,6 +8,7 @@
8
  /* Set height, width, borders, and global font properties here */
9
  font-family: monospace;
10
  height: 500px;
 
11
  }
12
  .CodeMirror-scroll {
13
  /* Set scrolling behaviour here */
8
  /* Set height, width, borders, and global font properties here */
9
  font-family: monospace;
10
  height: 500px;
11
+ border: 1px solid #ddd;
12
  }
13
  .CodeMirror-scroll {
14
  /* Set scrolling behaviour here */
bws_menu/css/general_style.css CHANGED
@@ -1,31 +1,59 @@
1
- #adminmenu #toplevel_page_bws_panel .wp-submenu li:nth-child(4) a {
2
- border-bottom: 1px solid #444;
3
- padding-bottom: 12px;
4
- margin-bottom: 5px;
5
  }
6
  .bws_info {
7
  color: #888;
8
- font-size: 10px;
 
 
 
 
 
 
 
9
  }
10
  /*
11
  * styles for rate-support div on the settings page
12
  */
13
  .bws-plugin-reviews {
14
- background: none repeat scroll 0 0 #BEE1F1;
15
- border: 1px solid #70A8C2;
16
- border-radius: 3px;
17
- max-width: 700px;
18
- }
19
- .bws-plugin-reviews-rate {
20
- padding: 10px;
21
- border-bottom: 1px dashed #70A8C2;
22
  }
 
23
  .bws-plugin-reviews-support {
24
- padding: 10px;
25
- border-bottom: 1px dashed #70A8C2;
 
 
 
 
 
 
 
 
26
  }
 
 
27
  .bws-plugin-reviews-donate {
 
28
  padding: 10px;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
29
  }
30
  /*
31
  * styles for Go PRO tab
@@ -48,13 +76,13 @@
48
  color: #000000;
49
  }
50
  /*
51
- * styles for pro_version settings and tooltip
52
  */
53
  td.bws_pro_version,
54
  tr.bws_pro_version,
55
  .nav-tab.bws_plugin_menu_pro_version,
56
  .nav-tab.bws_plugin_menu_pro_version:hover {
57
- background: rgba(248, 226, 104, 0.11) url("../images/pattern_bg.png");
58
  }
59
  td.bws_pro_version_tooltip {
60
  border: 1px solid #AAA;
@@ -62,31 +90,30 @@ td.bws_pro_version_tooltip {
62
  }
63
  .bws_pro_version_bloc {
64
  position: relative;
65
- margin: 5px 0;
66
- border: 1px solid #AAAAAA;
67
- max-width: 800px;
68
  overflow: hidden;
69
  }
70
- .bws_table_bg {
71
- background: #f8e268 url("../images/pattern.png");
72
- opacity: 0.11;
73
- filter:progid:DXImageTransform.Microsoft.Alpha(opacity=11); /* IE 5.5+*/
74
- -moz-opacity: 0.11; /* Mozilla 1.6 и ниже */
75
  width: 100%;
76
  height: 100%;
77
  position: absolute;
78
  z-index: 1;
79
  }
 
 
 
80
  .bws_hide_premium_options {
81
  z-index: 5;
82
  }
83
- .bws_pro_version_table_bloc table.bws_pro_version {
84
  background: transparent;
85
  margin: 0;
86
  border: none;
87
  width: 100%;
88
  }
89
- table.bws_pro_version {
90
  background: #E0E0E0;
91
  border: 1px solid #AAA;
92
  margin-bottom: 5px;
@@ -100,11 +127,9 @@ table.bws_pro_version td {
100
  padding-left: 10px;
101
  }
102
  .bws_pro_version_tooltip {
103
- background: #FFF;
104
- border-top: 1px solid #AAA;
105
  position: relative;
106
- z-index: 2;
107
- padding: 10px;
108
  font-size: 14px;
109
  }
110
  .bws_pro_version_tooltip .bws_button {
@@ -112,10 +137,12 @@ table.bws_pro_version td {
112
  border: none;
113
  text-decoration: none;
114
  color: #fff;
115
- padding: 5px 17px;
116
- border-radius: 2px;
117
- margin: 5px 10px;
118
- float: right;
 
 
119
  }
120
  .bws_pro_version_tooltip .bws_info {
121
  float: left;
@@ -123,11 +150,12 @@ table.bws_pro_version td {
123
  font-size: 14px;
124
  color: #444;
125
  }
126
- .bws_pro_version_tooltip .bws_pro_links {
 
127
  float: right;
128
  }
129
  .bws_pro_version_tooltip .bws_trial_info {
130
- padding-top: 10px;
131
  display: inline-block;
132
  }
133
  div.bws_pro_version {
@@ -135,8 +163,8 @@ div.bws_pro_version {
135
  }
136
  a.bws_plugin_pro_version {
137
  display: block;
138
- background: rgba(248, 226, 104, 0.11) url("../images/pattern_bg.png");
139
- border: 1px solid #AAA;
140
  padding: 5px;
141
  text-decoration: none;
142
  color: #666;
@@ -146,26 +174,8 @@ a.bws_plugin_pro_version {
146
  text-decoration: none;
147
  color: #666;
148
  }
149
- /* style for mini-block (ex. google map) */
150
- .bws_pro_version_bloc_mini .bws_pro_version_table_bloc table.bws_pro_version {
151
- width: auto;
152
- }
153
- .bws_pro_version_bloc_mini .bws_pro_version_tooltip {
154
- padding: 10px 61px;
155
- text-align: center;
156
- width: 200px;
157
- }
158
- .bws_pro_version_bloc_mini .bws_pro_version_tooltip a {
159
- display: inline-block;
160
- line-height: 1.5;
161
- }
162
- .bws_pro_version_bloc_mini .bws_pro_version_tooltip .bws_button {
163
- margin: 10px 10px 5px;
164
- padding: 5px 50px;
165
- float: none;
166
- }
167
  /* #### Mobile Phones Portrait or Landscape #### */
168
- @media screen and (max-device-width: 768px) {
169
  .bws_pro_version_tooltip {
170
  padding: 10px;
171
  text-align: center;
@@ -174,7 +184,7 @@ a.bws_plugin_pro_version {
174
  float: none;
175
  text-align: center;
176
  }
177
- .bws_pro_version_tooltip a {
178
  display: inline-block;
179
  line-height: 1.5;
180
  }
@@ -183,13 +193,36 @@ a.bws_plugin_pro_version {
183
  }
184
  .bws_pro_version_tooltip .bws_button {
185
  margin: 10px 10px 5px;
186
- padding: 5px 50px;
187
  float: none;
188
  }
189
  }
190
-
191
  /*
192
- * styles for banner
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
193
  */
194
  .bws_banner_on_plugin_page {
195
  border: 1px solid #d4d4d4;
@@ -213,7 +246,7 @@ a.bws_plugin_pro_version {
213
  }
214
  div.bws_banner_on_plugin_page .button {
215
  float: right;
216
- border: none;
217
  font-size: 14px;
218
  margin: 18px 40px;
219
  padding: 12px 29px;
@@ -232,7 +265,7 @@ div.bws_banner_on_plugin_page .button {
232
  line-height: 26px;
233
  }
234
  .bws_banner_on_plugin_page .button:hover,
235
- .bws_banner_on_plugin_page .button:focus {
236
  background: #222;
237
  color: #FFF;
238
  }
@@ -262,7 +295,7 @@ div.bws_banner_on_plugin_page .icon {
262
  color: #000;
263
  font-size: 16px;
264
  line-height: 26px;
265
- padding: 13px 14px 14px;
266
  }
267
  .bws_banner_to_settings_joint .icon span.dashicons-admin-plugins {
268
  font-size: 48px;
@@ -301,10 +334,10 @@ div.bws_banner_on_plugin_page .icon {
301
  font-size: 14px;
302
  line-height: 30px;
303
  }
304
- .rtl div.bws_banner_on_plugin_page .button,
305
- .rtl .bws_pro_version_tooltip .bws_button {
306
  float: left;
307
  }
 
308
  .rtl div.bws_banner_on_plugin_page .icon,
309
  .rtl .bws_banner_on_plugin_page .text,
310
  .rtl .bws_pro_version_tooltip .bws_info {
@@ -318,9 +351,9 @@ div.bws_banner_on_plugin_page .icon {
318
  padding-right: 10px;
319
  }
320
  /* #### Mobile Phones Portrait or Landscape #### */
321
- @media screen and (max-device-width: 768px) {
322
  .bws_banner_on_plugin_page .text,
323
- .bws_banner_on_plugin_page .icon,
324
  .bws_banner_on_plugin_page .button_div,
325
  .bws_banner_on_plugin_page .button {
326
  float: none;
@@ -355,101 +388,28 @@ span.bws_code {
355
  position: relative;
356
  margin: 3px 5px;
357
  width: 28px;
358
- display: inline-block;
359
  }
360
  .bws_help_box:not(.dashicons) {
361
  vertical-align: middle;
362
  }
363
- .bws_help_box.dashicons-editor-help {
 
364
  background: none;
365
  color: #0074a2;
366
  height: auto;
367
  width: auto;
368
  margin: 0;
 
 
 
 
369
  }
370
  .bws_help_box.dashicons-editor-help:hover {
371
  color: #2ea2cc;
372
  }
373
  .bws_hidden_help_text {
374
- background: #fff;
375
- border: 1px solid #DCDCDC;
376
- left: 40px;
377
- padding: 5px;
378
- position: absolute;
379
- width: auto;
380
- line-height: 1.5;
381
  display: none;
382
- color: #333;
383
- font-size: 12px;
384
- font-family: "Open Sans",sans-serif;
385
- text-align: left;
386
- }
387
- .dashicons-editor-help .bws_hidden_help_text {
388
- left: 30px;
389
- top: -6px;
390
- }
391
- .bws_hidden_help_text:after,
392
- .bws_hidden_help_text:before {
393
- position: absolute;
394
- content: "";
395
- width: 0;
396
- height: 0;
397
- left: -10px;
398
- top: 7px;
399
- direction: ltr;
400
- }
401
- .bws_hidden_help_text:before {
402
- border-top: 8px solid transparent;
403
- border-bottom: 8px solid transparent;
404
- border-right: 11px solid #DCDCDC;
405
- z-index: -1;
406
- margin-top: -1px;
407
- margin-left: -2px;
408
- }
409
- .bws_hidden_help_text:after {
410
- border-top: 7px solid transparent;
411
- border-bottom: 7px solid transparent;
412
- border-right: 10px solid #fff;
413
- }
414
- .bws_hidden_help_text:after {
415
- border-top: 7px solid transparent;
416
- border-bottom: 7px solid transparent;
417
- border-right: 10px solid #fff;
418
- }
419
- .bws_hidden_help_text code {
420
- padding: 2px 5px 1px;
421
- }
422
- .bws_help_box:hover .bws_hidden_help_text {
423
- display: inline-block;
424
- z-index: 1001;
425
- }
426
- /* RTL styles */
427
- .bws_help_box_right .bws_hidden_help_text,
428
- .rtl .bws_hidden_help_text {
429
- left: auto;
430
- right: 40px;
431
- }
432
- .bws_help_box_right.dashicons-editor-help .bws_hidden_help_text,
433
- .rtl .dashicons-editor-help .bws_hidden_help_text {
434
- right: 30px;
435
- }
436
- .bws_help_box_right .bws_hidden_help_text:before,
437
- .rtl .bws_hidden_help_text:before,
438
- .rtl .bws_hidden_help_text:after,
439
- .bws_help_box_right .bws_hidden_help_text:after {
440
- left: auto;
441
- right: -10px;
442
- -webkit-transform: rotate(180deg); /* Chrome y Safari */
443
- -moz-transform: rotate(180deg); /* Firefox */
444
- -o-transform: rotate(180deg); /* Opera */
445
- transform: rotate(180deg);
446
- }
447
- .rtl .bws_hidden_help_text {
448
- text-align: right;
449
- }
450
- .bws_help_box_right .bws_hidden_help_text:before,
451
- .rtl .bws_hidden_help_text:before {
452
- margin-right: -2px;
453
  }
454
  /* bws shortcode insert */
455
  .mce-toolbar .mce-btn-group .mce-btn.mce-bws_shortcode_button {
@@ -503,4 +463,228 @@ span.bws_code {
503
  }
504
  .bws-plugin-update-tr .update-message :before {
505
  content: '';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
506
  }
1
+ #adminmenu #toplevel_page_bws_panel .wp-submenu li:nth-child(5) a {
2
+ border-top: 1px solid #444;
3
+ padding-top: 12px;
4
+ margin-top: 6px;
5
  }
6
  .bws_info {
7
  color: #888;
8
+ font-size: 13px;
9
+ font-style: italic;
10
+ }
11
+ div.bws_info {
12
+ margin-top: 7px;
13
+ }
14
+ div.updated.bws-notice {
15
+ border-left: 4px solid #ffba00;
16
  }
17
  /*
18
  * styles for rate-support div on the settings page
19
  */
20
  .bws-plugin-reviews {
21
+ background: none repeat scroll 0 0 #BEE1F1;
22
+ border: 1px solid #70A8C2;
23
+ border-radius: 3px;
 
 
 
 
 
24
  }
25
+ .bws-plugin-reviews-rate,
26
  .bws-plugin-reviews-support {
27
+ border-right: 1px solid #70A8C2;
28
+ }
29
+ .bws-plugin-reviews a {
30
+ text-decoration: none;
31
+ }
32
+ .bws-plugin-reviews-rate .dashicons {
33
+ font-size: 12px;
34
+ height: 13px;
35
+ width: 9px;
36
+ vertical-align: middle;
37
  }
38
+ .bws-plugin-reviews-rate,
39
+ .bws-plugin-reviews-support,
40
  .bws-plugin-reviews-donate {
41
+ display: inline-block;
42
  padding: 10px;
43
+ width: 30%;
44
+ }
45
+ @media screen and (max-width: 1600px) {
46
+ .bws-plugin-reviews-rate,
47
+ .bws-plugin-reviews-support {
48
+ border-bottom: 1px solid #70A8C2;
49
+ border-right: none;
50
+ }
51
+ .bws-plugin-reviews-rate,
52
+ .bws-plugin-reviews-support,
53
+ .bws-plugin-reviews-donate {
54
+ width: initial;
55
+ display: block;
56
+ }
57
  }
58
  /*
59
  * styles for Go PRO tab
76
  color: #000000;
77
  }
78
  /*
79
+ * styles for pro_version settings and tooltip
80
  */
81
  td.bws_pro_version,
82
  tr.bws_pro_version,
83
  .nav-tab.bws_plugin_menu_pro_version,
84
  .nav-tab.bws_plugin_menu_pro_version:hover {
85
+ background: rgba(245, 225, 119, 0.3);
86
  }
87
  td.bws_pro_version_tooltip {
88
  border: 1px solid #AAA;
90
  }
91
  .bws_pro_version_bloc {
92
  position: relative;
93
+ border: 1px solid #dcd6b8;
 
 
94
  overflow: hidden;
95
  }
96
+ .bws_table_bg {
97
+ background: #f5e177;
98
+ opacity: 0.3;
 
 
99
  width: 100%;
100
  height: 100%;
101
  position: absolute;
102
  z-index: 1;
103
  }
104
+ .bws_network_apply_all {
105
+ padding-left: 15px;
106
+ }
107
  .bws_hide_premium_options {
108
  z-index: 5;
109
  }
110
+ .bws_pro_version_table_bloc table.bws_pro_version {
111
  background: transparent;
112
  margin: 0;
113
  border: none;
114
  width: 100%;
115
  }
116
+ table.bws_pro_version {
117
  background: #E0E0E0;
118
  border: 1px solid #AAA;
119
  margin-bottom: 5px;
127
  padding-left: 10px;
128
  }
129
  .bws_pro_version_tooltip {
 
 
130
  position: relative;
131
+ z-index: 2;
132
+ padding: 10px;
133
  font-size: 14px;
134
  }
135
  .bws_pro_version_tooltip .bws_button {
137
  border: none;
138
  text-decoration: none;
139
  color: #fff;
140
+ padding: 7px 10px;
141
+ border-radius: 3px;
142
+ margin: 5px 0;
143
+ font-size: 13px;
144
+ line-height: 1.4em;
145
+ float: left;
146
  }
147
  .bws_pro_version_tooltip .bws_info {
148
  float: left;
150
  font-size: 14px;
151
  color: #444;
152
  }
153
+ .bws_pro_version_tooltip .bws_pro_links,
154
+ .bws_pro_version_tooltip .bws_pro_links .bws_button {
155
  float: right;
156
  }
157
  .bws_pro_version_tooltip .bws_trial_info {
158
+ padding: 10px;
159
  display: inline-block;
160
  }
161
  div.bws_pro_version {
163
  }
164
  a.bws_plugin_pro_version {
165
  display: block;
166
+ background: rgba(245, 225, 119, 0.3);
167
+ border: 1px solid #dcd6b8;
168
  padding: 5px;
169
  text-decoration: none;
170
  color: #666;
174
  text-decoration: none;
175
  color: #666;
176
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
177
  /* #### Mobile Phones Portrait or Landscape #### */
178
+ @media screen and (max-width: 768px) {
179
  .bws_pro_version_tooltip {
180
  padding: 10px;
181
  text-align: center;
184
  float: none;
185
  text-align: center;
186
  }
187
+ .bws_pro_version_tooltip a {
188
  display: inline-block;
189
  line-height: 1.5;
190
  }
193
  }
194
  .bws_pro_version_tooltip .bws_button {
195
  margin: 10px 10px 5px;
 
196
  float: none;
197
  }
198
  }
 
199
  /*
200
+ * styles for addon ads block
201
+ */
202
+ .bws-addon-block.postbox {
203
+ border: none;
204
+ }
205
+ .bws-addon-block .bws_table_bg {
206
+ background: #fff;
207
+ opacity: 0.3;
208
+ }
209
+ .bws-addon-block .bws_button {
210
+ display: inline-block;
211
+ background: #0faa00;
212
+ border: 1px solid #0b8200;
213
+ text-decoration: none;
214
+ color: #fff;
215
+ padding: 4px 10px;
216
+ border-radius: 3px;
217
+ font-size: 13px;
218
+ line-height: 1.4em;
219
+ z-index: 2;
220
+ position: relative;
221
+ -webkit-box-shadow: 0 1px 0 #0c8c00;
222
+ box-shadow: 0 1px 0 #0c8c00;
223
+ }
224
+ /*
225
+ * styles for banner
226
  */
227
  .bws_banner_on_plugin_page {
228
  border: 1px solid #d4d4d4;
246
  }
247
  div.bws_banner_on_plugin_page .button {
248
  float: right;
249
+ border: none;
250
  font-size: 14px;
251
  margin: 18px 40px;
252
  padding: 12px 29px;
265
  line-height: 26px;
266
  }
267
  .bws_banner_on_plugin_page .button:hover,
268
+ .bws_banner_on_plugin_page .button:focus {
269
  background: #222;
270
  color: #FFF;
271
  }
295
  color: #000;
296
  font-size: 16px;
297
  line-height: 26px;
298
+ padding: 13px 14px 14px;
299
  }
300
  .bws_banner_to_settings_joint .icon span.dashicons-admin-plugins {
301
  font-size: 48px;
334
  font-size: 14px;
335
  line-height: 30px;
336
  }
337
+ .rtl div.bws_banner_on_plugin_page .button {
 
338
  float: left;
339
  }
340
+ .rtl .bws_pro_version_tooltip .bws_button,
341
  .rtl div.bws_banner_on_plugin_page .icon,
342
  .rtl .bws_banner_on_plugin_page .text,
343
  .rtl .bws_pro_version_tooltip .bws_info {
351
  padding-right: 10px;
352
  }
353
  /* #### Mobile Phones Portrait or Landscape #### */
354
+ @media screen and (max-width: 768px) {
355
  .bws_banner_on_plugin_page .text,
356
+ .bws_banner_on_plugin_page .icon,
357
  .bws_banner_on_plugin_page .button_div,
358
  .bws_banner_on_plugin_page .button {
359
  float: none;
388
  position: relative;
389
  margin: 3px 5px;
390
  width: 28px;
391
+ display: inline-block;
392
  }
393
  .bws_help_box:not(.dashicons) {
394
  vertical-align: middle;
395
  }
396
+ .bws_help_box.dashicons-editor-help,
397
+ .setting span .bws_help_box.dashicons-editor-help {
398
  background: none;
399
  color: #0074a2;
400
  height: auto;
401
  width: auto;
402
  margin: 0;
403
+ padding: 0;
404
+ z-index: 2;
405
+ min-width: auto;
406
+ float: none;
407
  }
408
  .bws_help_box.dashicons-editor-help:hover {
409
  color: #2ea2cc;
410
  }
411
  .bws_hidden_help_text {
 
 
 
 
 
 
 
412
  display: none;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
413
  }
414
  /* bws shortcode insert */
415
  .mce-toolbar .mce-btn-group .mce-btn.mce-bws_shortcode_button {
463
  }
464
  .bws-plugin-update-tr .update-message :before {
465
  content: '';
466
+ }
467
+
468
+ /* Bws_Settings_Tabs */
469
+ .bws_form #postbox-container-2 > div {
470
+ width: calc( 100% - 162px );
471
+ margin-left: 160px;
472
+ }
473
+ .bws_form #postbox-container-2 > div.submit {
474
+ margin-bottom: 20px;
475
+ padding: 0;
476
+ }
477
+ #bws_settings_tabs_wrapper {
478
+ position: relative;
479
+ max-width: 100%;
480
+ min-width: 100%;
481
+ width: 100%;
482
+ box-sizing: border-box;
483
+ font-size: 13px;
484
+ }
485
+ #bws_settings_tabs {
486
+ z-index: 2;
487
+ position: relative;
488
+ width: 159px;
489
+ float: left;
490
+ background: #f5f5f5;
491
+ border-top: 1px solid #ddd;
492
+ border-left: 1px solid #ddd;
493
+ border-bottom: 1px solid #ddd;
494
+ margin: 0;
495
+ }
496
+ #bws_settings_tabs li {
497
+ margin: 0;
498
+ padding: 0;
499
+ }
500
+ #bws_settings_tabs li a {
501
+ display: block;
502
+ margin: 0 20px;
503
+ padding: 20px 0 20px 25px;
504
+ text-decoration: none;
505
+ color: #666;
506
+ border-bottom: 1px solid #ddd;
507
+ word-break: break-word;
508
+ box-shadow: none;
509
+ -webkit-box-sizing: border-box;
510
+ -moz-box-sizing: border-box;
511
+ box-sizing: border-box;
512
+ transition: none;
513
+ -webkit-transition: none;
514
+ }
515
+ #bws_settings_tabs li.ui-tabs-active {
516
+ width: 161px;
517
+ }
518
+ #bws_settings_tabs li.ui-tabs-active a,
519
+ #bws_settings_tabs li a:hover {
520
+ width: 161px;
521
+ margin: -1px 0 0 0;
522
+ border-top: 1px solid #ddd;
523
+ padding: 20px 20px 20px 45px;
524
+ color: #000 !important;
525
+ background: #fff !important;
526
+ }
527
+ #bws_settings_tabs li a:before {
528
+ content: "\f111";
529
+ font-family: 'dashicons';
530
+ font-size: 20px;
531
+ position: absolute;
532
+ left: 20px;
533
+ }
534
+ #bws_settings_tabs li.bws-tab-display a:before {
535
+ content: "\f163";
536
+ }
537
+ #bws_settings_tabs li.bws-tab-misc a:before {
538
+ content: "\f107";
539
+ }
540
+ #bws_settings_tabs li.bws-tab-custom_code a:before {
541
+ content: "\f475";
542
+ }
543
+ #bws_settings_tabs li.bws-tab-custom_code a:before {
544
+ content: "\f475";
545
+ }
546
+ #bws_settings_tabs li.bws-tab-license a:before {
547
+ content: "\f112";
548
+ }
549
+ /* custom */
550
+ #bws_settings_tabs li.bws-tab-images a:before {
551
+ content: "\f128";
552
+ }
553
+ #bws_settings_tabs li.bws-tab-cover a:before {
554
+ content: "\f318";
555
+ }
556
+ #bws_settings_tabs li.bws-tab-lightbox a:before {
557
+ content: "\f211";
558
+ }
559
+ #bws_settings_tabs li.bws-tab-social a:before {
560
+ content: "\f237";
561
+ }
562
+ #bws_settings_tabs li.bws-tab-import-export a:before {
563
+ content: "\f317";
564
+ }
565
+ #bws_settings_tabs li.bws-tab-errors a:before {
566
+ content: "\f534";
567
+ }
568
+ #bws_settings_tabs li.bws-tab-notifications a:before {
569
+ content: "\f466";
570
+ }
571
+ #bws_settings_tabs li:last-child a {
572
+ border-bottom: none;
573
+ }
574
+ #bws_settings_tabs_wrapper .bws_tab {
575
+ position: relative;
576
+ padding: 5px 10px 15px;
577
+ width: calc( 100% - 183px );
578
+ float: right;
579
+ border: 1px solid #ddd;
580
+ background: #fff;
581
+ }
582
+ #bws_settings_tabs_wrapper .bws_tab > *:not(.bws_pro_version_bloc):not(.bws_tab_sub_label):not(hr):not(.inline) {
583
+ margin-left: 10px;
584
+ margin-right: 10px;
585
+ width: calc( 100% - 20px );
586
+ }
587
+ .bws_form .postbox .hndle {
588
+ cursor: inherit;
589
+ }
590
+ #poststuff h3.bws_tab_label {
591
+ margin-bottom: 10px;
592
+ padding-left: 0;
593
+ padding-right: 0;
594
+ }
595
+ .bws_tab_sub_label {
596
+ font-weight: bold;
597
+ background-color: #f1f1f1;
598
+ padding: 7px 10px;
599
+ margin-top: 10px;
600
+ font-size: 15px;
601
+ }
602
+ .bws_tab .form-table textarea {
603
+ width: 100%;
604
+ }
605
+ .bws_tab_description {
606
+ margin-bottom: 15px;
607
+ }
608
+ .rtl #bws_settings_tabs {
609
+ float: right;
610
+ border-right: 1px solid #ddd;
611
+ border-left: none;
612
+ }
613
+ .rtl #bws_settings_tabs li a {
614
+ padding: 20px 25px 20px 0;
615
+ }
616
+ .rtl #bws_settings_tabs li.ui-tabs-active a,
617
+ .rtl #bws_settings_tabs li a:hover {
618
+ padding: 20px 45px 20px 20px;
619
+ }
620
+ .rtl #bws_settings_tabs li a:before {
621
+ right: 20px;
622
+ }
623
+ .rtl .bws_form #postbox-container-2 > div {
624
+ margin-right: 160px;
625
+ margin-left: 0;
626
+ }
627
+ @media only screen and (max-width: 1100px) {
628
+ #bws_settings_tabs {
629
+ width: 59px;
630
+ }
631
+ #bws_settings_tabs li a {
632
+ margin: 0;
633
+ padding: 20px 0;
634
+ width: 60px;
635
+ height: 60px;
636
+ }
637
+ #bws_settings_tabs li.ui-tabs-active a,
638
+ #bws_settings_tabs li a:hover,
639
+ .rtl #bws_settings_tabs li.ui-tabs-active a,
640
+ .rtl #bws_settings_tabs li a:hover {
641
+ padding: 20px 0;
642
+ height: 61px;
643
+ }
644
+ #bws_settings_tabs li.ui-tabs-active,
645
+ #bws_settings_tabs li.ui-tabs-active a,
646
+ #bws_settings_tabs li a:hover {
647
+ width: 61px;
648
+ }
649
+ #bws_settings_tabs_wrapper .bws_tab {
650
+ width: calc( 100% - 83px );
651
+ }
652
+ #bws_settings_tabs span {
653
+ display: none;
654
+ }
655
+ .bws_form #postbox-container-2 > div {
656
+ margin-left: 60px;
657
+ width: calc( 100% - 62px );
658
+ }
659
+ .rtl .bws_form #postbox-container-2 > div {
660
+ margin-right: 60px;
661
+ margin-left: 0;
662
+ }
663
+ }
664
+ @media only screen and (max-width: 850px) {
665
+ .bws_form #postbox-container-2 > div,
666
+ .rtl .bws_form #postbox-container-2 > div {
667
+ width: calc( 100% - 2px );
668
+ margin: 0;
669
+ }
670
+ }
671
+ @media screen and (max-width: 782px) {
672
+ .bws-hide-for-mobile {
673
+ display: none;
674
+ }
675
+ }
676
+ @media screen and (max-width: 440px) {
677
+ #bws_settings_tabs_wrapper .bws_tab .form-table td input[type=file] {
678
+ width: 182px;
679
+ }
680
+ #bws_settings_tabs_wrapper .bws_tab .form-table td input[type=text],
681
+ #bws_settings_tabs_wrapper .bws_tab .form-table td input[type=password],
682
+ #bws_settings_tabs_wrapper .bws_tab .form-table td input[type=search],
683
+ #bws_settings_tabs_wrapper .bws_tab .form-table td input[type=number],
684
+ #bws_settings_tabs_wrapper .bws_tab .form-table td select,
685
+ #bws_settings_tabs_wrapper .bws_tab .form-table td textarea {
686
+ width: 100%;
687
+ padding-left: 0;
688
+ padding-right: 0;
689
+ }
690
  }
bws_menu/css/style.css CHANGED
@@ -3,13 +3,15 @@ a.toplevel_page_bws_panel.wp-has-current-submenu:after {
3
  }
4
  .toplevel_page_bws_panel #wpcontent,
5
  .bws-panel_page_bws_themes #wpcontent,
6
- .bws-panel_page_bws_system_status #wpcontent {
 
7
  padding-left: 0;
8
  padding-right: 0;
9
  }
10
  .toplevel_page_bws_panel .update-nag,
11
  .bws-panel_page_bws_themes .update-nag,
12
- .bws-panel_page_bws_system_status .update-nag {
 
13
  display: none;
14
  }
15
  .bws-wrap-content {
@@ -214,27 +216,14 @@ a.toplevel_page_bws_panel.wp-has-current-submenu:after {
214
  /*
215
  * system status
216
  */
217
- .bws_system_info_meta_box {
218
- max-width: 850px;
219
  }
220
- .bws_system_info_meta_box .hndle {
221
- cursor: pointer !important;
222
  }
223
- .bws_system_info {
224
- float: left;
225
- margin-right: 10px;
226
- max-width: 400px;
227
- }
228
- .rtl .bws_system_info {
229
- float: right;
230
- }
231
- .bws_system_info th {
232
- padding: 10px 0;
233
- text-align: left;
234
- width: 50%;
235
- }
236
- .bws_system_info tbody td {
237
- border-bottom: 1px solid #DFDFDF;
238
  }
239
  /*
240
  * PLUGINS
@@ -360,7 +349,7 @@ a.bws_donate {
360
  display: none;
361
  background: #e2e2e2;
362
  padding: 1px 20px;
363
- margin: 0 -15px 0 -20px;
364
  }
365
  .bws-filter-top h2 {
366
  margin: 14px 0;
3
  }
4
  .toplevel_page_bws_panel #wpcontent,
5
  .bws-panel_page_bws_themes #wpcontent,
6
+ .bws-panel_page_bws_system_status #wpcontent,
7
+ body[class*="-bws-panel"] #wpcontent {
8
  padding-left: 0;
9
  padding-right: 0;
10
  }
11
  .toplevel_page_bws_panel .update-nag,
12
  .bws-panel_page_bws_themes .update-nag,
13
+ .bws-panel_page_bws_system_status .update-nag,
14
+ body[class*="-bws-panel"] .update-nag {
15
  display: none;
16
  }
17
  .bws-wrap-content {
216
  /*
217
  * system status
218
  */
219
+ table.bws-system-info {
220
+ margin-bottom: 15px;
221
  }
222
+ table.bws-system-info td:first-child {
223
+ width: 33%;
224
  }
225
+ table.bws-system-info tbody tr:nth-child(odd) {
226
+ background-color: #f9f9f9;
 
 
 
 
 
 
 
 
 
 
 
 
 
227
  }
228
  /*
229
  * PLUGINS
349
  display: none;
350
  background: #e2e2e2;
351
  padding: 1px 20px;
352
+ margin: 0 -12px 0 -20px;
353
  }
354
  .bws-filter-top h2 {
355
  margin: 14px 0;
bws_menu/css/tipTip.css ADDED
@@ -0,0 +1,113 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* TipTip CSS - Version 1.2 */
2
+
3
+ #tiptip_holder {
4
+ display: none;
5
+ position: absolute;
6
+ top: 0;
7
+ left: 0;
8
+ z-index: 999999;
9
+ }
10
+
11
+ #tiptip_holder.tip_top {
12
+ padding-bottom: 5px;
13
+ }
14
+
15
+ #tiptip_holder.tip_bottom {
16
+ padding-top: 5px;
17
+ }
18
+
19
+ #tiptip_holder.tip_right {
20
+ padding-left: 5px;
21
+ }
22
+
23
+ #tiptip_holder.tip_left {
24
+ padding-right: 5px;
25
+ }
26
+
27
+ #tiptip_content {
28
+ font-size: 11px;
29
+ color: #fff;
30
+ text-shadow: 0 0 2px #000;
31
+ padding: 4px 8px;
32
+ border: 1px solid rgba(255,255,255,0.25);
33
+ background-color: rgb(25,25,25);
34
+ background-color: rgba(25,25,25,0.92);
35
+ background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(transparent), to(#000));
36
+ border-radius: 3px;
37
+ -webkit-border-radius: 3px;
38
+ -moz-border-radius: 3px;
39
+ box-shadow: 0 0 3px #555;
40
+ -webkit-box-shadow: 0 0 3px #555;
41
+ -moz-box-shadow: 0 0 3px #555;
42
+ }
43
+
44
+ #tiptip_arrow, #tiptip_arrow_inner {
45
+ position: absolute;
46
+ border-color: transparent;
47
+ border-style: solid;
48
+ border-width: 6px;
49
+ height: 0;
50
+ width: 0;
51
+ }
52
+
53
+ #tiptip_holder.tip_top #tiptip_arrow {
54
+ border-top-color: #fff;
55
+ border-top-color: rgba(255,255,255,0.35);
56
+ }
57
+
58
+ #tiptip_holder.tip_bottom #tiptip_arrow {
59
+ border-bottom-color: #fff;
60
+ border-bottom-color: rgba(255,255,255,0.35);
61
+ }
62
+
63
+ #tiptip_holder.tip_right #tiptip_arrow {
64
+ border-right-color: #fff;
65
+ border-right-color: rgba(255,255,255,0.35);
66
+ }
67
+
68
+ #tiptip_holder.tip_left #tiptip_arrow {
69
+ border-left-color: #fff;
70
+ border-left-color: rgba(255,255,255,0.35);
71
+ }
72
+
73
+ #tiptip_holder.tip_top #tiptip_arrow_inner {
74
+ margin-top: -7px;
75
+ margin-left: -6px;
76
+ border-top-color: rgb(25,25,25);
77
+ border-top-color: rgba(25,25,25,0.92);
78
+ }
79
+
80
+ #tiptip_holder.tip_bottom #tiptip_arrow_inner {
81
+ margin-top: -5px;
82
+ margin-left: -6px;
83
+ border-bottom-color: rgb(25,25,25);
84
+ border-bottom-color: rgba(25,25,25,0.92);
85
+ }
86
+
87
+ #tiptip_holder.tip_right #tiptip_arrow_inner {
88
+ margin-top: -6px;
89
+ margin-left: -5px;
90
+ border-right-color: rgb(25,25,25);
91
+ border-right-color: rgba(25,25,25,0.92);
92
+ }
93
+
94
+ #tiptip_holder.tip_left #tiptip_arrow_inner {
95
+ margin-top: -6px;
96
+ margin-left: -7px;
97
+ border-left-color: rgb(25,25,25);
98
+ border-left-color: rgba(25,25,25,0.92);
99
+ }
100
+
101
+ /* Webkit Hacks */
102
+ @media screen and (-webkit-min-device-pixel-ratio:0) {
103
+ #tiptip_content {
104
+ padding: 4px 8px 5px 8px;
105
+ background-color: rgba(45,45,45,0.88);
106
+ }
107
+ #tiptip_holder.tip_bottom #tiptip_arrow_inner {
108
+ border-bottom-color: rgba(45,45,45,0.88);
109
+ }
110
+ #tiptip_holder.tip_top #tiptip_arrow_inner {
111
+ border-top-color: rgba(20,20,20,0.92);
112
+ }
113
+ }
bws_menu/deprecated.php ADDED
@@ -0,0 +1,717 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Deprecated functions for BestWebSoft plugins
4
+ */
5
+
6
+ /**
7
+ * Function check if plugin is compatible with current WP version - for old plugin version
8
+ * @deprecated 1.7.4
9
+ * @todo Remove function after 01.01.2018
10
+ */
11
+ if ( ! function_exists( 'bws_wp_version_check' ) ) {
12
+ function bws_wp_version_check( $plugin_basename, $plugin_info, $require_wp ) {
13
+ global $bstwbsftwppdtplgns_options;
14
+ if ( ! isset( $bstwbsftwppdtplgns_options ) )
15
+ $bstwbsftwppdtplgns_options = ( function_exists( 'is_multisite' ) && is_multisite() ) ? get_site_option( 'bstwbsftwppdtplgns_options' ) : get_option( 'bstwbsftwppdtplgns_options' );
16
+ if ( ! isset( $bstwbsftwppdtplgns_options['deprecated_function']['bws_wp_version_check'] ) ) {
17
+ $bstwbsftwppdtplgns_options['deprecated_function']['bws_wp_version_check'] = array(
18
+ 'product-name' => $plugin_info['Name']
19
+ );
20
+ if ( is_multisite() )
21
+ update_site_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
22
+ else
23
+ update_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
24
+ }
25
+ }
26
+ }
27
+ /**
28
+ * Function add BWS Plugins page - for old plugin version
29
+ * @deprecated 1.7.9
30
+ * @todo Remove function after 01.01.2018
31
+ */
32
+ if ( ! function_exists( 'bws_add_general_menu' ) ) {
33
+ function bws_add_general_menu() {
34
+ global $bstwbsftwppdtplgns_options;
35
+ if ( ! isset( $bstwbsftwppdtplgns_options ) )
36
+ $bstwbsftwppdtplgns_options = ( function_exists( 'is_multisite' ) && is_multisite() ) ? get_site_option( 'bstwbsftwppdtplgns_options' ) : get_option( 'bstwbsftwppdtplgns_options' );
37
+ if ( ! isset( $bstwbsftwppdtplgns_options['deprecated_function']['bws_add_general_menu'] ) ) {
38
+ $get_debug_backtrace = debug_backtrace();
39
+ $file = ( ! empty( $get_debug_backtrace[0]['file'] ) ) ? $get_debug_backtrace[0]['file'] : '';
40
+ $bstwbsftwppdtplgns_options['deprecated_function']['bws_add_general_menu'] = array(
41
+ 'file' => $file
42
+ );
43
+ if ( is_multisite() )
44
+ update_site_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
45
+ else
46
+ update_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
47
+ }
48
+ }
49
+ }
50
+ /**
51
+ * Function display GO PRO tab - for old plugin version
52
+ * @deprecated 1.7.6
53
+ * @todo Remove function after 01.01.2018
54
+ */
55
+ if ( ! function_exists( 'bws_go_pro_tab' ) ) {
56
+ function bws_go_pro_tab( $plugin_info, $plugin_basename, $page, $pro_page, $bws_license_plugin, $link_slug, $link_key, $link_pn, $pro_plugin_is_activated = false, $trial_days_number = false ) {
57
+ global $bstwbsftwppdtplgns_options;
58
+ if ( ! isset( $bstwbsftwppdtplgns_options ) )
59
+ $bstwbsftwppdtplgns_options = ( function_exists( 'is_multisite' ) && is_multisite() ) ? get_site_option( 'bstwbsftwppdtplgns_options' ) : get_option( 'bstwbsftwppdtplgns_options' );
60
+ if ( ! isset( $bstwbsftwppdtplgns_options['deprecated_function']['bws_go_pro_tab'] ) ) {
61
+ $bstwbsftwppdtplgns_options['deprecated_function']['bws_go_pro_tab'] = array(
62
+ 'product-name' => $plugin_info['Name']
63
+ );
64
+ if ( is_multisite() )
65
+ update_site_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
66
+ else
67
+ update_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
68
+ }
69
+ }
70
+ }
71
+ /**
72
+ * Function add BWS Plugins page
73
+ * @deprecated 1.9.8 (15.12.2016)
74
+ * @return void
75
+ */
76
+ if ( ! function_exists ( 'bws_general_menu' ) ) {
77
+ function bws_general_menu() {
78
+ global $menu, $bws_general_menu_exist;
79
+
80
+ if ( ! $bws_general_menu_exist ) {
81
+ /* we check also menu exist in global array as in old plugins $bws_general_menu_exist variable not exist */
82
+ foreach ( $menu as $value_menu ) {
83
+ if ( 'bws_panel' == $value_menu[2] ) {
84
+ $bws_general_menu_exist = true;
85
+ return;
86
+ }
87
+ }
88
+
89
+ add_menu_page( 'BWS Panel', 'BWS Panel', 'manage_options', 'bws_panel', 'bws_add_menu_render', bws_menu_url( 'images/logo-white-min.png' ), '1001' );
90
+
91
+ add_submenu_page( 'bws_panel', __( 'Plugins', 'bestwebsoft' ), __( 'Plugins', 'bestwebsoft' ), 'manage_options', 'bws_panel', 'bws_add_menu_render' );
92
+ add_submenu_page( 'bws_panel', __( 'Themes', 'bestwebsoft' ), __( 'Themes', 'bestwebsoft' ), 'manage_options', 'bws_themes', 'bws_add_menu_render' );
93
+ add_submenu_page( 'bws_panel', __( 'System Status', 'bestwebsoft' ), __( 'System Status', 'bestwebsoft' ), 'manage_options', 'bws_system_status', 'bws_add_menu_render' );
94
+
95
+ $bws_general_menu_exist = true;
96
+ }
97
+ }
98
+ }
99
+ /**
100
+ * Function check license key for Pro plugins version
101
+ * @deprecated 1.9.8 (15.12.2016)
102
+ * @todo add notice and remove functional after 01.01.2018. Remove function after 01.01.2019
103
+ */
104
+ if ( ! function_exists( 'bws_check_pro_license' ) ) {
105
+ function bws_check_pro_license( $plugin_basename, $trial_plugin = false ) {
106
+ global $wp_version, $bstwbsftwppdtplgns_options;
107
+ $result = array();
108
+
109
+ if ( isset( $_POST['bws_license_submit'] ) && check_admin_referer( $plugin_basename, 'bws_license_nonce_name' ) ) {
110
+ $license_key = isset( $_POST['bws_license_key'] ) ? stripslashes( esc_html( trim( $_POST['bws_license_key'] ) ) ) : '';
111
+
112
+ if ( '' != $license_key ) {
113
+
114
+ delete_transient( 'bws_plugins_update' );
115
+
116
+ if ( ! function_exists( 'get_plugins' ) )
117
+ require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
118
+ $plugins_all = get_plugins();
119
+ $current = get_site_transient( 'update_plugins' );
120
+
121
+ if ( is_array( $plugins_all ) && !empty( $plugins_all ) && isset( $current ) && is_array( $current->response ) ) {
122
+ $to_send = array();
123
+ $to_send["plugins"][ $plugin_basename ] = $plugins_all[ $plugin_basename ];
124
+ $to_send["plugins"][ $plugin_basename ]["bws_license_key"] = $license_key;
125
+ $to_send["plugins"][ $plugin_basename ]["bws_illegal_client"] = true;
126
+ $options = array(
127
+ 'timeout' => ( ( defined('DOING_CRON') && DOING_CRON ) ? 30 : 3),
128
+ 'body' => array( 'plugins' => serialize( $to_send ) ),
129
+ 'user-agent' => 'WordPress/' . $wp_version . '; ' . get_bloginfo( 'url' )
130
+ );
131
+ $raw_response = wp_remote_post( 'http://bestwebsoft.com/wp-content/plugins/paid-products/plugins/update-check/1.0/', $options );
132
+ if ( is_wp_error( $raw_response ) || 200 != wp_remote_retrieve_response_code( $raw_response ) ) {
133
+ $result['error'] = __( 'Something went wrong. Please try again later. If the error appears again, please contact us', 'bestwebsoft' ) . ' <a href=http://support.bestwebsoft.com>BestWebSoft</a>. ' . __( 'We are sorry for inconvenience.', 'bestwebsoft' );
134
+ } else {
135
+ $response = maybe_unserialize( wp_remote_retrieve_body( $raw_response ) );
136
+ if ( is_array( $response ) && !empty( $response ) ) {
137
+ foreach ( $response as $key => $value ) {
138
+ if ( "wrong_license_key" == $value->package ) {
139
+ $result['error'] = __( 'Wrong license key.', 'bestwebsoft' );
140
+ } else if ( "wrong_domain" == $value->package ) {
141
+ $result['error'] = __( 'This license key is bound to another site.', 'bestwebsoft' );
142
+ } else if ( "time_out" == $value->package ) {
143
+ $result['message'] = __( 'This license key is valid, but Your license has expired. If you want to update our plugin in future, you should extend the license.', 'bestwebsoft' );
144
+ } elseif ( "you_are_banned" == $value->package ) {
145
+ $result['error'] = __( "Unfortunately, you have exceeded the number of available tries.", 'bestwebsoft' );
146
+ } elseif ( "duplicate_domen_for_trial" == $value->package ) {
147
+ $result['error'] = __( "Unfortunately, the Pro Trial licence was already installed to this domain. The Pro Trial license can be installed only once.", 'bestwebsoft' );
148
+ }
149
+ if ( empty( $result['message'] ) && empty( $result['error'] ) ) {
150
+ if ( isset( $value->trial ) )
151
+ $result['message'] = __( 'The Pro Trial license key is valid.', 'bestwebsoft' );
152
+ else
153
+ $result['message'] = __( 'The license key is valid.', 'bestwebsoft' );
154
+
155
+ if ( ! empty( $value->time_out ) )
156
+ $result['message'] .= ' ' . __( 'Your license will expire on', 'bestwebsoft' ) . ' ' . $value->time_out . '.';
157
+
158
+ if ( isset( $value->trial ) && $trial_plugin != false )
159
+ $result['message'] .= ' ' . sprintf( __( 'In order to continue using the plugin it is necessary to buy a %s license.', 'bestwebsoft' ), '<a href="http://bestwebsoft.com/products/wordpress/plugins/' . $trial_plugin['link_slug'] . '/?k=' . $trial_plugin['link_key'] . '&pn=' . $trial_plugin['link_pn'] . '&v=' . $trial_plugin['plugin_info']['Version'] . '&wp_v=' . $wp_version . '" target="_blank" title="' . $trial_plugin['plugin_info']['Name'] . '">Pro</a>' );
160
+
161
+ if ( isset( $value->trial ) ) {
162
+ $bstwbsftwppdtplgns_options['trial'][ $plugin_basename ] = 1;
163
+ } else {
164
+ unset( $bstwbsftwppdtplgns_options['trial'][ $plugin_basename ] );
165
+ }
166
+ }
167
+ if ( empty( $result['error'] ) ) {
168
+ if ( isset( $value->nonprofit ) ) {
169
+ $bstwbsftwppdtplgns_options['nonprofit'][ $plugin_basename ] = 1;
170
+ } else {
171
+ unset( $bstwbsftwppdtplgns_options['nonprofit'][ $plugin_basename ] );
172
+ }
173
+
174
+ if ( $bstwbsftwppdtplgns_options[ $plugin_basename ] != $license_key ) {
175
+ $bstwbsftwppdtplgns_options[ $plugin_basename ] = $license_key;
176
+
177
+ $file = @fopen( dirname( dirname( __FILE__ ) ) . "/license_key.txt" , "w+" );
178
+ if ( $file ) {
179
+ @fwrite( $file, $license_key );
180
+ @fclose( $file );
181
+ }
182
+ $update_option = true;
183
+ }
184
+
185
+ if ( ! isset( $bstwbsftwppdtplgns_options['time_out'][ $plugin_basename ] ) || $bstwbsftwppdtplgns_options['time_out'][ $plugin_basename ] != $value->time_out ) {
186
+ $bstwbsftwppdtplgns_options['time_out'][ $plugin_basename ] = $value->time_out;
187
+ $update_option = true;
188
+ }
189
+
190
+ if ( isset( $update_option ) ) {
191
+ if ( is_multisite() )
192
+ update_site_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
193
+ else
194
+ update_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
195
+ }
196
+ }
197
+ }
198
+ } else {
199
+ $result['error'] = __( 'Something went wrong. Please try again later. If the error appears again, please contact us', 'bestwebsoft' ) . ' <a href=http://support.bestwebsoft.com>BestWebSoft</a>. ' . __( 'We are sorry for inconvenience.', 'bestwebsoft' );
200
+ }
201
+ }
202
+ }
203
+ } else {
204
+ $result['error'] = __( 'Please, enter your license key', 'bestwebsoft' );
205
+ }
206
+ }
207
+ return $result;
208
+ }
209
+ }
210
+
211
+
212
+ /**
213
+ * Function display block for checking license key for Pro plugins version
214
+ * @deprecated 1.9.8 (15.12.2016)
215
+ * @todo add notice and remove functional after 01.01.2018. Remove function after 01.01.2019
216
+ */
217
+ if ( ! function_exists ( 'bws_check_pro_license_form' ) ) {
218
+ function bws_check_pro_license_form( $plugin_basename ) {
219
+ global $bstwbsftwppdtplgns_options;
220
+ $license_key = ( isset( $bstwbsftwppdtplgns_options[ $plugin_basename ] ) ) ? $bstwbsftwppdtplgns_options[ $plugin_basename ] : ''; ?>
221
+ <div class="clear"></div>
222
+ <form method="post" action="">
223
+ <p><?php echo _e( 'If necessary, you can check if the license key is correct or reenter it in the field below. You can find your license key on your personal page - Client Area - on our website', 'bestwebsoft' ) . ' <a href="http://bestwebsoft.com/client-area">http://bestwebsoft.com/client-area</a> ' . __( '(your username is the email address specified during the purchase). If necessary, please submit "Lost your password?" request.', 'bestwebsoft' ); ?></p>
224
+ <p>
225
+ <input type="text" maxlength="100" name="bws_license_key" value="<?php echo $license_key; ?>" />
226
+ <input type="hidden" name="bws_license_submit" value="submit" />
227
+ <input type="submit" class="button" value="<?php _e( 'Check license key', 'bestwebsoft' ) ?>" />
228
+ <?php wp_nonce_field( $plugin_basename, 'bws_license_nonce_name' ); ?>
229
+ </p>
230
+ </form>
231
+ <?php }
232
+ }
233
+
234
+ /**
235
+ * Function process submit on the `Go Pro` tab for TRIAL
236
+ * @deprecated 1.9.8 (15.12.2016)
237
+ * @todo add notice and remove functional after 01.01.2018. Remove function after 01.01.2019
238
+ */
239
+ if ( ! function_exists( 'bws_go_pro_from_trial_tab' ) ) {
240
+ function bws_go_pro_from_trial_tab( $plugin_info, $plugin_basename, $page, $link_slug, $link_key, $link_pn, $trial_license_is_set = true ) {
241
+ global $wp_version, $bstwbsftwppdtplgns_options;
242
+ $bws_license_key = ( isset( $_POST['bws_license_key'] ) ) ? stripslashes( esc_html( trim( $_POST['bws_license_key'] ) ) ) : "";
243
+ if ( $trial_license_is_set ) { ?>
244
+ <form method="post" action="">
245
+ <p>
246
+ <?php echo sprintf( __( 'In order to continue using the plugin it is necessary to buy a %s license.', 'bestwebsoft' ), '<a href="http://bestwebsoft.com/products/wordpress/plugins/' . $link_slug . '/?k=' . $link_key . '&amp;pn=' . $link_pn . '&amp;v=' . $plugin_info["Version"] . '&amp;wp_v=' . $wp_version .'" target="_blank" title="' . $plugin_info["Name"] . '">Pro</a>' ) . ' ';
247
+ _e( 'After that, you can activate it by entering your license key.', 'bestwebsoft' ); ?><br />
248
+ <span class="bws_info">
249
+ <?php _e( 'License key can be found in the', 'bestwebsoft' ); ?>
250
+ <a href="http://bestwebsoft.com/wp-login.php">Client Area</a>
251
+ <?php _e( '(your username is the email address specified during the purchase).', 'bestwebsoft' ); ?>
252
+ </span>
253
+ </p>
254
+ <?php if ( isset( $bstwbsftwppdtplgns_options['go_pro'][ $plugin_basename ]['count'] ) &&
255
+ '5' < $bstwbsftwppdtplgns_options['go_pro'][ $plugin_basename ]['count'] &&
256
+ $bstwbsftwppdtplgns_options['go_pro'][ $plugin_basename ]['time'] > ( time() - ( 24 * 60 * 60 ) ) ) { ?>
257
+ <p>
258
+ <input disabled="disabled" type="text" name="bws_license_key" value="" />
259
+ <input disabled="disabled" type="submit" class="button-primary" value="<?php _e( 'Activate', 'bestwebsoft' ); ?>" />
260
+ </p>
261
+ <p><?php _e( "Unfortunately, you have exceeded the number of available tries per day.", 'bestwebsoft' ); ?></p>
262
+ <?php } else { ?>
263
+ <p>
264
+ <input type="text" maxlength="100" name="bws_license_key" value="" />
265
+ <input type="hidden" name="bws_license_plugin" value="<?php echo $plugin_basename; ?>" />
266
+ <input type="hidden" name="bws_license_submit" value="submit" />
267
+ <input type="submit" class="button-primary" value="<?php _e( 'Activate', 'bestwebsoft' ); ?>" />
268
+ <?php wp_nonce_field( $plugin_basename, 'bws_license_nonce_name' ); ?>
269
+ </p>
270
+ <?php } ?>
271
+ </form>
272
+ <?php } else { ?>
273
+ <script type="text/javascript">
274
+ window.setTimeout( function() {
275
+ window.location.href = 'admin.php?page=<?php echo $page; ?>';
276
+ }, 5000 );
277
+ </script>
278
+ <p><?php _e( "Congratulations! The Pro license of the plugin is activated successfully.", 'bestwebsoft' ); ?></p>
279
+ <p>
280
+ <?php _e( "Please, go to", 'bestwebsoft' ); ?> <a href="admin.php?page=<?php echo $page; ?>"><?php _e( 'the setting page', 'bestwebsoft' ); ?></a>
281
+ (<?php _e( "You will be redirected automatically in 5 seconds.", 'bestwebsoft' ); ?>)
282
+ </p>
283
+ <?php }
284
+ }
285
+ }
286
+
287
+ /**
288
+ * Function process submit on the `Go Pro` tab
289
+ * @deprecated 1.9.8 (15.12.2016)
290
+ * @todo add notice and remove functional after 01.01.2018. Remove function after 01.01.2019
291
+ */
292
+ if ( ! function_exists( 'bws_go_pro_tab_check' ) ) {
293
+ function bws_go_pro_tab_check( $plugin_basename, $plugin_options_name = false, $is_network_option = false ) {
294
+ global $wp_version, $bstwbsftwppdtplgns_options;
295
+ $result = array();
296
+
297
+ $bws_license_key = ( isset( $_POST['bws_license_key'] ) ) ? stripslashes( esc_html( trim( $_POST['bws_license_key'] ) ) ) : "";
298
+
299
+ if ( ! empty( $plugin_options_name ) && isset( $_POST['bws_hide_premium_options_submit'] ) && check_admin_referer( $plugin_basename, 'bws_license_nonce_name' ) ) {
300
+
301
+ $plugin_options = ( $is_network_option ) ? get_site_option( $plugin_options_name ) : get_option( $plugin_options_name );
302
+
303
+ if ( !empty( $plugin_options['hide_premium_options'] ) ) {
304
+
305
+ $key = array_search( get_current_user_id(), $plugin_options['hide_premium_options'] );
306
+ if ( false !== $key ) {
307
+ unset( $plugin_options['hide_premium_options'][ $key ] );
308
+ }
309
+
310
+ if ( $is_network_option )
311
+ update_site_option( $plugin_options_name, $plugin_options );
312
+ else
313
+ update_option( $plugin_options_name, $plugin_options );
314
+
315
+ $result['message'] = __( 'Check premium options on the plugin settings page!', 'bestwebsoft' );
316
+ }
317
+ }
318
+
319
+ if ( isset( $_POST['bws_license_submit'] ) && check_admin_referer( $plugin_basename, 'bws_license_nonce_name' ) ) {
320
+ if ( '' != $bws_license_key ) {
321
+ if ( strlen( $bws_license_key ) != 18 ) {
322
+ $result['error'] = __( "Wrong license key", 'bestwebsoft' );
323
+ } else {
324
+ $bws_license_plugin = stripslashes( esc_html( $_POST['bws_license_plugin'] ) );
325
+ if ( isset( $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] ) && $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['time'] > ( time() - (24 * 60 * 60) ) ) {
326
+ $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] = $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] + 1;
327
+ } else {
328
+ $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] = 1;
329
+ $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['time'] = time();
330
+ }
331
+
332
+ /* download Pro */
333
+ if ( ! function_exists( 'get_plugins' ) )
334
+ require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
335
+
336
+ $all_plugins = get_plugins();
337
+
338
+ if ( ! array_key_exists( $bws_license_plugin, $all_plugins ) ) {
339
+ $current = get_site_transient( 'update_plugins' );
340
+ if ( is_array( $all_plugins ) && !empty( $all_plugins ) && isset( $current ) && is_array( $current->response ) ) {
341
+ $to_send = array();
342
+ $to_send["plugins"][ $bws_license_plugin ] = array();
343
+ $to_send["plugins"][ $bws_license_plugin ]["bws_license_key"] = $bws_license_key;
344
+ $to_send["plugins"][ $bws_license_plugin ]["bws_illegal_client"] = true;
345
+ $options = array(
346
+ 'timeout' => ( ( defined( 'DOING_CRON' ) && DOING_CRON ) ? 30 : 3 ),
347
+ 'body' => array( 'plugins' => serialize( $to_send ) ),
348
+ 'user-agent' => 'WordPress/' . $wp_version . '; ' . get_bloginfo( 'url' ) );
349
+ $raw_response = wp_remote_post( 'http://bestwebsoft.com/wp-content/plugins/paid-products/plugins/update-check/1.0/', $options );
350
+
351
+ if ( is_wp_error( $raw_response ) || 200 != wp_remote_retrieve_response_code( $raw_response ) ) {
352
+ $result['error'] = __( "Something went wrong. Please try again later. If the error appears again, please contact us", 'bestwebsoft' ) . ' <a href="http://support.bestwebsoft.com">BestWebSoft</a>. ' . __( "We are sorry for inconvenience.", 'bestwebsoft' );
353
+ } else {
354
+ $response = maybe_unserialize( wp_remote_retrieve_body( $raw_response ) );
355
+ if ( is_array( $response ) && !empty( $response ) ) {
356
+ foreach ( $response as $key => $value ) {
357
+ if ( "wrong_license_key" == $value->package ) {
358
+ $result['error'] = __( "Wrong license key.", 'bestwebsoft' );
359
+ } elseif ( "wrong_domain" == $value->package ) {
360
+ $result['error'] = __( "This license key is bound to another site.", 'bestwebsoft' );
361
+ } elseif ( "you_are_banned" == $value->package ) {
362
+ $result['error'] = __( "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually.", 'bestwebsoft' );
363
+ } elseif ( "time_out" == $value->package ) {
364
+ $result['error'] = sprintf( __( "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates, you should extend it in your %s", 'bestwebsoft' ), ' <a href="http://bestwebsoft.com/client-area">Client Area</a>' );
365
+ } elseif ( "duplicate_domen_for_trial" == $value->package ) {
366
+ $result['error'] = __( "Unfortunately, the Pro licence was already installed to this domain. The Pro Trial license can be installed only once.", 'bestwebsoft' );
367
+ }
368
+ }
369
+ if ( empty( $result['error'] ) ) {
370
+ $bstwbsftwppdtplgns_options[ $bws_license_plugin ] = $bws_license_key;
371
+
372
+ $url = 'http://bestwebsoft.com/wp-content/plugins/paid-products/plugins/downloads/?bws_first_download=' . $bws_license_plugin . '&bws_license_key=' . $bws_license_key . '&download_from=5';
373
+ $uploadDir = wp_upload_dir();
374
+ $zip_name = explode( '/', $bws_license_plugin );
375
+
376
+ if ( !function_exists( 'curl_init' ) ) {
377
+ $received_content = file_get_contents( $url );
378
+ } else {
379
+ $ch = curl_init();
380
+ curl_setopt( $ch, CURLOPT_URL, $url );
381
+ curl_setopt( $ch, CURLOPT_RETURNTRANSFER, true );
382
+ $received_content = curl_exec( $ch );
383
+ curl_close( $ch );
384
+ }
385
+
386
+ if ( ! $received_content ) {
387
+ $result['error'] = __( "Failed to download the zip archive. Please, upload the plugin manually", 'bestwebsoft' );
388
+ } else {
389
+ if ( is_writable( $uploadDir["path"] ) ) {
390
+ $file_put_contents = $uploadDir["path"] . "/" . $zip_name[0] . ".zip";
391
+ if ( file_put_contents( $file_put_contents, $received_content ) ) {
392
+ @chmod( $file_put_contents, octdec( 755 ) );
393
+ if ( class_exists( 'ZipArchive' ) ) {
394
+ $zip = new ZipArchive();
395
+ if ( $zip->open( $file_put_contents ) === TRUE ) {
396
+ $zip->extractTo( WP_PLUGIN_DIR );
397
+ $zip->close();
398
+ } else {
399
+ $result['error'] = __( "Failed to open the zip archive. Please, upload the plugin manually", 'bestwebsoft' );
400
+ }
401
+ } elseif ( class_exists( 'Phar' ) ) {
402
+ $phar = new PharData( $file_put_contents );
403
+ $phar->extractTo( WP_PLUGIN_DIR );
404
+ } else {
405
+ $result['error'] = __( "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually", 'bestwebsoft' );
406
+ }
407
+ @unlink( $file_put_contents );
408
+ } else {
409
+ $result['error'] = __( "Failed to download the zip archive. Please, upload the plugin manually", 'bestwebsoft' );
410
+ }
411
+ } else {
412
+ $result['error'] = __( "UploadDir is not writable. Please, upload the plugin manually", 'bestwebsoft' );
413
+ }
414
+ }
415
+
416
+ /* activate Pro */
417
+ if ( file_exists( WP_PLUGIN_DIR . '/' . $zip_name[0] ) ) {
418
+ if ( is_multisite() && is_plugin_active_for_network( $plugin_basename ) ) {
419
+ /* if multisite and free plugin is network activated */
420
+ $active_plugins = get_site_option( 'active_sitewide_plugins' );
421
+ $active_plugins[ $bws_license_plugin ] = time();
422
+ update_site_option( 'active_sitewide_plugins', $active_plugins );
423
+ } else {
424
+ /* activate on a single blog */
425
+ $active_plugins = get_option( 'active_plugins' );
426
+ array_push( $active_plugins, $bws_license_plugin );
427
+ update_option( 'active_plugins', $active_plugins );
428
+ }
429
+ $result['pro_plugin_is_activated'] = true;
430
+ } elseif ( empty( $result['error'] ) ) {
431
+ $result['error'] = __( "Failed to download the zip archive. Please, upload the plugin manually", 'bestwebsoft' );
432
+ }
433
+ }
434
+ } else {
435
+ $result['error'] = __( "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvenience.", 'bestwebsoft' );
436
+ }
437
+ }
438
+ }
439
+ } else {
440
+ $bstwbsftwppdtplgns_options[ $bws_license_plugin ] = $bws_license_key;
441
+ /* activate Pro */
442
+ if ( ! is_plugin_active( $bws_license_plugin ) ) {
443
+ if ( is_multisite() && is_plugin_active_for_network( $plugin_basename ) ) {
444
+ /* if multisite and free plugin is network activated */
445
+ $network_wide = true;
446
+ } else {
447
+ /* activate on a single blog */
448
+ $network_wide = false;
449
+ }
450
+ activate_plugin( $bws_license_plugin, NULL, $network_wide );
451
+ $result['pro_plugin_is_activated'] = true;
452
+ }
453
+ }
454
+ if ( is_multisite() )
455
+ update_site_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
456
+ else
457
+ update_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
458
+
459
+ if ( ! empty( $result['pro_plugin_is_activated'] ) )
460
+ delete_transient( 'bws_plugins_update' );
461
+ }
462
+ } else {
463
+ $result['error'] = __( "Please, enter Your license key", 'bestwebsoft' );
464
+ }
465
+ }
466
+ return $result;
467
+ }
468
+ }
469
+
470
+ /**
471
+ * Function display block for restoring default product settings
472
+ * @deprecated 1.9.8 (15.12.2016)
473
+ * @todo add notice and remove functional after 01.01.2018. Remove function after 01.01.2019
474
+ */
475
+ if ( ! function_exists ( 'bws_form_restore_default_settings' ) ) {
476
+ function bws_form_restore_default_settings( $plugin_basename, $change_permission_attr = '' ) { ?>
477
+ <form method="post" action="">
478
+ <p><?php _e( 'Restore all plugin settings to defaults', 'bestwebsoft' ); ?></p>
479
+ <p>
480
+ <input <?php echo $change_permission_attr; ?> type="submit" class="button" value="<?php _e( 'Restore settings', 'bestwebsoft' ); ?>" />
481
+ </p>
482
+ <input type="hidden" name="bws_restore_default" value="submit" />
483
+ <?php wp_nonce_field( $plugin_basename, 'bws_settings_nonce_name' ); ?>
484
+ </form>
485
+ <?php }
486
+ }
487
+
488
+ /**
489
+ * Function display 'Custom code' tab
490
+ *
491
+ * @deprecated 1.9.8 (15.12.2016)
492
+ * @todo add notice and remove functional after 01.01.2018. Remove function after 01.01.2019
493
+ */
494
+ if ( ! function_exists( 'bws_custom_code_tab' ) ) {
495
+ function bws_custom_code_tab() {
496
+ if ( ! current_user_can( 'edit_plugins' ) )
497
+ wp_die( __( 'You do not have sufficient permissions to edit plugins for this site.', 'bestwebsoft' ) );
498
+
499
+ global $bstwbsftwppdtplgns_options;
500
+
501
+ $message = $content = '';
502
+ $is_css_active = $is_php_active = false;
503
+
504
+ $upload_dir = wp_upload_dir();
505
+ $folder = $upload_dir['basedir'] . '/bws-custom-code';
506
+ if ( ! $upload_dir["error"] ) {
507
+ if ( ! is_dir( $folder ) )
508
+ wp_mkdir_p( $folder, 0755 );
509
+
510
+ $index_file = $upload_dir['basedir'] . '/bws-custom-code/index.php';
511
+ if ( ! file_exists( $index_file ) ) {
512
+ if ( $f = fopen( $index_file, 'w+' ) )
513
+ fclose( $f );
514
+ }
515
+ }
516
+
517
+ $css_file = 'bws-custom-code.css';
518
+ $real_css_file = $folder . '/' . $css_file;
519
+
520
+ $php_file = 'bws-custom-code.php';
521
+ $real_php_file = $folder . '/' . $php_file;
522
+
523
+ $is_multisite = is_multisite();
524
+ if ( $is_multisite )
525
+ $blog_id = get_current_blog_id();
526
+
527
+ if ( isset( $_REQUEST['bws_update_custom_code'] ) && check_admin_referer( 'bws_update_' . $css_file ) ) {
528
+
529
+ /* CSS */
530
+ $newcontent_css = wp_unslash( $_POST['bws_newcontent_css'] );
531
+ if ( ! empty( $newcontent_css ) && isset( $_REQUEST['bws_custom_css_active'] ) ) {
532
+ if ( $is_multisite )
533
+ $bstwbsftwppdtplgns_options['custom_code'][ $blog_id ][ $css_file ] = $upload_dir['baseurl'] . '/bws-custom-code/' . $css_file;
534
+ else
535
+ $bstwbsftwppdtplgns_options['custom_code'][ $css_file ] = $upload_dir['baseurl'] . '/bws-custom-code/' . $css_file;
536
+ } else {
537
+ if ( $is_multisite ) {
538
+ if ( isset( $bstwbsftwppdtplgns_options['custom_code'][ $blog_id ][ $css_file ] ) )
539
+ unset( $bstwbsftwppdtplgns_options['custom_code'][ $blog_id ][ $css_file ] );
540
+ } else {
541
+ if ( isset( $bstwbsftwppdtplgns_options['custom_code'][ $css_file ] ) )
542
+ unset( $bstwbsftwppdtplgns_options['custom_code'][ $css_file ] );
543
+ }
544
+ }
545
+ if ( $f = fopen( $real_css_file, 'w+' ) ) {
546
+ fwrite( $f, $newcontent_css );
547
+ fclose( $f );
548
+ $message .= sprintf( __( 'File %s edited successfully.', 'bestwebsoft' ), '<i>' . $css_file . '</i>' ) . ' ';
549
+ } else {
550
+ $error .= __( 'Not enough permissions to create or update the file', 'bestwebsoft' ) . ' ' . $real_css_file . '. ';
551
+ }
552
+
553
+ /* PHP */
554
+ $newcontent_php = wp_unslash( trim( $_POST['bws_newcontent_php'] ) );
555
+ if ( file_exists( $index_file ) ) {
556
+ if ( ! empty( $newcontent_php ) && isset( $_REQUEST['bws_custom_php_active'] ) ) {
557
+ if ( $is_multisite )
558
+ $bstwbsftwppdtplgns_options['custom_code'][ $blog_id ][ $php_file ] = $real_php_file;
559
+ else
560
+ $bstwbsftwppdtplgns_options['custom_code'][ $php_file ] = $real_php_file;
561
+ } else {
562
+ if ( $is_multisite ) {
563
+ if ( isset( $bstwbsftwppdtplgns_options['custom_code'][ $blog_id ][ $php_file ] ) )
564
+ unset( $bstwbsftwppdtplgns_options['custom_code'][ $blog_id ][ $php_file ] );
565
+ } else {
566
+ if ( isset( $bstwbsftwppdtplgns_options['custom_code'][ $php_file ] ) )
567
+ unset( $bstwbsftwppdtplgns_options['custom_code'][ $php_file ] );
568
+ }
569
+ }
570
+
571
+ if ( $f = fopen( $real_php_file, 'w+' ) ) {
572
+ $newcontent_php = $newcontent_php;
573
+ fwrite( $f, $newcontent_php );
574
+ fclose( $f );
575
+ $message .= sprintf( __( 'File %s edited successfully.', 'bestwebsoft' ), '<i>' . $php_file . '</i>' );
576
+ } else {
577
+ $error .= __( 'Not enough permissions to create or update the file', 'bestwebsoft' ) . ' ' . $real_php_file . '. ';
578
+ }
579
+ } else {
580
+ $error .= __( 'Not enough permissions to create the file', 'bestwebsoft' ) . ' ' . $index_file . '. ';
581
+ }
582
+
583
+ if ( ! empty( $error ) )
584
+ $error .= ' <a href="https://codex.wordpress.org/Changing_File_Permissions" target="_blank">' . __( 'Learn more', 'bestwebsoft' ) . '</a>';
585
+
586
+ if ( $is_multisite )
587
+ update_site_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
588
+ else
589
+ update_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
590
+ }
591
+
592
+ if ( file_exists( $real_css_file ) ) {
593
+ update_recently_edited( $real_css_file );
594
+ $content_css = esc_textarea( file_get_contents( $real_css_file ) );
595
+ if ( ( $is_multisite && isset( $bstwbsftwppdtplgns_options['custom_code'][ $blog_id ][ $css_file ] ) ) ||
596
+ ( ! $is_multisite && isset( $bstwbsftwppdtplgns_options['custom_code'][ $css_file ] ) ) ) {
597
+ $is_css_active = true;
598
+ }
599
+ }
600
+ if ( file_exists( $real_php_file ) ) {
601
+ update_recently_edited( $real_php_file );
602
+ $content_php = esc_textarea( file_get_contents( $real_php_file ) );
603
+ if ( ( $is_multisite && isset( $bstwbsftwppdtplgns_options['custom_code'][ $blog_id ][ $php_file ] ) ) ||
604
+ ( ! $is_multisite && isset( $bstwbsftwppdtplgns_options['custom_code'][ $php_file ] ) ) ) {
605
+ $is_php_active = true;
606
+ }
607
+ } else {
608
+ $content_php = "<?php" . "\n" . "if ( ! defined( 'ABSPATH' ) ) exit;" . "\n" . "if ( ! defined( 'BWS_GLOBAL' ) ) exit;" . "\n\n" . "/* Start your code here */" . "\n";
609
+ }
610
+
611
+ if ( ! empty( $message ) ) { ?>
612
+ <div id="message" class="below-h2 updated notice is-dismissible"><p><?php echo $message; ?></p></div>
613
+ <?php } ?>
614
+ <form action="" method="post">
615
+ <?php foreach ( array( 'css', 'php' ) as $extension ) { ?>
616
+ <p>
617
+ <?php if ( 'css' == $extension )
618
+ _e( 'These styles will be added to the header on all pages of your site.', 'bestwebsoft' );
619
+ else
620
+ printf( __( 'This PHP code will be hooked to the %s action and will be printed on front end only.', 'bestwebsoft' ), '<a href="http://codex.wordpress.org/Plugin_API/Action_Reference/init" target="_blank"><code>init</code></a>' ); ?>
621
+ </p>
622
+ <p><big>
623
+ <?php if ( ! file_exists( ${"real_{$extension}_file"} ) || ( is_writeable( ${"real_{$extension}_file"} ) ) ) {
624
+ echo __( 'Editing', 'bestwebsoft' ) . ' <strong>' . ${"{$extension}_file"} . '</strong>';
625
+ } else {
626
+ echo __( 'Browsing', 'bestwebsoft' ) . ' <strong>' . ${"{$extension}_file"} . '</strong>';
627
+ } ?>
628
+ </big></p>
629
+ <p><label><input type="checkbox" name="bws_custom_<?php echo $extension; ?>_active" value="1" <?php if ( ${"is_{$extension}_active"} ) echo "checked"; ?> /> <?php _e( 'Activate', 'bestwebsoft' ); ?></label></p>
630
+ <textarea cols="70" rows="25" name="bws_newcontent_<?php echo $extension; ?>" id="bws_newcontent_<?php echo $extension; ?>"><?php if ( isset( ${"content_{$extension}"} ) ) echo ${"content_{$extension}"}; ?></textarea>
631
+ <p class="description">
632
+ <a href="<?php echo ( 'css' == $extension ) ? 'https://developer.mozilla.org/en-US/docs/Web/Guide/CSS/Getting_started' : 'http://php.net/' ?>" target="_blank">
633
+ <?php printf( __( 'Learn more about %s', 'bestwebsoft' ), strtoupper( $extension ) ); ?>
634
+ </a>
635
+ </p>
636
+ <?php }
637
+ if ( ( ! file_exists( $real_css_file ) || is_writeable( $real_css_file ) ) && ( ! file_exists( $real_php_file ) || is_writeable( $real_php_file ) ) ) { ?>
638
+ <p class="submit">
639
+ <input type="hidden" name="bws_update_custom_code" value="submit" />
640
+ <?php submit_button( __( 'Save Changes', 'bestwebsoft' ), 'primary', 'submit', false );
641
+ wp_nonce_field( 'bws_update_' . $css_file ); ?>
642
+ </p>
643
+ <?php } else { ?>
644
+ <p><em><?php printf( __( 'You need to make this files writable before you can save your changes. See %s the Codex %s for more information.', 'bestwebsoft' ),
645
+ '<a href="https://codex.wordpress.org/Changing_File_Permissions" target="_blank">',
646
+ '</a>' ); ?></em></p>
647
+ <?php } ?>
648
+ </form>
649
+ <?php }
650
+ }
651
+
652
+ /**
653
+ * Function display GO PRO tab
654
+ * @deprecated 1.9.8 (15.12.2016)
655
+ * @todo add notice and remove functional after 01.01.2018. Remove function after 01.01.2019
656
+ */
657
+ if ( ! function_exists( 'bws_go_pro_tab_show' ) ) {
658
+ function bws_go_pro_tab_show( $bws_hide_premium_options_check, $plugin_info, $plugin_basename, $page, $pro_page, $bws_license_plugin, $link_slug, $link_key, $link_pn, $pro_plugin_is_activated = false, $trial_days_number = false ) {
659
+ global $wp_version, $bstwbsftwppdtplgns_options;
660
+ $bws_license_key = ( isset( $_POST['bws_license_key'] ) ) ? stripslashes( esc_html( trim( $_POST['bws_license_key'] ) ) ) : "";
661
+ if ( $pro_plugin_is_activated ) { ?>
662
+ <script type="text/javascript">
663
+ window.setTimeout( function() {
664
+ window.location.href = 'admin.php?page=<?php echo $pro_page; ?>';
665
+ }, 5000 );
666
+ </script>
667
+ <p><?php _e( "Congratulations! Pro version of the plugin is installed and activated successfully.", 'bestwebsoft' ); ?></p>
668
+ <p>
669
+ <?php _e( "Please, go to", 'bestwebsoft' ); ?> <a href="admin.php?page=<?php echo $pro_page; ?>"><?php _e( 'the setting page', 'bestwebsoft' ); ?></a>
670
+ (<?php _e( "You will be redirected automatically in 5 seconds.", 'bestwebsoft' ); ?>)
671
+ </p>
672
+ <?php } else {
673
+ if ( $bws_hide_premium_options_check ) { ?>
674
+ <form method="post" action="">
675
+ <p>
676
+ <input type="hidden" name="bws_hide_premium_options_submit" value="submit" />
677
+ <input type="submit" class="button" value="<?php _e( 'Show Pro features', 'bestwebsoft' ); ?>" />
678
+ <?php wp_nonce_field( $plugin_basename, 'bws_license_nonce_name' ); ?>
679
+ </p>
680
+ </form>
681
+ <?php } ?>
682
+ <form method="post" action="">
683
+ <p>
684
+ <?php _e( 'Enter your license key to install and activate', 'bestwebsoft' ); ?>
685
+ <a href="http://bestwebsoft.com/products/wordpress/plugins/<?php echo $link_slug; ?>/?k=<?php echo $link_key; ?>&amp;pn=<?php echo $link_pn; ?>&amp;v=<?php echo $plugin_info["Version"]; ?>&amp;wp_v=<?php echo $wp_version; ?>" target="_blank" title="<?php echo $plugin_info["Name"]; ?> Pro">Pro</a>
686
+ <?php _e( 'version of the plugin.', 'bestwebsoft' ); ?><br />
687
+ <span class="bws_info">
688
+ <?php _e( 'License key can be found in the', 'bestwebsoft' ); ?>
689
+ <a href="http://bestwebsoft.com/wp-login.php">Client Area</a>
690
+ <?php _e( '(your username is the email address specified during the purchase).', 'bestwebsoft' ); ?>
691
+ </span>
692
+ </p>
693
+ <?php if ( $trial_days_number !== false )
694
+ $trial_days_number = __( 'or', 'bestwebsoft' ) . ' <a href="http://bestwebsoft.com/products/wordpress/plugins/' . $link_slug . '/trial/" target="_blank">' . sprintf( __( 'Start Your Free %s-Day Trial Now', 'bestwebsoft' ), $trial_days_number ) . '</a>';
695
+ if ( isset( $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] ) &&
696
+ '5' < $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] &&
697
+ $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['time'] > ( time() - ( 24 * 60 * 60 ) ) ) { ?>
698
+ <p>
699
+ <input disabled="disabled" type="text" name="bws_license_key" value="<?php echo $bws_license_key; ?>" />
700
+ <input disabled="disabled" type="submit" class="button-primary" value="<?php _e( 'Activate', 'bestwebsoft' ); ?>" />
701
+ <?php if ( $trial_days_number !== false ) echo $trial_days_number; ?>
702
+ </p>
703
+ <p><?php _e( "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually.", 'bestwebsoft' ); ?></p>
704
+ <?php } else { ?>
705
+ <p>
706
+ <input type="text" maxlength="100" name="bws_license_key" value="<?php echo $bws_license_key; ?>" />
707
+ <input type="hidden" name="bws_license_plugin" value="<?php echo $bws_license_plugin; ?>" />
708
+ <input type="hidden" name="bws_license_submit" value="submit" />
709
+ <input type="submit" class="button-primary" value="<?php _e( 'Activate', 'bestwebsoft' ); ?>" />
710
+ <?php if ( $trial_days_number !== false ) echo $trial_days_number;
711
+ wp_nonce_field( $plugin_basename, 'bws_license_nonce_name' ); ?>
712
+ </p>
713
+ <?php } ?>
714
+ </form>
715
+ <?php }
716
+ }
717
+ }
bws_menu/images/pattern.png DELETED
Binary file
bws_menu/images/pattern_bg.png DELETED
Binary file
bws_menu/js/general_script.js CHANGED
@@ -1,6 +1,6 @@
1
  function bws_show_settings_notice() {
2
  (function($) {
3
- $( '.updated.fade, .error' ).css( 'display', 'none' );
4
  $( '#bws_save_settings_notice' ).css( 'display', 'block' );
5
  })(jQuery);
6
  }
@@ -28,8 +28,9 @@ function bws_show_settings_notice() {
28
  theme: "default",
29
  styleActiveLine: true,
30
  matchBrackets: true,
31
- lineNumbers: true,
32
- });
 
33
  }
34
 
35
  if ( $( '#bws_newcontent_php' ).length > 0 ) {
@@ -42,6 +43,15 @@ function bws_show_settings_notice() {
42
  /* disable lines */
43
  editor.markText( {ch:0,line:0}, {ch:0,line:5}, { readOnly: true, className: 'bws-readonly' } );
44
  }
 
 
 
 
 
 
 
 
 
45
  }
46
 
47
  /* banner to settings */
@@ -56,5 +66,92 @@ function bws_show_settings_notice() {
56
  $( '.bws_banner_to_settings_joint .bws-more' ).removeClass( 'hidden' );
57
  }
58
  });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
59
  });
60
  })(jQuery);
1
  function bws_show_settings_notice() {
2
  (function($) {
3
+ $( '.updated.fade:not(.bws_visible), .error:not(.bws_visible)' ).css( 'display', 'none' );
4
  $( '#bws_save_settings_notice' ).css( 'display', 'block' );
5
  })(jQuery);
6
  }
28
  theme: "default",
29
  styleActiveLine: true,
30
  matchBrackets: true,
31
+ lineNumbers: true,
32
+ addModeClass: 'bws_newcontent_css'
33
+ });
34
  }
35
 
36
  if ( $( '#bws_newcontent_php' ).length > 0 ) {
43
  /* disable lines */
44
  editor.markText( {ch:0,line:0}, {ch:0,line:5}, { readOnly: true, className: 'bws-readonly' } );
45
  }
46
+
47
+ if ( $( '#bws_newcontent_js' ).length > 0 ) {
48
+ var editor = CodeMirror.fromTextArea( document.getElementById( "bws_newcontent_js" ), {
49
+ mode: 'javascript',
50
+ styleActiveLine: true,
51
+ matchBrackets: true,
52
+ lineNumbers: true,
53
+ });
54
+ }
55
  }
56
 
57
  /* banner to settings */
66
  $( '.bws_banner_to_settings_joint .bws-more' ).removeClass( 'hidden' );
67
  }
68
  });
69
+
70
+ /* help tooltips */
71
+ if ( $( '.bws_help_box' ).length > 0 ) {
72
+ $( '.bws_help_box' ).each( function() {
73
+ var content = $( this ).find( '.bws_hidden_help_text' ).html(),
74
+ max_width = $( this ).hasClass( 'bws-auto-width' ) ? 'auto' : '200px';
75
+ $( this ).tipTip({
76
+ 'content': content,
77
+ 'fadeIn': 50,
78
+ 'fadeOut': 50,
79
+ 'delay': 200,
80
+ 'maxWidth': max_width
81
+ });
82
+ });
83
+ }
84
+
85
+ /**
86
+ * Handle the styling of the "Settings" tab on the plugin settings page
87
+ */
88
+ var tabs = $( '#bws_settings_tabs_wrapper' );
89
+ if ( tabs.length ) {
90
+ var current_tab_field = $( 'input[name="bws_active_tab"]' ),
91
+ prevent_tabs_change = false,
92
+ active_tab = current_tab_field.val();
93
+ if ( '' == active_tab ) {
94
+ var active_tab_index = 0;
95
+ } else {
96
+ var active_tab_index = $( '#bws_settings_tabs li[data-slug=' + active_tab + ']' ).index();
97
+ }
98
+
99
+ $( '.bws_tab' ).css( 'min-height', $( '#bws_settings_tabs' ).css( 'height' ) );
100
+
101
+ /* jQuery tabs initialization */
102
+ tabs.tabs({
103
+ active: active_tab_index
104
+ }).on( "tabsactivate", function( event, ui ) {
105
+ if ( ! prevent_tabs_change ) {
106
+ active_tab = ui.newTab.data( 'slug' );
107
+ current_tab_field.val( active_tab );
108
+ }
109
+ prevent_tabs_change = false;
110
+ });
111
+ $( '.bws_trigger_tab_click' ).on( 'click', function () {
112
+ $( '#bws_settings_tabs a[href="' + $( this ).attr( 'href' ) + '"]' ).click();
113
+ });
114
+ }
115
+ /**
116
+ * Hide content for options on the plugin settings page
117
+ */
118
+ var options = $( '.bws_option_affect' );
119
+ if ( options.length ) {
120
+ options.each( function() {
121
+ var element = $( this );
122
+ if ( element.is( ':selected' ) || element.is( ':checked' ) ) {
123
+ $( element.data( 'affect-show' ) ).show();
124
+ $( element.data( 'affect-hide' ) ).hide();
125
+ } else {
126
+ $( element.data( 'affect-show' ) ).hide();
127
+ $( element.data( 'affect-hide' ) ).show();
128
+ }
129
+ if ( element.is( 'option' ) ) {
130
+ element.parent().on( 'change', function() {
131
+ var affect_hide = element.data( 'affect-hide' ),
132
+ affect_show = element.data( 'affect-show' );
133
+ if ( element.is( ':selected' ) ) {
134
+ $( affect_show ).show();
135
+ $( affect_hide ).hide();
136
+ } else {
137
+ $( affect_show ).hide();
138
+ $( affect_hide ).show();
139
+ }
140
+ });
141
+ } else {
142
+ element.on( 'change', function() {
143
+ var affect_hide = element.data( 'affect-hide' ),
144
+ affect_show = element.data( 'affect-show' );
145
+ if ( element.is( ':selected' ) || element.is( ':checked' ) ) {
146
+ $( affect_show ).show();
147
+ $( affect_hide ).hide();
148
+ } else {
149
+ $( affect_show ).hide();
150
+ $( affect_hide ).show();
151
+ }
152
+ });
153
+ }
154
+ });
155
+ }
156
  });
157
  })(jQuery);
bws_menu/js/jquery.tipTip.minified.js ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /*
2
+ * TipTip
3
+ * Copyright 2010 Drew Wilson
4
+ * www.drewwilson.com
5
+ * code.drewwilson.com/entry/tiptip-jquery-plugin
6
+ *
7
+ * Version 1.3 - Updated: Mar. 23, 2010
8
+ *
9
+ * This Plug-In will create a custom tooltip to replace the default
10
+ * browser tooltip. It is extremely lightweight and very smart in
11
+ * that it detects the edges of the browser window and will make sure
12
+ * the tooltip stays within the current window size. As a result the
13
+ * tooltip will adjust itself to be displayed above, below, to the left
14
+ * or to the right depending on what is necessary to stay within the
15
+ * browser window. It is completely customizable as well via CSS.
16
+ *
17
+ * This TipTip jQuery plug-in is dual licensed under the MIT and GPL licenses:
18
+ * http://www.opensource.org/licenses/mit-license.php
19
+ * http://www.gnu.org/licenses/gpl.html
20
+ */
21
+ (function($){$.fn.tipTip=function(options){var defaults={activation:"hover",keepAlive:false,maxWidth:"200px",edgeOffset:3,defaultPosition:"bottom",delay:400,fadeIn:200,fadeOut:200,attribute:"title",content:false,enter:function(){},exit:function(){}};var opts=$.extend(defaults,options);if($("#tiptip_holder").length<=0){var tiptip_holder=$('<div id="tiptip_holder" style="max-width:'+opts.maxWidth+';"></div>');var tiptip_content=$('<div id="tiptip_content"></div>');var tiptip_arrow=$('<div id="tiptip_arrow"></div>');$("body").append(tiptip_holder.html(tiptip_content).prepend(tiptip_arrow.html('<div id="tiptip_arrow_inner"></div>')))}else{var tiptip_holder=$("#tiptip_holder");var tiptip_content=$("#tiptip_content");var tiptip_arrow=$("#tiptip_arrow")}return this.each(function(){var org_elem=$(this);if(opts.content){var org_title=opts.content}else{var org_title=org_elem.attr(opts.attribute)}if(org_title!=""){if(!opts.content){org_elem.removeAttr(opts.attribute)}var timeout=false;if(opts.activation=="hover"){org_elem.hover(function(){active_tiptip()},function(){if(!opts.keepAlive){deactive_tiptip()}});if(opts.keepAlive){tiptip_holder.hover(function(){},function(){deactive_tiptip()})}}else if(opts.activation=="focus"){org_elem.focus(function(){active_tiptip()}).blur(function(){deactive_tiptip()})}else if(opts.activation=="click"){org_elem.click(function(){active_tiptip();return false}).hover(function(){},function(){if(!opts.keepAlive){deactive_tiptip()}});if(opts.keepAlive){tiptip_holder.hover(function(){},function(){deactive_tiptip()})}}function active_tiptip(){opts.enter.call(this);tiptip_content.html(org_title);tiptip_holder.hide().removeAttr("class").css("margin","0");tiptip_arrow.removeAttr("style");var top=parseInt(org_elem.offset()['top']);var left=parseInt(org_elem.offset()['left']);var org_width=parseInt(org_elem.outerWidth());var org_height=parseInt(org_elem.outerHeight());var tip_w=tiptip_holder.outerWidth();var tip_h=tiptip_holder.outerHeight();var w_compare=Math.round((org_width-tip_w)/2);var h_compare=Math.round((org_height-tip_h)/2);var marg_left=Math.round(left+w_compare);var marg_top=Math.round(top+org_height+opts.edgeOffset);var t_class="";var arrow_top="";var arrow_left=Math.round(tip_w-12)/2;if(opts.defaultPosition=="bottom"){t_class="_bottom"}else if(opts.defaultPosition=="top"){t_class="_top"}else if(opts.defaultPosition=="left"){t_class="_left"}else if(opts.defaultPosition=="right"){t_class="_right"}var right_compare=(w_compare+left)<parseInt($(window).scrollLeft());var left_compare=(tip_w+left)>parseInt($(window).width());if((right_compare&&w_compare<0)||(t_class=="_right"&&!left_compare)||(t_class=="_left"&&left<(tip_w+opts.edgeOffset+5))){t_class="_right";arrow_top=Math.round(tip_h-13)/2;arrow_left=-12;marg_left=Math.round(left+org_width+opts.edgeOffset);marg_top=Math.round(top+h_compare)}else if((left_compare&&w_compare<0)||(t_class=="_left"&&!right_compare)){t_class="_left";arrow_top=Math.round(tip_h-13)/2;arrow_left=Math.round(tip_w);marg_left=Math.round(left-(tip_w+opts.edgeOffset+5));marg_top=Math.round(top+h_compare)}var top_compare=(top+org_height+opts.edgeOffset+tip_h+8)>parseInt($(window).height()+$(window).scrollTop());var bottom_compare=((top+org_height)-(opts.edgeOffset+tip_h+8))<0;if(top_compare||(t_class=="_bottom"&&top_compare)||(t_class=="_top"&&!bottom_compare)){if(t_class=="_top"||t_class=="_bottom"){t_class="_top"}else{t_class=t_class+"_top"}arrow_top=tip_h;marg_top=Math.round(top-(tip_h+5+opts.edgeOffset))}else if(bottom_compare|(t_class=="_top"&&bottom_compare)||(t_class=="_bottom"&&!top_compare)){if(t_class=="_top"||t_class=="_bottom"){t_class="_bottom"}else{t_class=t_class+"_bottom"}arrow_top=-12;marg_top=Math.round(top+org_height+opts.edgeOffset)}if(t_class=="_right_top"||t_class=="_left_top"){marg_top=marg_top+5}else if(t_class=="_right_bottom"||t_class=="_left_bottom"){marg_top=marg_top-5}if(t_class=="_left_top"||t_class=="_left_bottom"){marg_left=marg_left+5}tiptip_arrow.css({"margin-left":arrow_left+"px","margin-top":arrow_top+"px"});tiptip_holder.css({"margin-left":marg_left+"px","margin-top":marg_top+"px"}).attr("class","tip"+t_class);if(timeout){clearTimeout(timeout)}timeout=setTimeout(function(){tiptip_holder.stop(true,true).fadeIn(opts.fadeIn)},opts.delay)}function deactive_tiptip(){opts.exit.call(this);if(timeout){clearTimeout(timeout)}tiptip_holder.fadeOut(opts.fadeOut)}}})}})(jQuery);
bws_menu/languages/bestwebsoft-cs_CZ.mo ADDED
Binary file
bws_menu/languages/bestwebsoft-cs_CZ.po ADDED
@@ -0,0 +1,1334 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: bws_menu BWS\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-01-25 17:11+0300\n"
6
+ "PO-Revision-Date: 2017-01-25 17:11+0300\n"
7
+ "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
+ "Language-Team: Mik013\n"
9
+ "Language: cs_CZ\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Poedit-KeywordsList: __;_e\n"
14
+ "X-Poedit-Basepath: ..\n"
15
+ "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Generator: Poedit 1.5.4\n"
17
+ "X-Poedit-SearchPath-0: .\n"
18
+
19
+ #: bws_functions.php:72 bws_functions.php:190
20
+ msgid "requires"
21
+ msgstr "vyžaduje"
22
+
23
+ #: bws_functions.php:74
24
+ msgid ""
25
+ "or higher, that is why it has been deactivated! Please upgrade WordPress and "
26
+ "try again."
27
+ msgstr ""
28
+ "nebo vyšší, to je důvod, proč byl deaktivován! Proveďte upgrade WordPressu a "
29
+ "zkuste to znovu."
30
+
31
+ #: bws_functions.php:75
32
+ msgid "Back to the WordPress"
33
+ msgstr "Zpět do WordPressu"
34
+
35
+ #: bws_functions.php:77
36
+ msgid "Plugins page"
37
+ msgstr "Stránka pluginů"
38
+
39
+ #: bws_functions.php:91
40
+ #, fuzzy
41
+ msgid "Like the plugin?"
42
+ msgstr "Hodnotit plugin"
43
+
44
+ #: bws_functions.php:93
45
+ msgid "Rate it"
46
+ msgstr ""
47
+
48
+ #: bws_functions.php:102
49
+ msgid "Need help?"
50
+ msgstr "Нужна помощь?"
51
+
52
+ #: bws_functions.php:103 bws_functions.php:914
53
+ msgid "Visit Help Center"
54
+ msgstr "Navštívit Centrum pomoci"
55
+
56
+ #: bws_functions.php:106
57
+ #, fuzzy
58
+ msgid "Want to support the plugin?"
59
+ msgstr "Hodnotit plugin"
60
+
61
+ #: bws_functions.php:107 bws_menu.php:553
62
+ msgid "Donate"
63
+ msgstr "Darovat"
64
+
65
+ #: bws_functions.php:127
66
+ msgid "WARNING: Illegal use notification"
67
+ msgstr "POZOR: upozornění na neoprávněné užívání"
68
+
69
+ #: bws_functions.php:127
70
+ msgid ""
71
+ "You can use one license of the Pro plugin for one domain only. Please check "
72
+ "and edit your license or domain if necessary using you personal Client Area. "
73
+ "We strongly recommend you to solve the problem within 24 hours, otherwise "
74
+ "the Pro plugin will be deactivated."
75
+ msgstr ""
76
+ "Pro licenci pluginu můžete používat pouze pro jednu doménu. Prosím "
77
+ "zkontrolujte a případně upravte Váš licenční klíč na vaší osobní stránce - "
78
+ "Klientská zóně. Důrazně doporučujeme, aby jste tento problém odstranili "
79
+ "během 24 hodin, jinak bude Pro plugin deaktivován."
80
+
81
+ #: bws_functions.php:127 bws_functions.php:339 bws_menu.php:627
82
+ #: class-bws-settings.php:136
83
+ msgid "Learn More"
84
+ msgstr "Dozvědět se více"
85
+
86
+ #: bws_functions.php:144
87
+ #, fuzzy
88
+ msgid ""
89
+ "Notice: Your Pro Trial license has expired. To continue using the plugin, "
90
+ "you should buy a Pro license"
91
+ msgstr ""
92
+ "Poznámka: Vaše zkušební Pro verze pluginu vypršela. Pro další využíváni "
93
+ "pluginu bude nutné zakoupit Pro licenci"
94
+
95
+ #: bws_functions.php:146
96
+ #, fuzzy
97
+ msgid ""
98
+ "Your license has expired. To continue getting top-priority support and "
99
+ "plugin updates, you should extend it."
100
+ msgstr ""
101
+ "Vaše licence vypršela. Pro přístup k top-prioritní podpoře a aktualizacím "
102
+ "pluginu ji budete muset prodloužit."
103
+
104
+ #: bws_functions.php:146 bws_functions.php:382 deprecated.php:584
105
+ msgid "Learn more"
106
+ msgstr "Dozvědět se více"
107
+
108
+ #: bws_functions.php:164
109
+ #, php-format
110
+ msgid "Notice: You are using the Pro Trial license of %s plugin."
111
+ msgstr "Poznámka: Používáte zkušební Pro verzi pluginu %s."
112
+
113
+ #: bws_functions.php:166
114
+ msgid "Notice: You are using the Pro Trial license of plugin."
115
+ msgstr "Poznámka: Používáte zkušební Pro verzi pluginu."
116
+
117
+ #: bws_functions.php:169
118
+ msgid "The Pro Trial license will expire on"
119
+ msgstr "Zkušební Pro licence vyprší"
120
+
121
+ #: bws_functions.php:192
122
+ msgid ""
123
+ "or higher! We do not guarantee that our plugin will work correctly. Please "
124
+ "upgrade to WordPress latest version."
125
+ msgstr ""
126
+ "nebo vyšší! Nezaručujeme, že náš plugin bude fungovat správně. Prosím "
127
+ "aktualizujte na nejnovější verzi WordPressu."
128
+
129
+ #: bws_functions.php:207
130
+ msgid "Thank you for installing"
131
+ msgstr "Děkujeme vám za instalaci"
132
+
133
+ #: bws_functions.php:208
134
+ msgid "Let's get started"
135
+ msgstr "Začněme"
136
+
137
+ #: bws_functions.php:209 bws_functions.php:242 bws_menu.php:557
138
+ #: bws_menu.php:559
139
+ msgid "Settings"
140
+ msgstr "Nastavení"
141
+
142
+ #: bws_functions.php:211 deprecated.php:694 bws_menu.php:328
143
+ #: class-bws-settings.php:736 class-bws-settings.php:1046
144
+ #: class-bws-settings.php:1076
145
+ msgid "or"
146
+ msgstr "nebo"
147
+
148
+ #: bws_functions.php:212 bws_functions.php:244
149
+ msgid "Add New"
150
+ msgstr "Přidat nový"
151
+
152
+ #: bws_functions.php:216 bws_functions.php:226 bws_functions.php:330
153
+ #: bws_functions.php:378 bws_functions.php:482
154
+ msgid "Close notice"
155
+ msgstr "Zavřít poznámku"
156
+
157
+ #: bws_functions.php:231
158
+ msgid "Thank you for installing plugins by BestWebSoft!"
159
+ msgstr "Děkujeme vám za instalaci pluginů od BestWebSoft!"
160
+
161
+ #: bws_functions.php:233
162
+ msgid "More Details"
163
+ msgstr "Více detailů"
164
+
165
+ #: bws_functions.php:234
166
+ msgid "Less Details"
167
+ msgstr "Méně detailů"
168
+
169
+ #: bws_functions.php:262
170
+ msgid "Deprecated function(-s) is used on the site here:"
171
+ msgstr ""
172
+
173
+ #: bws_functions.php:276
174
+ msgid ""
175
+ "This function(-s) will be removed over time. Please update the product(-s)."
176
+ msgstr ""
177
+
178
+ #: bws_functions.php:335
179
+ msgid "It’s time to upgrade your"
180
+ msgstr "Je čas na aktualizaci vašeho"
181
+
182
+ #: bws_functions.php:335
183
+ msgid "to"
184
+ msgstr "na"
185
+
186
+ #: bws_functions.php:335
187
+ msgid "version!"
188
+ msgstr "verzi!"
189
+
190
+ #: bws_functions.php:336
191
+ msgid "Extend standard plugin functionality with new great options."
192
+ msgstr "Rozšiřuje standardní funkce pluginu novými velkými možnostmi."
193
+
194
+ #: bws_functions.php:382
195
+ #, fuzzy, php-format
196
+ msgid ""
197
+ "Your license key for %s expires on %s and you won't be granted TOP-PRIORITY "
198
+ "SUPPORT or UPDATES."
199
+ msgstr "a nebudete mít přístup k TOP-PRIORITNÍ PODPOŘE nebo AKTUALIZACÍM."
200
+
201
+ #: bws_functions.php:477
202
+ msgid "Thank you for choosing"
203
+ msgstr "Děkujeme, že jste si vybrali"
204
+
205
+ #: bws_functions.php:478
206
+ msgid ""
207
+ "If you have a feature, suggestion or idea you'd like to see in the plugin, "
208
+ "we'd love to hear about it!"
209
+ msgstr ""
210
+ "Máte-li nápad, nebo doporučení na novou vlastnost, kterou by jste v pluginu "
211
+ "chtěli vidět, rádi o něm uslyšíme!"
212
+
213
+ #: bws_functions.php:479
214
+ msgid "Suggest a Feature"
215
+ msgstr "Navrhnout vlastnost"
216
+
217
+ #: bws_functions.php:495 class-bws-settings.php:527 class-bws-settings.php:530
218
+ #: class-bws-settings.php:585 class-bws-settings.php:588
219
+ msgid "Notice"
220
+ msgstr "Poznámka"
221
+
222
+ #: bws_functions.php:495
223
+ msgid "The plugin's settings have been changed."
224
+ msgstr "Nastavení pluginu bylo změněno."
225
+
226
+ #: bws_functions.php:496 deprecated.php:640 class-bws-settings.php:175
227
+ #: class-bws-settings.php:189
228
+ msgid "Save Changes"
229
+ msgstr "Uložit změny"
230
+
231
+ #: bws_functions.php:510
232
+ #, fuzzy
233
+ msgid ""
234
+ "You can always look at premium options by checking the \"Pro Options\" in "
235
+ "the \"Misc\" tab."
236
+ msgstr ""
237
+ "Vždy se můžete podívat na možnosti prémiové verze, kliknutím na \"Zobrazit "
238
+ "Pro vlastnosti\" na \"Go PRO\" záložce"
239
+
240
+ #: bws_functions.php:649
241
+ msgid "Add shortcode"
242
+ msgstr "Přidat krátký kód"
243
+
244
+ #: bws_functions.php:649
245
+ msgid "Add BestWebSoft plugins' shortcodes using this button."
246
+ msgstr "Pomocí tohoto tlačítka přidat krátké kódy BestWebSoft pluginu."
247
+
248
+ #: bws_functions.php:698
249
+ msgid "Close"
250
+ msgstr "Zavřít"
251
+
252
+ #: bws_functions.php:790
253
+ #, fuzzy
254
+ msgid "Are you sure you want to restore default settings?"
255
+ msgstr "Jste si jisti, že chcete obnovit veškerá nastavení na výchozí hodnoty?"
256
+
257
+ #: bws_functions.php:793
258
+ msgid "Yes, restore all settings"
259
+ msgstr "Ano, obnovit veškerá nastavení"
260
+
261
+ #: bws_functions.php:794
262
+ msgid "No, go back to the settings page"
263
+ msgstr "Ne, vrátit se zpět na stránku nastavení"
264
+
265
+ #: bws_functions.php:840
266
+ msgid "Plugin"
267
+ msgstr "Plugin"
268
+
269
+ #: bws_functions.php:849
270
+ msgid "Shortcode settings"
271
+ msgstr "Nastavení krátkých kódů"
272
+
273
+ #: bws_functions.php:854
274
+ msgid "The shortcode will be inserted"
275
+ msgstr "Bude vložen krátký kód"
276
+
277
+ #: bws_functions.php:859
278
+ msgid "Insert"
279
+ msgstr "Vložit"
280
+
281
+ #: bws_functions.php:919
282
+ msgid "FAQ"
283
+ msgstr "Často kladené otázky (FAQ)"
284
+
285
+ #: bws_functions.php:925
286
+ msgid "For more information:"
287
+ msgstr "Pro více informací:"
288
+
289
+ #: bws_functions.php:926
290
+ msgid "Documentation"
291
+ msgstr "Dokumentace"
292
+
293
+ #: bws_functions.php:927
294
+ msgid "Video Instructions"
295
+ msgstr "Video instrukce"
296
+
297
+ #: bws_functions.php:928
298
+ #, fuzzy
299
+ msgid "Submit a Request"
300
+ msgstr "Odeslat požadavek"
301
+
302
+ #: deprecated.php:91 bws_menu.php:307 bws_menu.php:311 bws_menu.php:360
303
+ msgid "Plugins"
304
+ msgstr "Pluginy"
305
+
306
+ #: deprecated.php:92 bws_menu.php:308 bws_menu.php:312 bws_menu.php:611
307
+ msgid "Themes"
308
+ msgstr "Šablony"
309
+
310
+ #: deprecated.php:93
311
+ msgid "System Status"
312
+ msgstr "Stav systému"
313
+
314
+ #: deprecated.php:133 deprecated.php:199 deprecated.php:352 bws_menu.php:120
315
+ #: class-bws-settings.php:807 class-bws-settings.php:873
316
+ #: class-bws-settings.php:909
317
+ msgid ""
318
+ "Something went wrong. Please try again later. If the error appears again, "
319
+ "please contact us"
320
+ msgstr ""
321
+ "Něco se pokazilo. Prosím zkuste to znovu později. Pokud se chyba objeví "
322
+ "znovu, obraťte se na nás"
323
+
324
+ #: deprecated.php:133 deprecated.php:199 deprecated.php:352 bws_menu.php:120
325
+ #: class-bws-settings.php:807 class-bws-settings.php:873
326
+ #: class-bws-settings.php:909
327
+ msgid "We are sorry for inconvenience."
328
+ msgstr "Omlouváme se za nepříjemnosti."
329
+
330
+ #: deprecated.php:139 deprecated.php:358 bws_menu.php:126
331
+ #: class-bws-settings.php:813 class-bws-settings.php:915
332
+ msgid "Wrong license key."
333
+ msgstr "Neplatný licenční klíč"
334
+
335
+ #: deprecated.php:141 deprecated.php:360 class-bws-settings.php:815
336
+ #: class-bws-settings.php:917
337
+ #, fuzzy
338
+ msgid "This license key is bound to another site."
339
+ msgstr "Tento licenční klíč je přidružen k jiným webovým stránkám."
340
+
341
+ #: deprecated.php:143 class-bws-settings.php:817
342
+ msgid ""
343
+ "This license key is valid, but Your license has expired. If you want to "
344
+ "update our plugin in future, you should extend the license."
345
+ msgstr ""
346
+ "Tento licenční klíč je platný, ale vaše licence vypršela. Chcete-li náš "
347
+ "plugin v budoucnosti aktualizovat, měli by jste licenci prodloužit."
348
+
349
+ #: deprecated.php:145 class-bws-settings.php:819
350
+ msgid "Unfortunately, you have exceeded the number of available tries."
351
+ msgstr "Bohužel, překročili jste dostupný počet pokusů."
352
+
353
+ #: deprecated.php:147 class-bws-settings.php:821
354
+ msgid ""
355
+ "Unfortunately, the Pro Trial licence was already installed to this domain. "
356
+ "The Pro Trial license can be installed only once."
357
+ msgstr ""
358
+ "Bohužel, tato zkušební Pro licence již pro tuto doménu byla použita. "
359
+ "Zkušební Pro licence může být instalována pouze jedenkrát."
360
+
361
+ #: deprecated.php:151 class-bws-settings.php:825
362
+ msgid "The Pro Trial license key is valid."
363
+ msgstr "Licenční klíč zkušební Pro verze je platný"
364
+
365
+ #: deprecated.php:153 bws_menu.php:140 class-bws-settings.php:827
366
+ msgid "The license key is valid."
367
+ msgstr "Licenční klíč je platný"
368
+
369
+ #: deprecated.php:156 bws_menu.php:142 class-bws-settings.php:830
370
+ msgid "Your license will expire on"
371
+ msgstr "Vaše licence vyprší"
372
+
373
+ #: deprecated.php:159 deprecated.php:246 class-bws-settings.php:833
374
+ #, php-format
375
+ msgid ""
376
+ "In order to continue using the plugin it is necessary to buy a %s license."
377
+ msgstr ""
378
+ "Pokud chcete nadále využívat tento plugin, je nutné zakoupit %s licenci."
379
+
380
+ #: deprecated.php:204
381
+ msgid "Please, enter your license key"
382
+ msgstr "Prosím, vložte váš licenční klíč."
383
+
384
+ #: deprecated.php:223
385
+ #, fuzzy
386
+ msgid ""
387
+ "If necessary, you can check if the license key is correct or reenter it in "
388
+ "the field below. You can find your license key on your personal page - "
389
+ "Client Area - on our website"
390
+ msgstr ""
391
+ "V případě potřeby zkontrolujte, je-li licenční klíč správně zadán, případně "
392
+ "jej do pole níže vložte znova. Váš licenční klíč najdete na vaší osobní "
393
+ "stránce - Klientská zóna - na našem webu"
394
+
395
+ #: deprecated.php:223
396
+ msgid ""
397
+ "(your username is the email address specified during the purchase). If "
398
+ "necessary, please submit \"Lost your password?\" request."
399
+ msgstr ""
400
+ "(vaše uživatelské jméno je e-mailová adresa uvedena při nákupu). Pokud je to "
401
+ "nutné, prosím odešlete \"Lost your password?\" požadavek."
402
+
403
+ #: deprecated.php:227 bws_menu.php:336 bws_menu.php:347
404
+ #: class-bws-settings.php:749
405
+ msgid "Check license key"
406
+ msgstr "Zkontrolujte licenční klíč"
407
+
408
+ #: deprecated.php:247
409
+ #, fuzzy
410
+ msgid "After that, you can activate it by entering your license key."
411
+ msgstr "Poté, co jej aktivujete vložením vašeho licenčního klíče."
412
+
413
+ #: deprecated.php:249 deprecated.php:688
414
+ msgid "License key can be found in the"
415
+ msgstr "Licenční klíč najdete v"
416
+
417
+ #: deprecated.php:251 deprecated.php:690
418
+ msgid "(your username is the email address specified during the purchase)."
419
+ msgstr "(vaše uživatelské jméno je e-mailová adresa uvedena při nákupu)."
420
+
421
+ #: deprecated.php:259 deprecated.php:267 deprecated.php:629 deprecated.php:700
422
+ #: deprecated.php:709 bws_menu.php:345 bws_menu.php:563 bws_menu.php:572
423
+ #: class-bws-settings.php:728
424
+ msgid "Activate"
425
+ msgstr "Aktivovat"
426
+
427
+ #: deprecated.php:261 bws_menu.php:130 bws_menu.php:334
428
+ msgid "Unfortunately, you have exceeded the number of available tries per day."
429
+ msgstr "Bohužel, překročili jste dostupný počet pokusů pro daný den."
430
+
431
+ #: deprecated.php:278
432
+ #, fuzzy
433
+ msgid ""
434
+ "Congratulations! The Pro license of the plugin is activated successfully."
435
+ msgstr "Gratulujeme! PRO licence pluginu je úspěšně aktivována."
436
+
437
+ #: deprecated.php:280 deprecated.php:669
438
+ msgid "Please, go to"
439
+ msgstr "Prosím, jděte na"
440
+
441
+ #: deprecated.php:280 deprecated.php:669
442
+ #, fuzzy
443
+ msgid "the setting page"
444
+ msgstr "stránka nastavení"
445
+
446
+ #: deprecated.php:281 deprecated.php:670
447
+ msgid "You will be redirected automatically in 5 seconds."
448
+ msgstr "Budete automaticky přesměrováni za 5 sekund."
449
+
450
+ #: deprecated.php:315
451
+ msgid "Check premium options on the plugin settings page!"
452
+ msgstr "Zkontrolujte prémiové možnosti na stránce nastavení pluginů!"
453
+
454
+ #: deprecated.php:322 bws_menu.php:99 class-bws-settings.php:781
455
+ msgid "Wrong license key"
456
+ msgstr "Špatný licenční klíč"
457
+
458
+ #: deprecated.php:362 deprecated.php:703 class-bws-settings.php:733
459
+ #: class-bws-settings.php:919
460
+ msgid ""
461
+ "Unfortunately, you have exceeded the number of available tries per day. "
462
+ "Please, upload the plugin manually."
463
+ msgstr ""
464
+ "Bohužel, jste překročili počet dostupných pokusů za den. Prosím, nahrejte "
465
+ "plugin ručně."
466
+
467
+ #: deprecated.php:364 bws_menu.php:132 class-bws-settings.php:921
468
+ #, fuzzy, php-format
469
+ msgid ""
470
+ "Unfortunately, Your license has expired. To continue getting top-priority "
471
+ "support and plugin updates, you should extend it in your %s"
472
+ msgstr ""
473
+ "Bohužel, Vaše licence vypršela. Chcete-li pokračovat v získávání top-"
474
+ "prioritní podpory a aktualizace pluginu měli byste ji prodloužit ve vašem"
475
+
476
+ #: deprecated.php:366 bws_menu.php:134 class-bws-settings.php:923
477
+ msgid ""
478
+ "Unfortunately, the Pro licence was already installed to this domain. The Pro "
479
+ "Trial license can be installed only once."
480
+ msgstr ""
481
+ "Bohužel, tato Pro licence již pro tuto doménu byla použita. Zkušební Pro "
482
+ "licence může být instalována pouze jedenkrát."
483
+
484
+ #: deprecated.php:387 deprecated.php:409 deprecated.php:431 bws_menu.php:400
485
+ #: bws_menu.php:431 bws_menu.php:442 class-bws-settings.php:947
486
+ #: class-bws-settings.php:969 class-bws-settings.php:991
487
+ msgid "Failed to download the zip archive. Please, upload the plugin manually"
488
+ msgstr "Stažení zip archivu selhalo. Prosíme, nahrajte plugin ručně."
489
+
490
+ #: deprecated.php:399 bws_menu.php:417 class-bws-settings.php:959
491
+ msgid "Failed to open the zip archive. Please, upload the plugin manually"
492
+ msgstr "Otevření zip archivu selhalo. Prosíme, nahrajte plugin ručně."
493
+
494
+ #: deprecated.php:405 bws_menu.php:424 class-bws-settings.php:965
495
+ msgid ""
496
+ "Your server does not support either ZipArchive or Phar. Please, upload the "
497
+ "plugin manually"
498
+ msgstr ""
499
+ "Váš server nepodporuje buď ZipArchive nebo Phar. Prosím, nahrajte plugin "
500
+ "ručně"
501
+
502
+ #: deprecated.php:412 bws_menu.php:434 class-bws-settings.php:972
503
+ msgid "UploadDir is not writable. Please, upload the plugin manually"
504
+ msgstr "Nelze zapisovat do UploadDir. Prosím, nahrajte plugin ručně"
505
+
506
+ #: deprecated.php:435 bws_menu.php:151 class-bws-settings.php:995
507
+ msgid ""
508
+ "Something went wrong. Try again later or upload the plugin manually. We are "
509
+ "sorry for inconvenience."
510
+ msgstr ""
511
+ "Něco se pokazilo. Zkuste to později, nebo nahrajte plugin ručně. Omlouváme "
512
+ "se za nepříjemnosti."
513
+
514
+ #: deprecated.php:463 class-bws-settings.php:1030
515
+ msgid "Please, enter Your license key"
516
+ msgstr "Prosím, vložte váš licenční klíč"
517
+
518
+ #: deprecated.php:478
519
+ msgid "Restore all plugin settings to defaults"
520
+ msgstr "Obnovit veškerá nastavení pluginu na výchozí hodnoty?"
521
+
522
+ #: deprecated.php:480
523
+ msgid "Restore settings"
524
+ msgstr "Obnovit nastavení"
525
+
526
+ #: deprecated.php:497 class-bws-settings.php:421
527
+ msgid "You do not have sufficient permissions to edit plugins for this site."
528
+ msgstr "Nemáte dostatečná oprávnění pro úpravu pluginů tohoto webu."
529
+
530
+ #: deprecated.php:548 deprecated.php:575
531
+ #, php-format
532
+ msgid "File %s edited successfully."
533
+ msgstr "Soubor %s byl úspěšně upraven."
534
+
535
+ #: deprecated.php:550 deprecated.php:577
536
+ msgid "Not enough permissions to create or update the file"
537
+ msgstr "Nedostatečná oprávnění pro vytvoření či úpravu souboru"
538
+
539
+ #: deprecated.php:580
540
+ msgid "Not enough permissions to create the file"
541
+ msgstr "Nedostatečná oprávnění pro vytvoření souboru"
542
+
543
+ #: deprecated.php:618 class-bws-settings.php:426
544
+ #, fuzzy
545
+ msgid "These styles will be added to the header on all pages of your site."
546
+ msgstr "Tyto styly budou přidány do záhlaví všech stránek vašeho webu."
547
+
548
+ #: deprecated.php:620 class-bws-settings.php:429
549
+ #, php-format
550
+ msgid ""
551
+ "This PHP code will be hooked to the %s action and will be printed on front "
552
+ "end only."
553
+ msgstr ""
554
+ "Tento PHP kód bude hooked to the %s action a bude zobrazen pouze na front "
555
+ "endu."
556
+
557
+ #: deprecated.php:624
558
+ #, fuzzy
559
+ msgid "Editing"
560
+ msgstr "Úpravy"
561
+
562
+ #: deprecated.php:626 class-bws-settings.php:450
563
+ msgid "Browsing"
564
+ msgstr "Procházení"
565
+
566
+ #: deprecated.php:633 class-bws-settings.php:461
567
+ #, php-format
568
+ msgid "Learn more about %s"
569
+ msgstr "Dozvědět se více o %s"
570
+
571
+ #: deprecated.php:644 class-bws-settings.php:440
572
+ #, php-format
573
+ msgid ""
574
+ "You need to make this files writable before you can save your changes. See "
575
+ "%s the Codex %s for more information."
576
+ msgstr ""
577
+ "Před tím, než budete moci vaše změny uložit, nastavte těmto souborům "
578
+ "oprávnění pro zápis. Podívejte se %s na Kodex %s pro více informací."
579
+
580
+ #: deprecated.php:667
581
+ #, fuzzy
582
+ msgid ""
583
+ "Congratulations! Pro version of the plugin is installed and activated "
584
+ "successfully."
585
+ msgstr "Gratulujeme! PRO verze pluginu byla úspěšně instalována a aktivována."
586
+
587
+ #: deprecated.php:677
588
+ msgid "Show Pro features"
589
+ msgstr "Zobrazit Pro vlastnosti"
590
+
591
+ #: deprecated.php:684
592
+ msgid "Enter your license key to install and activate"
593
+ msgstr "Vložte váš licenční klíč pro instalaci a aktivaci"
594
+
595
+ #: deprecated.php:686
596
+ msgid "version of the plugin."
597
+ msgstr "verze pluginu."
598
+
599
+ #: deprecated.php:694 class-bws-settings.php:736
600
+ #, php-format
601
+ msgid "Start Your Free %s-Day Trial Now"
602
+ msgstr "Vyzkoušejte vaší %s-denní zkušební verzi zdarma nyní"
603
+
604
+ #: bws_menu.php:128
605
+ #, fuzzy
606
+ msgid ""
607
+ "This license key is bound to another site. Change it via personal Client "
608
+ "Area."
609
+ msgstr ""
610
+ "Tento licenční klíč je přidružen k jiným webovým stránkám. Změňte jej "
611
+ "prostřednictvím osobní Klientská zóny."
612
+
613
+ #: bws_menu.php:128
614
+ #, fuzzy
615
+ msgid "Log in"
616
+ msgstr "Přihlášení"
617
+
618
+ #: bws_menu.php:144
619
+ #, fuzzy
620
+ msgid "Congratulations! Pro Membership license is activated successfully."
621
+ msgstr "Gratulujeme! Členská PRO licence byla úspěšně aktivována."
622
+
623
+ #: bws_menu.php:161
624
+ msgid "Please enter your license key."
625
+ msgstr "Prosím vložte váš licenční klíč."
626
+
627
+ #: bws_menu.php:172
628
+ #, fuzzy
629
+ msgid "Not set"
630
+ msgstr "Nenastaveno"
631
+
632
+ #: bws_menu.php:174 bws_menu.php:175
633
+ msgid "On"
634
+ msgstr "Zapnout"
635
+
636
+ #: bws_menu.php:174 bws_menu.php:175
637
+ #, fuzzy
638
+ msgid "Off"
639
+ msgstr "Vypnout"
640
+
641
+ #: bws_menu.php:176 bws_menu.php:177 bws_menu.php:178 bws_menu.php:179
642
+ #: bws_menu.php:180 bws_menu.php:181 bws_menu.php:190
643
+ msgid "N/A"
644
+ msgstr "N/A"
645
+
646
+ #: bws_menu.php:181
647
+ msgid " Mb"
648
+ msgstr " Mb"
649
+
650
+ #: bws_menu.php:182 bws_menu.php:183 bws_menu.php:184 bws_menu.php:188
651
+ msgid "Yes"
652
+ msgstr "Ano"
653
+
654
+ #: bws_menu.php:182 bws_menu.php:183 bws_menu.php:184 bws_menu.php:188
655
+ msgid "No"
656
+ msgstr "Ne"
657
+
658
+ #: bws_menu.php:195
659
+ #, fuzzy
660
+ msgid "WordPress Environment"
661
+ msgstr "Prostředí"
662
+
663
+ #: bws_menu.php:197
664
+ msgid "Home URL"
665
+ msgstr "Domovská URL"
666
+
667
+ #: bws_menu.php:198
668
+ #, fuzzy
669
+ msgid "Website URL"
670
+ msgstr "URL webových stránek"
671
+
672
+ #: bws_menu.php:199
673
+ #, fuzzy
674
+ msgid "WP Version"
675
+ msgstr "PHP Verze"
676
+
677
+ #: bws_menu.php:200
678
+ msgid "WP Multisite"
679
+ msgstr ""
680
+
681
+ #: bws_menu.php:201
682
+ #, fuzzy
683
+ msgid "WP Memory Limit"
684
+ msgstr "PHP Limit paměti"
685
+
686
+ #: bws_menu.php:202
687
+ msgid "Active Theme"
688
+ msgstr "Aktivovat šablonu"
689
+
690
+ #: bws_menu.php:202 bws_menu.php:248 bws_menu.php:251
691
+ #, php-format
692
+ msgid "by %s"
693
+ msgstr ""
694
+
695
+ #: bws_menu.php:206
696
+ #, fuzzy
697
+ msgid "Server Environment"
698
+ msgstr "Prostředí"
699
+
700
+ #: bws_menu.php:208
701
+ msgid "Operating System"
702
+ msgstr "Operační systém"
703
+
704
+ #: bws_menu.php:209
705
+ msgid "Server"
706
+ msgstr "Server"
707
+
708
+ #: bws_menu.php:210
709
+ msgid "PHP Version"
710
+ msgstr "PHP Verze"
711
+
712
+ #: bws_menu.php:211
713
+ msgid "PHP Safe Mode"
714
+ msgstr ""
715
+
716
+ #: bws_menu.php:212
717
+ msgid "PHP Allow URL fopen"
718
+ msgstr ""
719
+
720
+ #: bws_menu.php:213
721
+ msgid "PHP Memory Limit"
722
+ msgstr "PHP Limit paměti"
723
+
724
+ #: bws_menu.php:214
725
+ #, fuzzy
726
+ msgid "Memory Usage"
727
+ msgstr "Využití paměti"
728
+
729
+ #: bws_menu.php:215
730
+ msgid "PHP Max Upload Size"
731
+ msgstr ""
732
+
733
+ #: bws_menu.php:216
734
+ msgid "PHP Max Post Size"
735
+ msgstr ""
736
+
737
+ #: bws_menu.php:217
738
+ msgid "PHP Max Script Execute Time"
739
+ msgstr ""
740
+
741
+ #: bws_menu.php:218
742
+ msgid "PHP Exif support"
743
+ msgstr ""
744
+
745
+ #: bws_menu.php:219
746
+ msgid "PHP IPTC support"
747
+ msgstr ""
748
+
749
+ #: bws_menu.php:220
750
+ msgid "PHP XML support"
751
+ msgstr ""
752
+
753
+ #: bws_menu.php:226
754
+ msgid "Database"
755
+ msgstr ""
756
+
757
+ #: bws_menu.php:228
758
+ #, fuzzy
759
+ msgid "WP DB version"
760
+ msgstr "WordPress verze DB"
761
+
762
+ #: bws_menu.php:229
763
+ #, fuzzy
764
+ msgid "MySQL version"
765
+ msgstr "Verze MYSQL"
766
+
767
+ #: bws_menu.php:230
768
+ msgid "SQL Mode"
769
+ msgstr "Mód SQL"
770
+
771
+ #: bws_menu.php:234
772
+ msgid "Active Plugins"
773
+ msgstr "Aktivní pluginy"
774
+
775
+ #: bws_menu.php:239
776
+ msgid "Inactive Plugins"
777
+ msgstr "Neaktivní pluginy"
778
+
779
+ #: bws_menu.php:260
780
+ msgid "Please enter a valid email address."
781
+ msgstr "Prosím vložte platnou e-mailovou adresu."
782
+
783
+ #: bws_menu.php:264
784
+ #, fuzzy
785
+ msgid "Email with system info is sent to"
786
+ msgstr "E-mail se systémovým nastavením byl odeslán na"
787
+
788
+ #: bws_menu.php:268
789
+ msgid "Thank you for contacting us."
790
+ msgstr "Děkujeme, že jste nás kontaktovali."
791
+
792
+ #: bws_menu.php:291
793
+ msgid "Sorry, email message could not be delivered."
794
+ msgstr "Je nám líto, ale e-mail nemohl být doručen."
795
+
796
+ #: bws_menu.php:309 bws_menu.php:313 bws_menu.php:662
797
+ msgid "System status"
798
+ msgstr "Stav systému"
799
+
800
+ #: bws_menu.php:317
801
+ msgid "Support"
802
+ msgstr "Podpora"
803
+
804
+ #: bws_menu.php:318
805
+ #, fuzzy
806
+ msgid "Manage purchased licenses & subscriptions"
807
+ msgstr "Spravovat zakoupené licence & subscriptions"
808
+
809
+ #: bws_menu.php:326
810
+ #, php-format
811
+ msgid "Get Access to %s+ Premium Plugins"
812
+ msgstr "Získejte přístup k %s+ Premiovým pluginům"
813
+
814
+ #: bws_menu.php:328
815
+ #, fuzzy
816
+ msgid "Subscribe to Pro Membership"
817
+ msgstr "Přihlásit se k Pro členství"
818
+
819
+ #: bws_menu.php:339
820
+ msgid "Enter your license key"
821
+ msgstr "Vložte váš licenční klíč"
822
+
823
+ #: bws_menu.php:361
824
+ msgid "Upload Plugin"
825
+ msgstr "Nahrát plugin"
826
+
827
+ #: bws_menu.php:365
828
+ #, php-format
829
+ msgid ""
830
+ "The plugin generated %d characters of <strong>unexpected output</strong> "
831
+ "during activation. If you notice &#8220;headers already sent&#8221; "
832
+ "messages, problems with syndication feeds or other issues, try deactivating "
833
+ "or removing this plugin."
834
+ msgstr ""
835
+ "Plugin generoval %d znaků <strong>neočekávaný výstup</strong> v průběhu "
836
+ "aktivace. If you notice &#8220;headers already sent&#8221; messages, "
837
+ "problems with syndication feeds or other issues, pokuste se deaktivovat, "
838
+ "nebo odstranit tento plugin."
839
+
840
+ #: bws_menu.php:367
841
+ #, fuzzy
842
+ msgid ""
843
+ "Plugin could not be activated because it triggered a <strong>fatal error</"
844
+ "strong>."
845
+ msgstr ""
846
+ "Plugin nemůže být aktivován, neboť způsobil <strong>fatal error</strong>."
847
+
848
+ #: bws_menu.php:370
849
+ msgid "Plugin <strong>activated</strong>."
850
+ msgstr "Plugin <strong>aktivován</strong>."
851
+
852
+ #: bws_menu.php:377
853
+ msgid "Installing Plugin"
854
+ msgstr "Instalace pluginu"
855
+
856
+ #: bws_menu.php:383
857
+ msgid "Downloading install package from"
858
+ msgstr "Stahování instalačního balíčku z"
859
+
860
+ #: bws_menu.php:408
861
+ msgid "Unpacking the package"
862
+ msgstr "Rozbalování balíčku"
863
+
864
+ #: bws_menu.php:413 bws_menu.php:421
865
+ msgid "Installing the plugin"
866
+ msgstr "Instalace pluginu"
867
+
868
+ #: bws_menu.php:427
869
+ #, php-format
870
+ msgid "The plugin %s is successfully installed."
871
+ msgstr ""
872
+
873
+ #: bws_menu.php:439
874
+ msgid "Activate Plugin"
875
+ msgstr "Aktivovat plugin"
876
+
877
+ #: bws_menu.php:439 bws_menu.php:445
878
+ #, fuzzy
879
+ msgid "Return to BestWebSoft Panel"
880
+ msgstr "Návrat na BestWebSoft panel"
881
+
882
+ #: bws_menu.php:449 bws_menu.php:464 bws_menu.php:593
883
+ msgid "All"
884
+ msgstr "Vše"
885
+
886
+ #: bws_menu.php:450 bws_menu.php:650
887
+ msgid "Installed"
888
+ msgstr "Instalováno"
889
+
890
+ #: bws_menu.php:451
891
+ msgid "Not Installed"
892
+ msgstr "Neninstalováno"
893
+
894
+ #: bws_menu.php:457
895
+ #, fuzzy
896
+ msgid "Filter results"
897
+ msgstr "Výsledky filtrování"
898
+
899
+ #: bws_menu.php:460 bws_menu.php:589
900
+ msgid "Category"
901
+ msgstr "Rubriky"
902
+
903
+ #: bws_menu.php:524
904
+ msgid "Not installed"
905
+ msgstr "Neninstalováno"
906
+
907
+ #: bws_menu.php:528
908
+ #, fuzzy
909
+ msgid "Renew to get updates"
910
+ msgstr "Prodloužit pro získání aktualizací"
911
+
912
+ #: bws_menu.php:531
913
+ #, fuzzy, php-format
914
+ msgid "Update to v %s"
915
+ msgstr "Aktualizovat na v %s"
916
+
917
+ #: bws_menu.php:543 bws_menu.php:566 bws_menu.php:575
918
+ msgid "Install Now"
919
+ msgstr "Instalovat nyní"
920
+
921
+ #: bws_menu.php:549 class-bws-settings.php:149 class-bws-settings.php:1073
922
+ msgid "Upgrade to Pro"
923
+ msgstr "Aktualizovat na Pro"
924
+
925
+ #: bws_menu.php:563 bws_menu.php:572
926
+ msgid "Activate this plugin"
927
+ msgstr "Aktivovat tento plugin"
928
+
929
+ #: bws_menu.php:575
930
+ msgid "Install this plugin"
931
+ msgstr "Instalovat tento plugin"
932
+
933
+ #: bws_menu.php:584
934
+ msgid "Nothing found. Try another criteria."
935
+ msgstr "Nic nenalezeno. Zkuste jiná kritéria."
936
+
937
+ #: bws_menu.php:621 bws_menu.php:641
938
+ #, php-format
939
+ msgid "By %s"
940
+ msgstr ""
941
+
942
+ #: bws_menu.php:648
943
+ msgid "Already Installed"
944
+ msgstr "Již instalováno"
945
+
946
+ #: bws_menu.php:659
947
+ msgid "Browse Free WordPress Themes"
948
+ msgstr "Procházet WordPress šablony zdarma"
949
+
950
+ #: bws_menu.php:668
951
+ msgid "Send to support"
952
+ msgstr "Odeslat podpoře"
953
+
954
+ #: bws_menu.php:675
955
+ msgid "Send to custom email &#187;"
956
+ msgstr "Odeslat na vlastní e-mail &#187;"
957
+
958
+ #: product_list.php:7
959
+ msgid "Advertisement"
960
+ msgstr "Reklama"
961
+
962
+ #: product_list.php:8
963
+ msgid "Content & Media"
964
+ msgstr "Obsah & Média"
965
+
966
+ #: product_list.php:9
967
+ msgid "Management"
968
+ msgstr "Správa"
969
+
970
+ #: product_list.php:10
971
+ msgid "Recommended"
972
+ msgstr "Doporučeno"
973
+
974
+ #: product_list.php:11
975
+ msgid "Security"
976
+ msgstr "Bezpečnost"
977
+
978
+ #: product_list.php:12
979
+ msgid "Site Stats"
980
+ msgstr "Statistiky webu"
981
+
982
+ #: product_list.php:13
983
+ msgid "Social"
984
+ msgstr "Sociální"
985
+
986
+ #: product_list.php:14
987
+ msgid "Utilities"
988
+ msgstr "Utility"
989
+
990
+ #: product_list.php:15
991
+ msgid "Other"
992
+ msgstr "Ostatní"
993
+
994
+ #: class-bws-settings.php:129
995
+ #, fuzzy
996
+ msgid "Information"
997
+ msgstr "Pro více informací:"
998
+
999
+ #: class-bws-settings.php:136
1000
+ #, fuzzy
1001
+ msgid "Inactive"
1002
+ msgstr "Neaktivní pluginy"
1003
+
1004
+ #: class-bws-settings.php:144
1005
+ msgid "Expired"
1006
+ msgstr ""
1007
+
1008
+ #: class-bws-settings.php:147
1009
+ #, php-format
1010
+ msgid "%s day(-s) left"
1011
+ msgstr ""
1012
+
1013
+ #: class-bws-settings.php:153
1014
+ #, fuzzy, php-format
1015
+ msgid "Expired on %s"
1016
+ msgstr "vyprší"
1017
+
1018
+ #: class-bws-settings.php:153
1019
+ msgid "Renew Now"
1020
+ msgstr ""
1021
+
1022
+ #: class-bws-settings.php:155
1023
+ #, fuzzy
1024
+ msgid "Active"
1025
+ msgstr "Aktivovat"
1026
+
1027
+ #: class-bws-settings.php:160
1028
+ #, fuzzy
1029
+ msgid "License"
1030
+ msgstr "Špatný licenční klíč"
1031
+
1032
+ #: class-bws-settings.php:163
1033
+ #, fuzzy
1034
+ msgid "Status"
1035
+ msgstr "Stav systému"
1036
+
1037
+ #: class-bws-settings.php:167
1038
+ #, fuzzy
1039
+ msgid "Version"
1040
+ msgstr "verzi!"
1041
+
1042
+ #: class-bws-settings.php:276
1043
+ #, fuzzy
1044
+ msgid "All plugin settings were restored."
1045
+ msgstr "Nastavení pluginu bylo změněno."
1046
+
1047
+ #: class-bws-settings.php:417
1048
+ #, fuzzy
1049
+ msgid "Custom Code"
1050
+ msgstr "Кастомизировать"
1051
+
1052
+ #: class-bws-settings.php:432
1053
+ #, fuzzy
1054
+ msgid "These code will be added to the header on all pages of your site."
1055
+ msgstr "Tyto styly budou přidány do záhlaví všech stránek vašeho webu."
1056
+
1057
+ #: class-bws-settings.php:454
1058
+ #, php-format
1059
+ msgid "Activate custom %s code."
1060
+ msgstr ""
1061
+
1062
+ #: class-bws-settings.php:520
1063
+ msgid "Miscellaneous Settings"
1064
+ msgstr ""
1065
+
1066
+ #: class-bws-settings.php:527 class-bws-settings.php:585
1067
+ #, php-format
1068
+ msgid ""
1069
+ "It is prohibited to change %s settings on this site in the %s network "
1070
+ "settings."
1071
+ msgstr ""
1072
+
1073
+ #: class-bws-settings.php:530 class-bws-settings.php:588
1074
+ #, php-format
1075
+ msgid ""
1076
+ "It is prohibited to view %s settings on this site in the %s network settings."
1077
+ msgstr ""
1078
+
1079
+ #: class-bws-settings.php:536
1080
+ #, fuzzy
1081
+ msgid "Pro Options"
1082
+ msgstr "Pro плагины"
1083
+
1084
+ #: class-bws-settings.php:539
1085
+ msgid "Enable to display plugin Pro options."
1086
+ msgstr ""
1087
+
1088
+ #: class-bws-settings.php:544
1089
+ msgid "Track Usage"
1090
+ msgstr ""
1091
+
1092
+ #: class-bws-settings.php:547
1093
+ msgid ""
1094
+ "Enable to allow tracking plugin usage anonymously in order to make it better."
1095
+ msgstr ""
1096
+
1097
+ #: class-bws-settings.php:551
1098
+ #, fuzzy
1099
+ msgid "Default Settings"
1100
+ msgstr "Nastavení"
1101
+
1102
+ #: class-bws-settings.php:553
1103
+ #, fuzzy
1104
+ msgid "Restore Settings"
1105
+ msgstr "Obnovit nastavení"
1106
+
1107
+ #: class-bws-settings.php:554
1108
+ #, fuzzy
1109
+ msgid "This will restore plugin settings to defaults."
1110
+ msgstr "Obnovit veškerá nastavení pluginu na výchozí hodnoty?"
1111
+
1112
+ #: class-bws-settings.php:578
1113
+ msgid "Import / Export"
1114
+ msgstr ""
1115
+
1116
+ #: class-bws-settings.php:701 class-bws-settings.php:724
1117
+ #: class-bws-settings.php:746
1118
+ #, fuzzy
1119
+ msgid "License Key"
1120
+ msgstr "Špatný licenční klíč"
1121
+
1122
+ #: class-bws-settings.php:714
1123
+ #, fuzzy
1124
+ msgid "Congratulations! Pro license is activated successfully."
1125
+ msgstr "Gratulujeme! Členská PRO licence byla úspěšně aktivována."
1126
+
1127
+ #: class-bws-settings.php:715
1128
+ #, fuzzy, php-format
1129
+ msgid "You will be automatically redirected to the %s in 7 seconds."
1130
+ msgstr "Budete automaticky přesměrováni za 5 sekund."
1131
+
1132
+ #: class-bws-settings.php:715
1133
+ #, fuzzy
1134
+ msgid "Settings page"
1135
+ msgstr "Nastavení"
1136
+
1137
+ #: class-bws-settings.php:730
1138
+ #, fuzzy, php-format
1139
+ msgid "Enter your license key to activate %s and get premium plugin features."
1140
+ msgstr "Vložte váš licenční klíč pro instalaci a aktivaci"
1141
+
1142
+ #: class-bws-settings.php:751
1143
+ #, fuzzy
1144
+ msgid ""
1145
+ "If necessary, you can check if the license key is correct or reenter it in "
1146
+ "the field below."
1147
+ msgstr ""
1148
+ "V případě potřeby zkontrolujte, je-li licenční klíč správně zadán, případně "
1149
+ "jej do pole níže vložte znova. Váš licenční klíč najdete na vaší osobní "
1150
+ "stránce - Klientská zóna - na našem webu"
1151
+
1152
+ #: class-bws-settings.php:756
1153
+ msgid "Manage License Settings"
1154
+ msgstr ""
1155
+
1156
+ #: class-bws-settings.php:758
1157
+ #, fuzzy
1158
+ msgid "Login to Client Area"
1159
+ msgstr "Klientská zóna"
1160
+
1161
+ #: class-bws-settings.php:760
1162
+ msgid ""
1163
+ "Manage active licenses, download BWS products, and view your payment history "
1164
+ "using BestWebSoft Client Area."
1165
+ msgstr ""
1166
+
1167
+ #: class-bws-settings.php:1044
1168
+ #, fuzzy
1169
+ msgid "Need Help?"
1170
+ msgstr "Нужна помощь?"
1171
+
1172
+ #: class-bws-settings.php:1044
1173
+ #, fuzzy
1174
+ msgid "Read the Instruction"
1175
+ msgstr "Video instrukce"
1176
+
1177
+ #: class-bws-settings.php:1046
1178
+ msgid "Watch the Video"
1179
+ msgstr ""
1180
+
1181
+ #: class-bws-settings.php:1077
1182
+ #, fuzzy
1183
+ msgid "Start Your Free Trial"
1184
+ msgstr "Vyzkoušejte vaší %s-denní zkušební verzi zdarma nyní"
1185
+
1186
+ #~ msgid "You license for"
1187
+ #~ msgstr "Vaše licence pro"
1188
+
1189
+ #, fuzzy
1190
+ #~ msgid "expires on"
1191
+ #~ msgstr "vyprší"
1192
+
1193
+ #~ msgid "This license key is bind to another site"
1194
+ #~ msgstr "Tento licenční klíč se váže k jinému webu"
1195
+
1196
+ #~ msgid "Successfully installed the plugin"
1197
+ #~ msgstr "Plugin byl úspěšně instalován"
1198
+
1199
+ #, fuzzy
1200
+ #~ msgid "Please, go to %s"
1201
+ #~ msgstr "Prosím, jděte na"
1202
+
1203
+ #~ msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
1204
+ #~ msgstr "Máte-li rádi náš plugin, prosím dejte mu 5 hvězd na WordPressu"
1205
+
1206
+ #~ msgid "If there is something wrong about it, please contact us"
1207
+ #~ msgstr "Pokud cokoli není v pořádku, obraťte se na nás"
1208
+
1209
+ #~ msgid "Donations play an important role in supporting great projects"
1210
+ #~ msgstr "Dary hrají důležitou roli v podpoře velkých projektů"
1211
+
1212
+ #~ msgid "WordPress Version"
1213
+ #~ msgstr "Verze WordPress"
1214
+
1215
+ #~ msgid "Activate Membership"
1216
+ #~ msgstr "Активировать Membership"
1217
+
1218
+ #~ msgid "Don’t have valid license key yet?"
1219
+ #~ msgstr "Нет действующего лицензионного ключа?"
1220
+
1221
+ #~ msgid ""
1222
+ #~ "Join BestWebSoft Pro Membership today, cancel any time and use all "
1223
+ #~ "plugins on a single website %s for only %s per month."
1224
+ #~ msgstr ""
1225
+ #~ "Присоединяйтесь к BestWebSoft Pro Membership сегодня, отменяйте подписку "
1226
+ #~ "в любое время и используйте все плагины на одном сайте %s всего лишь за "
1227
+ #~ "%s в месяц."
1228
+
1229
+ #~ msgid "My Account"
1230
+ #~ msgstr "Мой аккаунт"
1231
+
1232
+ #~ msgid "BWS Panel"
1233
+ #~ msgstr "BWS Панель"
1234
+
1235
+ #~ msgid "panel"
1236
+ #~ msgstr "панель"
1237
+
1238
+ #~ msgid "You can download and activate"
1239
+ #~ msgstr "Вы можете скачать и активировать"
1240
+
1241
+ #~ msgid "version of this plugin by entering Your license key."
1242
+ #~ msgstr "версию этого плагина, введя ваш лицензионный ключ."
1243
+
1244
+ #~ msgid ""
1245
+ #~ "You can find your license key on your personal page Client area, by "
1246
+ #~ "clicking on the link"
1247
+ #~ msgstr ""
1248
+ #~ "Вы можете найти ваш лицензионный ключ на вашей личной странице Client "
1249
+ #~ "area, нажав на ссылку"
1250
+
1251
+ #~ msgid "Configure Settings"
1252
+ #~ msgstr "Настройка параметров"
1253
+
1254
+ #~ msgid "Go"
1255
+ #~ msgstr "Перейти на"
1256
+
1257
+ #~ msgid "DONATE"
1258
+ #~ msgstr "Пожертвовать"
1259
+
1260
+ #~ msgid "Recommended plugins"
1261
+ #~ msgstr "Рекомендованные к установке плагины"
1262
+
1263
+ #~ msgid "Install now"
1264
+ #~ msgstr "Установить"
1265
+
1266
+ #~ msgid "Try again"
1267
+ #~ msgstr "Попробовать снова"
1268
+
1269
+ #~ msgid "Preview &#8220;%s&#8221;"
1270
+ #~ msgstr "Просмотр &#8220;%s&#8221;"
1271
+
1272
+ #~ msgid "Install %s"
1273
+ #~ msgstr "Установлено %s"
1274
+
1275
+ #~ msgid "Update"
1276
+ #~ msgstr "Обновить"
1277
+
1278
+ #~ msgid "Preview %s"
1279
+ #~ msgstr "Просмотр %s"
1280
+
1281
+ #~ msgid "Preview"
1282
+ #~ msgstr "Просмотр"
1283
+
1284
+ #~ msgid "Add BWS Plugins Shortcode"
1285
+ #~ msgstr "Добавить шорткод BWS Плагина"
1286
+
1287
+ #~ msgid "Select Plugin"
1288
+ #~ msgstr "Выберите плагин"
1289
+
1290
+ #~ msgid ""
1291
+ #~ "(your username is the email you specify when purchasing the product), "
1292
+ #~ "where you can make the necessary changes."
1293
+ #~ msgstr ""
1294
+ #~ "(ваш пользователь это емейл, который вы указывали при покупке продукта), "
1295
+ #~ "где вы можете сделать необходимые изменения."
1296
+
1297
+ #~ msgid "Switch to new interface"
1298
+ #~ msgstr "Переключится на новый интерфейс"
1299
+
1300
+ #~ msgid "Activated plugins"
1301
+ #~ msgstr "Активированные плагины"
1302
+
1303
+ #~ msgid "Read more"
1304
+ #~ msgstr "Подробнее..."
1305
+
1306
+ #~ msgid "Purchase"
1307
+ #~ msgstr "Купить"
1308
+
1309
+ #~ msgid "Free plugins"
1310
+ #~ msgstr "Бесплатные плагины"
1311
+
1312
+ #~ msgid "Download"
1313
+ #~ msgstr "Скачать"
1314
+
1315
+ #~ msgid "Install now from wordpress.org"
1316
+ #~ msgstr "Установить с wordpress.org"
1317
+
1318
+ #~ msgid "Free themes"
1319
+ #~ msgstr "Бесплатные темы"
1320
+
1321
+ #~ msgid "Customize &#8220;%s&#8221;"
1322
+ #~ msgstr "Кастомизировать &#8220;%s&#8221;"
1323
+
1324
+ #~ msgid "Installed themes"
1325
+ #~ msgstr "Установленные темы"
1326
+
1327
+ #~ msgid "Recommended themes"
1328
+ #~ msgstr "Рекомендованные темы"
1329
+
1330
+ #~ msgid "Switch to old interface"
1331
+ #~ msgstr "Переключится на старый интерфейс"
1332
+
1333
+ #~ msgid "installed"
1334
+ #~ msgstr "установлен"
bws_menu/languages/bestwebsoft-fr_FR.mo CHANGED
Binary file
bws_menu/languages/bestwebsoft-fr_FR.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2016-08-04 15:44+0300\n"
6
- "PO-Revision-Date: 2016-08-04 15:44+0300\n"
7
  "Last-Translator: Luc Capronnier <lcapronnier@yahoo.com>\n"
8
  "Language-Team: Luc Capronnier <lcapronnier@yahoo.com>\n"
9
  "Language: fr_FR\n"
@@ -17,23 +17,11 @@ msgstr ""
17
  "X-Generator: Poedit 1.5.4\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: bws_functions.php:38 bws_menu.php:282 bws_menu.php:330
21
- msgid "Plugins"
22
- msgstr "Extensions"
23
-
24
- #: bws_functions.php:39 bws_menu.php:283 bws_menu.php:581
25
- msgid "Themes"
26
- msgstr "Thèmes"
27
-
28
- #: bws_functions.php:40
29
- msgid "System Status"
30
- msgstr "Etat du système"
31
-
32
- #: bws_functions.php:75 bws_functions.php:101
33
  msgid "requires"
34
  msgstr "obligatoire"
35
 
36
- #: bws_functions.php:77
37
  msgid ""
38
  "or higher, that is why it has been deactivated! Please upgrade WordPress and "
39
  "try again."
@@ -41,15 +29,99 @@ msgstr ""
41
  "ou supérieure, c'est pourquoi il a été désactivé! Merci de faire la mise à "
42
  "jour de WordPress puis de ré-essayer."
43
 
44
- #: bws_functions.php:78
45
  msgid "Back to the WordPress"
46
  msgstr "Retour à WordPress"
47
 
48
- #: bws_functions.php:80
49
  msgid "Plugins page"
50
  msgstr "Page des extensions"
51
 
52
- #: bws_functions.php:103
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
53
  msgid ""
54
  "or higher! We do not guarantee that our plugin will work correctly. Please "
55
  "upgrade to WordPress latest version."
@@ -57,264 +129,221 @@ msgstr ""
57
  "ou plus ! Nous ne garantissons pas que notre extension fonctionne "
58
  "correctement. Merci de mettre à jour Wordpress avec la dernière version."
59
 
60
- #: bws_functions.php:118
61
  msgid "Thank you for installing"
62
  msgstr "Merci d'avoir installé"
63
 
64
- #: bws_functions.php:119
65
  msgid "Let's get started"
66
  msgstr "Démarrer"
67
 
68
- #: bws_functions.php:120 bws_functions.php:153 bws_menu.php:527
69
- #: bws_menu.php:529
70
  msgid "Settings"
71
  msgstr "Réglages"
72
 
73
- #: bws_functions.php:122 bws_functions.php:479 bws_menu.php:298
 
 
74
  msgid "or"
75
  msgstr "ou"
76
 
77
- #: bws_functions.php:123 bws_functions.php:155
78
  msgid "Add New"
79
  msgstr "Ajouter"
80
 
81
- #: bws_functions.php:127 bws_functions.php:137 bws_functions.php:213
82
- #: bws_functions.php:727 bws_functions.php:831
83
  msgid "Close notice"
84
  msgstr "Effacer l'avertissement"
85
 
86
- #: bws_functions.php:142
87
  msgid "Thank you for installing plugins by BestWebSoft!"
88
  msgstr "Merci d'avoir installé des extensions de BestWebSoft!"
89
 
90
- #: bws_functions.php:144
91
  msgid "More Details"
92
  msgstr "Plus de détails"
93
 
94
- #: bws_functions.php:145
95
  msgid "Less Details"
96
  msgstr "Moins de détails"
97
 
98
- #: bws_functions.php:218
 
 
 
 
 
 
 
 
 
99
  msgid "It’s time to upgrade your"
100
  msgstr "C'est le moment de mettre à jour votre "
101
 
102
- #: bws_functions.php:218
103
  msgid "to"
104
  msgstr "à"
105
 
106
- #: bws_functions.php:218
107
  msgid "version!"
108
  msgstr "version"
109
 
110
- #: bws_functions.php:219
111
  msgid "Extend standard plugin functionality with new great options."
112
  msgstr ""
113
  "Étend les fonctionnalités classiques de l'extension avec des nouvelles "
114
  "options."
115
 
116
- #: bws_functions.php:222 bws_functions.php:666 bws_menu.php:597
117
- msgid "Learn More"
118
- msgstr "En savoir plus"
119
-
120
- #: bws_functions.php:239
121
- msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
122
- msgstr ""
123
- "Si notre extension vous satisfait, merci de la notée avec 5 étoiles dans "
124
- "Wordpress"
125
-
126
- #: bws_functions.php:240
127
- msgid "Rate the plugin"
128
- msgstr "Voter pour l'extension"
129
-
130
- #: bws_functions.php:243
131
- msgid "If there is something wrong about it, please contact us"
132
- msgstr "Si vous avez une question, n'hésitez pas à nous contacter"
133
-
134
- #: bws_functions.php:247
135
- msgid "Donations play an important role in supporting great projects"
136
- msgstr "Les dons jouent un rôle important dans l'aide aux projets"
137
-
138
- #: bws_functions.php:277
139
- msgid "Check premium options on the plugin settings page!"
140
- msgstr ""
141
- "Vérifier les options premium sur la page des paramètres de l'extension!"
142
-
143
- #: bws_functions.php:284 bws_functions.php:320 bws_menu.php:87
144
- #: bws_menu.php:114
145
- msgid "Wrong license key"
146
- msgstr "Clé de licence incorrecte"
147
-
148
- #: bws_functions.php:314 bws_functions.php:578 bws_functions.php:629
149
- #: bws_menu.php:108
150
  msgid ""
151
- "Something went wrong. Please try again later. If the error appears again, "
152
- "please contact us"
153
- msgstr ""
154
- "Il est survenu une erreur. Essayer de nouveau. Si l'erreur se produit de "
155
- "nouveau, merci de contacter <a href=http://support.bestwebsoft."
156
- "com>BestWebSoft</a>. Nous sommes désolés pour le désagrément."
157
-
158
- #: bws_functions.php:314 bws_functions.php:578 bws_functions.php:629
159
- #: bws_menu.php:108
160
- msgid "We are sorry for inconvenience."
161
- msgstr "Nous sommes désolés pour le désagrément."
162
 
163
- #: bws_functions.php:322
164
- msgid "This license key is bind to another site"
165
- msgstr "La clé de licence correspond à un autre site."
166
 
167
- #: bws_functions.php:324 bws_functions.php:488
168
  msgid ""
169
- "Unfortunately, you have exceeded the number of available tries per day. "
170
- "Please, upload the plugin manually."
171
  msgstr ""
172
- "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de "
173
- "télécharger l'extension manuellement."
174
 
175
- #: bws_functions.php:326 bws_menu.php:120
176
- msgid ""
177
- "Unfortunately, Your license has expired. To continue getting top-priority "
178
- "support and plugin updates you should extend it in your"
179
- msgstr ""
180
- "Désoler, votre licence est terminée. Pour continuer à disposer du support "
181
- "rapide et des mises à jour de l'extension vous devez la renouveler dans votre"
182
 
183
- #: bws_functions.php:328 bws_menu.php:122
184
- msgid ""
185
- "Unfortunately, the Pro licence was already installed to this domain. The Pro "
186
- "Trial license can be installed only once."
187
- msgstr ""
188
- "Une licence a déjà été installée sur ce domaine. La licence d'évaluation ne "
189
- "peut-être installée qu'une seule fois."
190
 
191
- #: bws_functions.php:349 bws_functions.php:371 bws_functions.php:393
192
- #: bws_menu.php:370 bws_menu.php:401 bws_menu.php:412
193
- msgid "Failed to download the zip archive. Please, upload the plugin manually"
194
- msgstr ""
195
- "Erreur de téléchargement de l'archive ZIP. Merci de télécharger l'extension "
196
- "manuellement."
197
 
198
- #: bws_functions.php:361 bws_menu.php:387
199
- msgid "Failed to open the zip archive. Please, upload the plugin manually"
200
- msgstr ""
201
- "Erreur d'ouverture de l'archive zip. Merci de télécharger l'extension "
202
- "manuellement."
203
 
204
- #: bws_functions.php:367 bws_menu.php:394
 
205
  msgid ""
206
- "Your server does not support either ZipArchive or Phar. Please, upload the "
207
- "plugin manually"
208
  msgstr ""
209
- "Votre serveur n'a pas le support du format des archives ZIP ou Phar. Merci "
210
- "de télécharger l'extension manuellement."
211
 
212
- #: bws_functions.php:374 bws_menu.php:404
213
- msgid "UploadDir is not writable. Please, upload the plugin manually"
214
- msgstr ""
215
- "Erreur d'ouverture de l'archive zip. Merci de télécharger l'extension "
216
- "manuellement."
217
 
218
- #: bws_functions.php:397 bws_menu.php:139
219
- msgid ""
220
- "Something went wrong. Try again later or upload the plugin manually. We are "
221
- "sorry for inconvenience."
222
- msgstr ""
223
- "Il est survenu une erreur. Essayer de nouveau ou bien télécharger "
224
- "l'extension manuellement.Nous sommes désolés pour le désagrément."
225
 
226
- #: bws_functions.php:422
227
- msgid "Please, enter Your license key"
228
- msgstr "Merci de saisir votre clé de licence"
229
 
230
- #: bws_functions.php:452
231
- msgid ""
232
- "Congratulations! Pro version of the plugin is successfully installed and "
233
- "activated."
234
- msgstr ""
235
- "Félicitations! La version PRO de cette extension a été téléchargée et "
236
- "activée avec succès."
237
 
238
- #: bws_functions.php:454 bws_functions.php:545
239
- msgid "Please, go to"
240
- msgstr "Merci d’aller à"
241
 
242
- #: bws_functions.php:454 bws_functions.php:545
243
- msgid "the setting page"
244
- msgstr "Options supplémentaires"
245
 
246
- #: bws_functions.php:455 bws_functions.php:546
247
- msgid "You will be redirected automatically in 5 seconds."
248
- msgstr "Vous allez être redirigé automatiquement dans 5 secondes"
249
 
250
- #: bws_functions.php:462
251
- msgid "Show Pro features"
252
- msgstr "Voir les fonctionnalités de la version PRO"
253
 
254
- #: bws_functions.php:469
255
- msgid "Enter your license key to install and activate"
256
- msgstr "Saisir votre clé de licence pour installer et activer"
257
 
258
- #: bws_functions.php:471
259
- msgid "version of the plugin."
260
- msgstr "version de l'extension."
261
 
262
- #: bws_functions.php:473 bws_functions.php:514
263
- msgid "License key can be found in the"
264
- msgstr "La clé de licence peut être trouvée dans "
265
 
266
- #: bws_functions.php:475 bws_functions.php:516
267
- msgid "(your username is the email address specified during the purchase)."
268
- msgstr ""
269
- "(votre nom d'utilisateur est l'adresse e-mail que vous avez donnée lors de "
270
- "l'achat de l'extension)."
271
 
272
- #: bws_functions.php:479
273
- #, php-format
274
- msgid "Start Your Free %s-Day Trial Now"
275
- msgstr "Débuter votre licence d'évaluation gratuite de %s jours"
276
 
277
- #: bws_functions.php:485 bws_functions.php:494 bws_functions.php:524
278
- #: bws_functions.php:532 bws_functions.php:1401 bws_menu.php:315
279
- #: bws_menu.php:533 bws_menu.php:542
280
- msgid "Activate"
281
- msgstr "Activé"
282
 
283
- #: bws_functions.php:511 bws_functions.php:604
284
- #, php-format
285
- msgid ""
286
- "In order to continue using the plugin it is necessary to buy a %s license."
287
- msgstr ""
288
- "Afin de pouvoir continuer à utiliser cette extension il est nécessaire "
289
- "d'acheter une licence %s."
290
 
291
- #: bws_functions.php:512
292
- msgid "After that you can activate it by entering your license key."
293
- msgstr ""
294
- " Après vous pouvez activer cette extension en donnant votre clé de licence."
295
 
296
- #: bws_functions.php:526 bws_menu.php:118 bws_menu.php:304
297
- msgid "Unfortunately, you have exceeded the number of available tries per day."
298
- msgstr ""
299
- "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de "
300
- "télécharger l'extension manuellement."
301
 
302
- #: bws_functions.php:543
 
 
 
 
 
 
303
  msgid ""
304
- "Congratulations! The Pro license of the plugin is successfully activated."
 
305
  msgstr ""
306
- "Félicitations! La version PRO de cette extension a été téléchargée et "
307
- "activée avec succès."
 
 
 
 
 
 
 
308
 
309
- #: bws_functions.php:584
 
310
  msgid "Wrong license key."
311
  msgstr "Clé de licence incorrecte."
312
 
313
- #: bws_functions.php:586
314
- msgid "This license key is bind to another site."
 
 
315
  msgstr "La clé de licence correspond à un autre site."
316
 
317
- #: bws_functions.php:588
318
  msgid ""
319
  "This license key is valid, but Your license has expired. If you want to "
320
  "update our plugin in future, you should extend the license."
@@ -323,13 +352,13 @@ msgstr ""
323
  "continuer à disposer du support rapide et des mises à jour de l'extension "
324
  "vous devez la renouveller."
325
 
326
- #: bws_functions.php:590
327
  msgid "Unfortunately, you have exceeded the number of available tries."
328
  msgstr ""
329
  "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de "
330
  "télécharger l'extension manuellement."
331
 
332
- #: bws_functions.php:592
333
  msgid ""
334
  "Unfortunately, the Pro Trial licence was already installed to this domain. "
335
  "The Pro Trial license can be installed only once."
@@ -337,33 +366,42 @@ msgstr ""
337
  "Une licence a déjà été installée sur ce domaine. La licence d'évaluation ne "
338
  "peut-être installée qu'une seule fois."
339
 
340
- #: bws_functions.php:596
341
  msgid "The Pro Trial license key is valid."
342
  msgstr "La clé de licence d'évaluation est valide."
343
 
344
- #: bws_functions.php:598 bws_menu.php:128
345
  msgid "The license key is valid."
346
  msgstr "La clé de licence est valide."
347
 
348
- #: bws_functions.php:601 bws_menu.php:130
349
  msgid "Your license will expire on"
350
  msgstr "Votre licence se termine le "
351
 
352
- #: bws_functions.php:634
 
 
 
 
 
 
 
 
353
  msgid "Please, enter your license key"
354
  msgstr "Merci de saisir votre clé de licence"
355
 
356
- #: bws_functions.php:647
 
357
  msgid ""
358
- "If needed you can check if the license key is correct or reenter it in the "
359
- "field below. You can find your license key on your personal page - Client "
360
- "area - on our website"
361
  msgstr ""
362
  "Si nécessaire vous pouvez vérifier que la clé de licence est correcte ou la "
363
  "saisir de nouveau dans le champ ci-dessous. Vous pouvez trouver votre clé de "
364
  "licence sur votre page personnelle (zone client) sur notre site web."
365
 
366
- #: bws_functions.php:647
367
  msgid ""
368
  "(your username is the email address specified during the purchase). If "
369
  "necessary, please submit \"Lost your password?\" request."
@@ -372,205 +410,166 @@ msgstr ""
372
  "l'achat de l'extension). Si nécessaire, utilisez la fonction de demande de "
373
  "mot de passe perdu."
374
 
375
- #: bws_functions.php:651 bws_menu.php:306 bws_menu.php:317
 
376
  msgid "Check license key"
377
  msgstr "Vérifier la clé de licence"
378
 
379
- #: bws_functions.php:666
380
- msgid "WARNING: Illegal use notification"
381
- msgstr "AVERTISSEMENT : Notification d'utilisation abusive"
382
-
383
- #: bws_functions.php:666
384
- msgid ""
385
- "You can use one license of the Pro plugin for one domain only. Please check "
386
- "and edit your license or domain if necessary using you personal Client Area. "
387
- "We strongly recommend you to solve the problem within 24 hours, otherwise "
388
- "the Pro plugin will be deactivated."
389
  msgstr ""
390
- "Vous ne pouvez utilisez qu'une licence de la version Pro de l'extension pour "
391
- "un seul domaine. Merci de vérifier et de modifier votre licence ou votre "
392
- "domaine si nécessaire en utilisant votre zone client. Nous vous recommandons "
393
- "de résoudre ce problème dans les 24 heures, sinon l'extension sera rendue "
394
- "inactive."
395
 
396
- #: bws_functions.php:675
397
- msgid ""
398
- "Notice: Your Pro Trial license has expired. To continue using the plugin you "
399
- "should buy a Pro license"
400
- msgstr ""
401
- "Votre licence d'évaluation est terminée. Pour continuer à disposer du "
402
- "support rapide et des mises à jour de l'extension vous devez la renouveler."
403
 
404
- #: bws_functions.php:677
405
- msgid ""
406
- "Your license has expired. To continue getting top-priority support and "
407
- "plugin updates you should extend it."
408
  msgstr ""
409
- "Votre licence est terminée. Pour continuer à disposer du support rapide et "
410
- "des mises à jour de l'extension vous devez la renouveller."
411
 
412
- #: bws_functions.php:677 bws_functions.php:731 bws_functions.php:1356
413
- msgid "Learn more"
414
- msgstr "En savoir plus"
 
 
415
 
416
- #: bws_functions.php:688
417
- #, php-format
418
- msgid "Notice: You are using the Pro Trial license of %s plugin."
419
  msgstr ""
420
- "Avertissement : vous utilisez la version d'évaluation de l'extension %s."
 
421
 
422
- #: bws_functions.php:690
423
- msgid "Notice: You are using the Pro Trial license of plugin."
424
- msgstr "Avertissement : vous utilisez la version d'évaluation de l'extension."
 
 
 
 
425
 
426
- #: bws_functions.php:693
427
- msgid "The Pro Trial license will expire on"
428
- msgstr "La licence PRO d'évaluation expirera le"
429
 
430
- #: bws_functions.php:731
431
- msgid "You license for"
432
- msgstr "Votre licence pour"
433
 
434
- #: bws_functions.php:731
435
- msgid "expires on"
436
- msgstr "se termine le"
437
 
438
- #: bws_functions.php:731
439
- msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
440
- msgstr "et vous ne disposerez plus du support rapide et des mises à jour."
 
441
 
442
- #: bws_functions.php:826
443
- msgid "Thank you for choosing"
444
- msgstr "Merci d'avoir choisi"
445
 
446
- #: bws_functions.php:827
 
447
  msgid ""
448
- "If you have a feature, suggestion or idea you'd like to see in the plugin, "
449
- "we'd love to hear about it!"
450
  msgstr ""
451
- "Si vous avez une fonctionnalité, une suggestion ou une idée que vous "
452
- "souhaitez pour cette extension, nous serons ravis d'en parler avec vous !"
453
 
454
- #: bws_functions.php:828
455
- msgid "Suggest a Feature"
456
- msgstr "Proposer une fonctionnalité"
 
 
 
 
 
457
 
458
- #: bws_functions.php:844
459
- msgid "Notice"
460
- msgstr "Avertissement"
 
 
 
 
461
 
462
- #: bws_functions.php:844
463
- msgid "The plugin's settings have been changed."
464
- msgstr "Les paramètres de l'extension ont été modifiés."
 
 
 
 
465
 
466
- #: bws_functions.php:845 bws_functions.php:1412
467
- msgid "Save Changes"
468
- msgstr "Sauvegarder les modifications"
 
 
469
 
470
- #: bws_functions.php:859
471
  msgid ""
472
- "You can always look at premium options by clicking on the \"Show Pro features"
473
- "\" in the \"Go PRO\" tab"
474
  msgstr ""
475
- "Vous pouvez toujours consulter les options premium en cliquant sur le lien "
476
- "\"Voir les fonctionnalités de la version PRO\" dans l'onglet Passer PRO"
477
 
478
- #: bws_functions.php:988
479
- msgid "Add shortcode"
480
- msgstr "Ajouter le code court"
 
 
481
 
482
- #: bws_functions.php:988
483
- msgid "Add BestWebSoft plugins' shortcodes using this button."
484
- msgstr "Ajouter le code court des extensions BestWebSoft avec ce bouton."
 
 
 
 
485
 
486
- #: bws_functions.php:1037
487
- msgid "Close"
488
- msgstr "Fermer"
489
 
490
- #: bws_functions.php:1129
491
  msgid "Restore all plugin settings to defaults"
492
  msgstr "Remettre les valeurs par défaut des paramètres de l'extension"
493
 
494
- #: bws_functions.php:1131
495
- msgid "Restore settings"
496
- msgstr "Remettre les paramètres"
497
-
498
- #: bws_functions.php:1142
499
- msgid "Are you sure you want to restore all settings by default?"
500
- msgstr "Êtes vous sûr de vouloir remettre toutes les valeurs par défaut ?"
501
-
502
- #: bws_functions.php:1145
503
- msgid "Yes, restore all settings"
504
- msgstr "Oui, remettre les valeurs par défaut"
505
-
506
- #: bws_functions.php:1146
507
- msgid "No, go back to the settings page"
508
- msgstr "Non, retourner à la page des paramètres"
509
-
510
- #: bws_functions.php:1192
511
- msgid "Plugin"
512
- msgstr "Extension"
513
-
514
- #: bws_functions.php:1201
515
- msgid "Shortcode settings"
516
- msgstr "Paramètres du code court"
517
-
518
- #: bws_functions.php:1206
519
- msgid "The shortcode will be inserted"
520
- msgstr "Le code court sera inséré"
521
-
522
- #: bws_functions.php:1211
523
- msgid "Insert"
524
- msgstr "Insérer"
525
-
526
- #: bws_functions.php:1244
527
- msgid "Visit Help Center"
528
- msgstr "Visiter le site du support"
529
-
530
- #: bws_functions.php:1249
531
- msgid "FAQ"
532
- msgstr "FAQ"
533
-
534
- #: bws_functions.php:1255
535
- msgid "For more information:"
536
- msgstr "Pour plus d'informations&nbsp;:"
537
-
538
- #: bws_functions.php:1256
539
- msgid "Documentation"
540
- msgstr "Documentation"
541
-
542
- #: bws_functions.php:1257
543
- msgid "Video Instructions"
544
- msgstr "Vidéo explicative"
545
-
546
- #: bws_functions.php:1258
547
- msgid "Submit a Request"
548
- msgstr "Soumettre une requête"
549
-
550
- #: bws_functions.php:1269
551
  msgid "You do not have sufficient permissions to edit plugins for this site."
552
  msgstr ""
553
  "Vous n'avez pas assez de droits pour modifier l'extension pour ce site."
554
 
555
- #: bws_functions.php:1320 bws_functions.php:1347
556
  #, php-format
557
  msgid "File %s edited successfully."
558
  msgstr "Le fichier %s a été modifié avec succès."
559
 
560
- #: bws_functions.php:1322 bws_functions.php:1349
561
  msgid "Not enough permissions to create or update the file"
562
  msgstr "Pas assez de droits pour créer ou modifier le fichier"
563
 
564
- #: bws_functions.php:1352
565
  msgid "Not enough permissions to create the file"
566
  msgstr "Pas assez de droits pour créer le fichier"
567
 
568
- #: bws_functions.php:1390
569
  msgid "These styles will be added to the header on all pages of your site."
570
  msgstr ""
571
  "Ces styles seront ajoutés aux entêtes sur tous les pages de votre site."
572
 
573
- #: bws_functions.php:1392
574
  #, fuzzy, php-format
575
  msgid ""
576
  "This PHP code will be hooked to the %s action and will be printed on front "
@@ -579,20 +578,20 @@ msgstr ""
579
  "Ce code PHP sera rattaché à l'action %s et sera affiché uniquement sur la "
580
  "partie publique."
581
 
582
- #: bws_functions.php:1396
583
  msgid "Editing"
584
  msgstr "Modifier"
585
 
586
- #: bws_functions.php:1398
587
  msgid "Browsing"
588
  msgstr "Parcourir"
589
 
590
- #: bws_functions.php:1405
591
  #, php-format
592
  msgid "Learn more about %s"
593
  msgstr "En savoir plus sur %s"
594
 
595
- #: bws_functions.php:1416
596
  #, php-format
597
  msgid ""
598
  "You need to make this files writable before you can save your changes. See "
@@ -601,192 +600,255 @@ msgstr ""
601
  "Vous devez rendre ce fichier modifiable avant de pouvoir enregistrer vos "
602
  "modifications. Regarder %s du Codex %s pour plus d'informations."
603
 
604
- #: bws_menu.php:116
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
605
  msgid ""
606
- "This license key is bind to another website. Change it via personal Client "
607
  "Area."
608
  msgstr ""
609
  "La clé de licence correspond à un autre site. Modifier là au travers de "
610
  "votre espace client."
611
 
612
- #: bws_menu.php:116
613
  msgid "Log in"
614
  msgstr "Connexion"
615
 
616
- #: bws_menu.php:132
617
- msgid "Congratulations! Pro Membership license is successfully activated."
 
618
  msgstr ""
619
  "Félicitations! La version PRO de cette extension a été téléchargée et "
620
  "activée avec succès."
621
 
622
- #: bws_menu.php:149
623
  msgid "Please enter your license key."
624
  msgstr "Merci de saisir votre clé de licence."
625
 
626
- #: bws_menu.php:161
627
  msgid "Not set"
628
  msgstr "Not set"
629
 
630
- #: bws_menu.php:163 bws_menu.php:164
631
  msgid "On"
632
  msgstr "On"
633
 
634
- #: bws_menu.php:163 bws_menu.php:164
635
  msgid "Off"
636
  msgstr "Off"
637
 
638
- #: bws_menu.php:165 bws_menu.php:166 bws_menu.php:167 bws_menu.php:168
639
- #: bws_menu.php:169 bws_menu.php:181
640
  msgid "N/A"
641
  msgstr "N/A"
642
 
643
- #: bws_menu.php:169
644
  msgid " Mb"
645
  msgstr " Mb"
646
 
647
- #: bws_menu.php:170 bws_menu.php:171 bws_menu.php:172 bws_menu.php:177
648
  msgid "Yes"
649
  msgstr "Yes"
650
 
651
- #: bws_menu.php:170 bws_menu.php:171 bws_menu.php:172 bws_menu.php:179
652
  msgid "No"
653
  msgstr "No"
654
 
655
- #: bws_menu.php:190
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
656
  msgid "Operating System"
657
  msgstr "Operating System"
658
 
659
- #: bws_menu.php:191
660
  msgid "Server"
661
  msgstr "Server"
662
 
663
- #: bws_menu.php:192
664
- msgid "Memory usage"
665
- msgstr "Memory usage"
666
-
667
- #: bws_menu.php:193
668
- msgid "MYSQL Version"
669
- msgstr "MYSQL Version"
670
-
671
- #: bws_menu.php:194
672
- msgid "SQL Mode"
673
- msgstr "SQL Mode"
674
-
675
- #: bws_menu.php:195
676
  msgid "PHP Version"
677
  msgstr "PHP Version"
678
 
679
- #: bws_menu.php:196
680
  msgid "PHP Safe Mode"
681
  msgstr "PHP Safe Mode"
682
 
683
- #: bws_menu.php:197
684
  msgid "PHP Allow URL fopen"
685
  msgstr "PHP Allow URL fopen"
686
 
687
- #: bws_menu.php:198
688
  msgid "PHP Memory Limit"
689
  msgstr "PHP Memory Limit"
690
 
691
- #: bws_menu.php:199
 
 
 
 
 
692
  msgid "PHP Max Upload Size"
693
  msgstr "PHP Max Upload Size"
694
 
695
- #: bws_menu.php:200
696
  msgid "PHP Max Post Size"
697
  msgstr "PHP Max Post Size"
698
 
699
- #: bws_menu.php:201
700
  msgid "PHP Max Script Execute Time"
701
  msgstr "PHP Max Script Execute Time"
702
 
703
- #: bws_menu.php:202
704
  msgid "PHP Exif support"
705
  msgstr "PHP Exif support"
706
 
707
- #: bws_menu.php:203
708
  msgid "PHP IPTC support"
709
  msgstr "PHP IPTC support"
710
 
711
- #: bws_menu.php:204
712
  msgid "PHP XML support"
713
  msgstr "PHP XML support"
714
 
715
- #: bws_menu.php:205
716
- msgid "Site URL"
717
- msgstr "Site URL"
718
 
719
- #: bws_menu.php:206
720
- msgid "Home URL"
721
- msgstr "Home URL"
 
722
 
723
- #: bws_menu.php:209
724
- msgid "WordPress Version"
725
- msgstr "WordPress Version"
 
726
 
727
- #: bws_menu.php:210
728
- msgid "WordPress DB Version"
729
- msgstr "WordPress DB Version"
730
 
731
- #: bws_menu.php:211
732
- msgid "Multisite"
733
- msgstr "Multisite"
734
 
735
- #: bws_menu.php:212
736
- msgid "Active Theme"
737
- msgstr "Active Theme"
738
 
739
- #: bws_menu.php:226
740
  msgid "Please enter a valid email address."
741
  msgstr "Merci de saisir une adresse e-mail valide."
742
 
743
- #: bws_menu.php:230
744
- msgid "Email with system info is sent to "
 
745
  msgstr "Le courriel avec les informations système est envoyé à"
746
 
747
- #: bws_menu.php:234
748
  msgid "Thank you for contacting us."
749
  msgstr "Merci de nous avoir contacté."
750
 
751
- #: bws_menu.php:267
752
  msgid "Sorry, email message could not be delivered."
753
  msgstr "Désolé, votre e-mail n'a pas pu être envoyé."
754
 
755
- #: bws_menu.php:286 bws_menu.php:632
756
  msgid "System status"
757
  msgstr "Etat du système"
758
 
759
- #: bws_menu.php:287
760
  msgid "Support"
761
  msgstr "Support"
762
 
763
- #: bws_menu.php:288
764
  msgid "Manage purchased licenses & subscriptions"
765
  msgstr "Gérer les licences et les adhésions"
766
 
767
- #: bws_menu.php:288
768
- msgid "Client Area"
769
- msgstr "Espace client"
770
-
771
- #: bws_menu.php:296
772
  #, php-format
773
  msgid "Get Access to %s+ Premium Plugins"
774
  msgstr "Accéder à plus de %s extension premiums"
775
 
776
- #: bws_menu.php:298
777
  #, fuzzy
778
  msgid "Subscribe to Pro Membership"
779
  msgstr "Souscrire une adhésion PRO"
780
 
781
- #: bws_menu.php:309
782
  msgid "Enter your license key"
783
  msgstr "Merci de saisir votre clé de licence"
784
 
785
- #: bws_menu.php:331
786
  msgid "Upload Plugin"
787
  msgstr "Charger l'extension"
788
 
789
- #: bws_menu.php:335
790
  #, php-format
791
  msgid ""
792
  "The plugin generated %d characters of <strong>unexpected output</strong> "
@@ -799,7 +861,7 @@ msgstr ""
799
  "sent&#8221;, des problèmes avec les flux de syndication ou autres, essayez "
800
  "de désactiver l'extension ou supprimer l'extension."
801
 
802
- #: bws_menu.php:337
803
  msgid ""
804
  "Plugin could not be activated because it triggered a <strong>fatal error</"
805
  "strong>."
@@ -807,129 +869,114 @@ msgstr ""
807
  "L'extension ne peut pas être activée car une <strong>erreur fatale</strong> "
808
  "a été détectée."
809
 
810
- #: bws_menu.php:340
811
  msgid "Plugin <strong>activated</strong>."
812
  msgstr "Extension <strong>activée</strong>."
813
 
814
- #: bws_menu.php:347
815
  msgid "Installing Plugin"
816
  msgstr "Extensions installées"
817
 
818
- #: bws_menu.php:353
819
  msgid "Downloading install package from"
820
  msgstr "Télécharger le paquet d'installation depuis"
821
 
822
- #: bws_menu.php:378
823
  msgid "Unpacking the package"
824
  msgstr "Décompresser le paquet"
825
 
826
- #: bws_menu.php:383 bws_menu.php:391
827
  msgid "Installing the plugin"
828
  msgstr "Installer l'extension"
829
 
830
- #: bws_menu.php:397
831
- msgid "Successfully installed the plugin"
832
- msgstr "Extension installée avec succès"
 
833
 
834
- #: bws_menu.php:409
835
  msgid "Activate Plugin"
836
  msgstr "Activer l'extension"
837
 
838
- #: bws_menu.php:409 bws_menu.php:415
839
  msgid "Return to BestWebSoft Panel"
840
  msgstr "Retourner à l'administration BestWebSoft"
841
 
842
- #: bws_menu.php:419 bws_menu.php:434 bws_menu.php:563
843
  msgid "All"
844
  msgstr "Tous"
845
 
846
- #: bws_menu.php:420 bws_menu.php:620
847
  msgid "Installed"
848
  msgstr "Installé"
849
 
850
- #: bws_menu.php:421
851
  msgid "Not Installed"
852
  msgstr "Non installé"
853
 
854
- #: bws_menu.php:427
855
  msgid "Filter results"
856
  msgstr "Filtrer les résultats"
857
 
858
- #: bws_menu.php:430 bws_menu.php:559
859
  msgid "Category"
860
  msgstr "Catégorie"
861
 
862
- #: bws_menu.php:494
863
  #, fuzzy
864
  msgid "Not installed"
865
  msgstr "Non installé"
866
 
867
- #: bws_menu.php:498
868
  msgid "Renew to get updates"
869
  msgstr "Se réabonner pour avoir les mises à jour"
870
 
871
- #: bws_menu.php:501
872
  #, php-format
873
  msgid "Update to v %s"
874
  msgstr "Mettre à jour avec la version %s"
875
 
876
- #: bws_menu.php:513 bws_menu.php:536 bws_menu.php:545
877
  msgid "Install Now"
878
  msgstr "Installer maintenant"
879
 
880
- #: bws_menu.php:519
881
  msgid "Upgrade to Pro"
882
  msgstr "Passer à la version PRO"
883
 
884
- #: bws_menu.php:523
885
- msgid "Donate"
886
- msgstr "Don"
887
-
888
- #: bws_menu.php:533 bws_menu.php:542
889
  msgid "Activate this plugin"
890
  msgstr "Activer cette extension"
891
 
892
- #: bws_menu.php:545
893
  msgid "Install this plugin"
894
  msgstr "Installer cette extension"
895
 
896
- #: bws_menu.php:554
897
  msgid "Nothing found. Try another criteria."
898
  msgstr "Pas de réponse. essayer d'autres critères."
899
 
900
- #: bws_menu.php:591 bws_menu.php:611
901
  #, php-format
902
  msgid "By %s"
903
  msgstr "Par %s"
904
 
905
- #: bws_menu.php:618
906
  msgid "Already Installed"
907
  msgstr "Déjà installé"
908
 
909
- #: bws_menu.php:629
910
  msgid "Browse Free WordPress Themes"
911
  msgstr "Parcourir les thèmes gratuits pour WordPress"
912
 
913
- #: bws_menu.php:638
914
  msgid "Send to support"
915
  msgstr "Envoyé au support"
916
 
917
- #: bws_menu.php:645
918
  msgid "Send to custom email &#187;"
919
  msgstr "Envoyer un e-mail spécifique &#187;"
920
 
921
- #: bws_menu.php:652
922
- msgid "Environment"
923
- msgstr "Environnent"
924
-
925
- #: bws_menu.php:663
926
- msgid "Active Plugins"
927
- msgstr "Extensions actives"
928
-
929
- #: bws_menu.php:676
930
- msgid "Inactive Plugins"
931
- msgstr "Extensions inactives"
932
-
933
  #: product_list.php:7
934
  msgid "Advertisement"
935
  msgstr "Publicité"
@@ -966,6 +1013,234 @@ msgstr "Utilitaires"
966
  msgid "Other"
967
  msgstr "Autre"
968
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
969
  #~ msgid "Activate Membership"
970
  #~ msgstr "Activer l'adhésion"
971
 
@@ -983,9 +1258,6 @@ msgstr "Autre"
983
  #~ msgid "My Account"
984
  #~ msgstr "Mon compte"
985
 
986
- #~ msgid "Need help?"
987
- #~ msgstr "Besoin d'aide ?"
988
-
989
  #~ msgid "Go"
990
  #~ msgstr "Passez"
991
 
@@ -1046,9 +1318,6 @@ msgstr "Autre"
1046
  #~ msgid "Switch to new interface"
1047
  #~ msgstr "Basculer vers la nouvelle interface"
1048
 
1049
- #~ msgid "Pro plugins"
1050
- #~ msgstr "Plugins Pro"
1051
-
1052
  #~ msgid "Activated plugins"
1053
  #~ msgstr "Plugin activé"
1054
 
@@ -1073,9 +1342,6 @@ msgstr "Autre"
1073
  #~ msgid "Customize &#8220;%s&#8221;"
1074
  #~ msgstr "Personnaliser &#8220;%s&#8221;"
1075
 
1076
- #~ msgid "Customize"
1077
- #~ msgstr "Personnaliser"
1078
-
1079
  #~ msgid "Installed themes"
1080
  #~ msgstr "Thèmes installés"
1081
 
@@ -1180,9 +1446,6 @@ msgstr "Autre"
1180
  #~ "Merci de saisir une adresse e-mail valide pour le 'FROM'. Les "
1181
  #~ "modifications ne sont pas sauvegardées."
1182
 
1183
- #~ msgid "Settings saved."
1184
- #~ msgstr "Options sauvegardées."
1185
-
1186
  #~ msgid ""
1187
  #~ "If you would like to add the Contact Form to your website, just copy and "
1188
  #~ "paste this shortcode to your post or page or widget:"
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-01-25 17:11+0300\n"
6
+ "PO-Revision-Date: 2017-01-25 17:11+0300\n"
7
  "Last-Translator: Luc Capronnier <lcapronnier@yahoo.com>\n"
8
  "Language-Team: Luc Capronnier <lcapronnier@yahoo.com>\n"
9
  "Language: fr_FR\n"
17
  "X-Generator: Poedit 1.5.4\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: bws_functions.php:72 bws_functions.php:190
 
 
 
 
 
 
 
 
 
 
 
 
21
  msgid "requires"
22
  msgstr "obligatoire"
23
 
24
+ #: bws_functions.php:74
25
  msgid ""
26
  "or higher, that is why it has been deactivated! Please upgrade WordPress and "
27
  "try again."
29
  "ou supérieure, c'est pourquoi il a été désactivé! Merci de faire la mise à "
30
  "jour de WordPress puis de ré-essayer."
31
 
32
+ #: bws_functions.php:75
33
  msgid "Back to the WordPress"
34
  msgstr "Retour à WordPress"
35
 
36
+ #: bws_functions.php:77
37
  msgid "Plugins page"
38
  msgstr "Page des extensions"
39
 
40
+ #: bws_functions.php:91
41
+ #, fuzzy
42
+ msgid "Like the plugin?"
43
+ msgstr "Voter pour l'extension"
44
+
45
+ #: bws_functions.php:93
46
+ msgid "Rate it"
47
+ msgstr ""
48
+
49
+ #: bws_functions.php:102
50
+ msgid "Need help?"
51
+ msgstr "Besoin d'aide ?"
52
+
53
+ #: bws_functions.php:103 bws_functions.php:914
54
+ msgid "Visit Help Center"
55
+ msgstr "Visiter le site du support"
56
+
57
+ #: bws_functions.php:106
58
+ #, fuzzy
59
+ msgid "Want to support the plugin?"
60
+ msgstr "Voter pour l'extension"
61
+
62
+ #: bws_functions.php:107 bws_menu.php:553
63
+ msgid "Donate"
64
+ msgstr "Don"
65
+
66
+ #: bws_functions.php:127
67
+ msgid "WARNING: Illegal use notification"
68
+ msgstr "AVERTISSEMENT : Notification d'utilisation abusive"
69
+
70
+ #: bws_functions.php:127
71
+ msgid ""
72
+ "You can use one license of the Pro plugin for one domain only. Please check "
73
+ "and edit your license or domain if necessary using you personal Client Area. "
74
+ "We strongly recommend you to solve the problem within 24 hours, otherwise "
75
+ "the Pro plugin will be deactivated."
76
+ msgstr ""
77
+ "Vous ne pouvez utilisez qu'une licence de la version Pro de l'extension pour "
78
+ "un seul domaine. Merci de vérifier et de modifier votre licence ou votre "
79
+ "domaine si nécessaire en utilisant votre zone client. Nous vous recommandons "
80
+ "de résoudre ce problème dans les 24 heures, sinon l'extension sera rendue "
81
+ "inactive."
82
+
83
+ #: bws_functions.php:127 bws_functions.php:339 bws_menu.php:627
84
+ #: class-bws-settings.php:136
85
+ msgid "Learn More"
86
+ msgstr "En savoir plus"
87
+
88
+ #: bws_functions.php:144
89
+ #, fuzzy
90
+ msgid ""
91
+ "Notice: Your Pro Trial license has expired. To continue using the plugin, "
92
+ "you should buy a Pro license"
93
+ msgstr ""
94
+ "Votre licence d'évaluation est terminée. Pour continuer à disposer du "
95
+ "support rapide et des mises à jour de l'extension vous devez la renouveler."
96
+
97
+ #: bws_functions.php:146
98
+ #, fuzzy
99
+ msgid ""
100
+ "Your license has expired. To continue getting top-priority support and "
101
+ "plugin updates, you should extend it."
102
+ msgstr ""
103
+ "Votre licence est terminée. Pour continuer à disposer du support rapide et "
104
+ "des mises à jour de l'extension vous devez la renouveller."
105
+
106
+ #: bws_functions.php:146 bws_functions.php:382 deprecated.php:584
107
+ msgid "Learn more"
108
+ msgstr "En savoir plus"
109
+
110
+ #: bws_functions.php:164
111
+ #, php-format
112
+ msgid "Notice: You are using the Pro Trial license of %s plugin."
113
+ msgstr ""
114
+ "Avertissement : vous utilisez la version d'évaluation de l'extension %s."
115
+
116
+ #: bws_functions.php:166
117
+ msgid "Notice: You are using the Pro Trial license of plugin."
118
+ msgstr "Avertissement : vous utilisez la version d'évaluation de l'extension."
119
+
120
+ #: bws_functions.php:169
121
+ msgid "The Pro Trial license will expire on"
122
+ msgstr "La licence PRO d'évaluation expirera le"
123
+
124
+ #: bws_functions.php:192
125
  msgid ""
126
  "or higher! We do not guarantee that our plugin will work correctly. Please "
127
  "upgrade to WordPress latest version."
129
  "ou plus ! Nous ne garantissons pas que notre extension fonctionne "
130
  "correctement. Merci de mettre à jour Wordpress avec la dernière version."
131
 
132
+ #: bws_functions.php:207
133
  msgid "Thank you for installing"
134
  msgstr "Merci d'avoir installé"
135
 
136
+ #: bws_functions.php:208
137
  msgid "Let's get started"
138
  msgstr "Démarrer"
139
 
140
+ #: bws_functions.php:209 bws_functions.php:242 bws_menu.php:557
141
+ #: bws_menu.php:559
142
  msgid "Settings"
143
  msgstr "Réglages"
144
 
145
+ #: bws_functions.php:211 deprecated.php:694 bws_menu.php:328
146
+ #: class-bws-settings.php:736 class-bws-settings.php:1046
147
+ #: class-bws-settings.php:1076
148
  msgid "or"
149
  msgstr "ou"
150
 
151
+ #: bws_functions.php:212 bws_functions.php:244
152
  msgid "Add New"
153
  msgstr "Ajouter"
154
 
155
+ #: bws_functions.php:216 bws_functions.php:226 bws_functions.php:330
156
+ #: bws_functions.php:378 bws_functions.php:482
157
  msgid "Close notice"
158
  msgstr "Effacer l'avertissement"
159
 
160
+ #: bws_functions.php:231
161
  msgid "Thank you for installing plugins by BestWebSoft!"
162
  msgstr "Merci d'avoir installé des extensions de BestWebSoft!"
163
 
164
+ #: bws_functions.php:233
165
  msgid "More Details"
166
  msgstr "Plus de détails"
167
 
168
+ #: bws_functions.php:234
169
  msgid "Less Details"
170
  msgstr "Moins de détails"
171
 
172
+ #: bws_functions.php:262
173
+ msgid "Deprecated function(-s) is used on the site here:"
174
+ msgstr ""
175
+
176
+ #: bws_functions.php:276
177
+ msgid ""
178
+ "This function(-s) will be removed over time. Please update the product(-s)."
179
+ msgstr ""
180
+
181
+ #: bws_functions.php:335
182
  msgid "It’s time to upgrade your"
183
  msgstr "C'est le moment de mettre à jour votre "
184
 
185
+ #: bws_functions.php:335
186
  msgid "to"
187
  msgstr "à"
188
 
189
+ #: bws_functions.php:335
190
  msgid "version!"
191
  msgstr "version"
192
 
193
+ #: bws_functions.php:336
194
  msgid "Extend standard plugin functionality with new great options."
195
  msgstr ""
196
  "Étend les fonctionnalités classiques de l'extension avec des nouvelles "
197
  "options."
198
 
199
+ #: bws_functions.php:382
200
+ #, fuzzy, php-format
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
201
  msgid ""
202
+ "Your license key for %s expires on %s and you won't be granted TOP-PRIORITY "
203
+ "SUPPORT or UPDATES."
204
+ msgstr "et vous ne disposerez plus du support rapide et des mises à jour."
 
 
 
 
 
 
 
 
205
 
206
+ #: bws_functions.php:477
207
+ msgid "Thank you for choosing"
208
+ msgstr "Merci d'avoir choisi"
209
 
210
+ #: bws_functions.php:478
211
  msgid ""
212
+ "If you have a feature, suggestion or idea you'd like to see in the plugin, "
213
+ "we'd love to hear about it!"
214
  msgstr ""
215
+ "Si vous avez une fonctionnalité, une suggestion ou une idée que vous "
216
+ "souhaitez pour cette extension, nous serons ravis d'en parler avec vous !"
217
 
218
+ #: bws_functions.php:479
219
+ msgid "Suggest a Feature"
220
+ msgstr "Proposer une fonctionnalité"
 
 
 
 
221
 
222
+ #: bws_functions.php:495 class-bws-settings.php:527 class-bws-settings.php:530
223
+ #: class-bws-settings.php:585 class-bws-settings.php:588
224
+ msgid "Notice"
225
+ msgstr "Avertissement"
 
 
 
226
 
227
+ #: bws_functions.php:495
228
+ msgid "The plugin's settings have been changed."
229
+ msgstr "Les paramètres de l'extension ont été modifiés."
 
 
 
230
 
231
+ #: bws_functions.php:496 deprecated.php:640 class-bws-settings.php:175
232
+ #: class-bws-settings.php:189
233
+ msgid "Save Changes"
234
+ msgstr "Sauvegarder les modifications"
 
235
 
236
+ #: bws_functions.php:510
237
+ #, fuzzy
238
  msgid ""
239
+ "You can always look at premium options by checking the \"Pro Options\" in "
240
+ "the \"Misc\" tab."
241
  msgstr ""
242
+ "Vous pouvez toujours consulter les options premium en cliquant sur le lien "
243
+ "\"Voir les fonctionnalités de la version PRO\" dans l'onglet Passer PRO"
244
 
245
+ #: bws_functions.php:649
246
+ msgid "Add shortcode"
247
+ msgstr "Ajouter le code court"
 
 
248
 
249
+ #: bws_functions.php:649
250
+ msgid "Add BestWebSoft plugins' shortcodes using this button."
251
+ msgstr "Ajouter le code court des extensions BestWebSoft avec ce bouton."
 
 
 
 
252
 
253
+ #: bws_functions.php:698
254
+ msgid "Close"
255
+ msgstr "Fermer"
256
 
257
+ #: bws_functions.php:790
258
+ #, fuzzy
259
+ msgid "Are you sure you want to restore default settings?"
260
+ msgstr "Êtes vous sûr de vouloir remettre toutes les valeurs par défaut ?"
 
 
 
261
 
262
+ #: bws_functions.php:793
263
+ msgid "Yes, restore all settings"
264
+ msgstr "Oui, remettre les valeurs par défaut"
265
 
266
+ #: bws_functions.php:794
267
+ msgid "No, go back to the settings page"
268
+ msgstr "Non, retourner à la page des paramètres"
269
 
270
+ #: bws_functions.php:840
271
+ msgid "Plugin"
272
+ msgstr "Extension"
273
 
274
+ #: bws_functions.php:849
275
+ msgid "Shortcode settings"
276
+ msgstr "Paramètres du code court"
277
 
278
+ #: bws_functions.php:854
279
+ msgid "The shortcode will be inserted"
280
+ msgstr "Le code court sera inséré"
281
 
282
+ #: bws_functions.php:859
283
+ msgid "Insert"
284
+ msgstr "Insérer"
285
 
286
+ #: bws_functions.php:919
287
+ msgid "FAQ"
288
+ msgstr "FAQ"
289
 
290
+ #: bws_functions.php:925
291
+ msgid "For more information:"
292
+ msgstr "Pour plus d'informations&nbsp;:"
 
 
293
 
294
+ #: bws_functions.php:926
295
+ msgid "Documentation"
296
+ msgstr "Documentation"
 
297
 
298
+ #: bws_functions.php:927
299
+ msgid "Video Instructions"
300
+ msgstr "Vidéo explicative"
 
 
301
 
302
+ #: bws_functions.php:928
303
+ msgid "Submit a Request"
304
+ msgstr "Soumettre une requête"
 
 
 
 
305
 
306
+ #: deprecated.php:91 bws_menu.php:307 bws_menu.php:311 bws_menu.php:360
307
+ msgid "Plugins"
308
+ msgstr "Extensions"
 
309
 
310
+ #: deprecated.php:92 bws_menu.php:308 bws_menu.php:312 bws_menu.php:611
311
+ msgid "Themes"
312
+ msgstr "Thèmes"
 
 
313
 
314
+ #: deprecated.php:93
315
+ msgid "System Status"
316
+ msgstr "Etat du système"
317
+
318
+ #: deprecated.php:133 deprecated.php:199 deprecated.php:352 bws_menu.php:120
319
+ #: class-bws-settings.php:807 class-bws-settings.php:873
320
+ #: class-bws-settings.php:909
321
  msgid ""
322
+ "Something went wrong. Please try again later. If the error appears again, "
323
+ "please contact us"
324
  msgstr ""
325
+ "Il est survenu une erreur. Essayer de nouveau. Si l'erreur se produit de "
326
+ "nouveau, merci de contacter <a href=http://support.bestwebsoft."
327
+ "com>BestWebSoft</a>. Nous sommes désolés pour le désagrément."
328
+
329
+ #: deprecated.php:133 deprecated.php:199 deprecated.php:352 bws_menu.php:120
330
+ #: class-bws-settings.php:807 class-bws-settings.php:873
331
+ #: class-bws-settings.php:909
332
+ msgid "We are sorry for inconvenience."
333
+ msgstr "Nous sommes désolés pour le désagrément."
334
 
335
+ #: deprecated.php:139 deprecated.php:358 bws_menu.php:126
336
+ #: class-bws-settings.php:813 class-bws-settings.php:915
337
  msgid "Wrong license key."
338
  msgstr "Clé de licence incorrecte."
339
 
340
+ #: deprecated.php:141 deprecated.php:360 class-bws-settings.php:815
341
+ #: class-bws-settings.php:917
342
+ #, fuzzy
343
+ msgid "This license key is bound to another site."
344
  msgstr "La clé de licence correspond à un autre site."
345
 
346
+ #: deprecated.php:143 class-bws-settings.php:817
347
  msgid ""
348
  "This license key is valid, but Your license has expired. If you want to "
349
  "update our plugin in future, you should extend the license."
352
  "continuer à disposer du support rapide et des mises à jour de l'extension "
353
  "vous devez la renouveller."
354
 
355
+ #: deprecated.php:145 class-bws-settings.php:819
356
  msgid "Unfortunately, you have exceeded the number of available tries."
357
  msgstr ""
358
  "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de "
359
  "télécharger l'extension manuellement."
360
 
361
+ #: deprecated.php:147 class-bws-settings.php:821
362
  msgid ""
363
  "Unfortunately, the Pro Trial licence was already installed to this domain. "
364
  "The Pro Trial license can be installed only once."
366
  "Une licence a déjà été installée sur ce domaine. La licence d'évaluation ne "
367
  "peut-être installée qu'une seule fois."
368
 
369
+ #: deprecated.php:151 class-bws-settings.php:825
370
  msgid "The Pro Trial license key is valid."
371
  msgstr "La clé de licence d'évaluation est valide."
372
 
373
+ #: deprecated.php:153 bws_menu.php:140 class-bws-settings.php:827
374
  msgid "The license key is valid."
375
  msgstr "La clé de licence est valide."
376
 
377
+ #: deprecated.php:156 bws_menu.php:142 class-bws-settings.php:830
378
  msgid "Your license will expire on"
379
  msgstr "Votre licence se termine le "
380
 
381
+ #: deprecated.php:159 deprecated.php:246 class-bws-settings.php:833
382
+ #, php-format
383
+ msgid ""
384
+ "In order to continue using the plugin it is necessary to buy a %s license."
385
+ msgstr ""
386
+ "Afin de pouvoir continuer à utiliser cette extension il est nécessaire "
387
+ "d'acheter une licence %s."
388
+
389
+ #: deprecated.php:204
390
  msgid "Please, enter your license key"
391
  msgstr "Merci de saisir votre clé de licence"
392
 
393
+ #: deprecated.php:223
394
+ #, fuzzy
395
  msgid ""
396
+ "If necessary, you can check if the license key is correct or reenter it in "
397
+ "the field below. You can find your license key on your personal page - "
398
+ "Client Area - on our website"
399
  msgstr ""
400
  "Si nécessaire vous pouvez vérifier que la clé de licence est correcte ou la "
401
  "saisir de nouveau dans le champ ci-dessous. Vous pouvez trouver votre clé de "
402
  "licence sur votre page personnelle (zone client) sur notre site web."
403
 
404
+ #: deprecated.php:223
405
  msgid ""
406
  "(your username is the email address specified during the purchase). If "
407
  "necessary, please submit \"Lost your password?\" request."
410
  "l'achat de l'extension). Si nécessaire, utilisez la fonction de demande de "
411
  "mot de passe perdu."
412
 
413
+ #: deprecated.php:227 bws_menu.php:336 bws_menu.php:347
414
+ #: class-bws-settings.php:749
415
  msgid "Check license key"
416
  msgstr "Vérifier la clé de licence"
417
 
418
+ #: deprecated.php:247
419
+ #, fuzzy
420
+ msgid "After that, you can activate it by entering your license key."
 
 
 
 
 
 
 
421
  msgstr ""
422
+ " Après vous pouvez activer cette extension en donnant votre clé de licence."
 
 
 
 
423
 
424
+ #: deprecated.php:249 deprecated.php:688
425
+ msgid "License key can be found in the"
426
+ msgstr "La clé de licence peut être trouvée dans "
 
 
 
 
427
 
428
+ #: deprecated.php:251 deprecated.php:690
429
+ msgid "(your username is the email address specified during the purchase)."
 
 
430
  msgstr ""
431
+ "(votre nom d'utilisateur est l'adresse e-mail que vous avez donnée lors de "
432
+ "l'achat de l'extension)."
433
 
434
+ #: deprecated.php:259 deprecated.php:267 deprecated.php:629 deprecated.php:700
435
+ #: deprecated.php:709 bws_menu.php:345 bws_menu.php:563 bws_menu.php:572
436
+ #: class-bws-settings.php:728
437
+ msgid "Activate"
438
+ msgstr "Activé"
439
 
440
+ #: deprecated.php:261 bws_menu.php:130 bws_menu.php:334
441
+ msgid "Unfortunately, you have exceeded the number of available tries per day."
 
442
  msgstr ""
443
+ "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de "
444
+ "télécharger l'extension manuellement."
445
 
446
+ #: deprecated.php:278
447
+ #, fuzzy
448
+ msgid ""
449
+ "Congratulations! The Pro license of the plugin is activated successfully."
450
+ msgstr ""
451
+ "Félicitations! La version PRO de cette extension a été téléchargée et "
452
+ "activée avec succès."
453
 
454
+ #: deprecated.php:280 deprecated.php:669
455
+ msgid "Please, go to"
456
+ msgstr "Merci d’aller à"
457
 
458
+ #: deprecated.php:280 deprecated.php:669
459
+ msgid "the setting page"
460
+ msgstr "Options supplémentaires"
461
 
462
+ #: deprecated.php:281 deprecated.php:670
463
+ msgid "You will be redirected automatically in 5 seconds."
464
+ msgstr "Vous allez être redirigé automatiquement dans 5 secondes"
465
 
466
+ #: deprecated.php:315
467
+ msgid "Check premium options on the plugin settings page!"
468
+ msgstr ""
469
+ "Vérifier les options premium sur la page des paramètres de l'extension!"
470
 
471
+ #: deprecated.php:322 bws_menu.php:99 class-bws-settings.php:781
472
+ msgid "Wrong license key"
473
+ msgstr "Clé de licence incorrecte"
474
 
475
+ #: deprecated.php:362 deprecated.php:703 class-bws-settings.php:733
476
+ #: class-bws-settings.php:919
477
  msgid ""
478
+ "Unfortunately, you have exceeded the number of available tries per day. "
479
+ "Please, upload the plugin manually."
480
  msgstr ""
481
+ "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de "
482
+ "télécharger l'extension manuellement."
483
 
484
+ #: deprecated.php:364 bws_menu.php:132 class-bws-settings.php:921
485
+ #, fuzzy, php-format
486
+ msgid ""
487
+ "Unfortunately, Your license has expired. To continue getting top-priority "
488
+ "support and plugin updates, you should extend it in your %s"
489
+ msgstr ""
490
+ "Désoler, votre licence est terminée. Pour continuer à disposer du support "
491
+ "rapide et des mises à jour de l'extension vous devez la renouveler dans votre"
492
 
493
+ #: deprecated.php:366 bws_menu.php:134 class-bws-settings.php:923
494
+ msgid ""
495
+ "Unfortunately, the Pro licence was already installed to this domain. The Pro "
496
+ "Trial license can be installed only once."
497
+ msgstr ""
498
+ "Une licence a déjà été installée sur ce domaine. La licence d'évaluation ne "
499
+ "peut-être installée qu'une seule fois."
500
 
501
+ #: deprecated.php:387 deprecated.php:409 deprecated.php:431 bws_menu.php:400
502
+ #: bws_menu.php:431 bws_menu.php:442 class-bws-settings.php:947
503
+ #: class-bws-settings.php:969 class-bws-settings.php:991
504
+ msgid "Failed to download the zip archive. Please, upload the plugin manually"
505
+ msgstr ""
506
+ "Erreur de téléchargement de l'archive ZIP. Merci de télécharger l'extension "
507
+ "manuellement."
508
 
509
+ #: deprecated.php:399 bws_menu.php:417 class-bws-settings.php:959
510
+ msgid "Failed to open the zip archive. Please, upload the plugin manually"
511
+ msgstr ""
512
+ "Erreur d'ouverture de l'archive zip. Merci de télécharger l'extension "
513
+ "manuellement."
514
 
515
+ #: deprecated.php:405 bws_menu.php:424 class-bws-settings.php:965
516
  msgid ""
517
+ "Your server does not support either ZipArchive or Phar. Please, upload the "
518
+ "plugin manually"
519
  msgstr ""
520
+ "Votre serveur n'a pas le support du format des archives ZIP ou Phar. Merci "
521
+ "de télécharger l'extension manuellement."
522
 
523
+ #: deprecated.php:412 bws_menu.php:434 class-bws-settings.php:972
524
+ msgid "UploadDir is not writable. Please, upload the plugin manually"
525
+ msgstr ""
526
+ "Erreur d'ouverture de l'archive zip. Merci de télécharger l'extension "
527
+ "manuellement."
528
 
529
+ #: deprecated.php:435 bws_menu.php:151 class-bws-settings.php:995
530
+ msgid ""
531
+ "Something went wrong. Try again later or upload the plugin manually. We are "
532
+ "sorry for inconvenience."
533
+ msgstr ""
534
+ "Il est survenu une erreur. Essayer de nouveau ou bien télécharger "
535
+ "l'extension manuellement.Nous sommes désolés pour le désagrément."
536
 
537
+ #: deprecated.php:463 class-bws-settings.php:1030
538
+ msgid "Please, enter Your license key"
539
+ msgstr "Merci de saisir votre clé de licence"
540
 
541
+ #: deprecated.php:478
542
  msgid "Restore all plugin settings to defaults"
543
  msgstr "Remettre les valeurs par défaut des paramètres de l'extension"
544
 
545
+ #: deprecated.php:480
546
+ msgid "Restore settings"
547
+ msgstr "Remettre les paramètres"
548
+
549
+ #: deprecated.php:497 class-bws-settings.php:421
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
550
  msgid "You do not have sufficient permissions to edit plugins for this site."
551
  msgstr ""
552
  "Vous n'avez pas assez de droits pour modifier l'extension pour ce site."
553
 
554
+ #: deprecated.php:548 deprecated.php:575
555
  #, php-format
556
  msgid "File %s edited successfully."
557
  msgstr "Le fichier %s a été modifié avec succès."
558
 
559
+ #: deprecated.php:550 deprecated.php:577
560
  msgid "Not enough permissions to create or update the file"
561
  msgstr "Pas assez de droits pour créer ou modifier le fichier"
562
 
563
+ #: deprecated.php:580
564
  msgid "Not enough permissions to create the file"
565
  msgstr "Pas assez de droits pour créer le fichier"
566
 
567
+ #: deprecated.php:618 class-bws-settings.php:426
568
  msgid "These styles will be added to the header on all pages of your site."
569
  msgstr ""
570
  "Ces styles seront ajoutés aux entêtes sur tous les pages de votre site."
571
 
572
+ #: deprecated.php:620 class-bws-settings.php:429
573
  #, fuzzy, php-format
574
  msgid ""
575
  "This PHP code will be hooked to the %s action and will be printed on front "
578
  "Ce code PHP sera rattaché à l'action %s et sera affiché uniquement sur la "
579
  "partie publique."
580
 
581
+ #: deprecated.php:624
582
  msgid "Editing"
583
  msgstr "Modifier"
584
 
585
+ #: deprecated.php:626 class-bws-settings.php:450
586
  msgid "Browsing"
587
  msgstr "Parcourir"
588
 
589
+ #: deprecated.php:633 class-bws-settings.php:461
590
  #, php-format
591
  msgid "Learn more about %s"
592
  msgstr "En savoir plus sur %s"
593
 
594
+ #: deprecated.php:644 class-bws-settings.php:440
595
  #, php-format
596
  msgid ""
597
  "You need to make this files writable before you can save your changes. See "
600
  "Vous devez rendre ce fichier modifiable avant de pouvoir enregistrer vos "
601
  "modifications. Regarder %s du Codex %s pour plus d'informations."
602
 
603
+ #: deprecated.php:667
604
+ #, fuzzy
605
+ msgid ""
606
+ "Congratulations! Pro version of the plugin is installed and activated "
607
+ "successfully."
608
+ msgstr ""
609
+ "Félicitations! La version PRO de cette extension a été téléchargée et "
610
+ "activée avec succès."
611
+
612
+ #: deprecated.php:677
613
+ msgid "Show Pro features"
614
+ msgstr "Voir les fonctionnalités de la version PRO"
615
+
616
+ #: deprecated.php:684
617
+ msgid "Enter your license key to install and activate"
618
+ msgstr "Saisir votre clé de licence pour installer et activer"
619
+
620
+ #: deprecated.php:686
621
+ msgid "version of the plugin."
622
+ msgstr "version de l'extension."
623
+
624
+ #: deprecated.php:694 class-bws-settings.php:736
625
+ #, php-format
626
+ msgid "Start Your Free %s-Day Trial Now"
627
+ msgstr "Débuter votre licence d'évaluation gratuite de %s jours"
628
+
629
+ #: bws_menu.php:128
630
+ #, fuzzy
631
  msgid ""
632
+ "This license key is bound to another site. Change it via personal Client "
633
  "Area."
634
  msgstr ""
635
  "La clé de licence correspond à un autre site. Modifier là au travers de "
636
  "votre espace client."
637
 
638
+ #: bws_menu.php:128
639
  msgid "Log in"
640
  msgstr "Connexion"
641
 
642
+ #: bws_menu.php:144
643
+ #, fuzzy
644
+ msgid "Congratulations! Pro Membership license is activated successfully."
645
  msgstr ""
646
  "Félicitations! La version PRO de cette extension a été téléchargée et "
647
  "activée avec succès."
648
 
649
+ #: bws_menu.php:161
650
  msgid "Please enter your license key."
651
  msgstr "Merci de saisir votre clé de licence."
652
 
653
+ #: bws_menu.php:172
654
  msgid "Not set"
655
  msgstr "Not set"
656
 
657
+ #: bws_menu.php:174 bws_menu.php:175
658
  msgid "On"
659
  msgstr "On"
660
 
661
+ #: bws_menu.php:174 bws_menu.php:175
662
  msgid "Off"
663
  msgstr "Off"
664
 
665
+ #: bws_menu.php:176 bws_menu.php:177 bws_menu.php:178 bws_menu.php:179
666
+ #: bws_menu.php:180 bws_menu.php:181 bws_menu.php:190
667
  msgid "N/A"
668
  msgstr "N/A"
669
 
670
+ #: bws_menu.php:181
671
  msgid " Mb"
672
  msgstr " Mb"
673
 
674
+ #: bws_menu.php:182 bws_menu.php:183 bws_menu.php:184 bws_menu.php:188
675
  msgid "Yes"
676
  msgstr "Yes"
677
 
678
+ #: bws_menu.php:182 bws_menu.php:183 bws_menu.php:184 bws_menu.php:188
679
  msgid "No"
680
  msgstr "No"
681
 
682
+ #: bws_menu.php:195
683
+ #, fuzzy
684
+ msgid "WordPress Environment"
685
+ msgstr "Environnent"
686
+
687
+ #: bws_menu.php:197
688
+ msgid "Home URL"
689
+ msgstr "Home URL"
690
+
691
+ #: bws_menu.php:198
692
+ #, fuzzy
693
+ msgid "Website URL"
694
+ msgstr "Site URL"
695
+
696
+ #: bws_menu.php:199
697
+ #, fuzzy
698
+ msgid "WP Version"
699
+ msgstr "PHP Version"
700
+
701
+ #: bws_menu.php:200
702
+ #, fuzzy
703
+ msgid "WP Multisite"
704
+ msgstr "Multisite"
705
+
706
+ #: bws_menu.php:201
707
+ #, fuzzy
708
+ msgid "WP Memory Limit"
709
+ msgstr "PHP Memory Limit"
710
+
711
+ #: bws_menu.php:202
712
+ msgid "Active Theme"
713
+ msgstr "Active Theme"
714
+
715
+ #: bws_menu.php:202 bws_menu.php:248 bws_menu.php:251
716
+ #, fuzzy, php-format
717
+ msgid "by %s"
718
+ msgstr "Par %s"
719
+
720
+ #: bws_menu.php:206
721
+ #, fuzzy
722
+ msgid "Server Environment"
723
+ msgstr "Environnent"
724
+
725
+ #: bws_menu.php:208
726
  msgid "Operating System"
727
  msgstr "Operating System"
728
 
729
+ #: bws_menu.php:209
730
  msgid "Server"
731
  msgstr "Server"
732
 
733
+ #: bws_menu.php:210
 
 
 
 
 
 
 
 
 
 
 
 
734
  msgid "PHP Version"
735
  msgstr "PHP Version"
736
 
737
+ #: bws_menu.php:211
738
  msgid "PHP Safe Mode"
739
  msgstr "PHP Safe Mode"
740
 
741
+ #: bws_menu.php:212
742
  msgid "PHP Allow URL fopen"
743
  msgstr "PHP Allow URL fopen"
744
 
745
+ #: bws_menu.php:213
746
  msgid "PHP Memory Limit"
747
  msgstr "PHP Memory Limit"
748
 
749
+ #: bws_menu.php:214
750
+ #, fuzzy
751
+ msgid "Memory Usage"
752
+ msgstr "Memory usage"
753
+
754
+ #: bws_menu.php:215
755
  msgid "PHP Max Upload Size"
756
  msgstr "PHP Max Upload Size"
757
 
758
+ #: bws_menu.php:216
759
  msgid "PHP Max Post Size"
760
  msgstr "PHP Max Post Size"
761
 
762
+ #: bws_menu.php:217
763
  msgid "PHP Max Script Execute Time"
764
  msgstr "PHP Max Script Execute Time"
765
 
766
+ #: bws_menu.php:218
767
  msgid "PHP Exif support"
768
  msgstr "PHP Exif support"
769
 
770
+ #: bws_menu.php:219
771
  msgid "PHP IPTC support"
772
  msgstr "PHP IPTC support"
773
 
774
+ #: bws_menu.php:220
775
  msgid "PHP XML support"
776
  msgstr "PHP XML support"
777
 
778
+ #: bws_menu.php:226
779
+ msgid "Database"
780
+ msgstr ""
781
 
782
+ #: bws_menu.php:228
783
+ #, fuzzy
784
+ msgid "WP DB version"
785
+ msgstr "WordPress DB Version"
786
 
787
+ #: bws_menu.php:229
788
+ #, fuzzy
789
+ msgid "MySQL version"
790
+ msgstr "MYSQL Version"
791
 
792
+ #: bws_menu.php:230
793
+ msgid "SQL Mode"
794
+ msgstr "SQL Mode"
795
 
796
+ #: bws_menu.php:234
797
+ msgid "Active Plugins"
798
+ msgstr "Extensions actives"
799
 
800
+ #: bws_menu.php:239
801
+ msgid "Inactive Plugins"
802
+ msgstr "Extensions inactives"
803
 
804
+ #: bws_menu.php:260
805
  msgid "Please enter a valid email address."
806
  msgstr "Merci de saisir une adresse e-mail valide."
807
 
808
+ #: bws_menu.php:264
809
+ #, fuzzy
810
+ msgid "Email with system info is sent to"
811
  msgstr "Le courriel avec les informations système est envoyé à"
812
 
813
+ #: bws_menu.php:268
814
  msgid "Thank you for contacting us."
815
  msgstr "Merci de nous avoir contacté."
816
 
817
+ #: bws_menu.php:291
818
  msgid "Sorry, email message could not be delivered."
819
  msgstr "Désolé, votre e-mail n'a pas pu être envoyé."
820
 
821
+ #: bws_menu.php:309 bws_menu.php:313 bws_menu.php:662
822
  msgid "System status"
823
  msgstr "Etat du système"
824
 
825
+ #: bws_menu.php:317
826
  msgid "Support"
827
  msgstr "Support"
828
 
829
+ #: bws_menu.php:318
830
  msgid "Manage purchased licenses & subscriptions"
831
  msgstr "Gérer les licences et les adhésions"
832
 
833
+ #: bws_menu.php:326
 
 
 
 
834
  #, php-format
835
  msgid "Get Access to %s+ Premium Plugins"
836
  msgstr "Accéder à plus de %s extension premiums"
837
 
838
+ #: bws_menu.php:328
839
  #, fuzzy
840
  msgid "Subscribe to Pro Membership"
841
  msgstr "Souscrire une adhésion PRO"
842
 
843
+ #: bws_menu.php:339
844
  msgid "Enter your license key"
845
  msgstr "Merci de saisir votre clé de licence"
846
 
847
+ #: bws_menu.php:361
848
  msgid "Upload Plugin"
849
  msgstr "Charger l'extension"
850
 
851
+ #: bws_menu.php:365
852
  #, php-format
853
  msgid ""
854
  "The plugin generated %d characters of <strong>unexpected output</strong> "
861
  "sent&#8221;, des problèmes avec les flux de syndication ou autres, essayez "
862
  "de désactiver l'extension ou supprimer l'extension."
863
 
864
+ #: bws_menu.php:367
865
  msgid ""
866
  "Plugin could not be activated because it triggered a <strong>fatal error</"
867
  "strong>."
869
  "L'extension ne peut pas être activée car une <strong>erreur fatale</strong> "
870
  "a été détectée."
871
 
872
+ #: bws_menu.php:370
873
  msgid "Plugin <strong>activated</strong>."
874
  msgstr "Extension <strong>activée</strong>."
875
 
876
+ #: bws_menu.php:377
877
  msgid "Installing Plugin"
878
  msgstr "Extensions installées"
879
 
880
+ #: bws_menu.php:383
881
  msgid "Downloading install package from"
882
  msgstr "Télécharger le paquet d'installation depuis"
883
 
884
+ #: bws_menu.php:408
885
  msgid "Unpacking the package"
886
  msgstr "Décompresser le paquet"
887
 
888
+ #: bws_menu.php:413 bws_menu.php:421
889
  msgid "Installing the plugin"
890
  msgstr "Installer l'extension"
891
 
892
+ #: bws_menu.php:427
893
+ #, php-format
894
+ msgid "The plugin %s is successfully installed."
895
+ msgstr ""
896
 
897
+ #: bws_menu.php:439
898
  msgid "Activate Plugin"
899
  msgstr "Activer l'extension"
900
 
901
+ #: bws_menu.php:439 bws_menu.php:445
902
  msgid "Return to BestWebSoft Panel"
903
  msgstr "Retourner à l'administration BestWebSoft"
904
 
905
+ #: bws_menu.php:449 bws_menu.php:464 bws_menu.php:593
906
  msgid "All"
907
  msgstr "Tous"
908
 
909
+ #: bws_menu.php:450 bws_menu.php:650
910
  msgid "Installed"
911
  msgstr "Installé"
912
 
913
+ #: bws_menu.php:451
914
  msgid "Not Installed"
915
  msgstr "Non installé"
916
 
917
+ #: bws_menu.php:457
918
  msgid "Filter results"
919
  msgstr "Filtrer les résultats"
920
 
921
+ #: bws_menu.php:460 bws_menu.php:589
922
  msgid "Category"
923
  msgstr "Catégorie"
924
 
925
+ #: bws_menu.php:524
926
  #, fuzzy
927
  msgid "Not installed"
928
  msgstr "Non installé"
929
 
930
+ #: bws_menu.php:528
931
  msgid "Renew to get updates"
932
  msgstr "Se réabonner pour avoir les mises à jour"
933
 
934
+ #: bws_menu.php:531
935
  #, php-format
936
  msgid "Update to v %s"
937
  msgstr "Mettre à jour avec la version %s"
938
 
939
+ #: bws_menu.php:543 bws_menu.php:566 bws_menu.php:575
940
  msgid "Install Now"
941
  msgstr "Installer maintenant"
942
 
943
+ #: bws_menu.php:549 class-bws-settings.php:149 class-bws-settings.php:1073
944
  msgid "Upgrade to Pro"
945
  msgstr "Passer à la version PRO"
946
 
947
+ #: bws_menu.php:563 bws_menu.php:572
 
 
 
 
948
  msgid "Activate this plugin"
949
  msgstr "Activer cette extension"
950
 
951
+ #: bws_menu.php:575
952
  msgid "Install this plugin"
953
  msgstr "Installer cette extension"
954
 
955
+ #: bws_menu.php:584
956
  msgid "Nothing found. Try another criteria."
957
  msgstr "Pas de réponse. essayer d'autres critères."
958
 
959
+ #: bws_menu.php:621 bws_menu.php:641
960
  #, php-format
961
  msgid "By %s"
962
  msgstr "Par %s"
963
 
964
+ #: bws_menu.php:648
965
  msgid "Already Installed"
966
  msgstr "Déjà installé"
967
 
968
+ #: bws_menu.php:659
969
  msgid "Browse Free WordPress Themes"
970
  msgstr "Parcourir les thèmes gratuits pour WordPress"
971
 
972
+ #: bws_menu.php:668
973
  msgid "Send to support"
974
  msgstr "Envoyé au support"
975
 
976
+ #: bws_menu.php:675
977
  msgid "Send to custom email &#187;"
978
  msgstr "Envoyer un e-mail spécifique &#187;"
979
 
 
 
 
 
 
 
 
 
 
 
 
 
980
  #: product_list.php:7
981
  msgid "Advertisement"
982
  msgstr "Publicité"
1013
  msgid "Other"
1014
  msgstr "Autre"
1015
 
1016
+ #: class-bws-settings.php:129
1017
+ #, fuzzy
1018
+ msgid "Information"
1019
+ msgstr "Pour plus d'informations&nbsp;:"
1020
+
1021
+ #: class-bws-settings.php:136
1022
+ #, fuzzy
1023
+ msgid "Inactive"
1024
+ msgstr "Extensions inactives"
1025
+
1026
+ #: class-bws-settings.php:144
1027
+ msgid "Expired"
1028
+ msgstr ""
1029
+
1030
+ #: class-bws-settings.php:147
1031
+ #, php-format
1032
+ msgid "%s day(-s) left"
1033
+ msgstr ""
1034
+
1035
+ #: class-bws-settings.php:153
1036
+ #, fuzzy, php-format
1037
+ msgid "Expired on %s"
1038
+ msgstr "se termine le"
1039
+
1040
+ #: class-bws-settings.php:153
1041
+ msgid "Renew Now"
1042
+ msgstr ""
1043
+
1044
+ #: class-bws-settings.php:155
1045
+ #, fuzzy
1046
+ msgid "Active"
1047
+ msgstr "Activé"
1048
+
1049
+ #: class-bws-settings.php:160
1050
+ #, fuzzy
1051
+ msgid "License"
1052
+ msgstr "Clé de licence incorrecte"
1053
+
1054
+ #: class-bws-settings.php:163
1055
+ #, fuzzy
1056
+ msgid "Status"
1057
+ msgstr "Etat du système"
1058
+
1059
+ #: class-bws-settings.php:167
1060
+ #, fuzzy
1061
+ msgid "Version"
1062
+ msgstr "version"
1063
+
1064
+ #: class-bws-settings.php:276
1065
+ #, fuzzy
1066
+ msgid "All plugin settings were restored."
1067
+ msgstr "Les paramètres de l'extension ont été modifiés."
1068
+
1069
+ #: class-bws-settings.php:417
1070
+ #, fuzzy
1071
+ msgid "Custom Code"
1072
+ msgstr "Personnaliser"
1073
+
1074
+ #: class-bws-settings.php:432
1075
+ #, fuzzy
1076
+ msgid "These code will be added to the header on all pages of your site."
1077
+ msgstr ""
1078
+ "Ces styles seront ajoutés aux entêtes sur tous les pages de votre site."
1079
+
1080
+ #: class-bws-settings.php:454
1081
+ #, php-format
1082
+ msgid "Activate custom %s code."
1083
+ msgstr ""
1084
+
1085
+ #: class-bws-settings.php:520
1086
+ msgid "Miscellaneous Settings"
1087
+ msgstr ""
1088
+
1089
+ #: class-bws-settings.php:527 class-bws-settings.php:585
1090
+ #, php-format
1091
+ msgid ""
1092
+ "It is prohibited to change %s settings on this site in the %s network "
1093
+ "settings."
1094
+ msgstr ""
1095
+
1096
+ #: class-bws-settings.php:530 class-bws-settings.php:588
1097
+ #, php-format
1098
+ msgid ""
1099
+ "It is prohibited to view %s settings on this site in the %s network settings."
1100
+ msgstr ""
1101
+
1102
+ #: class-bws-settings.php:536
1103
+ #, fuzzy
1104
+ msgid "Pro Options"
1105
+ msgstr "Plugins Pro"
1106
+
1107
+ #: class-bws-settings.php:539
1108
+ msgid "Enable to display plugin Pro options."
1109
+ msgstr ""
1110
+
1111
+ #: class-bws-settings.php:544
1112
+ msgid "Track Usage"
1113
+ msgstr ""
1114
+
1115
+ #: class-bws-settings.php:547
1116
+ msgid ""
1117
+ "Enable to allow tracking plugin usage anonymously in order to make it better."
1118
+ msgstr ""
1119
+
1120
+ #: class-bws-settings.php:551
1121
+ #, fuzzy
1122
+ msgid "Default Settings"
1123
+ msgstr "Réglages"
1124
+
1125
+ #: class-bws-settings.php:553
1126
+ #, fuzzy
1127
+ msgid "Restore Settings"
1128
+ msgstr "Remettre les paramètres"
1129
+
1130
+ #: class-bws-settings.php:554
1131
+ #, fuzzy
1132
+ msgid "This will restore plugin settings to defaults."
1133
+ msgstr "Remettre les valeurs par défaut des paramètres de l'extension"
1134
+
1135
+ #: class-bws-settings.php:578
1136
+ msgid "Import / Export"
1137
+ msgstr ""
1138
+
1139
+ #: class-bws-settings.php:701 class-bws-settings.php:724
1140
+ #: class-bws-settings.php:746
1141
+ #, fuzzy
1142
+ msgid "License Key"
1143
+ msgstr "Clé de licence incorrecte"
1144
+
1145
+ #: class-bws-settings.php:714
1146
+ #, fuzzy
1147
+ msgid "Congratulations! Pro license is activated successfully."
1148
+ msgstr ""
1149
+ "Félicitations! La version PRO de cette extension a été téléchargée et "
1150
+ "activée avec succès."
1151
+
1152
+ #: class-bws-settings.php:715
1153
+ #, fuzzy, php-format
1154
+ msgid "You will be automatically redirected to the %s in 7 seconds."
1155
+ msgstr "Vous allez être redirigé automatiquement dans 5 secondes"
1156
+
1157
+ #: class-bws-settings.php:715
1158
+ #, fuzzy
1159
+ msgid "Settings page"
1160
+ msgstr "Options sauvegardées."
1161
+
1162
+ #: class-bws-settings.php:730
1163
+ #, fuzzy, php-format
1164
+ msgid "Enter your license key to activate %s and get premium plugin features."
1165
+ msgstr "Saisir votre clé de licence pour installer et activer"
1166
+
1167
+ #: class-bws-settings.php:751
1168
+ #, fuzzy
1169
+ msgid ""
1170
+ "If necessary, you can check if the license key is correct or reenter it in "
1171
+ "the field below."
1172
+ msgstr ""
1173
+ "Si nécessaire vous pouvez vérifier que la clé de licence est correcte ou la "
1174
+ "saisir de nouveau dans le champ ci-dessous. Vous pouvez trouver votre clé de "
1175
+ "licence sur votre page personnelle (zone client) sur notre site web."
1176
+
1177
+ #: class-bws-settings.php:756
1178
+ msgid "Manage License Settings"
1179
+ msgstr ""
1180
+
1181
+ #: class-bws-settings.php:758
1182
+ #, fuzzy
1183
+ msgid "Login to Client Area"
1184
+ msgstr "Espace client"
1185
+
1186
+ #: class-bws-settings.php:760
1187
+ msgid ""
1188
+ "Manage active licenses, download BWS products, and view your payment history "
1189
+ "using BestWebSoft Client Area."
1190
+ msgstr ""
1191
+
1192
+ #: class-bws-settings.php:1044
1193
+ #, fuzzy
1194
+ msgid "Need Help?"
1195
+ msgstr "Besoin d'aide ?"
1196
+
1197
+ #: class-bws-settings.php:1044
1198
+ #, fuzzy
1199
+ msgid "Read the Instruction"
1200
+ msgstr "Vidéo explicative"
1201
+
1202
+ #: class-bws-settings.php:1046
1203
+ msgid "Watch the Video"
1204
+ msgstr ""
1205
+
1206
+ #: class-bws-settings.php:1077
1207
+ #, fuzzy
1208
+ msgid "Start Your Free Trial"
1209
+ msgstr "Débuter votre licence d'évaluation gratuite de %s jours"
1210
+
1211
+ #~ msgid "You license for"
1212
+ #~ msgstr "Votre licence pour"
1213
+
1214
+ #~ msgid "expires on"
1215
+ #~ msgstr "se termine le"
1216
+
1217
+ #~ msgid "This license key is bind to another site"
1218
+ #~ msgstr "La clé de licence correspond à un autre site."
1219
+
1220
+ #~ msgid "Successfully installed the plugin"
1221
+ #~ msgstr "Extension installée avec succès"
1222
+
1223
+ #, fuzzy
1224
+ #~ msgid "Please, go to %s"
1225
+ #~ msgstr "Merci d’aller à"
1226
+
1227
+ #~ msgid "Client Area"
1228
+ #~ msgstr "Espace client"
1229
+
1230
+ #~ msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
1231
+ #~ msgstr ""
1232
+ #~ "Si notre extension vous satisfait, merci de la notée avec 5 étoiles dans "
1233
+ #~ "Wordpress"
1234
+
1235
+ #~ msgid "If there is something wrong about it, please contact us"
1236
+ #~ msgstr "Si vous avez une question, n'hésitez pas à nous contacter"
1237
+
1238
+ #~ msgid "Donations play an important role in supporting great projects"
1239
+ #~ msgstr "Les dons jouent un rôle important dans l'aide aux projets"
1240
+
1241
+ #~ msgid "WordPress Version"
1242
+ #~ msgstr "WordPress Version"
1243
+
1244
  #~ msgid "Activate Membership"
1245
  #~ msgstr "Activer l'adhésion"
1246
 
1258
  #~ msgid "My Account"
1259
  #~ msgstr "Mon compte"
1260
 
 
 
 
1261
  #~ msgid "Go"
1262
  #~ msgstr "Passez"
1263
 
1318
  #~ msgid "Switch to new interface"
1319
  #~ msgstr "Basculer vers la nouvelle interface"
1320
 
 
 
 
1321
  #~ msgid "Activated plugins"
1322
  #~ msgstr "Plugin activé"
1323
 
1342
  #~ msgid "Customize &#8220;%s&#8221;"
1343
  #~ msgstr "Personnaliser &#8220;%s&#8221;"
1344
 
 
 
 
1345
  #~ msgid "Installed themes"
1346
  #~ msgstr "Thèmes installés"
1347
 
1446
  #~ "Merci de saisir une adresse e-mail valide pour le 'FROM'. Les "
1447
  #~ "modifications ne sont pas sauvegardées."
1448
 
 
 
 
1449
  #~ msgid ""
1450
  #~ "If you would like to add the Contact Form to your website, just copy and "
1451
  #~ "paste this shortcode to your post or page or widget:"
bws_menu/languages/bestwebsoft-pl_PL.mo CHANGED
Binary file
bws_menu/languages/bestwebsoft-pl_PL.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2016-08-04 15:44+0300\n"
6
- "PO-Revision-Date: 2016-08-04 15:44+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Damian Dąbrowski <contact@codester.pl>\n"
9
  "Language: pl_PL\n"
@@ -18,24 +18,11 @@ msgstr ""
18
  "|| n%100>=20) ? 1 : 2);\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
- #: bws_functions.php:38 bws_menu.php:282 bws_menu.php:330
22
- msgid "Plugins"
23
- msgstr "Wtyczki"
24
-
25
- #: bws_functions.php:39 bws_menu.php:283 bws_menu.php:581
26
- msgid "Themes"
27
- msgstr "Motywy"
28
-
29
- #: bws_functions.php:40
30
- #, fuzzy
31
- msgid "System Status"
32
- msgstr "Status systemu"
33
-
34
- #: bws_functions.php:75 bws_functions.php:101
35
  msgid "requires"
36
  msgstr "wymaga wersja"
37
 
38
- #: bws_functions.php:77
39
  msgid ""
40
  "or higher, that is why it has been deactivated! Please upgrade WordPress and "
41
  "try again."
@@ -43,15 +30,97 @@ msgstr ""
43
  "lub nowsza, dlatego wtyczka została wyłączona. Zaktualizuj WordPress i "
44
  "spróbuj ponownie."
45
 
46
- #: bws_functions.php:78
47
  msgid "Back to the WordPress"
48
  msgstr "Wróć do WordPress"
49
 
50
- #: bws_functions.php:80
51
  msgid "Plugins page"
52
  msgstr "Wtyczki"
53
 
54
- #: bws_functions.php:103
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
55
  msgid ""
56
  "or higher! We do not guarantee that our plugin will work correctly. Please "
57
  "upgrade to WordPress latest version."
@@ -59,253 +128,227 @@ msgstr ""
59
  "lub nowsza! Nie gwarantujemy, że nasza wtyczka będzie działała poprawnie. "
60
  "Proszę zaktualizować WordPress do najnowszej wersji."
61
 
62
- #: bws_functions.php:118
63
  msgid "Thank you for installing"
64
  msgstr "Dziękujemy za instalację"
65
 
66
- #: bws_functions.php:119
67
  msgid "Let's get started"
68
  msgstr "Zaczynajmny"
69
 
70
- #: bws_functions.php:120 bws_functions.php:153 bws_menu.php:527
71
- #: bws_menu.php:529
72
  msgid "Settings"
73
  msgstr "Ustawienia"
74
 
75
- #: bws_functions.php:122 bws_functions.php:479 bws_menu.php:298
 
 
76
  msgid "or"
77
  msgstr "lub"
78
 
79
- #: bws_functions.php:123 bws_functions.php:155
80
  msgid "Add New"
81
  msgstr "Dodaj nowy"
82
 
83
- #: bws_functions.php:127 bws_functions.php:137 bws_functions.php:213
84
- #: bws_functions.php:727 bws_functions.php:831
85
  msgid "Close notice"
86
  msgstr "Zamknij powiadomienie"
87
 
88
- #: bws_functions.php:142
89
  #, fuzzy
90
  msgid "Thank you for installing plugins by BestWebSoft!"
91
  msgstr "Dziękujemy za instalację"
92
 
93
- #: bws_functions.php:144
94
  #, fuzzy
95
  msgid "More Details"
96
  msgstr "Szczegóły"
97
 
98
- #: bws_functions.php:145
99
  #, fuzzy
100
  msgid "Less Details"
101
  msgstr "Szczegóły"
102
 
103
- #: bws_functions.php:218
 
 
 
 
 
 
 
 
 
104
  msgid "It’s time to upgrade your"
105
  msgstr "Czas by zaktualizować"
106
 
107
- #: bws_functions.php:218
108
  msgid "to"
109
  msgstr "do"
110
 
111
- #: bws_functions.php:218
112
  msgid "version!"
113
  msgstr "wersji!"
114
 
115
- #: bws_functions.php:219
116
  msgid "Extend standard plugin functionality with new great options."
117
  msgstr "Rozszerz podstawowe funkcje wtyczki o nowe wspaniałe opcje."
118
 
119
- #: bws_functions.php:222 bws_functions.php:666 bws_menu.php:597
120
- msgid "Learn More"
121
- msgstr "Dowiedz się więcej"
122
-
123
- #: bws_functions.php:239
124
- msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
125
- msgstr "Jeśli polubiłeś naszą wtyczkę daj nam 5 gwiazdek"
126
-
127
- #: bws_functions.php:240
128
- msgid "Rate the plugin"
129
- msgstr "Oceń wtyczkę"
130
-
131
- #: bws_functions.php:243
132
- msgid "If there is something wrong about it, please contact us"
133
- msgstr "Jeśli wystąpią problemy proszę, skontaktuj się z nami"
134
-
135
- #: bws_functions.php:247
136
- msgid "Donations play an important role in supporting great projects"
137
  msgstr ""
 
 
138
 
139
- #: bws_functions.php:277
140
- msgid "Check premium options on the plugin settings page!"
141
- msgstr "Sprawdź dodatkowe opcje premium w ustawieniach wtyczki."
142
-
143
- #: bws_functions.php:284 bws_functions.php:320 bws_menu.php:87
144
- #: bws_menu.php:114
145
- msgid "Wrong license key"
146
- msgstr "Niepoprawny klucz licencji"
147
 
148
- #: bws_functions.php:314 bws_functions.php:578 bws_functions.php:629
149
- #: bws_menu.php:108
150
  msgid ""
151
- "Something went wrong. Please try again later. If the error appears again, "
152
- "please contact us"
153
  msgstr ""
154
- "Coś poszło nie tak. Spróbuj ponownie później. Jeśli błąd pojawi się ponownie "
155
- "proszę skontaktować się z nami"
156
 
157
- #: bws_functions.php:314 bws_functions.php:578 bws_functions.php:629
158
- #: bws_menu.php:108
159
- msgid "We are sorry for inconvenience."
160
- msgstr "Przepraszamy za niedogodności."
161
 
162
- #: bws_functions.php:322
163
- msgid "This license key is bind to another site"
164
- msgstr "Ta licencja została przypisana do innej strony."
 
165
 
166
- #: bws_functions.php:324 bws_functions.php:488
167
- msgid ""
168
- "Unfortunately, you have exceeded the number of available tries per day. "
169
- "Please, upload the plugin manually."
170
- msgstr ""
171
- "Niestety, przekroczono liczb dostępnych prób na dziś. Proszę dodać wtyczkę "
172
- "manualnie."
173
 
174
- #: bws_functions.php:326 bws_menu.php:120
175
- msgid ""
176
- "Unfortunately, Your license has expired. To continue getting top-priority "
177
- "support and plugin updates you should extend it in your"
178
- msgstr ""
179
- "Niestety, Twoja licencja wygasła. By nadal korzystać z szybkiego dostępu do "
180
- "wsparcia oraz aktualizacji powinieneś przedłużyć licencję."
181
 
182
- #: bws_functions.php:328 bws_menu.php:122
 
183
  msgid ""
184
- "Unfortunately, the Pro licence was already installed to this domain. The Pro "
185
- "Trial license can be installed only once."
186
  msgstr ""
187
- "Niestety, licencja PRO była już przypisana do tej domeny. Licencja testowa "
188
- "może być wykorzystana tylko raz."
189
 
190
- #: bws_functions.php:349 bws_functions.php:371 bws_functions.php:393
191
- #: bws_menu.php:370 bws_menu.php:401 bws_menu.php:412
192
- msgid "Failed to download the zip archive. Please, upload the plugin manually"
193
- msgstr ""
194
- "Pobieranie archiwum zip zakończyło się niepowodzeniem. Proszę dodać wtyczkę "
195
- "manualnie"
196
 
197
- #: bws_functions.php:361 bws_menu.php:387
198
- msgid "Failed to open the zip archive. Please, upload the plugin manually"
199
  msgstr ""
200
- "Otwieranie archiwum zip zakończyło się niepowodzeniem. Proszę dodać wtyczkę "
201
- "manualnie"
202
 
203
- #: bws_functions.php:367 bws_menu.php:394
204
- msgid ""
205
- "Your server does not support either ZipArchive or Phar. Please, upload the "
206
- "plugin manually"
207
- msgstr ""
208
- "Twój serwer nie wspiera ZipAcrchive lub Phar. Proszę dodać wtyczkę manualnie"
209
 
210
- #: bws_functions.php:374 bws_menu.php:404
211
- msgid "UploadDir is not writable. Please, upload the plugin manually"
 
212
  msgstr ""
213
- "Folder uploadu jest chroniony przez zapisem. Proszę dodać wtyczkę manualnie"
 
214
 
215
- #: bws_functions.php:397 bws_menu.php:139
216
- msgid ""
217
- "Something went wrong. Try again later or upload the plugin manually. We are "
218
- "sorry for inconvenience."
219
- msgstr ""
220
- "Coś poszło nie tak. Spróbuj ponowie później lub dodaj wtyczkę manualnie. "
221
- "Przepraszamy za niedogodności."
222
 
223
- #: bws_functions.php:422
224
- msgid "Please, enter Your license key"
225
- msgstr "Proszę podać klucz licencji."
226
 
227
- #: bws_functions.php:452
228
- #, fuzzy
229
- msgid ""
230
- "Congratulations! Pro version of the plugin is successfully installed and "
231
- "activated."
232
- msgstr "Gratulacje! Wersja PRO została pobrana i aktywowana pomyślnie."
233
 
234
- #: bws_functions.php:454 bws_functions.php:545
235
- msgid "Please, go to"
236
- msgstr "Proszę przejść do"
237
 
238
- #: bws_functions.php:454 bws_functions.php:545
239
- msgid "the setting page"
240
- msgstr "ustawień"
241
 
242
- #: bws_functions.php:455 bws_functions.php:546
243
- msgid "You will be redirected automatically in 5 seconds."
244
- msgstr "Zostaniesz automatycznie przekierowany w ciągu 5 sekund."
245
 
246
- #: bws_functions.php:462
247
- msgid "Show Pro features"
248
- msgstr "Pokaż funkcje PRO"
249
 
250
- #: bws_functions.php:469
251
- msgid "Enter your license key to install and activate"
252
  msgstr ""
253
 
254
- #: bws_functions.php:471
255
- #, fuzzy
256
- msgid "version of the plugin."
257
- msgstr "Oceń wtyczkę"
258
 
259
- #: bws_functions.php:473 bws_functions.php:514
260
- msgid "License key can be found in the"
261
  msgstr ""
262
 
263
- #: bws_functions.php:475 bws_functions.php:516
264
  #, fuzzy
265
- msgid "(your username is the email address specified during the purchase)."
266
- msgstr "(twoja nazwa użytkownika to email podany podczas zakupu)."
267
 
268
- #: bws_functions.php:479
269
- #, php-format
270
- msgid "Start Your Free %s-Day Trial Now"
271
- msgstr "Rozpocznij swój darmowy %s-dniowy okres testowy"
272
 
273
- #: bws_functions.php:485 bws_functions.php:494 bws_functions.php:524
274
- #: bws_functions.php:532 bws_functions.php:1401 bws_menu.php:315
275
- #: bws_menu.php:533 bws_menu.php:542
276
- msgid "Activate"
277
- msgstr "Aktywuj"
278
 
279
- #: bws_functions.php:511 bws_functions.php:604
280
- #, php-format
 
 
 
 
 
 
281
  msgid ""
282
- "In order to continue using the plugin it is necessary to buy a %s license."
 
283
  msgstr ""
284
- "W celu dalszego wykorzystywania wtyczki niezbędne jest wykupienie licencji "
285
- "%s."
286
-
287
- #: bws_functions.php:512
288
- msgid "After that you can activate it by entering your license key."
289
- msgstr "Po wszystkim możesz aktywować wtyczkę poprzez podanie klucza licencji."
290
-
291
- #: bws_functions.php:526 bws_menu.php:118 bws_menu.php:304
292
- msgid "Unfortunately, you have exceeded the number of available tries per day."
293
- msgstr "Niestety, przekroczono dzienną liczbę dostępnych prób."
294
 
295
- #: bws_functions.php:543
296
- msgid ""
297
- "Congratulations! The Pro license of the plugin is successfully activated."
298
- msgstr "Gratulacje! Licencja do wersji PRO została aktywowana pomyślnie."
 
299
 
300
- #: bws_functions.php:584
 
301
  msgid "Wrong license key."
302
  msgstr "Niepoprawny klucz licencji"
303
 
304
- #: bws_functions.php:586
305
- msgid "This license key is bind to another site."
 
 
306
  msgstr "Klucz licencji został przypisany do innej strony."
307
 
308
- #: bws_functions.php:588
309
  msgid ""
310
  "This license key is valid, but Your license has expired. If you want to "
311
  "update our plugin in future, you should extend the license."
@@ -313,11 +356,11 @@ msgstr ""
313
  "Klucz jest poprawny, jednak Twoja licencja wygasła. Jeśli chcesz "
314
  "aktualizować naszą wtyczkę w przyszłości powinieneś przedłużyć licencję."
315
 
316
- #: bws_functions.php:590
317
  msgid "Unfortunately, you have exceeded the number of available tries."
318
  msgstr "Niestety, przekroczono liczbę dostępnych prób."
319
 
320
- #: bws_functions.php:592
321
  msgid ""
322
  "Unfortunately, the Pro Trial licence was already installed to this domain. "
323
  "The Pro Trial license can be installed only once."
@@ -325,33 +368,42 @@ msgstr ""
325
  "Niestety, licencja PRO była już przypisana do tej domeny. Licencja testowa "
326
  "może być wykorzystana tylko raz."
327
 
328
- #: bws_functions.php:596
329
  msgid "The Pro Trial license key is valid."
330
  msgstr "Klucz licencji do testowej wersji PRO jest poprawny."
331
 
332
- #: bws_functions.php:598 bws_menu.php:128
333
  msgid "The license key is valid."
334
  msgstr "Klucz licencji jest poprawny"
335
 
336
- #: bws_functions.php:601 bws_menu.php:130
337
  msgid "Your license will expire on"
338
  msgstr "Twoja licencja wygaśnie"
339
 
340
- #: bws_functions.php:634
 
 
 
 
 
 
 
 
341
  msgid "Please, enter your license key"
342
  msgstr "Podaj klucz licencji"
343
 
344
- #: bws_functions.php:647
 
345
  msgid ""
346
- "If needed you can check if the license key is correct or reenter it in the "
347
- "field below. You can find your license key on your personal page - Client "
348
- "area - on our website"
349
  msgstr ""
350
  "Jeśli to konieczne możesz sprawdzić czy klucz jest poprawny lub umieścić go "
351
  "w polu poniżej. Możesz znaleźć swój klucz na naszej stronie w strefie - "
352
  "Panel Klienta"
353
 
354
- #: bws_functions.php:647
355
  #, fuzzy
356
  msgid ""
357
  "(your username is the email address specified during the purchase). If "
@@ -360,420 +412,428 @@ msgstr ""
360
  "(login to adres email podany przy zakupie). Jeśli to koniczne użyj opcji "
361
  "\"Zgubiłeś swoje hasło?\"."
362
 
363
- #: bws_functions.php:651 bws_menu.php:306 bws_menu.php:317
 
364
  msgid "Check license key"
365
  msgstr "Sprawdź klucz licencji"
366
 
367
- #: bws_functions.php:666
368
- msgid "WARNING: Illegal use notification"
369
- msgstr "UWAGA: Odnotowano nielegalne użycie"
370
-
371
- #: bws_functions.php:666
372
- msgid ""
373
- "You can use one license of the Pro plugin for one domain only. Please check "
374
- "and edit your license or domain if necessary using you personal Client Area. "
375
- "We strongly recommend you to solve the problem within 24 hours, otherwise "
376
- "the Pro plugin will be deactivated."
377
- msgstr ""
378
- "Licencja wersji PRO może być wykorzystywana tylko na jednej domenie. Proszę "
379
- "sprawdź i edytuj klucz licencji lub domenę, jeśli to konieczne wykorzystaj "
380
- "Panel Klienta. Zalecamy rozwiązanie tego problemu w przeciągu 24 godzin, w "
381
- "przeciwnym wypadku wersja PRO zostanie zablokowana."
382
 
383
- #: bws_functions.php:675
384
- msgid ""
385
- "Notice: Your Pro Trial license has expired. To continue using the plugin you "
386
- "should buy a Pro license"
387
  msgstr ""
388
- "Uwaga: Testowa wersja PRO niestety wygasła. Aby kontynuować korzystanie z "
389
- "naszej wtyczki powinieneś zakupić klucz licencji."
390
 
391
- #: bws_functions.php:677
392
- msgid ""
393
- "Your license has expired. To continue getting top-priority support and "
394
- "plugin updates you should extend it."
395
- msgstr ""
396
- "Twoja licencja wygasła. Aby podtrzymać szybki dostęp do pomocy i "
397
- "aktualizacji powinieneś przedłużyć licencję."
398
 
399
- #: bws_functions.php:677 bws_functions.php:731 bws_functions.php:1356
400
- msgid "Learn more"
401
- msgstr "Dowiedz się więcej"
 
 
402
 
403
- #: bws_functions.php:688
404
- #, php-format
405
- msgid "Notice: You are using the Pro Trial license of %s plugin."
406
- msgstr "Uwaga: Wykorzystujesz próbną licencję wersji PRO dla %s."
407
 
408
- #: bws_functions.php:690
409
- msgid "Notice: You are using the Pro Trial license of plugin."
410
- msgstr "Uwaga: Wykorzystywana jest próbna licencja wtyczki."
 
 
411
 
412
- #: bws_functions.php:693
413
- msgid "The Pro Trial license will expire on"
414
- msgstr "Licencja próbna wygaśnie"
415
 
416
- #: bws_functions.php:731
417
- msgid "You license for"
418
- msgstr "Twoja licencja na"
419
 
420
- #: bws_functions.php:731
421
- msgid "expires on"
422
- msgstr "wygasa"
423
 
424
- #: bws_functions.php:731
425
- msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
426
- msgstr ""
427
- "zostaniesz wówczas pozbawiony SZYBKIEGO DOSTĘDO DO SUPPORTU oraz "
428
- "AKTUALIZACJI."
429
 
430
- #: bws_functions.php:826
431
- #, fuzzy
432
- msgid "Thank you for choosing"
433
- msgstr "Dziękujemy za instalację"
434
 
435
- #: bws_functions.php:827
 
436
  msgid ""
437
- "If you have a feature, suggestion or idea you'd like to see in the plugin, "
438
- "we'd love to hear about it!"
439
  msgstr ""
 
 
440
 
441
- #: bws_functions.php:828
442
- msgid "Suggest a Feature"
 
 
 
443
  msgstr ""
 
 
444
 
445
- #: bws_functions.php:844
446
- msgid "Notice"
447
- msgstr "Uwaga"
448
-
449
- #: bws_functions.php:844
450
- msgid "The plugin's settings have been changed."
451
- msgstr "Ustawienia wtyczki zostały zmienione."
452
-
453
- #: bws_functions.php:845 bws_functions.php:1412
454
- msgid "Save Changes"
455
- msgstr "Zapisz zmiany"
456
-
457
- #: bws_functions.php:859
458
  msgid ""
459
- "You can always look at premium options by clicking on the \"Show Pro features"
460
- "\" in the \"Go PRO\" tab"
461
  msgstr ""
462
- "Zawsze możesz sprawdzić funkcje premium poprzez kliknięcie \"Pokaż funkcje "
463
- "PRO\" w zakładce \"Go PRO\""
464
-
465
- #: bws_functions.php:988
466
- #, fuzzy
467
- msgid "Add shortcode"
468
- msgstr "Dodaj BWS Shortcode"
469
 
470
- #: bws_functions.php:988
471
- msgid "Add BestWebSoft plugins' shortcodes using this button."
 
 
472
  msgstr ""
 
 
473
 
474
- #: bws_functions.php:1037
475
- msgid "Close"
476
- msgstr "Zamknij"
477
-
478
- #: bws_functions.php:1129
479
- msgid "Restore all plugin settings to defaults"
480
- msgstr "Przywróć wszystkie ustawienia do wartości domyśłnych"
481
-
482
- #: bws_functions.php:1131
483
- msgid "Restore settings"
484
- msgstr "Przywróć ustawienia"
485
-
486
- #: bws_functions.php:1142
487
- msgid "Are you sure you want to restore all settings by default?"
488
  msgstr ""
489
- "Czy jesteś pewien, że chcesz przywrócić wszystkie ustawienia do wartości "
490
- "domyślnych?"
491
-
492
- #: bws_functions.php:1145
493
- msgid "Yes, restore all settings"
494
- msgstr "Tak, przywróć wszystkie ustawienia"
495
-
496
- #: bws_functions.php:1146
497
- msgid "No, go back to the settings page"
498
- msgstr "Nie, wróć do ustawień"
499
-
500
- #: bws_functions.php:1192
501
- msgid "Plugin"
502
- msgstr "Wtyczka"
503
-
504
- #: bws_functions.php:1201
505
- msgid "Shortcode settings"
506
- msgstr "Ustawienia shortcode"
507
-
508
- #: bws_functions.php:1206
509
- msgid "The shortcode will be inserted"
510
- msgstr "Shortcode zostanie umieszczony"
511
-
512
- #: bws_functions.php:1211
513
- msgid "Insert"
514
- msgstr "Umieść"
515
 
516
- #: bws_functions.php:1244
517
- msgid "Visit Help Center"
 
 
518
  msgstr ""
 
519
 
520
- #: bws_functions.php:1249
521
- msgid "FAQ"
522
- msgstr "FAQ"
523
-
524
- #: bws_functions.php:1255
525
- msgid "For more information:"
526
  msgstr ""
 
527
 
528
- #: bws_functions.php:1256
529
- msgid "Documentation"
 
 
530
  msgstr ""
 
 
 
 
 
 
531
 
532
- #: bws_functions.php:1257
533
- msgid "Video Instructions"
534
- msgstr ""
535
 
536
- #: bws_functions.php:1258
537
- #, fuzzy
538
- msgid "Submit a Request"
539
- msgstr "送信ボタン"
540
 
541
- #: bws_functions.php:1269
542
  msgid "You do not have sufficient permissions to edit plugins for this site."
543
  msgstr ""
544
 
545
- #: bws_functions.php:1320 bws_functions.php:1347
546
  #, php-format
547
  msgid "File %s edited successfully."
548
  msgstr ""
549
 
550
- #: bws_functions.php:1322 bws_functions.php:1349
551
  msgid "Not enough permissions to create or update the file"
552
  msgstr ""
553
 
554
- #: bws_functions.php:1352
555
  msgid "Not enough permissions to create the file"
556
  msgstr ""
557
 
558
- #: bws_functions.php:1390
559
  msgid "These styles will be added to the header on all pages of your site."
560
  msgstr ""
561
 
562
- #: bws_functions.php:1392
563
  #, php-format
564
  msgid ""
565
  "This PHP code will be hooked to the %s action and will be printed on front "
566
  "end only."
567
  msgstr ""
568
 
569
- #: bws_functions.php:1396
570
  msgid "Editing"
571
  msgstr ""
572
 
573
- #: bws_functions.php:1398
574
  msgid "Browsing"
575
  msgstr ""
576
 
577
- #: bws_functions.php:1405
578
  #, fuzzy, php-format
579
  msgid "Learn more about %s"
580
  msgstr "Dowiedz się więcej"
581
 
582
- #: bws_functions.php:1416
583
  #, php-format
584
  msgid ""
585
  "You need to make this files writable before you can save your changes. See "
586
  "%s the Codex %s for more information."
587
  msgstr ""
588
 
589
- #: bws_menu.php:116
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
590
  #, fuzzy
591
  msgid ""
592
- "This license key is bind to another website. Change it via personal Client "
593
  "Area."
594
  msgstr "Klucz licencji został przypisany do innej strony."
595
 
596
- #: bws_menu.php:116
597
  msgid "Log in"
598
  msgstr ""
599
 
600
- #: bws_menu.php:132
601
  #, fuzzy
602
- msgid "Congratulations! Pro Membership license is successfully activated."
603
  msgstr "Gratulacje! Licencja do wersji PRO została aktywowana pomyślnie."
604
 
605
- #: bws_menu.php:149
606
  #, fuzzy
607
  msgid "Please enter your license key."
608
  msgstr "Podaj klucz licencji"
609
 
610
- #: bws_menu.php:161
611
  msgid "Not set"
612
  msgstr "Nie ustawiono"
613
 
614
- #: bws_menu.php:163 bws_menu.php:164
615
  msgid "On"
616
  msgstr "Włączone"
617
 
618
- #: bws_menu.php:163 bws_menu.php:164
619
  msgid "Off"
620
  msgstr "Wyłączone"
621
 
622
- #: bws_menu.php:165 bws_menu.php:166 bws_menu.php:167 bws_menu.php:168
623
- #: bws_menu.php:169 bws_menu.php:181
624
  msgid "N/A"
625
  msgstr "Brak danych"
626
 
627
- #: bws_menu.php:169
628
  msgid " Mb"
629
  msgstr " Mb"
630
 
631
- #: bws_menu.php:170 bws_menu.php:171 bws_menu.php:172 bws_menu.php:177
632
  msgid "Yes"
633
  msgstr "Tak"
634
 
635
- #: bws_menu.php:170 bws_menu.php:171 bws_menu.php:172 bws_menu.php:179
636
  msgid "No"
637
  msgstr "Nie"
638
 
639
- #: bws_menu.php:190
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
640
  msgid "Operating System"
641
  msgstr "System operacyjny"
642
 
643
- #: bws_menu.php:191
644
  msgid "Server"
645
  msgstr "Serwer"
646
 
647
- #: bws_menu.php:192
648
- msgid "Memory usage"
649
- msgstr "Wykorzystanie pamięci"
650
-
651
- #: bws_menu.php:193
652
- msgid "MYSQL Version"
653
- msgstr "Wersja MySQL"
654
-
655
- #: bws_menu.php:194
656
- msgid "SQL Mode"
657
- msgstr "Tryb SQL"
658
-
659
- #: bws_menu.php:195
660
  msgid "PHP Version"
661
  msgstr "Wersja PHP"
662
 
663
- #: bws_menu.php:196
664
  msgid "PHP Safe Mode"
665
  msgstr "PHP Safe Mode"
666
 
667
- #: bws_menu.php:197
668
  msgid "PHP Allow URL fopen"
669
  msgstr "Zezwól na PHP fopen"
670
 
671
- #: bws_menu.php:198
672
  msgid "PHP Memory Limit"
673
  msgstr "PHP Limit pamięci"
674
 
675
- #: bws_menu.php:199
 
 
 
 
 
676
  msgid "PHP Max Upload Size"
677
  msgstr "PHP Max rozmiar przesyłanego pliku"
678
 
679
- #: bws_menu.php:200
680
  msgid "PHP Max Post Size"
681
  msgstr "PHP Max rozmiar przesyłania POST"
682
 
683
- #: bws_menu.php:201
684
  msgid "PHP Max Script Execute Time"
685
  msgstr "PHP Max czas przetwarzania skryptu"
686
 
687
- #: bws_menu.php:202
688
  msgid "PHP Exif support"
689
  msgstr "PHP Wsparcie Exif"
690
 
691
- #: bws_menu.php:203
692
  msgid "PHP IPTC support"
693
  msgstr "PHP Wsparcie IPTC"
694
 
695
- #: bws_menu.php:204
696
  msgid "PHP XML support"
697
  msgstr "PHP Wsparcie XML"
698
 
699
- #: bws_menu.php:205
700
- msgid "Site URL"
701
- msgstr "Adres strony:"
702
 
703
- #: bws_menu.php:206
704
- msgid "Home URL"
705
- msgstr "Adres strony głównej:"
 
706
 
707
- #: bws_menu.php:209
708
- msgid "WordPress Version"
709
- msgstr "Wersja WordPress"
 
710
 
711
- #: bws_menu.php:210
712
- msgid "WordPress DB Version"
713
- msgstr "Wersja Bazy Danych dla WordPress"
714
 
715
- #: bws_menu.php:211
716
- msgid "Multisite"
717
- msgstr "Multisite"
718
 
719
- #: bws_menu.php:212
720
- msgid "Active Theme"
721
- msgstr "Aktywny motyw"
722
 
723
- #: bws_menu.php:226
724
  msgid "Please enter a valid email address."
725
  msgstr "Podaj poprawny adres email"
726
 
727
- #: bws_menu.php:230
728
- msgid "Email with system info is sent to "
 
729
  msgstr "Wiadomość z informacjami systemowymi zostanie wysłana do "
730
 
731
- #: bws_menu.php:234
732
  msgid "Thank you for contacting us."
733
  msgstr "Dziękujemy za kontakt."
734
 
735
- #: bws_menu.php:267
736
  msgid "Sorry, email message could not be delivered."
737
  msgstr "Przepraszamy, wiadomość nie została dostarczona."
738
 
739
- #: bws_menu.php:286 bws_menu.php:632
740
  msgid "System status"
741
  msgstr "Status systemu"
742
 
743
- #: bws_menu.php:287
744
  msgid "Support"
745
  msgstr "サポート"
746
 
747
- #: bws_menu.php:288
748
  msgid "Manage purchased licenses & subscriptions"
749
  msgstr ""
750
 
751
- #: bws_menu.php:288
752
- #, fuzzy
753
- msgid "Client Area"
754
- msgstr "Panel Klienta"
755
-
756
- #: bws_menu.php:296
757
  #, php-format
758
  msgid "Get Access to %s+ Premium Plugins"
759
  msgstr ""
760
 
761
- #: bws_menu.php:298
762
  #, fuzzy
763
  msgid "Subscribe to Pro Membership"
764
  msgstr "有効なテーマ"
765
 
766
- #: bws_menu.php:309
767
  #, fuzzy
768
  msgid "Enter your license key"
769
  msgstr "Podaj klucz licencji"
770
 
771
- #: bws_menu.php:331
772
  #, fuzzy
773
  msgid "Upload Plugin"
774
  msgstr "Wtyczka"
775
 
776
- #: bws_menu.php:335
777
  #, php-format
778
  msgid ""
779
  "The plugin generated %d characters of <strong>unexpected output</strong> "
@@ -782,142 +842,126 @@ msgid ""
782
  "or removing this plugin."
783
  msgstr ""
784
 
785
- #: bws_menu.php:337
786
  msgid ""
787
  "Plugin could not be activated because it triggered a <strong>fatal error</"
788
  "strong>."
789
  msgstr ""
790
 
791
- #: bws_menu.php:340
792
  msgid "Plugin <strong>activated</strong>."
793
  msgstr ""
794
 
795
- #: bws_menu.php:347
796
  #, fuzzy
797
  msgid "Installing Plugin"
798
  msgstr "Zainstalowane"
799
 
800
- #: bws_menu.php:353
801
  msgid "Downloading install package from"
802
  msgstr ""
803
 
804
- #: bws_menu.php:378
805
  msgid "Unpacking the package"
806
  msgstr ""
807
 
808
- #: bws_menu.php:383 bws_menu.php:391
809
  #, fuzzy
810
  msgid "Installing the plugin"
811
  msgstr "Zainstalowane"
812
 
813
- #: bws_menu.php:397
814
- #, fuzzy
815
- msgid "Successfully installed the plugin"
816
- msgstr "Zainstalowane"
817
 
818
- #: bws_menu.php:409
819
  #, fuzzy
820
  msgid "Activate Plugin"
821
  msgstr "Aktywne wtyczki"
822
 
823
- #: bws_menu.php:409 bws_menu.php:415
824
  msgid "Return to BestWebSoft Panel"
825
  msgstr ""
826
 
827
- #: bws_menu.php:419 bws_menu.php:434 bws_menu.php:563
828
  msgid "All"
829
  msgstr "Wszystko"
830
 
831
- #: bws_menu.php:420 bws_menu.php:620
832
  msgid "Installed"
833
  msgstr "Zainstalowane"
834
 
835
- #: bws_menu.php:421
836
  #, fuzzy
837
  msgid "Not Installed"
838
  msgstr "Zainstalowane"
839
 
840
- #: bws_menu.php:427
841
  msgid "Filter results"
842
  msgstr ""
843
 
844
- #: bws_menu.php:430 bws_menu.php:559
845
  msgid "Category"
846
  msgstr ""
847
 
848
- #: bws_menu.php:494
849
  #, fuzzy
850
  msgid "Not installed"
851
  msgstr "Zainstalowane"
852
 
853
- #: bws_menu.php:498
854
  #, fuzzy
855
  msgid "Renew to get updates"
856
  msgstr "ページに転送"
857
 
858
- #: bws_menu.php:501
859
  #, fuzzy, php-format
860
  msgid "Update to v %s"
861
  msgstr "Aktualizuj do wersji %s"
862
 
863
- #: bws_menu.php:513 bws_menu.php:536 bws_menu.php:545
864
  msgid "Install Now"
865
  msgstr "Instaluj teraz"
866
 
867
- #: bws_menu.php:519
868
  msgid "Upgrade to Pro"
869
  msgstr ""
870
 
871
- #: bws_menu.php:523
872
- msgid "Donate"
873
- msgstr ""
874
-
875
- #: bws_menu.php:533 bws_menu.php:542
876
  msgid "Activate this plugin"
877
  msgstr "Aktywuj wtyczkę"
878
 
879
- #: bws_menu.php:545
880
  #, fuzzy
881
  msgid "Install this plugin"
882
  msgstr "Zainstalowane"
883
 
884
- #: bws_menu.php:554
885
  msgid "Nothing found. Try another criteria."
886
  msgstr ""
887
 
888
- #: bws_menu.php:591 bws_menu.php:611
889
  #, php-format
890
  msgid "By %s"
891
  msgstr "Od %s"
892
 
893
- #: bws_menu.php:618
894
  msgid "Already Installed"
895
  msgstr "Zainstalowane"
896
 
897
- #: bws_menu.php:629
898
  msgid "Browse Free WordPress Themes"
899
  msgstr ""
900
 
901
- #: bws_menu.php:638
902
  msgid "Send to support"
903
  msgstr "Wyślij do supportu"
904
 
905
- #: bws_menu.php:645
906
  msgid "Send to custom email &#187;"
907
  msgstr "Prześlij na własny adres &#187;"
908
 
909
- #: bws_menu.php:652
910
- msgid "Environment"
911
- msgstr "Środowisko"
912
-
913
- #: bws_menu.php:663
914
- msgid "Active Plugins"
915
- msgstr "Aktywne wtyczki"
916
-
917
- #: bws_menu.php:676
918
- msgid "Inactive Plugins"
919
- msgstr "Nieaktywne wtyczki"
920
-
921
  #: product_list.php:7
922
  msgid "Advertisement"
923
  msgstr ""
@@ -955,6 +999,224 @@ msgstr ""
955
  msgid "Other"
956
  msgstr ""
957
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
958
  #~ msgid "You can download and activate"
959
  #~ msgstr "Możesz pobrać i aktywować wersję"
960
 
@@ -971,9 +1233,6 @@ msgstr ""
971
  #~ msgid "Configure Settings"
972
  #~ msgstr "Konfiguruj Ustawienia"
973
 
974
- #~ msgid "Need help?"
975
- #~ msgstr "Potrzebujesz pomocy?"
976
-
977
  #~ msgid "Go"
978
  #~ msgstr "Go"
979
 
@@ -1007,9 +1266,6 @@ msgstr ""
1007
  #~ msgid "Add BWS Plugins Shortcode"
1008
  #~ msgstr "Dodaj BWS Shortcode"
1009
 
1010
- #~ msgid "Pro plugins"
1011
- #~ msgstr "Pro Plugins"
1012
-
1013
  #~ msgid "Activated plugins"
1014
  #~ msgstr "有効なプラグイン"
1015
 
@@ -1129,9 +1385,6 @@ msgstr ""
1129
  #~ "'送信者'フィールドに正確なEメール・アドレスを入力して下さい。設定は保存さ"
1130
  #~ "れません。"
1131
 
1132
- #~ msgid "Settings saved."
1133
- #~ msgstr "設定保存."
1134
-
1135
  #~ msgid ""
1136
  #~ "If you would like to add the Contact Form to your website, just copy and "
1137
  #~ "paste this shortcode to your post or page or widget:"
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-01-25 17:11+0300\n"
6
+ "PO-Revision-Date: 2017-01-25 17:11+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Damian Dąbrowski <contact@codester.pl>\n"
9
  "Language: pl_PL\n"
18
  "|| n%100>=20) ? 1 : 2);\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
+ #: bws_functions.php:72 bws_functions.php:190
 
 
 
 
 
 
 
 
 
 
 
 
 
22
  msgid "requires"
23
  msgstr "wymaga wersja"
24
 
25
+ #: bws_functions.php:74
26
  msgid ""
27
  "or higher, that is why it has been deactivated! Please upgrade WordPress and "
28
  "try again."
30
  "lub nowsza, dlatego wtyczka została wyłączona. Zaktualizuj WordPress i "
31
  "spróbuj ponownie."
32
 
33
+ #: bws_functions.php:75
34
  msgid "Back to the WordPress"
35
  msgstr "Wróć do WordPress"
36
 
37
+ #: bws_functions.php:77
38
  msgid "Plugins page"
39
  msgstr "Wtyczki"
40
 
41
+ #: bws_functions.php:91
42
+ #, fuzzy
43
+ msgid "Like the plugin?"
44
+ msgstr "Oceń wtyczkę"
45
+
46
+ #: bws_functions.php:93
47
+ msgid "Rate it"
48
+ msgstr ""
49
+
50
+ #: bws_functions.php:102
51
+ msgid "Need help?"
52
+ msgstr "Potrzebujesz pomocy?"
53
+
54
+ #: bws_functions.php:103 bws_functions.php:914
55
+ msgid "Visit Help Center"
56
+ msgstr ""
57
+
58
+ #: bws_functions.php:106
59
+ #, fuzzy
60
+ msgid "Want to support the plugin?"
61
+ msgstr "Oceń wtyczkę"
62
+
63
+ #: bws_functions.php:107 bws_menu.php:553
64
+ msgid "Donate"
65
+ msgstr ""
66
+
67
+ #: bws_functions.php:127
68
+ msgid "WARNING: Illegal use notification"
69
+ msgstr "UWAGA: Odnotowano nielegalne użycie"
70
+
71
+ #: bws_functions.php:127
72
+ msgid ""
73
+ "You can use one license of the Pro plugin for one domain only. Please check "
74
+ "and edit your license or domain if necessary using you personal Client Area. "
75
+ "We strongly recommend you to solve the problem within 24 hours, otherwise "
76
+ "the Pro plugin will be deactivated."
77
+ msgstr ""
78
+ "Licencja wersji PRO może być wykorzystywana tylko na jednej domenie. Proszę "
79
+ "sprawdź i edytuj klucz licencji lub domenę, jeśli to konieczne wykorzystaj "
80
+ "Panel Klienta. Zalecamy rozwiązanie tego problemu w przeciągu 24 godzin, w "
81
+ "przeciwnym wypadku wersja PRO zostanie zablokowana."
82
+
83
+ #: bws_functions.php:127 bws_functions.php:339 bws_menu.php:627
84
+ #: class-bws-settings.php:136
85
+ msgid "Learn More"
86
+ msgstr "Dowiedz się więcej"
87
+
88
+ #: bws_functions.php:144
89
+ #, fuzzy
90
+ msgid ""
91
+ "Notice: Your Pro Trial license has expired. To continue using the plugin, "
92
+ "you should buy a Pro license"
93
+ msgstr ""
94
+ "Uwaga: Testowa wersja PRO niestety wygasła. Aby kontynuować korzystanie z "
95
+ "naszej wtyczki powinieneś zakupić klucz licencji."
96
+
97
+ #: bws_functions.php:146
98
+ #, fuzzy
99
+ msgid ""
100
+ "Your license has expired. To continue getting top-priority support and "
101
+ "plugin updates, you should extend it."
102
+ msgstr ""
103
+ "Twoja licencja wygasła. Aby podtrzymać szybki dostęp do pomocy i "
104
+ "aktualizacji powinieneś przedłużyć licencję."
105
+
106
+ #: bws_functions.php:146 bws_functions.php:382 deprecated.php:584
107
+ msgid "Learn more"
108
+ msgstr "Dowiedz się więcej"
109
+
110
+ #: bws_functions.php:164
111
+ #, php-format
112
+ msgid "Notice: You are using the Pro Trial license of %s plugin."
113
+ msgstr "Uwaga: Wykorzystujesz próbną licencję wersji PRO dla %s."
114
+
115
+ #: bws_functions.php:166
116
+ msgid "Notice: You are using the Pro Trial license of plugin."
117
+ msgstr "Uwaga: Wykorzystywana jest próbna licencja wtyczki."
118
+
119
+ #: bws_functions.php:169
120
+ msgid "The Pro Trial license will expire on"
121
+ msgstr "Licencja próbna wygaśnie"
122
+
123
+ #: bws_functions.php:192
124
  msgid ""
125
  "or higher! We do not guarantee that our plugin will work correctly. Please "
126
  "upgrade to WordPress latest version."
128
  "lub nowsza! Nie gwarantujemy, że nasza wtyczka będzie działała poprawnie. "
129
  "Proszę zaktualizować WordPress do najnowszej wersji."
130
 
131
+ #: bws_functions.php:207
132
  msgid "Thank you for installing"
133
  msgstr "Dziękujemy za instalację"
134
 
135
+ #: bws_functions.php:208
136
  msgid "Let's get started"
137
  msgstr "Zaczynajmny"
138
 
139
+ #: bws_functions.php:209 bws_functions.php:242 bws_menu.php:557
140
+ #: bws_menu.php:559
141
  msgid "Settings"
142
  msgstr "Ustawienia"
143
 
144
+ #: bws_functions.php:211 deprecated.php:694 bws_menu.php:328
145
+ #: class-bws-settings.php:736 class-bws-settings.php:1046
146
+ #: class-bws-settings.php:1076
147
  msgid "or"
148
  msgstr "lub"
149
 
150
+ #: bws_functions.php:212 bws_functions.php:244
151
  msgid "Add New"
152
  msgstr "Dodaj nowy"
153
 
154
+ #: bws_functions.php:216 bws_functions.php:226 bws_functions.php:330
155
+ #: bws_functions.php:378 bws_functions.php:482
156
  msgid "Close notice"
157
  msgstr "Zamknij powiadomienie"
158
 
159
+ #: bws_functions.php:231
160
  #, fuzzy
161
  msgid "Thank you for installing plugins by BestWebSoft!"
162
  msgstr "Dziękujemy za instalację"
163
 
164
+ #: bws_functions.php:233
165
  #, fuzzy
166
  msgid "More Details"
167
  msgstr "Szczegóły"
168
 
169
+ #: bws_functions.php:234
170
  #, fuzzy
171
  msgid "Less Details"
172
  msgstr "Szczegóły"
173
 
174
+ #: bws_functions.php:262
175
+ msgid "Deprecated function(-s) is used on the site here:"
176
+ msgstr ""
177
+
178
+ #: bws_functions.php:276
179
+ msgid ""
180
+ "This function(-s) will be removed over time. Please update the product(-s)."
181
+ msgstr ""
182
+
183
+ #: bws_functions.php:335
184
  msgid "It’s time to upgrade your"
185
  msgstr "Czas by zaktualizować"
186
 
187
+ #: bws_functions.php:335
188
  msgid "to"
189
  msgstr "do"
190
 
191
+ #: bws_functions.php:335
192
  msgid "version!"
193
  msgstr "wersji!"
194
 
195
+ #: bws_functions.php:336
196
  msgid "Extend standard plugin functionality with new great options."
197
  msgstr "Rozszerz podstawowe funkcje wtyczki o nowe wspaniałe opcje."
198
 
199
+ #: bws_functions.php:382
200
+ #, fuzzy, php-format
201
+ msgid ""
202
+ "Your license key for %s expires on %s and you won't be granted TOP-PRIORITY "
203
+ "SUPPORT or UPDATES."
 
 
 
 
 
 
 
 
 
 
 
 
 
204
  msgstr ""
205
+ "zostaniesz wówczas pozbawiony SZYBKIEGO DOSTĘDO DO SUPPORTU oraz "
206
+ "AKTUALIZACJI."
207
 
208
+ #: bws_functions.php:477
209
+ #, fuzzy
210
+ msgid "Thank you for choosing"
211
+ msgstr "Dziękujemy za instalację"
 
 
 
 
212
 
213
+ #: bws_functions.php:478
 
214
  msgid ""
215
+ "If you have a feature, suggestion or idea you'd like to see in the plugin, "
216
+ "we'd love to hear about it!"
217
  msgstr ""
 
 
218
 
219
+ #: bws_functions.php:479
220
+ msgid "Suggest a Feature"
221
+ msgstr ""
 
222
 
223
+ #: bws_functions.php:495 class-bws-settings.php:527 class-bws-settings.php:530
224
+ #: class-bws-settings.php:585 class-bws-settings.php:588
225
+ msgid "Notice"
226
+ msgstr "Uwaga"
227
 
228
+ #: bws_functions.php:495
229
+ msgid "The plugin's settings have been changed."
230
+ msgstr "Ustawienia wtyczki zostały zmienione."
 
 
 
 
231
 
232
+ #: bws_functions.php:496 deprecated.php:640 class-bws-settings.php:175
233
+ #: class-bws-settings.php:189
234
+ msgid "Save Changes"
235
+ msgstr "Zapisz zmiany"
 
 
 
236
 
237
+ #: bws_functions.php:510
238
+ #, fuzzy
239
  msgid ""
240
+ "You can always look at premium options by checking the \"Pro Options\" in "
241
+ "the \"Misc\" tab."
242
  msgstr ""
243
+ "Zawsze możesz sprawdzić funkcje premium poprzez kliknięcie \"Pokaż funkcje "
244
+ "PRO\" w zakładce \"Go PRO\""
245
 
246
+ #: bws_functions.php:649
247
+ #, fuzzy
248
+ msgid "Add shortcode"
249
+ msgstr "Dodaj BWS Shortcode"
 
 
250
 
251
+ #: bws_functions.php:649
252
+ msgid "Add BestWebSoft plugins' shortcodes using this button."
253
  msgstr ""
 
 
254
 
255
+ #: bws_functions.php:698
256
+ msgid "Close"
257
+ msgstr "Zamknij"
 
 
 
258
 
259
+ #: bws_functions.php:790
260
+ #, fuzzy
261
+ msgid "Are you sure you want to restore default settings?"
262
  msgstr ""
263
+ "Czy jesteś pewien, że chcesz przywrócić wszystkie ustawienia do wartości "
264
+ "domyślnych?"
265
 
266
+ #: bws_functions.php:793
267
+ msgid "Yes, restore all settings"
268
+ msgstr "Tak, przywróć wszystkie ustawienia"
 
 
 
 
269
 
270
+ #: bws_functions.php:794
271
+ msgid "No, go back to the settings page"
272
+ msgstr "Nie, wróć do ustawień"
273
 
274
+ #: bws_functions.php:840
275
+ msgid "Plugin"
276
+ msgstr "Wtyczka"
 
 
 
277
 
278
+ #: bws_functions.php:849
279
+ msgid "Shortcode settings"
280
+ msgstr "Ustawienia shortcode"
281
 
282
+ #: bws_functions.php:854
283
+ msgid "The shortcode will be inserted"
284
+ msgstr "Shortcode zostanie umieszczony"
285
 
286
+ #: bws_functions.php:859
287
+ msgid "Insert"
288
+ msgstr "Umieść"
289
 
290
+ #: bws_functions.php:919
291
+ msgid "FAQ"
292
+ msgstr "FAQ"
293
 
294
+ #: bws_functions.php:925
295
+ msgid "For more information:"
296
  msgstr ""
297
 
298
+ #: bws_functions.php:926
299
+ msgid "Documentation"
300
+ msgstr ""
 
301
 
302
+ #: bws_functions.php:927
303
+ msgid "Video Instructions"
304
  msgstr ""
305
 
306
+ #: bws_functions.php:928
307
  #, fuzzy
308
+ msgid "Submit a Request"
309
+ msgstr "送信ボタン"
310
 
311
+ #: deprecated.php:91 bws_menu.php:307 bws_menu.php:311 bws_menu.php:360
312
+ msgid "Plugins"
313
+ msgstr "Wtyczki"
 
314
 
315
+ #: deprecated.php:92 bws_menu.php:308 bws_menu.php:312 bws_menu.php:611
316
+ msgid "Themes"
317
+ msgstr "Motywy"
 
 
318
 
319
+ #: deprecated.php:93
320
+ #, fuzzy
321
+ msgid "System Status"
322
+ msgstr "Status systemu"
323
+
324
+ #: deprecated.php:133 deprecated.php:199 deprecated.php:352 bws_menu.php:120
325
+ #: class-bws-settings.php:807 class-bws-settings.php:873
326
+ #: class-bws-settings.php:909
327
  msgid ""
328
+ "Something went wrong. Please try again later. If the error appears again, "
329
+ "please contact us"
330
  msgstr ""
331
+ "Coś poszło nie tak. Spróbuj ponownie później. Jeśli błąd pojawi się ponownie "
332
+ "proszę skontaktować się z nami"
 
 
 
 
 
 
 
 
333
 
334
+ #: deprecated.php:133 deprecated.php:199 deprecated.php:352 bws_menu.php:120
335
+ #: class-bws-settings.php:807 class-bws-settings.php:873
336
+ #: class-bws-settings.php:909
337
+ msgid "We are sorry for inconvenience."
338
+ msgstr "Przepraszamy za niedogodności."
339
 
340
+ #: deprecated.php:139 deprecated.php:358 bws_menu.php:126
341
+ #: class-bws-settings.php:813 class-bws-settings.php:915
342
  msgid "Wrong license key."
343
  msgstr "Niepoprawny klucz licencji"
344
 
345
+ #: deprecated.php:141 deprecated.php:360 class-bws-settings.php:815
346
+ #: class-bws-settings.php:917
347
+ #, fuzzy
348
+ msgid "This license key is bound to another site."
349
  msgstr "Klucz licencji został przypisany do innej strony."
350
 
351
+ #: deprecated.php:143 class-bws-settings.php:817
352
  msgid ""
353
  "This license key is valid, but Your license has expired. If you want to "
354
  "update our plugin in future, you should extend the license."
356
  "Klucz jest poprawny, jednak Twoja licencja wygasła. Jeśli chcesz "
357
  "aktualizować naszą wtyczkę w przyszłości powinieneś przedłużyć licencję."
358
 
359
+ #: deprecated.php:145 class-bws-settings.php:819
360
  msgid "Unfortunately, you have exceeded the number of available tries."
361
  msgstr "Niestety, przekroczono liczbę dostępnych prób."
362
 
363
+ #: deprecated.php:147 class-bws-settings.php:821
364
  msgid ""
365
  "Unfortunately, the Pro Trial licence was already installed to this domain. "
366
  "The Pro Trial license can be installed only once."
368
  "Niestety, licencja PRO była już przypisana do tej domeny. Licencja testowa "
369
  "może być wykorzystana tylko raz."
370
 
371
+ #: deprecated.php:151 class-bws-settings.php:825
372
  msgid "The Pro Trial license key is valid."
373
  msgstr "Klucz licencji do testowej wersji PRO jest poprawny."
374
 
375
+ #: deprecated.php:153 bws_menu.php:140 class-bws-settings.php:827
376
  msgid "The license key is valid."
377
  msgstr "Klucz licencji jest poprawny"
378
 
379
+ #: deprecated.php:156 bws_menu.php:142 class-bws-settings.php:830
380
  msgid "Your license will expire on"
381
  msgstr "Twoja licencja wygaśnie"
382
 
383
+ #: deprecated.php:159 deprecated.php:246 class-bws-settings.php:833
384
+ #, php-format
385
+ msgid ""
386
+ "In order to continue using the plugin it is necessary to buy a %s license."
387
+ msgstr ""
388
+ "W celu dalszego wykorzystywania wtyczki niezbędne jest wykupienie licencji "
389
+ "%s."
390
+
391
+ #: deprecated.php:204
392
  msgid "Please, enter your license key"
393
  msgstr "Podaj klucz licencji"
394
 
395
+ #: deprecated.php:223
396
+ #, fuzzy
397
  msgid ""
398
+ "If necessary, you can check if the license key is correct or reenter it in "
399
+ "the field below. You can find your license key on your personal page - "
400
+ "Client Area - on our website"
401
  msgstr ""
402
  "Jeśli to konieczne możesz sprawdzić czy klucz jest poprawny lub umieścić go "
403
  "w polu poniżej. Możesz znaleźć swój klucz na naszej stronie w strefie - "
404
  "Panel Klienta"
405
 
406
+ #: deprecated.php:223
407
  #, fuzzy
408
  msgid ""
409
  "(your username is the email address specified during the purchase). If "
412
  "(login to adres email podany przy zakupie). Jeśli to koniczne użyj opcji "
413
  "\"Zgubiłeś swoje hasło?\"."
414
 
415
+ #: deprecated.php:227 bws_menu.php:336 bws_menu.php:347
416
+ #: class-bws-settings.php:749
417
  msgid "Check license key"
418
  msgstr "Sprawdź klucz licencji"
419
 
420
+ #: deprecated.php:247
421
+ #, fuzzy
422
+ msgid "After that, you can activate it by entering your license key."
423
+ msgstr "Po wszystkim możesz aktywować wtyczkę poprzez podanie klucza licencji."
 
 
 
 
 
 
 
 
 
 
 
424
 
425
+ #: deprecated.php:249 deprecated.php:688
426
+ msgid "License key can be found in the"
 
 
427
  msgstr ""
 
 
428
 
429
+ #: deprecated.php:251 deprecated.php:690
430
+ #, fuzzy
431
+ msgid "(your username is the email address specified during the purchase)."
432
+ msgstr "(twoja nazwa użytkownika to email podany podczas zakupu)."
 
 
 
433
 
434
+ #: deprecated.php:259 deprecated.php:267 deprecated.php:629 deprecated.php:700
435
+ #: deprecated.php:709 bws_menu.php:345 bws_menu.php:563 bws_menu.php:572
436
+ #: class-bws-settings.php:728
437
+ msgid "Activate"
438
+ msgstr "Aktywuj"
439
 
440
+ #: deprecated.php:261 bws_menu.php:130 bws_menu.php:334
441
+ msgid "Unfortunately, you have exceeded the number of available tries per day."
442
+ msgstr "Niestety, przekroczono dzienną liczbę dostępnych prób."
 
443
 
444
+ #: deprecated.php:278
445
+ #, fuzzy
446
+ msgid ""
447
+ "Congratulations! The Pro license of the plugin is activated successfully."
448
+ msgstr "Gratulacje! Licencja do wersji PRO została aktywowana pomyślnie."
449
 
450
+ #: deprecated.php:280 deprecated.php:669
451
+ msgid "Please, go to"
452
+ msgstr "Proszę przejść do"
453
 
454
+ #: deprecated.php:280 deprecated.php:669
455
+ msgid "the setting page"
456
+ msgstr "ustawień"
457
 
458
+ #: deprecated.php:281 deprecated.php:670
459
+ msgid "You will be redirected automatically in 5 seconds."
460
+ msgstr "Zostaniesz automatycznie przekierowany w ciągu 5 sekund."
461
 
462
+ #: deprecated.php:315
463
+ msgid "Check premium options on the plugin settings page!"
464
+ msgstr "Sprawdź dodatkowe opcje premium w ustawieniach wtyczki."
 
 
465
 
466
+ #: deprecated.php:322 bws_menu.php:99 class-bws-settings.php:781
467
+ msgid "Wrong license key"
468
+ msgstr "Niepoprawny klucz licencji"
 
469
 
470
+ #: deprecated.php:362 deprecated.php:703 class-bws-settings.php:733
471
+ #: class-bws-settings.php:919
472
  msgid ""
473
+ "Unfortunately, you have exceeded the number of available tries per day. "
474
+ "Please, upload the plugin manually."
475
  msgstr ""
476
+ "Niestety, przekroczono liczb dostępnych prób na dziś. Proszę dodać wtyczkę "
477
+ "manualnie."
478
 
479
+ #: deprecated.php:364 bws_menu.php:132 class-bws-settings.php:921
480
+ #, fuzzy, php-format
481
+ msgid ""
482
+ "Unfortunately, Your license has expired. To continue getting top-priority "
483
+ "support and plugin updates, you should extend it in your %s"
484
  msgstr ""
485
+ "Niestety, Twoja licencja wygasła. By nadal korzystać z szybkiego dostępu do "
486
+ "wsparcia oraz aktualizacji powinieneś przedłużyć licencję."
487
 
488
+ #: deprecated.php:366 bws_menu.php:134 class-bws-settings.php:923
 
 
 
 
 
 
 
 
 
 
 
 
489
  msgid ""
490
+ "Unfortunately, the Pro licence was already installed to this domain. The Pro "
491
+ "Trial license can be installed only once."
492
  msgstr ""
493
+ "Niestety, licencja PRO była już przypisana do tej domeny. Licencja testowa "
494
+ "może być wykorzystana tylko raz."
 
 
 
 
 
495
 
496
+ #: deprecated.php:387 deprecated.php:409 deprecated.php:431 bws_menu.php:400
497
+ #: bws_menu.php:431 bws_menu.php:442 class-bws-settings.php:947
498
+ #: class-bws-settings.php:969 class-bws-settings.php:991
499
+ msgid "Failed to download the zip archive. Please, upload the plugin manually"
500
  msgstr ""
501
+ "Pobieranie archiwum zip zakończyło się niepowodzeniem. Proszę dodać wtyczkę "
502
+ "manualnie"
503
 
504
+ #: deprecated.php:399 bws_menu.php:417 class-bws-settings.php:959
505
+ msgid "Failed to open the zip archive. Please, upload the plugin manually"
 
 
 
 
 
 
 
 
 
 
 
 
506
  msgstr ""
507
+ "Otwieranie archiwum zip zakończyło się niepowodzeniem. Proszę dodać wtyczkę "
508
+ "manualnie"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
509
 
510
+ #: deprecated.php:405 bws_menu.php:424 class-bws-settings.php:965
511
+ msgid ""
512
+ "Your server does not support either ZipArchive or Phar. Please, upload the "
513
+ "plugin manually"
514
  msgstr ""
515
+ "Twój serwer nie wspiera ZipAcrchive lub Phar. Proszę dodać wtyczkę manualnie"
516
 
517
+ #: deprecated.php:412 bws_menu.php:434 class-bws-settings.php:972
518
+ msgid "UploadDir is not writable. Please, upload the plugin manually"
 
 
 
 
519
  msgstr ""
520
+ "Folder uploadu jest chroniony przez zapisem. Proszę dodać wtyczkę manualnie"
521
 
522
+ #: deprecated.php:435 bws_menu.php:151 class-bws-settings.php:995
523
+ msgid ""
524
+ "Something went wrong. Try again later or upload the plugin manually. We are "
525
+ "sorry for inconvenience."
526
  msgstr ""
527
+ "Coś poszło nie tak. Spróbuj ponowie później lub dodaj wtyczkę manualnie. "
528
+ "Przepraszamy za niedogodności."
529
+
530
+ #: deprecated.php:463 class-bws-settings.php:1030
531
+ msgid "Please, enter Your license key"
532
+ msgstr "Proszę podać klucz licencji."
533
 
534
+ #: deprecated.php:478
535
+ msgid "Restore all plugin settings to defaults"
536
+ msgstr "Przywróć wszystkie ustawienia do wartości domyśłnych"
537
 
538
+ #: deprecated.php:480
539
+ msgid "Restore settings"
540
+ msgstr "Przywróć ustawienia"
 
541
 
542
+ #: deprecated.php:497 class-bws-settings.php:421
543
  msgid "You do not have sufficient permissions to edit plugins for this site."
544
  msgstr ""
545
 
546
+ #: deprecated.php:548 deprecated.php:575
547
  #, php-format
548
  msgid "File %s edited successfully."
549
  msgstr ""
550
 
551
+ #: deprecated.php:550 deprecated.php:577
552
  msgid "Not enough permissions to create or update the file"
553
  msgstr ""
554
 
555
+ #: deprecated.php:580
556
  msgid "Not enough permissions to create the file"
557
  msgstr ""
558
 
559
+ #: deprecated.php:618 class-bws-settings.php:426
560
  msgid "These styles will be added to the header on all pages of your site."
561
  msgstr ""
562
 
563
+ #: deprecated.php:620 class-bws-settings.php:429
564
  #, php-format
565
  msgid ""
566
  "This PHP code will be hooked to the %s action and will be printed on front "
567
  "end only."
568
  msgstr ""
569
 
570
+ #: deprecated.php:624
571
  msgid "Editing"
572
  msgstr ""
573
 
574
+ #: deprecated.php:626 class-bws-settings.php:450
575
  msgid "Browsing"
576
  msgstr ""
577
 
578
+ #: deprecated.php:633 class-bws-settings.php:461
579
  #, fuzzy, php-format
580
  msgid "Learn more about %s"
581
  msgstr "Dowiedz się więcej"
582
 
583
+ #: deprecated.php:644 class-bws-settings.php:440
584
  #, php-format
585
  msgid ""
586
  "You need to make this files writable before you can save your changes. See "
587
  "%s the Codex %s for more information."
588
  msgstr ""
589
 
590
+ #: deprecated.php:667
591
+ #, fuzzy
592
+ msgid ""
593
+ "Congratulations! Pro version of the plugin is installed and activated "
594
+ "successfully."
595
+ msgstr "Gratulacje! Wersja PRO została pobrana i aktywowana pomyślnie."
596
+
597
+ #: deprecated.php:677
598
+ msgid "Show Pro features"
599
+ msgstr "Pokaż funkcje PRO"
600
+
601
+ #: deprecated.php:684
602
+ msgid "Enter your license key to install and activate"
603
+ msgstr ""
604
+
605
+ #: deprecated.php:686
606
+ #, fuzzy
607
+ msgid "version of the plugin."
608
+ msgstr "Oceń wtyczkę"
609
+
610
+ #: deprecated.php:694 class-bws-settings.php:736
611
+ #, php-format
612
+ msgid "Start Your Free %s-Day Trial Now"
613
+ msgstr "Rozpocznij swój darmowy %s-dniowy okres testowy"
614
+
615
+ #: bws_menu.php:128
616
  #, fuzzy
617
  msgid ""
618
+ "This license key is bound to another site. Change it via personal Client "
619
  "Area."
620
  msgstr "Klucz licencji został przypisany do innej strony."
621
 
622
+ #: bws_menu.php:128
623
  msgid "Log in"
624
  msgstr ""
625
 
626
+ #: bws_menu.php:144
627
  #, fuzzy
628
+ msgid "Congratulations! Pro Membership license is activated successfully."
629
  msgstr "Gratulacje! Licencja do wersji PRO została aktywowana pomyślnie."
630
 
631
+ #: bws_menu.php:161
632
  #, fuzzy
633
  msgid "Please enter your license key."
634
  msgstr "Podaj klucz licencji"
635
 
636
+ #: bws_menu.php:172
637
  msgid "Not set"
638
  msgstr "Nie ustawiono"
639
 
640
+ #: bws_menu.php:174 bws_menu.php:175
641
  msgid "On"
642
  msgstr "Włączone"
643
 
644
+ #: bws_menu.php:174 bws_menu.php:175
645
  msgid "Off"
646
  msgstr "Wyłączone"
647
 
648
+ #: bws_menu.php:176 bws_menu.php:177 bws_menu.php:178 bws_menu.php:179
649
+ #: bws_menu.php:180 bws_menu.php:181 bws_menu.php:190
650
  msgid "N/A"
651
  msgstr "Brak danych"
652
 
653
+ #: bws_menu.php:181
654
  msgid " Mb"
655
  msgstr " Mb"
656
 
657
+ #: bws_menu.php:182 bws_menu.php:183 bws_menu.php:184 bws_menu.php:188
658
  msgid "Yes"
659
  msgstr "Tak"
660
 
661
+ #: bws_menu.php:182 bws_menu.php:183 bws_menu.php:184 bws_menu.php:188
662
  msgid "No"
663
  msgstr "Nie"
664
 
665
+ #: bws_menu.php:195
666
+ #, fuzzy
667
+ msgid "WordPress Environment"
668
+ msgstr "Środowisko"
669
+
670
+ #: bws_menu.php:197
671
+ msgid "Home URL"
672
+ msgstr "Adres strony głównej:"
673
+
674
+ #: bws_menu.php:198
675
+ #, fuzzy
676
+ msgid "Website URL"
677
+ msgstr "Adres strony:"
678
+
679
+ #: bws_menu.php:199
680
+ #, fuzzy
681
+ msgid "WP Version"
682
+ msgstr "Wersja PHP"
683
+
684
+ #: bws_menu.php:200
685
+ #, fuzzy
686
+ msgid "WP Multisite"
687
+ msgstr "Multisite"
688
+
689
+ #: bws_menu.php:201
690
+ #, fuzzy
691
+ msgid "WP Memory Limit"
692
+ msgstr "PHP Limit pamięci"
693
+
694
+ #: bws_menu.php:202
695
+ msgid "Active Theme"
696
+ msgstr "Aktywny motyw"
697
+
698
+ #: bws_menu.php:202 bws_menu.php:248 bws_menu.php:251
699
+ #, fuzzy, php-format
700
+ msgid "by %s"
701
+ msgstr "Od %s"
702
+
703
+ #: bws_menu.php:206
704
+ #, fuzzy
705
+ msgid "Server Environment"
706
+ msgstr "Środowisko"
707
+
708
+ #: bws_menu.php:208
709
  msgid "Operating System"
710
  msgstr "System operacyjny"
711
 
712
+ #: bws_menu.php:209
713
  msgid "Server"
714
  msgstr "Serwer"
715
 
716
+ #: bws_menu.php:210
 
 
 
 
 
 
 
 
 
 
 
 
717
  msgid "PHP Version"
718
  msgstr "Wersja PHP"
719
 
720
+ #: bws_menu.php:211
721
  msgid "PHP Safe Mode"
722
  msgstr "PHP Safe Mode"
723
 
724
+ #: bws_menu.php:212
725
  msgid "PHP Allow URL fopen"
726
  msgstr "Zezwól na PHP fopen"
727
 
728
+ #: bws_menu.php:213
729
  msgid "PHP Memory Limit"
730
  msgstr "PHP Limit pamięci"
731
 
732
+ #: bws_menu.php:214
733
+ #, fuzzy
734
+ msgid "Memory Usage"
735
+ msgstr "Wykorzystanie pamięci"
736
+
737
+ #: bws_menu.php:215
738
  msgid "PHP Max Upload Size"
739
  msgstr "PHP Max rozmiar przesyłanego pliku"
740
 
741
+ #: bws_menu.php:216
742
  msgid "PHP Max Post Size"
743
  msgstr "PHP Max rozmiar przesyłania POST"
744
 
745
+ #: bws_menu.php:217
746
  msgid "PHP Max Script Execute Time"
747
  msgstr "PHP Max czas przetwarzania skryptu"
748
 
749
+ #: bws_menu.php:218
750
  msgid "PHP Exif support"
751
  msgstr "PHP Wsparcie Exif"
752
 
753
+ #: bws_menu.php:219
754
  msgid "PHP IPTC support"
755
  msgstr "PHP Wsparcie IPTC"
756
 
757
+ #: bws_menu.php:220
758
  msgid "PHP XML support"
759
  msgstr "PHP Wsparcie XML"
760
 
761
+ #: bws_menu.php:226
762
+ msgid "Database"
763
+ msgstr ""
764
 
765
+ #: bws_menu.php:228
766
+ #, fuzzy
767
+ msgid "WP DB version"
768
+ msgstr "Wersja Bazy Danych dla WordPress"
769
 
770
+ #: bws_menu.php:229
771
+ #, fuzzy
772
+ msgid "MySQL version"
773
+ msgstr "Wersja MySQL"
774
 
775
+ #: bws_menu.php:230
776
+ msgid "SQL Mode"
777
+ msgstr "Tryb SQL"
778
 
779
+ #: bws_menu.php:234
780
+ msgid "Active Plugins"
781
+ msgstr "Aktywne wtyczki"
782
 
783
+ #: bws_menu.php:239
784
+ msgid "Inactive Plugins"
785
+ msgstr "Nieaktywne wtyczki"
786
 
787
+ #: bws_menu.php:260
788
  msgid "Please enter a valid email address."
789
  msgstr "Podaj poprawny adres email"
790
 
791
+ #: bws_menu.php:264
792
+ #, fuzzy
793
+ msgid "Email with system info is sent to"
794
  msgstr "Wiadomość z informacjami systemowymi zostanie wysłana do "
795
 
796
+ #: bws_menu.php:268
797
  msgid "Thank you for contacting us."
798
  msgstr "Dziękujemy za kontakt."
799
 
800
+ #: bws_menu.php:291
801
  msgid "Sorry, email message could not be delivered."
802
  msgstr "Przepraszamy, wiadomość nie została dostarczona."
803
 
804
+ #: bws_menu.php:309 bws_menu.php:313 bws_menu.php:662
805
  msgid "System status"
806
  msgstr "Status systemu"
807
 
808
+ #: bws_menu.php:317
809
  msgid "Support"
810
  msgstr "サポート"
811
 
812
+ #: bws_menu.php:318
813
  msgid "Manage purchased licenses & subscriptions"
814
  msgstr ""
815
 
816
+ #: bws_menu.php:326
 
 
 
 
 
817
  #, php-format
818
  msgid "Get Access to %s+ Premium Plugins"
819
  msgstr ""
820
 
821
+ #: bws_menu.php:328
822
  #, fuzzy
823
  msgid "Subscribe to Pro Membership"
824
  msgstr "有効なテーマ"
825
 
826
+ #: bws_menu.php:339
827
  #, fuzzy
828
  msgid "Enter your license key"
829
  msgstr "Podaj klucz licencji"
830
 
831
+ #: bws_menu.php:361
832
  #, fuzzy
833
  msgid "Upload Plugin"
834
  msgstr "Wtyczka"
835
 
836
+ #: bws_menu.php:365
837
  #, php-format
838
  msgid ""
839
  "The plugin generated %d characters of <strong>unexpected output</strong> "
842
  "or removing this plugin."
843
  msgstr ""
844
 
845
+ #: bws_menu.php:367
846
  msgid ""
847
  "Plugin could not be activated because it triggered a <strong>fatal error</"
848
  "strong>."
849
  msgstr ""
850
 
851
+ #: bws_menu.php:370
852
  msgid "Plugin <strong>activated</strong>."
853
  msgstr ""
854
 
855
+ #: bws_menu.php:377
856
  #, fuzzy
857
  msgid "Installing Plugin"
858
  msgstr "Zainstalowane"
859
 
860
+ #: bws_menu.php:383
861
  msgid "Downloading install package from"
862
  msgstr ""
863
 
864
+ #: bws_menu.php:408
865
  msgid "Unpacking the package"
866
  msgstr ""
867
 
868
+ #: bws_menu.php:413 bws_menu.php:421
869
  #, fuzzy
870
  msgid "Installing the plugin"
871
  msgstr "Zainstalowane"
872
 
873
+ #: bws_menu.php:427
874
+ #, php-format
875
+ msgid "The plugin %s is successfully installed."
876
+ msgstr ""
877
 
878
+ #: bws_menu.php:439
879
  #, fuzzy
880
  msgid "Activate Plugin"
881
  msgstr "Aktywne wtyczki"
882
 
883
+ #: bws_menu.php:439 bws_menu.php:445
884
  msgid "Return to BestWebSoft Panel"
885
  msgstr ""
886
 
887
+ #: bws_menu.php:449 bws_menu.php:464 bws_menu.php:593
888
  msgid "All"
889
  msgstr "Wszystko"
890
 
891
+ #: bws_menu.php:450 bws_menu.php:650
892
  msgid "Installed"
893
  msgstr "Zainstalowane"
894
 
895
+ #: bws_menu.php:451
896
  #, fuzzy
897
  msgid "Not Installed"
898
  msgstr "Zainstalowane"
899
 
900
+ #: bws_menu.php:457
901
  msgid "Filter results"
902
  msgstr ""
903
 
904
+ #: bws_menu.php:460 bws_menu.php:589
905
  msgid "Category"
906
  msgstr ""
907
 
908
+ #: bws_menu.php:524
909
  #, fuzzy
910
  msgid "Not installed"
911
  msgstr "Zainstalowane"
912
 
913
+ #: bws_menu.php:528
914
  #, fuzzy
915
  msgid "Renew to get updates"
916
  msgstr "ページに転送"
917
 
918
+ #: bws_menu.php:531
919
  #, fuzzy, php-format
920
  msgid "Update to v %s"
921
  msgstr "Aktualizuj do wersji %s"
922
 
923
+ #: bws_menu.php:543 bws_menu.php:566 bws_menu.php:575
924
  msgid "Install Now"
925
  msgstr "Instaluj teraz"
926
 
927
+ #: bws_menu.php:549 class-bws-settings.php:149 class-bws-settings.php:1073
928
  msgid "Upgrade to Pro"
929
  msgstr ""
930
 
931
+ #: bws_menu.php:563 bws_menu.php:572
 
 
 
 
932
  msgid "Activate this plugin"
933
  msgstr "Aktywuj wtyczkę"
934
 
935
+ #: bws_menu.php:575
936
  #, fuzzy
937
  msgid "Install this plugin"
938
  msgstr "Zainstalowane"
939
 
940
+ #: bws_menu.php:584
941
  msgid "Nothing found. Try another criteria."
942
  msgstr ""
943
 
944
+ #: bws_menu.php:621 bws_menu.php:641
945
  #, php-format
946
  msgid "By %s"
947
  msgstr "Od %s"
948
 
949
+ #: bws_menu.php:648
950
  msgid "Already Installed"
951
  msgstr "Zainstalowane"
952
 
953
+ #: bws_menu.php:659
954
  msgid "Browse Free WordPress Themes"
955
  msgstr ""
956
 
957
+ #: bws_menu.php:668
958
  msgid "Send to support"
959
  msgstr "Wyślij do supportu"
960
 
961
+ #: bws_menu.php:675
962
  msgid "Send to custom email &#187;"
963
  msgstr "Prześlij na własny adres &#187;"
964
 
 
 
 
 
 
 
 
 
 
 
 
 
965
  #: product_list.php:7
966
  msgid "Advertisement"
967
  msgstr ""
999
  msgid "Other"
1000
  msgstr ""
1001
 
1002
+ #: class-bws-settings.php:129
1003
+ msgid "Information"
1004
+ msgstr ""
1005
+
1006
+ #: class-bws-settings.php:136
1007
+ #, fuzzy
1008
+ msgid "Inactive"
1009
+ msgstr "Nieaktywne wtyczki"
1010
+
1011
+ #: class-bws-settings.php:144
1012
+ msgid "Expired"
1013
+ msgstr ""
1014
+
1015
+ #: class-bws-settings.php:147
1016
+ #, php-format
1017
+ msgid "%s day(-s) left"
1018
+ msgstr ""
1019
+
1020
+ #: class-bws-settings.php:153
1021
+ #, fuzzy, php-format
1022
+ msgid "Expired on %s"
1023
+ msgstr "wygasa"
1024
+
1025
+ #: class-bws-settings.php:153
1026
+ msgid "Renew Now"
1027
+ msgstr ""
1028
+
1029
+ #: class-bws-settings.php:155
1030
+ #, fuzzy
1031
+ msgid "Active"
1032
+ msgstr "Aktywuj"
1033
+
1034
+ #: class-bws-settings.php:160
1035
+ #, fuzzy
1036
+ msgid "License"
1037
+ msgstr "Niepoprawny klucz licencji"
1038
+
1039
+ #: class-bws-settings.php:163
1040
+ #, fuzzy
1041
+ msgid "Status"
1042
+ msgstr "Status systemu"
1043
+
1044
+ #: class-bws-settings.php:167
1045
+ #, fuzzy
1046
+ msgid "Version"
1047
+ msgstr "wersji!"
1048
+
1049
+ #: class-bws-settings.php:276
1050
+ #, fuzzy
1051
+ msgid "All plugin settings were restored."
1052
+ msgstr "Ustawienia wtyczki zostały zmienione."
1053
+
1054
+ #: class-bws-settings.php:417
1055
+ msgid "Custom Code"
1056
+ msgstr ""
1057
+
1058
+ #: class-bws-settings.php:432
1059
+ msgid "These code will be added to the header on all pages of your site."
1060
+ msgstr ""
1061
+
1062
+ #: class-bws-settings.php:454
1063
+ #, php-format
1064
+ msgid "Activate custom %s code."
1065
+ msgstr ""
1066
+
1067
+ #: class-bws-settings.php:520
1068
+ msgid "Miscellaneous Settings"
1069
+ msgstr ""
1070
+
1071
+ #: class-bws-settings.php:527 class-bws-settings.php:585
1072
+ #, php-format
1073
+ msgid ""
1074
+ "It is prohibited to change %s settings on this site in the %s network "
1075
+ "settings."
1076
+ msgstr ""
1077
+
1078
+ #: class-bws-settings.php:530 class-bws-settings.php:588
1079
+ #, php-format
1080
+ msgid ""
1081
+ "It is prohibited to view %s settings on this site in the %s network settings."
1082
+ msgstr ""
1083
+
1084
+ #: class-bws-settings.php:536
1085
+ #, fuzzy
1086
+ msgid "Pro Options"
1087
+ msgstr "Pro Plugins"
1088
+
1089
+ #: class-bws-settings.php:539
1090
+ msgid "Enable to display plugin Pro options."
1091
+ msgstr ""
1092
+
1093
+ #: class-bws-settings.php:544
1094
+ msgid "Track Usage"
1095
+ msgstr ""
1096
+
1097
+ #: class-bws-settings.php:547
1098
+ msgid ""
1099
+ "Enable to allow tracking plugin usage anonymously in order to make it better."
1100
+ msgstr ""
1101
+
1102
+ #: class-bws-settings.php:551
1103
+ #, fuzzy
1104
+ msgid "Default Settings"
1105
+ msgstr "Ustawienia"
1106
+
1107
+ #: class-bws-settings.php:553
1108
+ #, fuzzy
1109
+ msgid "Restore Settings"
1110
+ msgstr "Przywróć ustawienia"
1111
+
1112
+ #: class-bws-settings.php:554
1113
+ #, fuzzy
1114
+ msgid "This will restore plugin settings to defaults."
1115
+ msgstr "Przywróć wszystkie ustawienia do wartości domyśłnych"
1116
+
1117
+ #: class-bws-settings.php:578
1118
+ msgid "Import / Export"
1119
+ msgstr ""
1120
+
1121
+ #: class-bws-settings.php:701 class-bws-settings.php:724
1122
+ #: class-bws-settings.php:746
1123
+ #, fuzzy
1124
+ msgid "License Key"
1125
+ msgstr "Niepoprawny klucz licencji"
1126
+
1127
+ #: class-bws-settings.php:714
1128
+ #, fuzzy
1129
+ msgid "Congratulations! Pro license is activated successfully."
1130
+ msgstr "Gratulacje! Licencja do wersji PRO została aktywowana pomyślnie."
1131
+
1132
+ #: class-bws-settings.php:715
1133
+ #, fuzzy, php-format
1134
+ msgid "You will be automatically redirected to the %s in 7 seconds."
1135
+ msgstr "Zostaniesz automatycznie przekierowany w ciągu 5 sekund."
1136
+
1137
+ #: class-bws-settings.php:715
1138
+ #, fuzzy
1139
+ msgid "Settings page"
1140
+ msgstr "設定保存."
1141
+
1142
+ #: class-bws-settings.php:730
1143
+ #, php-format
1144
+ msgid "Enter your license key to activate %s and get premium plugin features."
1145
+ msgstr ""
1146
+
1147
+ #: class-bws-settings.php:751
1148
+ #, fuzzy
1149
+ msgid ""
1150
+ "If necessary, you can check if the license key is correct or reenter it in "
1151
+ "the field below."
1152
+ msgstr ""
1153
+ "Jeśli to konieczne możesz sprawdzić czy klucz jest poprawny lub umieścić go "
1154
+ "w polu poniżej. Możesz znaleźć swój klucz na naszej stronie w strefie - "
1155
+ "Panel Klienta"
1156
+
1157
+ #: class-bws-settings.php:756
1158
+ msgid "Manage License Settings"
1159
+ msgstr ""
1160
+
1161
+ #: class-bws-settings.php:758
1162
+ #, fuzzy
1163
+ msgid "Login to Client Area"
1164
+ msgstr "Panel Klienta"
1165
+
1166
+ #: class-bws-settings.php:760
1167
+ msgid ""
1168
+ "Manage active licenses, download BWS products, and view your payment history "
1169
+ "using BestWebSoft Client Area."
1170
+ msgstr ""
1171
+
1172
+ #: class-bws-settings.php:1044
1173
+ #, fuzzy
1174
+ msgid "Need Help?"
1175
+ msgstr "Potrzebujesz pomocy?"
1176
+
1177
+ #: class-bws-settings.php:1044
1178
+ msgid "Read the Instruction"
1179
+ msgstr ""
1180
+
1181
+ #: class-bws-settings.php:1046
1182
+ msgid "Watch the Video"
1183
+ msgstr ""
1184
+
1185
+ #: class-bws-settings.php:1077
1186
+ #, fuzzy
1187
+ msgid "Start Your Free Trial"
1188
+ msgstr "Rozpocznij swój darmowy %s-dniowy okres testowy"
1189
+
1190
+ #~ msgid "You license for"
1191
+ #~ msgstr "Twoja licencja na"
1192
+
1193
+ #~ msgid "expires on"
1194
+ #~ msgstr "wygasa"
1195
+
1196
+ #~ msgid "This license key is bind to another site"
1197
+ #~ msgstr "Ta licencja została przypisana do innej strony."
1198
+
1199
+ #, fuzzy
1200
+ #~ msgid "Successfully installed the plugin"
1201
+ #~ msgstr "Zainstalowane"
1202
+
1203
+ #, fuzzy
1204
+ #~ msgid "Please, go to %s"
1205
+ #~ msgstr "Proszę przejść do"
1206
+
1207
+ #, fuzzy
1208
+ #~ msgid "Client Area"
1209
+ #~ msgstr "Panel Klienta"
1210
+
1211
+ #~ msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
1212
+ #~ msgstr "Jeśli polubiłeś naszą wtyczkę daj nam 5 gwiazdek"
1213
+
1214
+ #~ msgid "If there is something wrong about it, please contact us"
1215
+ #~ msgstr "Jeśli wystąpią problemy proszę, skontaktuj się z nami"
1216
+
1217
+ #~ msgid "WordPress Version"
1218
+ #~ msgstr "Wersja WordPress"
1219
+
1220
  #~ msgid "You can download and activate"
1221
  #~ msgstr "Możesz pobrać i aktywować wersję"
1222
 
1233
  #~ msgid "Configure Settings"
1234
  #~ msgstr "Konfiguruj Ustawienia"
1235
 
 
 
 
1236
  #~ msgid "Go"
1237
  #~ msgstr "Go"
1238
 
1266
  #~ msgid "Add BWS Plugins Shortcode"
1267
  #~ msgstr "Dodaj BWS Shortcode"
1268
 
 
 
 
1269
  #~ msgid "Activated plugins"
1270
  #~ msgstr "有効なプラグイン"
1271
 
1385
  #~ "'送信者'フィールドに正確なEメール・アドレスを入力して下さい。設定は保存さ"
1386
  #~ "れません。"
1387
 
 
 
 
1388
  #~ msgid ""
1389
  #~ "If you would like to add the Contact Form to your website, just copy and "
1390
  #~ "paste this shortcode to your post or page or widget:"
bws_menu/languages/bestwebsoft-ru_RU.mo CHANGED
Binary file
bws_menu/languages/bestwebsoft-ru_RU.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2016-08-04 15:44+0300\n"
6
- "PO-Revision-Date: 2016-08-04 15:44+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <http://support.bestwebsoft.com>\n"
9
  "Language: ru_RU\n"
@@ -16,23 +16,11 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: bws_functions.php:38 bws_menu.php:282 bws_menu.php:330
20
- msgid "Plugins"
21
- msgstr "Плагины"
22
-
23
- #: bws_functions.php:39 bws_menu.php:283 bws_menu.php:581
24
- msgid "Themes"
25
- msgstr "Темы"
26
-
27
- #: bws_functions.php:40
28
- msgid "System Status"
29
- msgstr "Системная информация"
30
-
31
- #: bws_functions.php:75 bws_functions.php:101
32
  msgid "requires"
33
  msgstr "требует"
34
 
35
- #: bws_functions.php:77
36
  msgid ""
37
  "or higher, that is why it has been deactivated! Please upgrade WordPress and "
38
  "try again."
@@ -40,15 +28,94 @@ msgstr ""
40
  "или выше, поэтому он был деактивирован! Пожалуйста, обновите WordPress и "
41
  "попробуйте еще раз."
42
 
43
- #: bws_functions.php:78
44
  msgid "Back to the WordPress"
45
  msgstr "Вернуться к WordPress на"
46
 
47
- #: bws_functions.php:80
48
  msgid "Plugins page"
49
  msgstr "Страницу плагинов"
50
 
51
- #: bws_functions.php:103
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
52
  msgid ""
53
  "or higher! We do not guarantee that our plugin will work correctly. Please "
54
  "upgrade to WordPress latest version."
@@ -56,246 +123,222 @@ msgstr ""
56
  "или выше! Мы не гарантируем, что наш плагин будет работать корректно. "
57
  "Пожалуйста, обновите WordPress до последней версии."
58
 
59
- #: bws_functions.php:118
60
  msgid "Thank you for installing"
61
  msgstr "Спасибо за установку"
62
 
63
- #: bws_functions.php:119
64
  msgid "Let's get started"
65
  msgstr "Давайте начнем"
66
 
67
- #: bws_functions.php:120 bws_functions.php:153 bws_menu.php:527
68
- #: bws_menu.php:529
69
  msgid "Settings"
70
  msgstr "Настройки"
71
 
72
- #: bws_functions.php:122 bws_functions.php:479 bws_menu.php:298
 
 
73
  msgid "or"
74
  msgstr "или"
75
 
76
- #: bws_functions.php:123 bws_functions.php:155
77
  msgid "Add New"
78
  msgstr "Добавить"
79
 
80
- #: bws_functions.php:127 bws_functions.php:137 bws_functions.php:213
81
- #: bws_functions.php:727 bws_functions.php:831
82
  msgid "Close notice"
83
  msgstr "Закрыть"
84
 
85
- #: bws_functions.php:142
86
  msgid "Thank you for installing plugins by BestWebSoft!"
87
  msgstr "Спасибо за установку плагинов компании BestWebSoft!"
88
 
89
- #: bws_functions.php:144
90
  msgid "More Details"
91
  msgstr "Детали"
92
 
93
- #: bws_functions.php:145
94
  msgid "Less Details"
95
  msgstr "Скрыть детали"
96
 
97
- #: bws_functions.php:218
 
 
 
 
 
 
 
 
 
 
 
98
  msgid "It’s time to upgrade your"
99
  msgstr "Настало время обновить Ваш"
100
 
101
- #: bws_functions.php:218
102
  msgid "to"
103
  msgstr "до"
104
 
105
- #: bws_functions.php:218
106
  msgid "version!"
107
  msgstr "версии!"
108
 
109
- #: bws_functions.php:219
110
  msgid "Extend standard plugin functionality with new great options."
111
  msgstr "Расширяет возможности стандартного функционала плагина."
112
 
113
- #: bws_functions.php:222 bws_functions.php:666 bws_menu.php:597
114
- msgid "Learn More"
115
- msgstr "Подробнее"
116
-
117
- #: bws_functions.php:239
118
- msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
119
  msgstr ""
120
- "Если вам понравился плагин, пожалуйста, поставьте нам 5 звезд на WordPress"
121
-
122
- #: bws_functions.php:240
123
- msgid "Rate the plugin"
124
- msgstr "Оценить плагин"
125
-
126
- #: bws_functions.php:243
127
- msgid "If there is something wrong about it, please contact us"
128
- msgstr "Если у вас есть какие-то вопросы, обращайтесь"
129
 
130
- #: bws_functions.php:247
131
- msgid "Donations play an important role in supporting great projects"
132
- msgstr "Пожертвования играют важную роль в поддержке проектов"
133
-
134
- #: bws_functions.php:277
135
- msgid "Check premium options on the plugin settings page!"
136
- msgstr "Просмотрите премиум опции на странице настроек плагина!"
137
-
138
- #: bws_functions.php:284 bws_functions.php:320 bws_menu.php:87
139
- #: bws_menu.php:114
140
- msgid "Wrong license key"
141
- msgstr "Неправильный лицензионный ключ"
142
 
143
- #: bws_functions.php:314 bws_functions.php:578 bws_functions.php:629
144
- #: bws_menu.php:108
145
  msgid ""
146
- "Something went wrong. Please try again later. If the error appears again, "
147
- "please contact us"
148
  msgstr ""
149
- "Что-то пошло не так. Повторите попытку позже. Если ошибка появится снова, "
150
- "пожалуйста, свяжитесь с нами"
 
151
 
152
- #: bws_functions.php:314 bws_functions.php:578 bws_functions.php:629
153
- #: bws_menu.php:108
154
- msgid "We are sorry for inconvenience."
155
- msgstr "Приносим извинения за неудобства."
156
 
157
- #: bws_functions.php:322
158
- msgid "This license key is bind to another site"
159
- msgstr "Этот лицензионный ключ привязан к другому сайту"
 
160
 
161
- #: bws_functions.php:324 bws_functions.php:488
162
- msgid ""
163
- "Unfortunately, you have exceeded the number of available tries per day. "
164
- "Please, upload the plugin manually."
165
- msgstr ""
166
- "К сожалению, вы превысили количество доступных попыток в день. Пожалуйста, "
167
- "загрузите плагин вручную."
168
 
169
- #: bws_functions.php:326 bws_menu.php:120
170
- msgid ""
171
- "Unfortunately, Your license has expired. To continue getting top-priority "
172
- "support and plugin updates you should extend it in your"
173
- msgstr ""
174
- "К сожалению, время использования вашей лицензии истекло. Для получения "
175
- "обновлений приоритетного саппорта вам нужно продлить лицензию перейдя на "
176
- "вашей"
177
 
178
- #: bws_functions.php:328 bws_menu.php:122
179
  msgid ""
180
- "Unfortunately, the Pro licence was already installed to this domain. The Pro "
181
- "Trial license can be installed only once."
182
  msgstr ""
183
- "К сожалению, Pro лицензия уже была установлена на этом доменен. Pro Trial "
184
- "лицензия может быть установлена только один раз."
185
 
186
- #: bws_functions.php:349 bws_functions.php:371 bws_functions.php:393
187
- #: bws_menu.php:370 bws_menu.php:401 bws_menu.php:412
188
- msgid "Failed to download the zip archive. Please, upload the plugin manually"
189
- msgstr ""
190
- "Не удалось загрузить архив плагина. Пожалуйста, загрузите плагин вручную"
191
 
192
- #: bws_functions.php:361 bws_menu.php:387
193
- msgid "Failed to open the zip archive. Please, upload the plugin manually"
194
- msgstr "Не удалось открыть архив ZIP. Пожалуйста, загрузите плагин вручную"
195
 
196
- #: bws_functions.php:367 bws_menu.php:394
197
- msgid ""
198
- "Your server does not support either ZipArchive or Phar. Please, upload the "
199
- "plugin manually"
200
- msgstr ""
201
- "Ваш сервер не поддерживает ни библиотеку ZipArchive, ни библиотеку Phar. "
202
- "Пожалуйста, загрузите плагин вручную"
203
 
204
- #: bws_functions.php:374 bws_menu.php:404
205
- msgid "UploadDir is not writable. Please, upload the plugin manually"
206
  msgstr ""
207
- "Папка загрузки не доступна для записи. Пожалуйста, загрузите плагин вручную"
 
208
 
209
- #: bws_functions.php:397 bws_menu.php:139
210
- msgid ""
211
- "Something went wrong. Try again later or upload the plugin manually. We are "
212
- "sorry for inconvenience."
213
- msgstr ""
214
- "Что-то пошло не так. Повторите попытку позже или загрузите плагин вручную. "
215
- "Приносим извинения за неудобства."
216
 
217
- #: bws_functions.php:422
218
- msgid "Please, enter Your license key"
219
- msgstr "Пожалуйста, введите ваш лицензионный ключ"
220
 
221
- #: bws_functions.php:452
222
- msgid ""
223
- "Congratulations! Pro version of the plugin is successfully installed and "
224
- "activated."
225
- msgstr "Поздравляем! Pro версия плагина была успешно загружена и активирована."
226
 
227
- #: bws_functions.php:454 bws_functions.php:545
228
- msgid "Please, go to"
229
- msgstr "Пожалуйста, перейдите на"
230
 
231
- #: bws_functions.php:454 bws_functions.php:545
232
- msgid "the setting page"
233
- msgstr "страницу настроек"
234
 
235
- #: bws_functions.php:455 bws_functions.php:546
236
- msgid "You will be redirected automatically in 5 seconds."
237
- msgstr "Вы будете перенаправлены автоматически через 5 секунд."
238
 
239
- #: bws_functions.php:462
240
- msgid "Show Pro features"
241
- msgstr "Показать Pro опции"
242
 
243
- #: bws_functions.php:469
244
- msgid "Enter your license key to install and activate"
245
- msgstr "Введите лицензионный ключ для установки и активации"
246
 
247
- #: bws_functions.php:471
248
- msgid "version of the plugin."
249
- msgstr "версия плагина."
250
 
251
- #: bws_functions.php:473 bws_functions.php:514
252
- msgid "License key can be found in the"
253
- msgstr "Лицензионный ключ можно найти в"
254
 
255
- #: bws_functions.php:475 bws_functions.php:516
256
- msgid "(your username is the email address specified during the purchase)."
257
- msgstr "(ваше имя пользователя - это емейл, указанный при покупке)."
258
 
259
- #: bws_functions.php:479
260
- #, php-format
261
- msgid "Start Your Free %s-Day Trial Now"
262
- msgstr "Попробуйте %s-дневную Trial версию бесплатно"
263
 
264
- #: bws_functions.php:485 bws_functions.php:494 bws_functions.php:524
265
- #: bws_functions.php:532 bws_functions.php:1401 bws_menu.php:315
266
- #: bws_menu.php:533 bws_menu.php:542
267
- msgid "Activate"
268
- msgstr "Активировать"
269
 
270
- #: bws_functions.php:511 bws_functions.php:604
271
- #, php-format
 
 
 
 
 
272
  msgid ""
273
- "In order to continue using the plugin it is necessary to buy a %s license."
 
274
  msgstr ""
275
- "Чтобы продолжить пользоваться плагином, необходимо приобрести %s лицензию."
276
-
277
- #: bws_functions.php:512
278
- msgid "After that you can activate it by entering your license key."
279
- msgstr "После этого вы сможете активировать его введя лицензионный ключ."
280
-
281
- #: bws_functions.php:526 bws_menu.php:118 bws_menu.php:304
282
- msgid "Unfortunately, you have exceeded the number of available tries per day."
283
- msgstr "К сожалению, вы превысили количество доступных попыток."
284
 
285
- #: bws_functions.php:543
286
- msgid ""
287
- "Congratulations! The Pro license of the plugin is successfully activated."
288
- msgstr "Поздравляем! Pro версия плагина была успешно активирована."
 
289
 
290
- #: bws_functions.php:584
 
291
  msgid "Wrong license key."
292
  msgstr "Неправильный лицензионный ключ."
293
 
294
- #: bws_functions.php:586
295
- msgid "This license key is bind to another site."
 
296
  msgstr "Этот лицензионный ключ привязан к другому сайту."
297
 
298
- #: bws_functions.php:588
299
  msgid ""
300
  "This license key is valid, but Your license has expired. If you want to "
301
  "update our plugin in future, you should extend the license."
@@ -303,11 +346,11 @@ msgstr ""
303
  "Лицензионный ключ принят, но срок действия лицензии истек. Если вы хотите "
304
  "обновлять плагин в будущем, вы должны продлить лицензию."
305
 
306
- #: bws_functions.php:590
307
  msgid "Unfortunately, you have exceeded the number of available tries."
308
  msgstr "К сожалению, вы превысили количество доступных попыток."
309
 
310
- #: bws_functions.php:592
311
  msgid ""
312
  "Unfortunately, the Pro Trial licence was already installed to this domain. "
313
  "The Pro Trial license can be installed only once."
@@ -315,33 +358,40 @@ msgstr ""
315
  "К сожалению, Pro Trial версия плагина уже устанавливалась на этот домен. Pro "
316
  "Trial версию можно устанавливать лишь один раз."
317
 
318
- #: bws_functions.php:596
319
  msgid "The Pro Trial license key is valid."
320
  msgstr "Ключ Pro Trial версии действителен."
321
 
322
- #: bws_functions.php:598 bws_menu.php:128
323
  msgid "The license key is valid."
324
  msgstr "Лицензионный ключ действителен."
325
 
326
- #: bws_functions.php:601 bws_menu.php:130
327
  msgid "Your license will expire on"
328
  msgstr "Ваша лицензия истечет"
329
 
330
- #: bws_functions.php:634
 
 
 
 
 
 
 
331
  msgid "Please, enter your license key"
332
  msgstr "Пожалуйста, введите Ваш лицензионный ключ"
333
 
334
- #: bws_functions.php:647
335
  msgid ""
336
- "If needed you can check if the license key is correct or reenter it in the "
337
- "field below. You can find your license key on your personal page - Client "
338
- "area - on our website"
339
  msgstr ""
340
  "При необходимости вы можете проверить валидность лицензионного ключа или "
341
  "повторно ввести его в поле ниже. Вы можете найти ваш лицензионный ключ на "
342
- "своей личной странице - Client area - на нашем сайте"
343
 
344
- #: bws_functions.php:647
345
  msgid ""
346
  "(your username is the email address specified during the purchase). If "
347
  "necessary, please submit \"Lost your password?\" request."
@@ -349,206 +399,152 @@ msgstr ""
349
  "(ваше имя пользователя - это емейл, указанный при покупке). При "
350
  "необходимости нажмите \"Забыли пароль?\"."
351
 
352
- #: bws_functions.php:651 bws_menu.php:306 bws_menu.php:317
 
353
  msgid "Check license key"
354
  msgstr "Проверка лицензионного ключа"
355
 
356
- #: bws_functions.php:666
357
- msgid "WARNING: Illegal use notification"
358
- msgstr "ВНИМАНИЕ: уведомление о незаконном использовании"
359
-
360
- #: bws_functions.php:666
361
- msgid ""
362
- "You can use one license of the Pro plugin for one domain only. Please check "
363
- "and edit your license or domain if necessary using you personal Client Area. "
364
- "We strongly recommend you to solve the problem within 24 hours, otherwise "
365
- "the Pro plugin will be deactivated."
366
- msgstr ""
367
- "Вы можете использовать одну лицензию Pro плагина только для одного домена. "
368
- "Пожалуйста, проверьте и отредактируйте при необходимости лицензию или домен, "
369
- "используя Ваш личный Client Area. Мы настоятельно рекомендуем вам решить "
370
- "проблему в течение 24 часов, в противном случае плагин будет деактивирован."
371
-
372
- #: bws_functions.php:675
373
- msgid ""
374
- "Notice: Your Pro Trial license has expired. To continue using the plugin you "
375
- "should buy a Pro license"
376
- msgstr ""
377
- "Внимание: Срок действия Pro Trial версии истек. Чтобы продолжить "
378
- "пользоваться плагином, пожалуйста, приобретите лицензию Pro"
379
-
380
- #: bws_functions.php:677
381
- msgid ""
382
- "Your license has expired. To continue getting top-priority support and "
383
- "plugin updates you should extend it."
384
- msgstr ""
385
- "Время использования вашей лицензии истекло. Если вы хотите обновлять ваш "
386
- "плагин в дальнейшем и иметь приоритетную тех.поддержку, то вам нужно "
387
- "продлить лицензию."
388
-
389
- #: bws_functions.php:677 bws_functions.php:731 bws_functions.php:1356
390
- msgid "Learn more"
391
- msgstr "Подробнее"
392
-
393
- #: bws_functions.php:688
394
- #, php-format
395
- msgid "Notice: You are using the Pro Trial license of %s plugin."
396
- msgstr "Внимание: Вы используете Pro Trial версию плагина %s."
397
-
398
- #: bws_functions.php:690
399
- msgid "Notice: You are using the Pro Trial license of plugin."
400
- msgstr "Внимание: Вы используете Pro Trial версию плагина."
401
-
402
- #: bws_functions.php:693
403
- msgid "The Pro Trial license will expire on"
404
- msgstr "Ваша лицензия Pro Trial версии плагина истекает"
405
-
406
- #: bws_functions.php:731
407
- msgid "You license for"
408
- msgstr "Ваш лицензионный ключ для"
409
-
410
- #: bws_functions.php:731
411
- msgid "expires on"
412
- msgstr "истекает"
413
-
414
- #: bws_functions.php:731
415
- msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
416
- msgstr "и вы не будете получать приоритетную тех.поддержку или обновления."
417
-
418
- #: bws_functions.php:826
419
- msgid "Thank you for choosing"
420
- msgstr "Спасибо за выбор"
421
-
422
- #: bws_functions.php:827
423
- msgid ""
424
- "If you have a feature, suggestion or idea you'd like to see in the plugin, "
425
- "we'd love to hear about it!"
426
- msgstr ""
427
- "Если у вас есть предложения по добавлению нового или улучшению текущего "
428
- "функционала плагина, пожалуйста, присылайте их нам! Мы вседа открыты для "
429
- "новых идей!"
430
 
431
- #: bws_functions.php:828
432
- msgid "Suggest a Feature"
433
- msgstr "Предложить функционал"
434
 
435
- #: bws_functions.php:844
436
- msgid "Notice"
437
- msgstr "Внимание"
438
 
439
- #: bws_functions.php:844
440
- msgid "The plugin's settings have been changed."
441
- msgstr "Настройки плагина были изменены"
 
 
442
 
443
- #: bws_functions.php:845 bws_functions.php:1412
444
- msgid "Save Changes"
445
- msgstr "Сохранить изменения"
446
 
447
- #: bws_functions.php:859
448
  msgid ""
449
- "You can always look at premium options by clicking on the \"Show Pro features"
450
- "\" in the \"Go PRO\" tab"
451
- msgstr ""
452
- "Вы всегда можете просмотреть премиум опции нажав на кнопку \"Показать Pro "
453
- "опции\" на вкладке \"Перейти на PRO\""
454
 
455
- #: bws_functions.php:988
456
- msgid "Add shortcode"
457
- msgstr "Добавить шорткод"
458
-
459
- #: bws_functions.php:988
460
- msgid "Add BestWebSoft plugins' shortcodes using this button."
461
- msgstr "Добавьте шорткоды BestWebSoft плагинов с помощью этой кнопки."
462
-
463
- #: bws_functions.php:1037
464
- msgid "Close"
465
- msgstr "Закрыть"
466
 
467
- #: bws_functions.php:1129
468
- msgid "Restore all plugin settings to defaults"
469
- msgstr "Восстановить все настройки плагина к настройкам по умолчанию"
470
 
471
- #: bws_functions.php:1131
472
- msgid "Restore settings"
473
- msgstr "Восстановить настройки"
474
 
475
- #: bws_functions.php:1142
476
- msgid "Are you sure you want to restore all settings by default?"
477
- msgstr ""
478
- "Вы уверены что хотите восстановить все настройки плагина к настройкам по "
479
- "умолчанию?"
480
 
481
- #: bws_functions.php:1145
482
- msgid "Yes, restore all settings"
483
- msgstr "Да, восстановить все настройки"
484
 
485
- #: bws_functions.php:1146
486
- msgid "No, go back to the settings page"
487
- msgstr "Нет, вернуться на страницу настроек"
 
 
 
 
 
488
 
489
- #: bws_functions.php:1192
490
- msgid "Plugin"
491
- msgstr "Плагин"
 
 
 
 
 
 
492
 
493
- #: bws_functions.php:1201
494
- msgid "Shortcode settings"
495
- msgstr "Настройки шорткода"
 
 
 
 
496
 
497
- #: bws_functions.php:1206
498
- msgid "The shortcode will be inserted"
499
- msgstr "Будет вставлен шорткод"
 
 
 
500
 
501
- #: bws_functions.php:1211
502
- msgid "Insert"
503
- msgstr "Вставить"
504
 
505
- #: bws_functions.php:1244
506
- msgid "Visit Help Center"
507
- msgstr "Перейти в Help Center"
 
 
 
 
508
 
509
- #: bws_functions.php:1249
510
- msgid "FAQ"
511
- msgstr "FAQ"
 
512
 
513
- #: bws_functions.php:1255
514
- msgid "For more information:"
515
- msgstr "Для дополнительной информации:"
 
 
 
 
516
 
517
- #: bws_functions.php:1256
518
- msgid "Documentation"
519
- msgstr "Документация"
520
 
521
- #: bws_functions.php:1257
522
- msgid "Video Instructions"
523
- msgstr "Видео инструкции"
524
 
525
- #: bws_functions.php:1258
526
- msgid "Submit a Request"
527
- msgstr "Отправить запрос"
528
 
529
- #: bws_functions.php:1269
530
  msgid "You do not have sufficient permissions to edit plugins for this site."
531
  msgstr ""
532
  "У вас недостаточно полномочий, чтобы редактировать плагины на этом сайте."
533
 
534
- #: bws_functions.php:1320 bws_functions.php:1347
535
  #, php-format
536
  msgid "File %s edited successfully."
537
  msgstr "Файл %s успешно изменён."
538
 
539
- #: bws_functions.php:1322 bws_functions.php:1349
540
  msgid "Not enough permissions to create or update the file"
541
  msgstr "Не достаточно прав для создания или обновления файла"
542
 
543
- #: bws_functions.php:1352
544
  msgid "Not enough permissions to create the file"
545
  msgstr "Не достаточно прав для создания файла"
546
 
547
- #: bws_functions.php:1390
548
  msgid "These styles will be added to the header on all pages of your site."
549
  msgstr "Эти стили будут добавлены в хедер на всех страницах вашего сайта."
550
 
551
- #: bws_functions.php:1392
552
  #, php-format
553
  msgid ""
554
  "This PHP code will be hooked to the %s action and will be printed on front "
@@ -557,20 +553,20 @@ msgstr ""
557
  "Этот PHP код будет прикреплен к %s аction и будет добавлен только во "
558
  "фронтенде."
559
 
560
- #: bws_functions.php:1396
561
  msgid "Editing"
562
  msgstr "Редактирование"
563
 
564
- #: bws_functions.php:1398
565
  msgid "Browsing"
566
  msgstr "Просмотр"
567
 
568
- #: bws_functions.php:1405
569
  #, php-format
570
  msgid "Learn more about %s"
571
  msgstr "Подробнее о %s"
572
 
573
- #: bws_functions.php:1416
574
  #, php-format
575
  msgid ""
576
  "You need to make this files writable before you can save your changes. See "
@@ -579,188 +575,236 @@ msgstr ""
579
  "Чтобы сохранить изменения, нужно сделать этот файл доступным для записи. "
580
  "Дополнительную информацию можно получить в %s Кодексе %s."
581
 
582
- #: bws_menu.php:116
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
583
  msgid ""
584
- "This license key is bind to another website. Change it via personal Client "
585
  "Area."
586
  msgstr ""
587
  "Этот лицензионный ключ привязан к другому сайту. Измените это в Client Area."
588
 
589
- #: bws_menu.php:116
590
  msgid "Log in"
591
  msgstr "Авторизоваться"
592
 
593
- #: bws_menu.php:132
594
- msgid "Congratulations! Pro Membership license is successfully activated."
595
  msgstr "Поздравляем! Pro Membership лицензия успешно активирована."
596
 
597
- #: bws_menu.php:149
598
  msgid "Please enter your license key."
599
  msgstr "Пожалуйста, введите Ваш лицензионный ключ."
600
 
601
- #: bws_menu.php:161
602
  msgid "Not set"
603
  msgstr "Не задан"
604
 
605
- #: bws_menu.php:163 bws_menu.php:164
606
  msgid "On"
607
  msgstr "Вкл"
608
 
609
- #: bws_menu.php:163 bws_menu.php:164
610
  msgid "Off"
611
  msgstr "Выкл"
612
 
613
- #: bws_menu.php:165 bws_menu.php:166 bws_menu.php:167 bws_menu.php:168
614
- #: bws_menu.php:169 bws_menu.php:181
615
  msgid "N/A"
616
  msgstr "Неизвестно"
617
 
618
- #: bws_menu.php:169
619
  msgid " Mb"
620
  msgstr "Mb"
621
 
622
- #: bws_menu.php:170 bws_menu.php:171 bws_menu.php:172 bws_menu.php:177
623
  msgid "Yes"
624
  msgstr "Да"
625
 
626
- #: bws_menu.php:170 bws_menu.php:171 bws_menu.php:172 bws_menu.php:179
627
  msgid "No"
628
  msgstr "Нет"
629
 
630
- #: bws_menu.php:190
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
631
  msgid "Operating System"
632
  msgstr "Операционная система"
633
 
634
- #: bws_menu.php:191
635
  msgid "Server"
636
  msgstr "Тип сервера"
637
 
638
- #: bws_menu.php:192
639
- msgid "Memory usage"
640
- msgstr "Памяти использовано"
641
-
642
- #: bws_menu.php:193
643
- msgid "MYSQL Version"
644
- msgstr "Версия MYSQL"
645
-
646
- #: bws_menu.php:194
647
- msgid "SQL Mode"
648
- msgstr "Режим SQL"
649
-
650
- #: bws_menu.php:195
651
  msgid "PHP Version"
652
  msgstr "Версия PHP"
653
 
654
- #: bws_menu.php:196
655
  msgid "PHP Safe Mode"
656
  msgstr "PHP Safe Mode"
657
 
658
- #: bws_menu.php:197
659
  msgid "PHP Allow URL fopen"
660
  msgstr "PHP Allow URL fopen"
661
 
662
- #: bws_menu.php:198
663
  msgid "PHP Memory Limit"
664
  msgstr "Лимит памяти"
665
 
666
- #: bws_menu.php:199
 
 
 
 
667
  msgid "PHP Max Upload Size"
668
  msgstr "Макс. размер загружаемого файла"
669
 
670
- #: bws_menu.php:200
671
  msgid "PHP Max Post Size"
672
  msgstr "Макс. размер записи"
673
 
674
- #: bws_menu.php:201
675
  msgid "PHP Max Script Execute Time"
676
  msgstr "Макс. время выполнения сценария"
677
 
678
- #: bws_menu.php:202
679
  msgid "PHP Exif support"
680
  msgstr "Поддержка PHP Exif"
681
 
682
- #: bws_menu.php:203
683
  msgid "PHP IPTC support"
684
  msgstr "Поддержка PHP IPTC"
685
 
686
- #: bws_menu.php:204
687
  msgid "PHP XML support"
688
  msgstr "Поддержка PHP XML"
689
 
690
- #: bws_menu.php:205
691
- msgid "Site URL"
692
- msgstr "Адрес сайта"
693
 
694
- #: bws_menu.php:206
695
- msgid "Home URL"
696
- msgstr "Основной адрес сайта"
697
 
698
- #: bws_menu.php:209
699
- msgid "WordPress Version"
700
- msgstr "Версия WordPress"
701
 
702
- #: bws_menu.php:210
703
- msgid "WordPress DB Version"
704
- msgstr "Версия базы данных WordPress"
705
 
706
- #: bws_menu.php:211
707
- msgid "Multisite"
708
- msgstr "Мультиблог"
709
 
710
- #: bws_menu.php:212
711
- msgid "Active Theme"
712
- msgstr "Текущая тема"
713
 
714
- #: bws_menu.php:226
715
  msgid "Please enter a valid email address."
716
  msgstr "Пожалуйста, введите валидный емайл."
717
 
718
- #: bws_menu.php:230
719
- msgid "Email with system info is sent to "
720
  msgstr "Емейл с системной информацией отправлен на"
721
 
722
- #: bws_menu.php:234
723
  msgid "Thank you for contacting us."
724
  msgstr "Спасибо что связались с нами."
725
 
726
- #: bws_menu.php:267
727
  msgid "Sorry, email message could not be delivered."
728
  msgstr "Извините, ваш емейл не может быть отправлен."
729
 
730
- #: bws_menu.php:286 bws_menu.php:632
731
  msgid "System status"
732
  msgstr "Системная информация"
733
 
734
- #: bws_menu.php:287
735
  msgid "Support"
736
  msgstr "Тех. поддержка"
737
 
738
- #: bws_menu.php:288
739
  msgid "Manage purchased licenses & subscriptions"
740
  msgstr "Управление купленными лицензиями и подписками"
741
 
742
- #: bws_menu.php:288
743
- msgid "Client Area"
744
- msgstr "Client Area"
745
-
746
- #: bws_menu.php:296
747
  #, php-format
748
  msgid "Get Access to %s+ Premium Plugins"
749
  msgstr "Получить Доступ к %s+ Премиум Плагинам"
750
 
751
- #: bws_menu.php:298
752
  msgid "Subscribe to Pro Membership"
753
  msgstr "Подписаться на Pro Membership"
754
 
755
- #: bws_menu.php:309
756
  msgid "Enter your license key"
757
  msgstr "Ваш лицензионный ключ"
758
 
759
- #: bws_menu.php:331
760
  msgid "Upload Plugin"
761
  msgstr "Добавить новый"
762
 
763
- #: bws_menu.php:335
764
  #, php-format
765
  msgid ""
766
  "The plugin generated %d characters of <strong>unexpected output</strong> "
@@ -773,7 +817,7 @@ msgstr ""
773
  "проблемы с RSS-лентами или другие неполадки, попробуйте деактивировать или "
774
  "удалить этот плагин."
775
 
776
- #: bws_menu.php:337
777
  msgid ""
778
  "Plugin could not be activated because it triggered a <strong>fatal error</"
779
  "strong>."
@@ -781,128 +825,113 @@ msgstr ""
781
  "Плагин не может быть активирован, поскольку он вызвал <strong>фатальную "
782
  "ошибку</strong>."
783
 
784
- #: bws_menu.php:340
785
  msgid "Plugin <strong>activated</strong>."
786
  msgstr "Плагин <strong>активировано</strong>."
787
 
788
- #: bws_menu.php:347
789
  msgid "Installing Plugin"
790
  msgstr "Установка плагина"
791
 
792
- #: bws_menu.php:353
793
  msgid "Downloading install package from"
794
  msgstr "Скачивание установочного пакета из"
795
 
796
- #: bws_menu.php:378
797
  msgid "Unpacking the package"
798
  msgstr "Распаковка пакета"
799
 
800
- #: bws_menu.php:383 bws_menu.php:391
801
  msgid "Installing the plugin"
802
  msgstr "Установка плагина"
803
 
804
- #: bws_menu.php:397
805
- msgid "Successfully installed the plugin"
806
- msgstr "Успешно установлен плагин"
 
807
 
808
- #: bws_menu.php:409
809
  msgid "Activate Plugin"
810
  msgstr "Активировать плагин"
811
 
812
- #: bws_menu.php:409 bws_menu.php:415
813
  msgid "Return to BestWebSoft Panel"
814
  msgstr "Возврат к BestWebSoft Panel"
815
 
816
- #: bws_menu.php:419 bws_menu.php:434 bws_menu.php:563
817
  msgid "All"
818
  msgstr "Все"
819
 
820
- #: bws_menu.php:420 bws_menu.php:620
821
  msgid "Installed"
822
  msgstr "Установленные"
823
 
824
- #: bws_menu.php:421
825
  msgid "Not Installed"
826
  msgstr "Не установленные"
827
 
828
- #: bws_menu.php:427
829
  msgid "Filter results"
830
  msgstr "Фильтр результатов"
831
 
832
- #: bws_menu.php:430 bws_menu.php:559
833
  msgid "Category"
834
  msgstr "Категория"
835
 
836
- #: bws_menu.php:494
837
  msgid "Not installed"
838
  msgstr "Не установлен"
839
 
840
- #: bws_menu.php:498
841
  msgid "Renew to get updates"
842
  msgstr "Продлить для обновления"
843
 
844
- #: bws_menu.php:501
845
  #, php-format
846
  msgid "Update to v %s"
847
  msgstr "Обновить до версии %s"
848
 
849
- #: bws_menu.php:513 bws_menu.php:536 bws_menu.php:545
850
  msgid "Install Now"
851
  msgstr "Установить"
852
 
853
- #: bws_menu.php:519
854
  msgid "Upgrade to Pro"
855
  msgstr "Обновиться на Pro"
856
 
857
- #: bws_menu.php:523
858
- msgid "Donate"
859
- msgstr "Пожертвовать"
860
-
861
- #: bws_menu.php:533 bws_menu.php:542
862
  msgid "Activate this plugin"
863
  msgstr "Активировать плагин"
864
 
865
- #: bws_menu.php:545
866
  msgid "Install this plugin"
867
  msgstr "Установить этот плагин"
868
 
869
- #: bws_menu.php:554
870
  msgid "Nothing found. Try another criteria."
871
  msgstr "Ничего не найдено. Попробуйте другие критерии."
872
 
873
- #: bws_menu.php:591 bws_menu.php:611
874
  #, php-format
875
  msgid "By %s"
876
  msgstr "%s"
877
 
878
- #: bws_menu.php:618
879
  msgid "Already Installed"
880
  msgstr "Уже установлена"
881
 
882
- #: bws_menu.php:629
883
  msgid "Browse Free WordPress Themes"
884
  msgstr "Обзор бесплатных WordPress тем"
885
 
886
- #: bws_menu.php:638
887
  msgid "Send to support"
888
  msgstr "Отправить в тех. поддержку"
889
 
890
- #: bws_menu.php:645
891
  msgid "Send to custom email &#187;"
892
  msgstr "Отправить на емейл &#187;"
893
 
894
- #: bws_menu.php:652
895
- msgid "Environment"
896
- msgstr "Системная среда"
897
-
898
- #: bws_menu.php:663
899
- msgid "Active Plugins"
900
- msgstr "Активированные плагины"
901
-
902
- #: bws_menu.php:676
903
- msgid "Inactive Plugins"
904
- msgstr "Неактивированные плагины"
905
-
906
  #: product_list.php:7
907
  msgid "Advertisement"
908
  msgstr "Реклама"
@@ -939,6 +968,218 @@ msgstr "Утилиты"
939
  msgid "Other"
940
  msgstr "Другое"
941
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
942
  #~ msgid "Activate Membership"
943
  #~ msgstr "Активировать Membership"
944
 
@@ -978,9 +1219,6 @@ msgstr "Другое"
978
  #~ msgid "Configure Settings"
979
  #~ msgstr "Настройка параметров"
980
 
981
- #~ msgid "Need help?"
982
- #~ msgstr "Нужна помощь?"
983
-
984
  #~ msgid "Go"
985
  #~ msgstr "Перейти на"
986
 
@@ -1027,9 +1265,6 @@ msgstr "Другое"
1027
  #~ msgid "Switch to new interface"
1028
  #~ msgstr "Переключится на новый интерфейс"
1029
 
1030
- #~ msgid "Pro plugins"
1031
- #~ msgstr "Pro плагины"
1032
-
1033
  #~ msgid "Activated plugins"
1034
  #~ msgstr "Активированные плагины"
1035
 
@@ -1054,9 +1289,6 @@ msgstr "Другое"
1054
  #~ msgid "Customize &#8220;%s&#8221;"
1055
  #~ msgstr "Кастомизировать &#8220;%s&#8221;"
1056
 
1057
- #~ msgid "Customize"
1058
- #~ msgstr "Кастомизировать"
1059
-
1060
  #~ msgid "Installed themes"
1061
  #~ msgstr "Установленные темы"
1062
 
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-01-25 17:11+0300\n"
6
+ "PO-Revision-Date: 2017-01-25 17:15+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <http://support.bestwebsoft.com>\n"
9
  "Language: ru_RU\n"
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: bws_functions.php:72 bws_functions.php:190
 
 
 
 
 
 
 
 
 
 
 
 
20
  msgid "requires"
21
  msgstr "требует"
22
 
23
+ #: bws_functions.php:74
24
  msgid ""
25
  "or higher, that is why it has been deactivated! Please upgrade WordPress and "
26
  "try again."
28
  "или выше, поэтому он был деактивирован! Пожалуйста, обновите WordPress и "
29
  "попробуйте еще раз."
30
 
31
+ #: bws_functions.php:75
32
  msgid "Back to the WordPress"
33
  msgstr "Вернуться к WordPress на"
34
 
35
+ #: bws_functions.php:77
36
  msgid "Plugins page"
37
  msgstr "Страницу плагинов"
38
 
39
+ #: bws_functions.php:91
40
+ msgid "Like the plugin?"
41
+ msgstr "Понравился плагин?"
42
+
43
+ #: bws_functions.php:93
44
+ msgid "Rate it"
45
+ msgstr "Оценить"
46
+
47
+ #: bws_functions.php:102
48
+ msgid "Need help?"
49
+ msgstr "Нужна помощь?"
50
+
51
+ #: bws_functions.php:103 bws_functions.php:914
52
+ msgid "Visit Help Center"
53
+ msgstr "Перейти в Help Center"
54
+
55
+ #: bws_functions.php:106
56
+ msgid "Want to support the plugin?"
57
+ msgstr "Хотите поддержать плагин?"
58
+
59
+ #: bws_functions.php:107 bws_menu.php:553
60
+ msgid "Donate"
61
+ msgstr "Пожертвовать"
62
+
63
+ #: bws_functions.php:127
64
+ msgid "WARNING: Illegal use notification"
65
+ msgstr "ВНИМАНИЕ: уведомление о незаконном использовании"
66
+
67
+ #: bws_functions.php:127
68
+ msgid ""
69
+ "You can use one license of the Pro plugin for one domain only. Please check "
70
+ "and edit your license or domain if necessary using you personal Client Area. "
71
+ "We strongly recommend you to solve the problem within 24 hours, otherwise "
72
+ "the Pro plugin will be deactivated."
73
+ msgstr ""
74
+ "Вы можете использовать одну лицензию Pro плагина только для одного домена. "
75
+ "Пожалуйста, проверьте и отредактируйте при необходимости лицензию или домен, "
76
+ "используя Ваш личный Client Area. Мы настоятельно рекомендуем вам решить "
77
+ "проблему в течение 24 часов, в противном случае плагин будет деактивирован."
78
+
79
+ #: bws_functions.php:127 bws_functions.php:339 bws_menu.php:627
80
+ #: class-bws-settings.php:136
81
+ msgid "Learn More"
82
+ msgstr "Подробнее"
83
+
84
+ #: bws_functions.php:144
85
+ msgid ""
86
+ "Notice: Your Pro Trial license has expired. To continue using the plugin, "
87
+ "you should buy a Pro license"
88
+ msgstr ""
89
+ "Внимание: Срок действия Pro Trial версии истек. Чтобы продолжить "
90
+ "пользоваться плагином, пожалуйста, приобретите Pro лицензию"
91
+
92
+ #: bws_functions.php:146
93
+ msgid ""
94
+ "Your license has expired. To continue getting top-priority support and "
95
+ "plugin updates, you should extend it."
96
+ msgstr ""
97
+ "Время использования вашей лицензии истекло. Если вы хотите обновлять ваш "
98
+ "плагин в дальнейшем и иметь приоритетную тех.поддержку, то вам нужно "
99
+ "продлить лицензию."
100
+
101
+ #: bws_functions.php:146 bws_functions.php:382 deprecated.php:584
102
+ msgid "Learn more"
103
+ msgstr "Подробнее"
104
+
105
+ #: bws_functions.php:164
106
+ #, php-format
107
+ msgid "Notice: You are using the Pro Trial license of %s plugin."
108
+ msgstr "Внимание: Вы используете Pro Trial версию плагина %s."
109
+
110
+ #: bws_functions.php:166
111
+ msgid "Notice: You are using the Pro Trial license of plugin."
112
+ msgstr "Внимание: Вы используете Pro Trial версию плагина."
113
+
114
+ #: bws_functions.php:169
115
+ msgid "The Pro Trial license will expire on"
116
+ msgstr "Ваша лицензия Pro Trial версии плагина истекает"
117
+
118
+ #: bws_functions.php:192
119
  msgid ""
120
  "or higher! We do not guarantee that our plugin will work correctly. Please "
121
  "upgrade to WordPress latest version."
123
  "или выше! Мы не гарантируем, что наш плагин будет работать корректно. "
124
  "Пожалуйста, обновите WordPress до последней версии."
125
 
126
+ #: bws_functions.php:207
127
  msgid "Thank you for installing"
128
  msgstr "Спасибо за установку"
129
 
130
+ #: bws_functions.php:208
131
  msgid "Let's get started"
132
  msgstr "Давайте начнем"
133
 
134
+ #: bws_functions.php:209 bws_functions.php:242 bws_menu.php:557
135
+ #: bws_menu.php:559
136
  msgid "Settings"
137
  msgstr "Настройки"
138
 
139
+ #: bws_functions.php:211 deprecated.php:694 bws_menu.php:328
140
+ #: class-bws-settings.php:736 class-bws-settings.php:1046
141
+ #: class-bws-settings.php:1076
142
  msgid "or"
143
  msgstr "или"
144
 
145
+ #: bws_functions.php:212 bws_functions.php:244
146
  msgid "Add New"
147
  msgstr "Добавить"
148
 
149
+ #: bws_functions.php:216 bws_functions.php:226 bws_functions.php:330
150
+ #: bws_functions.php:378 bws_functions.php:482
151
  msgid "Close notice"
152
  msgstr "Закрыть"
153
 
154
+ #: bws_functions.php:231
155
  msgid "Thank you for installing plugins by BestWebSoft!"
156
  msgstr "Спасибо за установку плагинов компании BestWebSoft!"
157
 
158
+ #: bws_functions.php:233
159
  msgid "More Details"
160
  msgstr "Детали"
161
 
162
+ #: bws_functions.php:234
163
  msgid "Less Details"
164
  msgstr "Скрыть детали"
165
 
166
+ #: bws_functions.php:262
167
+ msgid "Deprecated function(-s) is used on the site here:"
168
+ msgstr "Устаревшие функции используются на сайте здесь:"
169
+
170
+ #: bws_functions.php:276
171
+ msgid ""
172
+ "This function(-s) will be removed over time. Please update the product(-s)."
173
+ msgstr ""
174
+ "Эти функции будет удалены через некоторое время. Пожалуйста, обновите "
175
+ "продукт."
176
+
177
+ #: bws_functions.php:335
178
  msgid "It’s time to upgrade your"
179
  msgstr "Настало время обновить Ваш"
180
 
181
+ #: bws_functions.php:335
182
  msgid "to"
183
  msgstr "до"
184
 
185
+ #: bws_functions.php:335
186
  msgid "version!"
187
  msgstr "версии!"
188
 
189
+ #: bws_functions.php:336
190
  msgid "Extend standard plugin functionality with new great options."
191
  msgstr "Расширяет возможности стандартного функционала плагина."
192
 
193
+ #: bws_functions.php:382
194
+ #, php-format
195
+ msgid ""
196
+ "Your license key for %s expires on %s and you won't be granted TOP-PRIORITY "
197
+ "SUPPORT or UPDATES."
 
198
  msgstr ""
199
+ "Ваш лицензионный ключ для %s истекает %s и вы не будете получать "
200
+ "приоритетную тех.поддержку или обновления."
 
 
 
 
 
 
 
201
 
202
+ #: bws_functions.php:477
203
+ msgid "Thank you for choosing"
204
+ msgstr "Спасибо за выбор"
 
 
 
 
 
 
 
 
 
205
 
206
+ #: bws_functions.php:478
 
207
  msgid ""
208
+ "If you have a feature, suggestion or idea you'd like to see in the plugin, "
209
+ "we'd love to hear about it!"
210
  msgstr ""
211
+ "Если у вас есть предложения по добавлению нового или улучшению текущего "
212
+ "функционала плагина, пожалуйста, присылайте их нам! Мы вседа открыты для "
213
+ "новых идей!"
214
 
215
+ #: bws_functions.php:479
216
+ msgid "Suggest a Feature"
217
+ msgstr "Предложить функционал"
 
218
 
219
+ #: bws_functions.php:495 class-bws-settings.php:527 class-bws-settings.php:530
220
+ #: class-bws-settings.php:585 class-bws-settings.php:588
221
+ msgid "Notice"
222
+ msgstr "Внимание"
223
 
224
+ #: bws_functions.php:495
225
+ msgid "The plugin's settings have been changed."
226
+ msgstr "Настройки плагина были изменены"
 
 
 
 
227
 
228
+ #: bws_functions.php:496 deprecated.php:640 class-bws-settings.php:175
229
+ #: class-bws-settings.php:189
230
+ msgid "Save Changes"
231
+ msgstr "Сохранить изменения"
 
 
 
 
232
 
233
+ #: bws_functions.php:510
234
  msgid ""
235
+ "You can always look at premium options by checking the \"Pro Options\" in "
236
+ "the \"Misc\" tab."
237
  msgstr ""
238
+ "Вы всегда можете просмотреть премиум опции нажав на кнопку \"Pro опции\" на "
239
+ "вкладке \"Разное\"."
240
 
241
+ #: bws_functions.php:649
242
+ msgid "Add shortcode"
243
+ msgstr "Добавить шорткод"
 
 
244
 
245
+ #: bws_functions.php:649
246
+ msgid "Add BestWebSoft plugins' shortcodes using this button."
247
+ msgstr "Добавьте шорткоды BestWebSoft плагинов с помощью этой кнопки."
248
 
249
+ #: bws_functions.php:698
250
+ msgid "Close"
251
+ msgstr "Закрыть"
 
 
 
 
252
 
253
+ #: bws_functions.php:790
254
+ msgid "Are you sure you want to restore default settings?"
255
  msgstr ""
256
+ "Вы уверены что хотите восстановить все настройки плагина к настройкам по "
257
+ "умолчанию?"
258
 
259
+ #: bws_functions.php:793
260
+ msgid "Yes, restore all settings"
261
+ msgstr "Да, восстановить все настройки"
 
 
 
 
262
 
263
+ #: bws_functions.php:794
264
+ msgid "No, go back to the settings page"
265
+ msgstr "Нет, вернуться на страницу настроек"
266
 
267
+ #: bws_functions.php:840
268
+ msgid "Plugin"
269
+ msgstr "Плагин"
 
 
270
 
271
+ #: bws_functions.php:849
272
+ msgid "Shortcode settings"
273
+ msgstr "Настройки шорткода"
274
 
275
+ #: bws_functions.php:854
276
+ msgid "The shortcode will be inserted"
277
+ msgstr "Будет вставлен шорткод"
278
 
279
+ #: bws_functions.php:859
280
+ msgid "Insert"
281
+ msgstr "Вставить"
282
 
283
+ #: bws_functions.php:919
284
+ msgid "FAQ"
285
+ msgstr "FAQ"
286
 
287
+ #: bws_functions.php:925
288
+ msgid "For more information:"
289
+ msgstr "Для дополнительной информации:"
290
 
291
+ #: bws_functions.php:926
292
+ msgid "Documentation"
293
+ msgstr "Документация"
294
 
295
+ #: bws_functions.php:927
296
+ msgid "Video Instructions"
297
+ msgstr "Видео инструкции"
298
 
299
+ #: bws_functions.php:928
300
+ msgid "Submit a Request"
301
+ msgstr "Отправить запрос"
302
 
303
+ #: deprecated.php:91 bws_menu.php:307 bws_menu.php:311 bws_menu.php:360
304
+ msgid "Plugins"
305
+ msgstr "Плагины"
 
306
 
307
+ #: deprecated.php:92 bws_menu.php:308 bws_menu.php:312 bws_menu.php:611
308
+ msgid "Themes"
309
+ msgstr "Темы"
 
 
310
 
311
+ #: deprecated.php:93
312
+ msgid "System Status"
313
+ msgstr "Системная информация"
314
+
315
+ #: deprecated.php:133 deprecated.php:199 deprecated.php:352 bws_menu.php:120
316
+ #: class-bws-settings.php:807 class-bws-settings.php:873
317
+ #: class-bws-settings.php:909
318
  msgid ""
319
+ "Something went wrong. Please try again later. If the error appears again, "
320
+ "please contact us"
321
  msgstr ""
322
+ "Что-то пошло не так. Повторите попытку позже. Если ошибка появится снова, "
323
+ "пожалуйста, свяжитесь с нами"
 
 
 
 
 
 
 
324
 
325
+ #: deprecated.php:133 deprecated.php:199 deprecated.php:352 bws_menu.php:120
326
+ #: class-bws-settings.php:807 class-bws-settings.php:873
327
+ #: class-bws-settings.php:909
328
+ msgid "We are sorry for inconvenience."
329
+ msgstr "Приносим извинения за неудобства."
330
 
331
+ #: deprecated.php:139 deprecated.php:358 bws_menu.php:126
332
+ #: class-bws-settings.php:813 class-bws-settings.php:915
333
  msgid "Wrong license key."
334
  msgstr "Неправильный лицензионный ключ."
335
 
336
+ #: deprecated.php:141 deprecated.php:360 class-bws-settings.php:815
337
+ #: class-bws-settings.php:917
338
+ msgid "This license key is bound to another site."
339
  msgstr "Этот лицензионный ключ привязан к другому сайту."
340
 
341
+ #: deprecated.php:143 class-bws-settings.php:817
342
  msgid ""
343
  "This license key is valid, but Your license has expired. If you want to "
344
  "update our plugin in future, you should extend the license."
346
  "Лицензионный ключ принят, но срок действия лицензии истек. Если вы хотите "
347
  "обновлять плагин в будущем, вы должны продлить лицензию."
348
 
349
+ #: deprecated.php:145 class-bws-settings.php:819
350
  msgid "Unfortunately, you have exceeded the number of available tries."
351
  msgstr "К сожалению, вы превысили количество доступных попыток."
352
 
353
+ #: deprecated.php:147 class-bws-settings.php:821
354
  msgid ""
355
  "Unfortunately, the Pro Trial licence was already installed to this domain. "
356
  "The Pro Trial license can be installed only once."
358
  "К сожалению, Pro Trial версия плагина уже устанавливалась на этот домен. Pro "
359
  "Trial версию можно устанавливать лишь один раз."
360
 
361
+ #: deprecated.php:151 class-bws-settings.php:825
362
  msgid "The Pro Trial license key is valid."
363
  msgstr "Ключ Pro Trial версии действителен."
364
 
365
+ #: deprecated.php:153 bws_menu.php:140 class-bws-settings.php:827
366
  msgid "The license key is valid."
367
  msgstr "Лицензионный ключ действителен."
368
 
369
+ #: deprecated.php:156 bws_menu.php:142 class-bws-settings.php:830
370
  msgid "Your license will expire on"
371
  msgstr "Ваша лицензия истечет"
372
 
373
+ #: deprecated.php:159 deprecated.php:246 class-bws-settings.php:833
374
+ #, php-format
375
+ msgid ""
376
+ "In order to continue using the plugin it is necessary to buy a %s license."
377
+ msgstr ""
378
+ "Чтобы продолжить пользоваться плагином, необходимо приобрести %s лицензию."
379
+
380
+ #: deprecated.php:204
381
  msgid "Please, enter your license key"
382
  msgstr "Пожалуйста, введите Ваш лицензионный ключ"
383
 
384
+ #: deprecated.php:223
385
  msgid ""
386
+ "If necessary, you can check if the license key is correct or reenter it in "
387
+ "the field below. You can find your license key on your personal page - "
388
+ "Client Area - on our website"
389
  msgstr ""
390
  "При необходимости вы можете проверить валидность лицензионного ключа или "
391
  "повторно ввести его в поле ниже. Вы можете найти ваш лицензионный ключ на "
392
+ "своей личной странице - Client Area - на нашем сайте"
393
 
394
+ #: deprecated.php:223
395
  msgid ""
396
  "(your username is the email address specified during the purchase). If "
397
  "necessary, please submit \"Lost your password?\" request."
399
  "(ваше имя пользователя - это емейл, указанный при покупке). При "
400
  "необходимости нажмите \"Забыли пароль?\"."
401
 
402
+ #: deprecated.php:227 bws_menu.php:336 bws_menu.php:347
403
+ #: class-bws-settings.php:749
404
  msgid "Check license key"
405
  msgstr "Проверка лицензионного ключа"
406
 
407
+ #: deprecated.php:247
408
+ msgid "After that, you can activate it by entering your license key."
409
+ msgstr "После этого вы сможете активировать его введя лицензионный ключ."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
410
 
411
+ #: deprecated.php:249 deprecated.php:688
412
+ msgid "License key can be found in the"
413
+ msgstr "Лицензионный ключ можно найти в"
414
 
415
+ #: deprecated.php:251 deprecated.php:690
416
+ msgid "(your username is the email address specified during the purchase)."
417
+ msgstr "(ваше имя пользователя - это емейл, указанный при покупке)."
418
 
419
+ #: deprecated.php:259 deprecated.php:267 deprecated.php:629 deprecated.php:700
420
+ #: deprecated.php:709 bws_menu.php:345 bws_menu.php:563 bws_menu.php:572
421
+ #: class-bws-settings.php:728
422
+ msgid "Activate"
423
+ msgstr "Активировать"
424
 
425
+ #: deprecated.php:261 bws_menu.php:130 bws_menu.php:334
426
+ msgid "Unfortunately, you have exceeded the number of available tries per day."
427
+ msgstr "К сожалению, вы превысили количество доступных попыток."
428
 
429
+ #: deprecated.php:278
430
  msgid ""
431
+ "Congratulations! The Pro license of the plugin is activated successfully."
432
+ msgstr "Поздравляем! Pro версия плагина успешно активирована."
 
 
 
433
 
434
+ #: deprecated.php:280 deprecated.php:669
435
+ msgid "Please, go to"
436
+ msgstr "Пожалуйста, перейдите на"
 
 
 
 
 
 
 
 
437
 
438
+ #: deprecated.php:280 deprecated.php:669
439
+ msgid "the setting page"
440
+ msgstr "страницу настроек"
441
 
442
+ #: deprecated.php:281 deprecated.php:670
443
+ msgid "You will be redirected automatically in 5 seconds."
444
+ msgstr "Вы будете перенаправлены автоматически через 5 секунд."
445
 
446
+ #: deprecated.php:315
447
+ msgid "Check premium options on the plugin settings page!"
448
+ msgstr "Просмотрите премиум опции на странице настроек плагина!"
 
 
449
 
450
+ #: deprecated.php:322 bws_menu.php:99 class-bws-settings.php:781
451
+ msgid "Wrong license key"
452
+ msgstr "Неправильный лицензионный ключ"
453
 
454
+ #: deprecated.php:362 deprecated.php:703 class-bws-settings.php:733
455
+ #: class-bws-settings.php:919
456
+ msgid ""
457
+ "Unfortunately, you have exceeded the number of available tries per day. "
458
+ "Please, upload the plugin manually."
459
+ msgstr ""
460
+ "К сожалению, вы превысили количество доступных попыток в день. Пожалуйста, "
461
+ "загрузите плагин вручную."
462
 
463
+ #: deprecated.php:364 bws_menu.php:132 class-bws-settings.php:921
464
+ #, php-format
465
+ msgid ""
466
+ "Unfortunately, Your license has expired. To continue getting top-priority "
467
+ "support and plugin updates, you should extend it in your %s"
468
+ msgstr ""
469
+ "К сожалению, время использования вашей лицензии истекло. Для получения "
470
+ "обновлений и приоритетной тех.поддержки, вам необходимо продлить лицензию в "
471
+ "вашей %s"
472
 
473
+ #: deprecated.php:366 bws_menu.php:134 class-bws-settings.php:923
474
+ msgid ""
475
+ "Unfortunately, the Pro licence was already installed to this domain. The Pro "
476
+ "Trial license can be installed only once."
477
+ msgstr ""
478
+ "К сожалению, Pro лицензия уже была установлена на этом доменен. Pro Trial "
479
+ "лицензия может быть установлена только один раз."
480
 
481
+ #: deprecated.php:387 deprecated.php:409 deprecated.php:431 bws_menu.php:400
482
+ #: bws_menu.php:431 bws_menu.php:442 class-bws-settings.php:947
483
+ #: class-bws-settings.php:969 class-bws-settings.php:991
484
+ msgid "Failed to download the zip archive. Please, upload the plugin manually"
485
+ msgstr ""
486
+ "Не удалось загрузить архив плагина. Пожалуйста, загрузите плагин вручную"
487
 
488
+ #: deprecated.php:399 bws_menu.php:417 class-bws-settings.php:959
489
+ msgid "Failed to open the zip archive. Please, upload the plugin manually"
490
+ msgstr "Не удалось открыть архив ZIP. Пожалуйста, загрузите плагин вручную"
491
 
492
+ #: deprecated.php:405 bws_menu.php:424 class-bws-settings.php:965
493
+ msgid ""
494
+ "Your server does not support either ZipArchive or Phar. Please, upload the "
495
+ "plugin manually"
496
+ msgstr ""
497
+ "Ваш сервер не поддерживает ни библиотеку ZipArchive, ни библиотеку Phar. "
498
+ "Пожалуйста, загрузите плагин вручную"
499
 
500
+ #: deprecated.php:412 bws_menu.php:434 class-bws-settings.php:972
501
+ msgid "UploadDir is not writable. Please, upload the plugin manually"
502
+ msgstr ""
503
+ "Папка загрузки не доступна для записи. Пожалуйста, загрузите плагин вручную"
504
 
505
+ #: deprecated.php:435 bws_menu.php:151 class-bws-settings.php:995
506
+ msgid ""
507
+ "Something went wrong. Try again later or upload the plugin manually. We are "
508
+ "sorry for inconvenience."
509
+ msgstr ""
510
+ "Что-то пошло не так. Повторите попытку позже или загрузите плагин вручную. "
511
+ "Приносим извинения за неудобства."
512
 
513
+ #: deprecated.php:463 class-bws-settings.php:1030
514
+ msgid "Please, enter Your license key"
515
+ msgstr "Пожалуйста, введите ваш лицензионный ключ"
516
 
517
+ #: deprecated.php:478
518
+ msgid "Restore all plugin settings to defaults"
519
+ msgstr "Восстановить все настройки плагина к настройкам по умолчанию"
520
 
521
+ #: deprecated.php:480
522
+ msgid "Restore settings"
523
+ msgstr "Восстановить настройки"
524
 
525
+ #: deprecated.php:497 class-bws-settings.php:421
526
  msgid "You do not have sufficient permissions to edit plugins for this site."
527
  msgstr ""
528
  "У вас недостаточно полномочий, чтобы редактировать плагины на этом сайте."
529
 
530
+ #: deprecated.php:548 deprecated.php:575
531
  #, php-format
532
  msgid "File %s edited successfully."
533
  msgstr "Файл %s успешно изменён."
534
 
535
+ #: deprecated.php:550 deprecated.php:577
536
  msgid "Not enough permissions to create or update the file"
537
  msgstr "Не достаточно прав для создания или обновления файла"
538
 
539
+ #: deprecated.php:580
540
  msgid "Not enough permissions to create the file"
541
  msgstr "Не достаточно прав для создания файла"
542
 
543
+ #: deprecated.php:618 class-bws-settings.php:426
544
  msgid "These styles will be added to the header on all pages of your site."
545
  msgstr "Эти стили будут добавлены в хедер на всех страницах вашего сайта."
546
 
547
+ #: deprecated.php:620 class-bws-settings.php:429
548
  #, php-format
549
  msgid ""
550
  "This PHP code will be hooked to the %s action and will be printed on front "
553
  "Этот PHP код будет прикреплен к %s аction и будет добавлен только во "
554
  "фронтенде."
555
 
556
+ #: deprecated.php:624
557
  msgid "Editing"
558
  msgstr "Редактирование"
559
 
560
+ #: deprecated.php:626 class-bws-settings.php:450
561
  msgid "Browsing"
562
  msgstr "Просмотр"
563
 
564
+ #: deprecated.php:633 class-bws-settings.php:461
565
  #, php-format
566
  msgid "Learn more about %s"
567
  msgstr "Подробнее о %s"
568
 
569
+ #: deprecated.php:644 class-bws-settings.php:440
570
  #, php-format
571
  msgid ""
572
  "You need to make this files writable before you can save your changes. See "
575
  "Чтобы сохранить изменения, нужно сделать этот файл доступным для записи. "
576
  "Дополнительную информацию можно получить в %s Кодексе %s."
577
 
578
+ #: deprecated.php:667
579
+ msgid ""
580
+ "Congratulations! Pro version of the plugin is installed and activated "
581
+ "successfully."
582
+ msgstr "Поздравляем! Pro версия плагина успешно загружена и активирована."
583
+
584
+ #: deprecated.php:677
585
+ msgid "Show Pro features"
586
+ msgstr "Показать Pro опции"
587
+
588
+ #: deprecated.php:684
589
+ msgid "Enter your license key to install and activate"
590
+ msgstr "Введите лицензионный ключ для установки и активации"
591
+
592
+ #: deprecated.php:686
593
+ msgid "version of the plugin."
594
+ msgstr "версия плагина."
595
+
596
+ #: deprecated.php:694 class-bws-settings.php:736
597
+ #, php-format
598
+ msgid "Start Your Free %s-Day Trial Now"
599
+ msgstr "Попробуйте %s-дневную Trial версию бесплатно"
600
+
601
+ #: bws_menu.php:128
602
  msgid ""
603
+ "This license key is bound to another site. Change it via personal Client "
604
  "Area."
605
  msgstr ""
606
  "Этот лицензионный ключ привязан к другому сайту. Измените это в Client Area."
607
 
608
+ #: bws_menu.php:128
609
  msgid "Log in"
610
  msgstr "Авторизоваться"
611
 
612
+ #: bws_menu.php:144
613
+ msgid "Congratulations! Pro Membership license is activated successfully."
614
  msgstr "Поздравляем! Pro Membership лицензия успешно активирована."
615
 
616
+ #: bws_menu.php:161
617
  msgid "Please enter your license key."
618
  msgstr "Пожалуйста, введите Ваш лицензионный ключ."
619
 
620
+ #: bws_menu.php:172
621
  msgid "Not set"
622
  msgstr "Не задан"
623
 
624
+ #: bws_menu.php:174 bws_menu.php:175
625
  msgid "On"
626
  msgstr "Вкл"
627
 
628
+ #: bws_menu.php:174 bws_menu.php:175
629
  msgid "Off"
630
  msgstr "Выкл"
631
 
632
+ #: bws_menu.php:176 bws_menu.php:177 bws_menu.php:178 bws_menu.php:179
633
+ #: bws_menu.php:180 bws_menu.php:181 bws_menu.php:190
634
  msgid "N/A"
635
  msgstr "Неизвестно"
636
 
637
+ #: bws_menu.php:181
638
  msgid " Mb"
639
  msgstr "Mb"
640
 
641
+ #: bws_menu.php:182 bws_menu.php:183 bws_menu.php:184 bws_menu.php:188
642
  msgid "Yes"
643
  msgstr "Да"
644
 
645
+ #: bws_menu.php:182 bws_menu.php:183 bws_menu.php:184 bws_menu.php:188
646
  msgid "No"
647
  msgstr "Нет"
648
 
649
+ #: bws_menu.php:195
650
+ msgid "WordPress Environment"
651
+ msgstr "WordPress Системная среда"
652
+
653
+ #: bws_menu.php:197
654
+ msgid "Home URL"
655
+ msgstr "Основной адрес сайта"
656
+
657
+ #: bws_menu.php:198
658
+ msgid "Website URL"
659
+ msgstr "Адрес сайта"
660
+
661
+ #: bws_menu.php:199
662
+ msgid "WP Version"
663
+ msgstr "Версия WordPress"
664
+
665
+ #: bws_menu.php:200
666
+ msgid "WP Multisite"
667
+ msgstr "Мультисайт"
668
+
669
+ #: bws_menu.php:201
670
+ msgid "WP Memory Limit"
671
+ msgstr "Лимит памяти WordPress"
672
+
673
+ #: bws_menu.php:202
674
+ msgid "Active Theme"
675
+ msgstr "Текущая тема"
676
+
677
+ #: bws_menu.php:202 bws_menu.php:248 bws_menu.php:251
678
+ #, php-format
679
+ msgid "by %s"
680
+ msgstr "%s"
681
+
682
+ #: bws_menu.php:206
683
+ msgid "Server Environment"
684
+ msgstr "Системная среда сервера"
685
+
686
+ #: bws_menu.php:208
687
  msgid "Operating System"
688
  msgstr "Операционная система"
689
 
690
+ #: bws_menu.php:209
691
  msgid "Server"
692
  msgstr "Тип сервера"
693
 
694
+ #: bws_menu.php:210
 
 
 
 
 
 
 
 
 
 
 
 
695
  msgid "PHP Version"
696
  msgstr "Версия PHP"
697
 
698
+ #: bws_menu.php:211
699
  msgid "PHP Safe Mode"
700
  msgstr "PHP Safe Mode"
701
 
702
+ #: bws_menu.php:212
703
  msgid "PHP Allow URL fopen"
704
  msgstr "PHP Allow URL fopen"
705
 
706
+ #: bws_menu.php:213
707
  msgid "PHP Memory Limit"
708
  msgstr "Лимит памяти"
709
 
710
+ #: bws_menu.php:214
711
+ msgid "Memory Usage"
712
+ msgstr "Использование памяти"
713
+
714
+ #: bws_menu.php:215
715
  msgid "PHP Max Upload Size"
716
  msgstr "Макс. размер загружаемого файла"
717
 
718
+ #: bws_menu.php:216
719
  msgid "PHP Max Post Size"
720
  msgstr "Макс. размер записи"
721
 
722
+ #: bws_menu.php:217
723
  msgid "PHP Max Script Execute Time"
724
  msgstr "Макс. время выполнения сценария"
725
 
726
+ #: bws_menu.php:218
727
  msgid "PHP Exif support"
728
  msgstr "Поддержка PHP Exif"
729
 
730
+ #: bws_menu.php:219
731
  msgid "PHP IPTC support"
732
  msgstr "Поддержка PHP IPTC"
733
 
734
+ #: bws_menu.php:220
735
  msgid "PHP XML support"
736
  msgstr "Поддержка PHP XML"
737
 
738
+ #: bws_menu.php:226
739
+ msgid "Database"
740
+ msgstr "База данных"
741
 
742
+ #: bws_menu.php:228
743
+ msgid "WP DB version"
744
+ msgstr "Версия базы данных WordPress"
745
 
746
+ #: bws_menu.php:229
747
+ msgid "MySQL version"
748
+ msgstr "Версия MYSQL"
749
 
750
+ #: bws_menu.php:230
751
+ msgid "SQL Mode"
752
+ msgstr "Режим SQL"
753
 
754
+ #: bws_menu.php:234
755
+ msgid "Active Plugins"
756
+ msgstr "Активированные плагины"
757
 
758
+ #: bws_menu.php:239
759
+ msgid "Inactive Plugins"
760
+ msgstr "Неактивированные плагины"
761
 
762
+ #: bws_menu.php:260
763
  msgid "Please enter a valid email address."
764
  msgstr "Пожалуйста, введите валидный емайл."
765
 
766
+ #: bws_menu.php:264
767
+ msgid "Email with system info is sent to"
768
  msgstr "Емейл с системной информацией отправлен на"
769
 
770
+ #: bws_menu.php:268
771
  msgid "Thank you for contacting us."
772
  msgstr "Спасибо что связались с нами."
773
 
774
+ #: bws_menu.php:291
775
  msgid "Sorry, email message could not be delivered."
776
  msgstr "Извините, ваш емейл не может быть отправлен."
777
 
778
+ #: bws_menu.php:309 bws_menu.php:313 bws_menu.php:662
779
  msgid "System status"
780
  msgstr "Системная информация"
781
 
782
+ #: bws_menu.php:317
783
  msgid "Support"
784
  msgstr "Тех. поддержка"
785
 
786
+ #: bws_menu.php:318
787
  msgid "Manage purchased licenses & subscriptions"
788
  msgstr "Управление купленными лицензиями и подписками"
789
 
790
+ #: bws_menu.php:326
 
 
 
 
791
  #, php-format
792
  msgid "Get Access to %s+ Premium Plugins"
793
  msgstr "Получить Доступ к %s+ Премиум Плагинам"
794
 
795
+ #: bws_menu.php:328
796
  msgid "Subscribe to Pro Membership"
797
  msgstr "Подписаться на Pro Membership"
798
 
799
+ #: bws_menu.php:339
800
  msgid "Enter your license key"
801
  msgstr "Ваш лицензионный ключ"
802
 
803
+ #: bws_menu.php:361
804
  msgid "Upload Plugin"
805
  msgstr "Добавить новый"
806
 
807
+ #: bws_menu.php:365
808
  #, php-format
809
  msgid ""
810
  "The plugin generated %d characters of <strong>unexpected output</strong> "
817
  "проблемы с RSS-лентами или другие неполадки, попробуйте деактивировать или "
818
  "удалить этот плагин."
819
 
820
+ #: bws_menu.php:367
821
  msgid ""
822
  "Plugin could not be activated because it triggered a <strong>fatal error</"
823
  "strong>."
825
  "Плагин не может быть активирован, поскольку он вызвал <strong>фатальную "
826
  "ошибку</strong>."
827
 
828
+ #: bws_menu.php:370
829
  msgid "Plugin <strong>activated</strong>."
830
  msgstr "Плагин <strong>активировано</strong>."
831
 
832
+ #: bws_menu.php:377
833
  msgid "Installing Plugin"
834
  msgstr "Установка плагина"
835
 
836
+ #: bws_menu.php:383
837
  msgid "Downloading install package from"
838
  msgstr "Скачивание установочного пакета из"
839
 
840
+ #: bws_menu.php:408
841
  msgid "Unpacking the package"
842
  msgstr "Распаковка пакета"
843
 
844
+ #: bws_menu.php:413 bws_menu.php:421
845
  msgid "Installing the plugin"
846
  msgstr "Установка плагина"
847
 
848
+ #: bws_menu.php:427
849
+ #, php-format
850
+ msgid "The plugin %s is successfully installed."
851
+ msgstr "Плагин %s успешно установлен."
852
 
853
+ #: bws_menu.php:439
854
  msgid "Activate Plugin"
855
  msgstr "Активировать плагин"
856
 
857
+ #: bws_menu.php:439 bws_menu.php:445
858
  msgid "Return to BestWebSoft Panel"
859
  msgstr "Возврат к BestWebSoft Panel"
860
 
861
+ #: bws_menu.php:449 bws_menu.php:464 bws_menu.php:593
862
  msgid "All"
863
  msgstr "Все"
864
 
865
+ #: bws_menu.php:450 bws_menu.php:650
866
  msgid "Installed"
867
  msgstr "Установленные"
868
 
869
+ #: bws_menu.php:451
870
  msgid "Not Installed"
871
  msgstr "Не установленные"
872
 
873
+ #: bws_menu.php:457
874
  msgid "Filter results"
875
  msgstr "Фильтр результатов"
876
 
877
+ #: bws_menu.php:460 bws_menu.php:589
878
  msgid "Category"
879
  msgstr "Категория"
880
 
881
+ #: bws_menu.php:524
882
  msgid "Not installed"
883
  msgstr "Не установлен"
884
 
885
+ #: bws_menu.php:528
886
  msgid "Renew to get updates"
887
  msgstr "Продлить для обновления"
888
 
889
+ #: bws_menu.php:531
890
  #, php-format
891
  msgid "Update to v %s"
892
  msgstr "Обновить до версии %s"
893
 
894
+ #: bws_menu.php:543 bws_menu.php:566 bws_menu.php:575
895
  msgid "Install Now"
896
  msgstr "Установить"
897
 
898
+ #: bws_menu.php:549 class-bws-settings.php:149 class-bws-settings.php:1073
899
  msgid "Upgrade to Pro"
900
  msgstr "Обновиться на Pro"
901
 
902
+ #: bws_menu.php:563 bws_menu.php:572
 
 
 
 
903
  msgid "Activate this plugin"
904
  msgstr "Активировать плагин"
905
 
906
+ #: bws_menu.php:575
907
  msgid "Install this plugin"
908
  msgstr "Установить этот плагин"
909
 
910
+ #: bws_menu.php:584
911
  msgid "Nothing found. Try another criteria."
912
  msgstr "Ничего не найдено. Попробуйте другие критерии."
913
 
914
+ #: bws_menu.php:621 bws_menu.php:641
915
  #, php-format
916
  msgid "By %s"
917
  msgstr "%s"
918
 
919
+ #: bws_menu.php:648
920
  msgid "Already Installed"
921
  msgstr "Уже установлена"
922
 
923
+ #: bws_menu.php:659
924
  msgid "Browse Free WordPress Themes"
925
  msgstr "Обзор бесплатных WordPress тем"
926
 
927
+ #: bws_menu.php:668
928
  msgid "Send to support"
929
  msgstr "Отправить в тех. поддержку"
930
 
931
+ #: bws_menu.php:675
932
  msgid "Send to custom email &#187;"
933
  msgstr "Отправить на емейл &#187;"
934
 
 
 
 
 
 
 
 
 
 
 
 
 
935
  #: product_list.php:7
936
  msgid "Advertisement"
937
  msgstr "Реклама"
968
  msgid "Other"
969
  msgstr "Другое"
970
 
971
+ #: class-bws-settings.php:129
972
+ msgid "Information"
973
+ msgstr "Информация"
974
+
975
+ #: class-bws-settings.php:136
976
+ msgid "Inactive"
977
+ msgstr "Неактивна"
978
+
979
+ #: class-bws-settings.php:144
980
+ msgid "Expired"
981
+ msgstr "Истекла"
982
+
983
+ #: class-bws-settings.php:147
984
+ #, php-format
985
+ msgid "%s day(-s) left"
986
+ msgstr "%s дней осталось"
987
+
988
+ #: class-bws-settings.php:153
989
+ #, php-format
990
+ msgid "Expired on %s"
991
+ msgstr "Истекает %s"
992
+
993
+ #: class-bws-settings.php:153
994
+ msgid "Renew Now"
995
+ msgstr "Возобновить сейчас"
996
+
997
+ #: class-bws-settings.php:155
998
+ msgid "Active"
999
+ msgstr "Активна"
1000
+
1001
+ #: class-bws-settings.php:160
1002
+ msgid "License"
1003
+ msgstr "Лицензия"
1004
+
1005
+ #: class-bws-settings.php:163
1006
+ msgid "Status"
1007
+ msgstr "Статус"
1008
+
1009
+ #: class-bws-settings.php:167
1010
+ msgid "Version"
1011
+ msgstr "Версия"
1012
+
1013
+ #: class-bws-settings.php:276
1014
+ msgid "All plugin settings were restored."
1015
+ msgstr "Все настройки плагина были восстановлены."
1016
+
1017
+ #: class-bws-settings.php:417
1018
+ msgid "Custom Code"
1019
+ msgstr "Пользовательский код"
1020
+
1021
+ #: class-bws-settings.php:432
1022
+ msgid "These code will be added to the header on all pages of your site."
1023
+ msgstr "Этот код будет добавлен в хедер на всех страницах вашего сайта."
1024
+
1025
+ #: class-bws-settings.php:454
1026
+ #, php-format
1027
+ msgid "Activate custom %s code."
1028
+ msgstr "Активировать пользовательский %s код."
1029
+
1030
+ #: class-bws-settings.php:520
1031
+ msgid "Miscellaneous Settings"
1032
+ msgstr "Прочие настройки"
1033
+
1034
+ #: class-bws-settings.php:527 class-bws-settings.php:585
1035
+ #, php-format
1036
+ msgid ""
1037
+ "It is prohibited to change %s settings on this site in the %s network "
1038
+ "settings."
1039
+ msgstr ""
1040
+ "Cетевыми настройками %s запрещается изменять настройки %s на этом сайте."
1041
+
1042
+ #: class-bws-settings.php:530 class-bws-settings.php:588
1043
+ #, php-format
1044
+ msgid ""
1045
+ "It is prohibited to view %s settings on this site in the %s network settings."
1046
+ msgstr ""
1047
+ "Cетевыми настройками %s запрещается просматривать настройки %s на этом сайте."
1048
+
1049
+ #: class-bws-settings.php:536
1050
+ msgid "Pro Options"
1051
+ msgstr "Pro опции"
1052
+
1053
+ #: class-bws-settings.php:539
1054
+ msgid "Enable to display plugin Pro options."
1055
+ msgstr "Включите для отображения Pro опций плагина."
1056
+
1057
+ #: class-bws-settings.php:544
1058
+ msgid "Track Usage"
1059
+ msgstr "Собирать статистику"
1060
+
1061
+ #: class-bws-settings.php:547
1062
+ msgid ""
1063
+ "Enable to allow tracking plugin usage anonymously in order to make it better."
1064
+ msgstr ""
1065
+ "Включить, чтобы разрешить анонимно отслеживать использование и сделать "
1066
+ "плагин лучше."
1067
+
1068
+ #: class-bws-settings.php:551
1069
+ msgid "Default Settings"
1070
+ msgstr "Настройки по умолчанию"
1071
+
1072
+ #: class-bws-settings.php:553
1073
+ msgid "Restore Settings"
1074
+ msgstr "Восстановить настройки"
1075
+
1076
+ #: class-bws-settings.php:554
1077
+ msgid "This will restore plugin settings to defaults."
1078
+ msgstr "Восстановить все настройки плагина к настройкам по умолчанию."
1079
+
1080
+ #: class-bws-settings.php:578
1081
+ msgid "Import / Export"
1082
+ msgstr "Импорт / Экспорт"
1083
+
1084
+ #: class-bws-settings.php:701 class-bws-settings.php:724
1085
+ #: class-bws-settings.php:746
1086
+ msgid "License Key"
1087
+ msgstr "Лицензионный ключ"
1088
+
1089
+ #: class-bws-settings.php:714
1090
+ msgid "Congratulations! Pro license is activated successfully."
1091
+ msgstr "Поздравляем! Pro лицензия успешно активирована."
1092
+
1093
+ #: class-bws-settings.php:715
1094
+ #, php-format
1095
+ msgid "You will be automatically redirected to the %s in 7 seconds."
1096
+ msgstr "Вы будете автоматически перенаправлены на %s через 7 секунд."
1097
+
1098
+ #: class-bws-settings.php:715
1099
+ msgid "Settings page"
1100
+ msgstr "страницу Настроек"
1101
+
1102
+ #: class-bws-settings.php:730
1103
+ #, php-format
1104
+ msgid "Enter your license key to activate %s and get premium plugin features."
1105
+ msgstr ""
1106
+ "Введите лицензионный ключ для активации %s и получения дополнительных "
1107
+ "возможностей плагина."
1108
+
1109
+ #: class-bws-settings.php:751
1110
+ msgid ""
1111
+ "If necessary, you can check if the license key is correct or reenter it in "
1112
+ "the field below."
1113
+ msgstr ""
1114
+ "При необходимости вы можете проверить валидность лицензионного ключа или "
1115
+ "повторно ввести его в поле ниже."
1116
+
1117
+ #: class-bws-settings.php:756
1118
+ msgid "Manage License Settings"
1119
+ msgstr "Управление настройками лицензий"
1120
+
1121
+ #: class-bws-settings.php:758
1122
+ msgid "Login to Client Area"
1123
+ msgstr "Зайти в Client Area"
1124
+
1125
+ #: class-bws-settings.php:760
1126
+ msgid ""
1127
+ "Manage active licenses, download BWS products, and view your payment history "
1128
+ "using BestWebSoft Client Area."
1129
+ msgstr ""
1130
+ "Управляй активными лицензиями, загружай BWS продукты, а также просматривай "
1131
+ "историю платежей с помощью BestWebSoft Client Area."
1132
+
1133
+ #: class-bws-settings.php:1044
1134
+ msgid "Need Help?"
1135
+ msgstr "Нужна помощь?"
1136
+
1137
+ #: class-bws-settings.php:1044
1138
+ msgid "Read the Instruction"
1139
+ msgstr "Читать инструкцию"
1140
+
1141
+ #: class-bws-settings.php:1046
1142
+ msgid "Watch the Video"
1143
+ msgstr "Смотреть видео"
1144
+
1145
+ #: class-bws-settings.php:1077
1146
+ msgid "Start Your Free Trial"
1147
+ msgstr "Использовать бесплатную Trial версию"
1148
+
1149
+ #~ msgid "You license for"
1150
+ #~ msgstr "Ваш лицензионный ключ для"
1151
+
1152
+ #~ msgid "expires on"
1153
+ #~ msgstr "истекает"
1154
+
1155
+ #~ msgid "This license key is bind to another site"
1156
+ #~ msgstr "Этот лицензионный ключ привязан к другому сайту"
1157
+
1158
+ #~ msgid "Successfully installed the plugin"
1159
+ #~ msgstr "Успешно установлен плагин"
1160
+
1161
+ #~ msgid "Please, go to %s"
1162
+ #~ msgstr "Пожалуйста, перейдите на %s"
1163
+
1164
+ #~ msgid "Trial"
1165
+ #~ msgstr "Триал"
1166
+
1167
+ #~ msgid "Client Area"
1168
+ #~ msgstr "Client Area"
1169
+
1170
+ #~ msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
1171
+ #~ msgstr ""
1172
+ #~ "Если вам понравился плагин, пожалуйста, поставьте нам 5 звезд на WordPress"
1173
+
1174
+ #~ msgid "If there is something wrong about it, please contact us"
1175
+ #~ msgstr "Если у вас есть какие-то вопросы, обращайтесь"
1176
+
1177
+ #~ msgid "Donations play an important role in supporting great projects"
1178
+ #~ msgstr "Пожертвования играют важную роль в поддержке проектов"
1179
+
1180
+ #~ msgid "WordPress Version"
1181
+ #~ msgstr "Версия WordPress"
1182
+
1183
  #~ msgid "Activate Membership"
1184
  #~ msgstr "Активировать Membership"
1185
 
1219
  #~ msgid "Configure Settings"
1220
  #~ msgstr "Настройка параметров"
1221
 
 
 
 
1222
  #~ msgid "Go"
1223
  #~ msgstr "Перейти на"
1224
 
1265
  #~ msgid "Switch to new interface"
1266
  #~ msgstr "Переключится на новый интерфейс"
1267
 
 
 
 
1268
  #~ msgid "Activated plugins"
1269
  #~ msgstr "Активированные плагины"
1270
 
1289
  #~ msgid "Customize &#8220;%s&#8221;"
1290
  #~ msgstr "Кастомизировать &#8220;%s&#8221;"
1291
 
 
 
 
1292
  #~ msgid "Installed themes"
1293
  #~ msgstr "Установленные темы"
1294
 
bws_menu/languages/bestwebsoft-uk.mo CHANGED
Binary file
bws_menu/languages/bestwebsoft-uk.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2016-08-04 15:44+0300\n"
6
- "PO-Revision-Date: 2016-08-04 15:44+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <http://support.bestwebsoft.com>\n"
9
  "Language: ru_RU\n"
@@ -16,23 +16,11 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: bws_functions.php:38 bws_menu.php:282 bws_menu.php:330
20
- msgid "Plugins"
21
- msgstr "Плагіни"
22
-
23
- #: bws_functions.php:39 bws_menu.php:283 bws_menu.php:581
24
- msgid "Themes"
25
- msgstr "Теми"
26
-
27
- #: bws_functions.php:40
28
- msgid "System Status"
29
- msgstr "Системна інформація"
30
-
31
- #: bws_functions.php:75 bws_functions.php:101
32
  msgid "requires"
33
  msgstr "потребує"
34
 
35
- #: bws_functions.php:77
36
  msgid ""
37
  "or higher, that is why it has been deactivated! Please upgrade WordPress and "
38
  "try again."
@@ -40,15 +28,93 @@ msgstr ""
40
  "чи вище, тому його було деактивовано! Будь ласка оновіть WordPress та "
41
  "спробуйте ще раз."
42
 
43
- #: bws_functions.php:78
44
  msgid "Back to the WordPress"
45
  msgstr "Повернутися на WordPress на"
46
 
47
- #: bws_functions.php:80
48
  msgid "Plugins page"
49
  msgstr "Сторінку Плагінів"
50
 
51
- #: bws_functions.php:103
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
52
  msgid ""
53
  "or higher! We do not guarantee that our plugin will work correctly. Please "
54
  "upgrade to WordPress latest version."
@@ -56,245 +122,219 @@ msgstr ""
56
  "чи вище! Ми не гарантуємо, що наш плагін буде працювати правильно. Будь "
57
  "ласка, оновіть WordPress до останньої версії."
58
 
59
- #: bws_functions.php:118
60
  msgid "Thank you for installing"
61
  msgstr "Дякуємо, що встановили"
62
 
63
- #: bws_functions.php:119
64
  msgid "Let's get started"
65
  msgstr "Розпочнемо"
66
 
67
- #: bws_functions.php:120 bws_functions.php:153 bws_menu.php:527
68
- #: bws_menu.php:529
69
  msgid "Settings"
70
  msgstr "Налаштування"
71
 
72
- #: bws_functions.php:122 bws_functions.php:479 bws_menu.php:298
 
 
73
  msgid "or"
74
  msgstr "або"
75
 
76
- #: bws_functions.php:123 bws_functions.php:155
77
  msgid "Add New"
78
  msgstr "Додати"
79
 
80
- #: bws_functions.php:127 bws_functions.php:137 bws_functions.php:213
81
- #: bws_functions.php:727 bws_functions.php:831
82
  msgid "Close notice"
83
  msgstr "Закрити"
84
 
85
- #: bws_functions.php:142
86
  msgid "Thank you for installing plugins by BestWebSoft!"
87
  msgstr "Дякуємо, що встановили плагіни від BestWebSoft!"
88
 
89
- #: bws_functions.php:144
90
  msgid "More Details"
91
  msgstr "Деталі"
92
 
93
- #: bws_functions.php:145
94
  msgid "Less Details"
95
  msgstr "Сховати Деталі"
96
 
97
- #: bws_functions.php:218
 
 
 
 
 
 
 
 
 
 
98
  msgid "It’s time to upgrade your"
99
  msgstr "Настав час модернізувати Ваш"
100
 
101
- #: bws_functions.php:218
102
  msgid "to"
103
  msgstr "до"
104
 
105
- #: bws_functions.php:218
106
  msgid "version!"
107
  msgstr "версії!"
108
 
109
- #: bws_functions.php:219
110
  msgid "Extend standard plugin functionality with new great options."
111
  msgstr "Розширює можливості стандартного функціоналу плагіна."
112
 
113
- #: bws_functions.php:222 bws_functions.php:666 bws_menu.php:597
114
- msgid "Learn More"
115
- msgstr "Дізнатись більше"
116
-
117
- #: bws_functions.php:239
118
- msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
119
- msgstr ""
120
- "Якщо вам сподобався плагін, будь ласка, поставте нам 5 зірочок на WordPress"
121
-
122
- #: bws_functions.php:240
123
- msgid "Rate the plugin"
124
- msgstr "Оцінити плагін"
125
-
126
- #: bws_functions.php:243
127
- msgid "If there is something wrong about it, please contact us"
128
- msgstr "Якщо щось не так, будь ласка, повідомте нам"
129
-
130
- #: bws_functions.php:247
131
- msgid "Donations play an important role in supporting great projects"
132
- msgstr "Пожертви грають важливу роль в підтримці проектів"
133
-
134
- #: bws_functions.php:277
135
- msgid "Check premium options on the plugin settings page!"
136
- msgstr "Подивіться преміум опції на сторінці налаштувань плагіна!"
137
-
138
- #: bws_functions.php:284 bws_functions.php:320 bws_menu.php:87
139
- #: bws_menu.php:114
140
- msgid "Wrong license key"
141
- msgstr "Невірний ключ ліцензії"
142
-
143
- #: bws_functions.php:314 bws_functions.php:578 bws_functions.php:629
144
- #: bws_menu.php:108
145
  msgid ""
146
- "Something went wrong. Please try again later. If the error appears again, "
147
- "please contact us"
148
  msgstr ""
149
- "Щось не так, спробуйте пізніше. Якщо помилка повториться, будь ласка, "
150
- "повідомте нам"
151
-
152
- #: bws_functions.php:314 bws_functions.php:578 bws_functions.php:629
153
- #: bws_menu.php:108
154
- msgid "We are sorry for inconvenience."
155
- msgstr "Просимо вибачення за незручності."
156
 
157
- #: bws_functions.php:322
158
- msgid "This license key is bind to another site"
159
- msgstr "Цей ліцензійний ключ прив'язано до іншого сайту"
160
 
161
- #: bws_functions.php:324 bws_functions.php:488
162
  msgid ""
163
- "Unfortunately, you have exceeded the number of available tries per day. "
164
- "Please, upload the plugin manually."
165
  msgstr ""
166
- "На жаль, ви перевищили кількість доступних спроб на день. Будь ласка, "
167
- "завантажте плагін вручну"
 
168
 
169
- #: bws_functions.php:326 bws_menu.php:120
170
- msgid ""
171
- "Unfortunately, Your license has expired. To continue getting top-priority "
172
- "support and plugin updates you should extend it in your"
173
- msgstr ""
174
- "На жаль, ваша ліцензія скінчилась. Для того, щоб і надалі отримувати "
175
- "першочергову техпідтримку і оновлення, будь ласка, продовжте ліцензію"
176
 
177
- #: bws_functions.php:328 bws_menu.php:122
178
- msgid ""
179
- "Unfortunately, the Pro licence was already installed to this domain. The Pro "
180
- "Trial license can be installed only once."
181
- msgstr ""
182
- "На жаль, Pro ліцензія уже використовувалась на цьому домені. Тріал Pro "
183
- "версії плагіну можна використати лише один раз."
184
 
185
- #: bws_functions.php:349 bws_functions.php:371 bws_functions.php:393
186
- #: bws_menu.php:370 bws_menu.php:401 bws_menu.php:412
187
- msgid "Failed to download the zip archive. Please, upload the plugin manually"
188
- msgstr ""
189
- "Помилка при завантаженні zip-архіву. Будь ласка, завантажте плагін вручну"
190
 
191
- #: bws_functions.php:361 bws_menu.php:387
192
- msgid "Failed to open the zip archive. Please, upload the plugin manually"
193
- msgstr "Помилка при відкритті zip-архіву. Будь ласка, завантажте плагін вручну"
 
194
 
195
- #: bws_functions.php:367 bws_menu.php:394
196
  msgid ""
197
- "Your server does not support either ZipArchive or Phar. Please, upload the "
198
- "plugin manually"
199
  msgstr ""
200
- "Ваш сервер не підтримує формати Zip і Phar. Будь ласка, завантажте плагін "
201
- "вручну"
202
 
203
- #: bws_functions.php:374 bws_menu.php:404
204
- msgid "UploadDir is not writable. Please, upload the plugin manually"
205
- msgstr ""
206
- "Немає доступу до теки завантажень WordPress. Будь ласка, завантажте плагін "
207
- "вручну"
208
 
209
- #: bws_functions.php:397 bws_menu.php:139
210
- msgid ""
211
- "Something went wrong. Try again later or upload the plugin manually. We are "
212
- "sorry for inconvenience."
213
- msgstr ""
214
- "Виникли певні проблеми. Спробуйте ще раз пізніше або завантажте плагін "
215
- "вручну. Просимо вибачення за незручності."
216
 
217
- #: bws_functions.php:422
218
- msgid "Please, enter Your license key"
219
- msgstr "Будь ласка, впишіть ваш ліцензійний ключ"
220
 
221
- #: bws_functions.php:452
222
- msgid ""
223
- "Congratulations! Pro version of the plugin is successfully installed and "
224
- "activated."
225
- msgstr "Вітаємо! Pro версію плагіну успішно завантажено та активовано."
226
 
227
- #: bws_functions.php:454 bws_functions.php:545
228
- msgid "Please, go to"
229
- msgstr "Будь ласка, перейдіть на"
230
 
231
- #: bws_functions.php:454 bws_functions.php:545
232
- msgid "the setting page"
233
- msgstr "сторінку установок"
234
 
235
- #: bws_functions.php:455 bws_functions.php:546
236
- msgid "You will be redirected automatically in 5 seconds."
237
- msgstr "Вас буде перенаправлено автоматично через 5 секунд."
238
 
239
- #: bws_functions.php:462
240
- msgid "Show Pro features"
241
- msgstr "Показати Pro опції"
242
 
243
- #: bws_functions.php:469
244
- msgid "Enter your license key to install and activate"
245
- msgstr "Введіть ліцензійний ключ для установки і активації"
246
 
247
- #: bws_functions.php:471
248
- msgid "version of the plugin."
249
- msgstr "версія плагіна."
250
 
251
- #: bws_functions.php:473 bws_functions.php:514
252
- msgid "License key can be found in the"
253
- msgstr "Ліцензійний ключ можна знайти в"
254
 
255
- #: bws_functions.php:475 bws_functions.php:516
256
- msgid "(your username is the email address specified during the purchase)."
257
- msgstr "(ваше ім'я користувача - це емейл, який ви вказували при купівлі)"
258
 
259
- #: bws_functions.php:479
260
- #, php-format
261
- msgid "Start Your Free %s-Day Trial Now"
262
- msgstr "Спробуйте %s-денну тріал версію безкоштовно"
263
 
264
- #: bws_functions.php:485 bws_functions.php:494 bws_functions.php:524
265
- #: bws_functions.php:532 bws_functions.php:1401 bws_menu.php:315
266
- #: bws_menu.php:533 bws_menu.php:542
267
- msgid "Activate"
268
- msgstr "Активувати"
269
 
270
- #: bws_functions.php:511 bws_functions.php:604
271
- #, php-format
272
- msgid ""
273
- "In order to continue using the plugin it is necessary to buy a %s license."
274
- msgstr "Щоб продовжити користуватись плагіном, потрібно придбати %s ліцензію."
275
 
276
- #: bws_functions.php:512
277
- msgid "After that you can activate it by entering your license key."
278
- msgstr "Після цього ви зможете активувати його ввівши ліцензійний ключ."
279
 
280
- #: bws_functions.php:526 bws_menu.php:118 bws_menu.php:304
281
- msgid "Unfortunately, you have exceeded the number of available tries per day."
282
- msgstr "На жаль, ви перевищили кількість допустимих спроб."
283
 
284
- #: bws_functions.php:543
 
 
 
 
 
 
285
  msgid ""
286
- "Congratulations! The Pro license of the plugin is successfully activated."
287
- msgstr "Вітаємо! Pro версію плагіну успішно активовано."
 
 
 
288
 
289
- #: bws_functions.php:584
 
 
 
 
 
 
 
290
  msgid "Wrong license key."
291
  msgstr "Неправильний ліцензійний ключ."
292
 
293
- #: bws_functions.php:586
294
- msgid "This license key is bind to another site."
 
295
  msgstr "Цей ліцензійний ключ прив'язано до іншого сайту."
296
 
297
- #: bws_functions.php:588
298
  msgid ""
299
  "This license key is valid, but Your license has expired. If you want to "
300
  "update our plugin in future, you should extend the license."
@@ -302,46 +342,52 @@ msgstr ""
302
  "Даний ліцензійний ключ дійсний, але строк вашої ліцензії витік. Якщо ви "
303
  "хочете оновлювати наш плагін у майбутньому, вам слід подовжити ліцензію."
304
 
305
- #: bws_functions.php:590
306
  msgid "Unfortunately, you have exceeded the number of available tries."
307
  msgstr "На жаль, ви перевищили кількість допустимих спроб."
308
 
309
- #: bws_functions.php:592
310
  msgid ""
311
  "Unfortunately, the Pro Trial licence was already installed to this domain. "
312
  "The Pro Trial license can be installed only once."
313
  msgstr ""
314
- "На жаль, тріал Pro версія плагіну уже встановлювалась на цей домен. Тріал "
315
  "Pro версію можна встановлювати лише один раз."
316
 
317
- #: bws_functions.php:596
318
  msgid "The Pro Trial license key is valid."
319
  msgstr "Ключ тріал Pro версії вірний."
320
 
321
- #: bws_functions.php:598 bws_menu.php:128
322
  msgid "The license key is valid."
323
  msgstr "Ліцензійний ключ дійсний."
324
 
325
- #: bws_functions.php:601 bws_menu.php:130
326
  msgid "Your license will expire on"
327
  msgstr "Ваша ліцензія закінчується"
328
 
329
- #: bws_functions.php:634
 
 
 
 
 
 
330
  msgid "Please, enter your license key"
331
  msgstr "Будь ласка, введіть ваш ліцензійний ключ"
332
 
333
- #: bws_functions.php:647
334
  msgid ""
335
- "If needed you can check if the license key is correct or reenter it in the "
336
- "field below. You can find your license key on your personal page - Client "
337
- "area - on our website"
338
  msgstr ""
339
  "При необхідності ви можете перевірити правильність вашого ліцензійного ключа "
340
  "або знову ввести його у полі, що знаходиться нижче. Ви можете знайти свій "
341
  "ліцензійний ключ на вашій персональній сторінці - Client area - на нашому "
342
- "сайті."
343
 
344
- #: bws_functions.php:647
345
  msgid ""
346
  "(your username is the email address specified during the purchase). If "
347
  "necessary, please submit \"Lost your password?\" request."
@@ -349,204 +395,151 @@ msgstr ""
349
  "(ваше ім'я користувача - це емейл, який ви вказували при купівлі). При "
350
  "необхідності, будь ласка, відправте запит на відновлення вашого паролю."
351
 
352
- #: bws_functions.php:651 bws_menu.php:306 bws_menu.php:317
 
353
  msgid "Check license key"
354
  msgstr "Перевірте ліцензійний ключ"
355
 
356
- #: bws_functions.php:666
357
- msgid "WARNING: Illegal use notification"
358
- msgstr "УВАГА: виявлено несанкціоноване використання плагіну"
359
 
360
- #: bws_functions.php:666
361
- msgid ""
362
- "You can use one license of the Pro plugin for one domain only. Please check "
363
- "and edit your license or domain if necessary using you personal Client Area. "
364
- "We strongly recommend you to solve the problem within 24 hours, otherwise "
365
- "the Pro plugin will be deactivated."
366
- msgstr ""
367
- "Ви можете використовувати одну ліцензію Про-плагіну для одного домену. Будь "
368
- "ласка, переконайтесь, що інформацію щодо ліцензії і домену введено вірно, у "
369
- "вкладці Client Area. Ми настійливо рекомендуємо Вам вирішити це питання "
370
- "протягом 24 годин, інакше плагін буде деактивовано."
371
 
372
- #: bws_functions.php:675
373
- msgid ""
374
- "Notice: Your Pro Trial license has expired. To continue using the plugin you "
375
- "should buy a Pro license"
376
- msgstr ""
377
- "Увага: Термін дії тріал періоду Pro версії плагіну скінчився. Щоб продовжити "
378
- "користуватись плагіном, будь ласка, придбайте ліцензію Pro"
 
 
379
 
380
- #: bws_functions.php:677
 
 
 
 
381
  msgid ""
382
- "Your license has expired. To continue getting top-priority support and "
383
- "plugin updates you should extend it."
384
- msgstr ""
385
- "Строк вашої ліцензії витік. Якщо ви хочете оновлювати наш плагін у "
386
- "майбутньому, вам слід подовжити ліцензію."
387
 
388
- #: bws_functions.php:677 bws_functions.php:731 bws_functions.php:1356
389
- msgid "Learn more"
390
- msgstr "Дізнатись більше"
391
 
392
- #: bws_functions.php:688
393
- #, php-format
394
- msgid "Notice: You are using the Pro Trial license of %s plugin."
395
- msgstr "Увага: Ви використовуєте тріал Pro версію плагіну %s."
396
 
397
- #: bws_functions.php:690
398
- msgid "Notice: You are using the Pro Trial license of plugin."
399
- msgstr "Увага: Ви використовуєте тріал Pro версію плагіну."
400
 
401
- #: bws_functions.php:693
402
- msgid "The Pro Trial license will expire on"
403
- msgstr "Тріал період Pro версії плагіну закінчується"
404
 
405
- #: bws_functions.php:731
406
- msgid "You license for"
407
- msgstr "Ваша ліцензія для"
408
 
409
- #: bws_functions.php:731
410
- msgid "expires on"
411
- msgstr "витікає"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
412
 
413
- #: bws_functions.php:731
414
- msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
 
 
 
 
 
 
 
 
 
 
415
  msgstr ""
416
- "та ви більше не будете отримувати першочергову технічну підтримку та "
417
- "оновлення."
418
 
419
- #: bws_functions.php:826
420
- msgid "Thank you for choosing"
421
- msgstr "Дякуємо, що обрали"
422
 
423
- #: bws_functions.php:827
424
  msgid ""
425
- "If you have a feature, suggestion or idea you'd like to see in the plugin, "
426
- "we'd love to hear about it!"
427
  msgstr ""
428
- "Якщо у вас є пропозиції по додаванню нового або поліпшення поточного "
429
- "функціоналу плагіна, будь ласка, надсилайте їх нам! Ми завжди відкриті для "
430
- "нових ідей!"
431
-
432
- #: bws_functions.php:828
433
- msgid "Suggest a Feature"
434
- msgstr "Запропонувати функціонал"
435
-
436
- #: bws_functions.php:844
437
- msgid "Notice"
438
- msgstr "Зауважте"
439
-
440
- #: bws_functions.php:844
441
- msgid "The plugin's settings have been changed."
442
- msgstr "Налаштування плагіну змінено."
443
 
444
- #: bws_functions.php:845 bws_functions.php:1412
445
- msgid "Save Changes"
446
- msgstr "Зберегти зміни"
 
 
447
 
448
- #: bws_functions.php:859
449
  msgid ""
450
- "You can always look at premium options by clicking on the \"Show Pro features"
451
- "\" in the \"Go PRO\" tab"
452
  msgstr ""
453
- "Ви завжди можете подивитися на преміум опції, натиснувши на кнопку "
454
- "\"Показати Pro особливост\" на вкладці \"Перейти на PRO\""
455
-
456
- #: bws_functions.php:988
457
- msgid "Add shortcode"
458
- msgstr "Додати шорткод"
459
-
460
- #: bws_functions.php:988
461
- msgid "Add BestWebSoft plugins' shortcodes using this button."
462
- msgstr "Додайте шорткоди BestWebSoft плагінів за допомогою цієї кнопки."
463
 
464
- #: bws_functions.php:1037
465
- msgid "Close"
466
- msgstr "Закрити"
467
 
468
- #: bws_functions.php:1129
469
  msgid "Restore all plugin settings to defaults"
470
  msgstr "Скинути налаштування плагіну до стандартних"
471
 
472
- #: bws_functions.php:1131
473
  msgid "Restore settings"
474
  msgstr "Скинути налаштування"
475
 
476
- #: bws_functions.php:1142
477
- msgid "Are you sure you want to restore all settings by default?"
478
- msgstr "Ви впевнені, що хочете скинути налаштування плагіну до стандартних?"
479
-
480
- #: bws_functions.php:1145
481
- msgid "Yes, restore all settings"
482
- msgstr "Так, скинути налаштування"
483
-
484
- #: bws_functions.php:1146
485
- msgid "No, go back to the settings page"
486
- msgstr "Ні, повернутись назад на сторінку налаштувань"
487
-
488
- #: bws_functions.php:1192
489
- msgid "Plugin"
490
- msgstr "Плагін"
491
-
492
- #: bws_functions.php:1201
493
- msgid "Shortcode settings"
494
- msgstr "Налаштування шорткоду"
495
-
496
- #: bws_functions.php:1206
497
- msgid "The shortcode will be inserted"
498
- msgstr "Буде вставлено шорткод"
499
-
500
- #: bws_functions.php:1211
501
- msgid "Insert"
502
- msgstr "Вставити"
503
-
504
- #: bws_functions.php:1244
505
- msgid "Visit Help Center"
506
- msgstr "Перейти в Help Center"
507
-
508
- #: bws_functions.php:1249
509
- msgid "FAQ"
510
- msgstr "FAQ"
511
-
512
- #: bws_functions.php:1255
513
- msgid "For more information:"
514
- msgstr "Для отримання додаткової інформації:"
515
-
516
- #: bws_functions.php:1256
517
- msgid "Documentation"
518
- msgstr "Документація"
519
-
520
- #: bws_functions.php:1257
521
- msgid "Video Instructions"
522
- msgstr "Відео інструкції"
523
-
524
- #: bws_functions.php:1258
525
- msgid "Submit a Request"
526
- msgstr "Надіслати запит"
527
-
528
- #: bws_functions.php:1269
529
  msgid "You do not have sufficient permissions to edit plugins for this site."
530
  msgstr "У вас недостатньо повноважень для редагування плагінів цього сайту."
531
 
532
- #: bws_functions.php:1320 bws_functions.php:1347
533
  #, php-format
534
  msgid "File %s edited successfully."
535
  msgstr "Файл %s успішно відредаговано."
536
 
537
- #: bws_functions.php:1322 bws_functions.php:1349
538
  msgid "Not enough permissions to create or update the file"
539
  msgstr "У Вас недостатньо дозволів для створення або поновлення файлу"
540
 
541
- #: bws_functions.php:1352
542
  msgid "Not enough permissions to create the file"
543
  msgstr "У Вас недостатньо дозволів для створення файлу"
544
 
545
- #: bws_functions.php:1390
546
  msgid "These styles will be added to the header on all pages of your site."
547
  msgstr "Ці стилі будуть додані в заголовок на всіх сторінках вашого сайту."
548
 
549
- #: bws_functions.php:1392
550
  #, php-format
551
  msgid ""
552
  "This PHP code will be hooked to the %s action and will be printed on front "
@@ -554,20 +547,20 @@ msgid ""
554
  msgstr ""
555
  "Цей PHP код буде прикріплений до %s action і буде додано лише у фронтенді."
556
 
557
- #: bws_functions.php:1396
558
  msgid "Editing"
559
  msgstr "Редагування"
560
 
561
- #: bws_functions.php:1398
562
  msgid "Browsing"
563
  msgstr "Огляд"
564
 
565
- #: bws_functions.php:1405
566
  #, php-format
567
  msgid "Learn more about %s"
568
  msgstr "Дізнатись більше про %s"
569
 
570
- #: bws_functions.php:1416
571
  #, php-format
572
  msgid ""
573
  "You need to make this files writable before you can save your changes. See "
@@ -576,188 +569,236 @@ msgstr ""
576
  "Вам потрібно зробити цей файл доступним для запису, перед тим як ви зможете "
577
  "зберегти свої зміни. Перегляньте %sКодекс%s для додаткової інформації."
578
 
579
- #: bws_menu.php:116
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
580
  msgid ""
581
- "This license key is bind to another website. Change it via personal Client "
582
  "Area."
583
  msgstr ""
584
  "Цей ліцензійний ключ прив'язано до іншого сайту. Змініть це в Client Area."
585
 
586
- #: bws_menu.php:116
587
  msgid "Log in"
588
  msgstr "Увійти"
589
 
590
- #: bws_menu.php:132
591
- msgid "Congratulations! Pro Membership license is successfully activated."
592
  msgstr "Вітаємо! Pro Membership ліцензія успішно активована."
593
 
594
- #: bws_menu.php:149
595
  msgid "Please enter your license key."
596
  msgstr "Будь ласка, введіть ваш ліцензійний ключ."
597
 
598
- #: bws_menu.php:161
599
  msgid "Not set"
600
  msgstr "Не задано"
601
 
602
- #: bws_menu.php:163 bws_menu.php:164
603
  msgid "On"
604
  msgstr "Увімк."
605
 
606
- #: bws_menu.php:163 bws_menu.php:164
607
  msgid "Off"
608
  msgstr "Вимк."
609
 
610
- #: bws_menu.php:165 bws_menu.php:166 bws_menu.php:167 bws_menu.php:168
611
- #: bws_menu.php:169 bws_menu.php:181
612
  msgid "N/A"
613
  msgstr "Невідомо"
614
 
615
- #: bws_menu.php:169
616
  msgid " Mb"
617
  msgstr "Мб"
618
 
619
- #: bws_menu.php:170 bws_menu.php:171 bws_menu.php:172 bws_menu.php:177
620
  msgid "Yes"
621
  msgstr "Так"
622
 
623
- #: bws_menu.php:170 bws_menu.php:171 bws_menu.php:172 bws_menu.php:179
624
  msgid "No"
625
  msgstr "Ні"
626
 
627
- #: bws_menu.php:190
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
628
  msgid "Operating System"
629
  msgstr "Операційна система"
630
 
631
- #: bws_menu.php:191
632
  msgid "Server"
633
  msgstr "Тип серверу"
634
 
635
- #: bws_menu.php:192
636
- msgid "Memory usage"
637
- msgstr "Пам’яті використано"
638
-
639
- #: bws_menu.php:193
640
- msgid "MYSQL Version"
641
- msgstr "Версія MYSQL"
642
-
643
- #: bws_menu.php:194
644
- msgid "SQL Mode"
645
- msgstr "Режим SQL"
646
-
647
- #: bws_menu.php:195
648
  msgid "PHP Version"
649
  msgstr "Версія PHP"
650
 
651
- #: bws_menu.php:196
652
  msgid "PHP Safe Mode"
653
  msgstr "PHP Безпечний режим"
654
 
655
- #: bws_menu.php:197
656
  msgid "PHP Allow URL fopen"
657
  msgstr "Дозволити PHP URL fopen"
658
 
659
- #: bws_menu.php:198
660
  msgid "PHP Memory Limit"
661
  msgstr "Ліміт пам’яті"
662
 
663
- #: bws_menu.php:199
 
 
 
 
664
  msgid "PHP Max Upload Size"
665
  msgstr "Макс. розмір файлу, що завантажується"
666
 
667
- #: bws_menu.php:200
668
  msgid "PHP Max Post Size"
669
  msgstr "Макс. розмір посту"
670
 
671
- #: bws_menu.php:201
672
  msgid "PHP Max Script Execute Time"
673
  msgstr "Макс. час виконання сценарію"
674
 
675
- #: bws_menu.php:202
676
  msgid "PHP Exif support"
677
  msgstr "Підтримка PHP Exif"
678
 
679
- #: bws_menu.php:203
680
  msgid "PHP IPTC support"
681
  msgstr "Підтримка PHP IPTC"
682
 
683
- #: bws_menu.php:204
684
  msgid "PHP XML support"
685
  msgstr "Підтримка PHP XML"
686
 
687
- #: bws_menu.php:205
688
- msgid "Site URL"
689
- msgstr "Адреса сайту"
690
 
691
- #: bws_menu.php:206
692
- msgid "Home URL"
693
- msgstr "Адреса домашньої сторінки"
694
 
695
- #: bws_menu.php:209
696
- msgid "WordPress Version"
697
- msgstr "Версія WordPress"
698
 
699
- #: bws_menu.php:210
700
- msgid "WordPress DB Version"
701
- msgstr "Версія бази даних WordPress"
702
 
703
- #: bws_menu.php:211
704
- msgid "Multisite"
705
- msgstr "Мультисайт"
706
 
707
- #: bws_menu.php:212
708
- msgid "Active Theme"
709
- msgstr "Активна тема"
710
 
711
- #: bws_menu.php:226
712
  msgid "Please enter a valid email address."
713
  msgstr "Будь ласка, введіть коректний емейл."
714
 
715
- #: bws_menu.php:230
716
- msgid "Email with system info is sent to "
717
  msgstr "Емейл з системною інформацією надіслано на"
718
 
719
- #: bws_menu.php:234
720
  msgid "Thank you for contacting us."
721
  msgstr "Дякуємо, що звернулись до нас."
722
 
723
- #: bws_menu.php:267
724
  msgid "Sorry, email message could not be delivered."
725
  msgstr "Вибачте, ваше емейл не може бути доставлено"
726
 
727
- #: bws_menu.php:286 bws_menu.php:632
728
  msgid "System status"
729
  msgstr "Системна інформація"
730
 
731
- #: bws_menu.php:287
732
  msgid "Support"
733
- msgstr "Поддержка"
734
 
735
- #: bws_menu.php:288
736
  msgid "Manage purchased licenses & subscriptions"
737
  msgstr "Управління придбаними ліцензіями і підписками"
738
 
739
- #: bws_menu.php:288
740
- msgid "Client Area"
741
- msgstr "Client Area"
742
-
743
- #: bws_menu.php:296
744
  #, php-format
745
  msgid "Get Access to %s+ Premium Plugins"
746
  msgstr "Отримати Доступ до %s+ Преміум Плагинам"
747
 
748
- #: bws_menu.php:298
749
  msgid "Subscribe to Pro Membership"
750
  msgstr "Підписатися на Pro Membership"
751
 
752
- #: bws_menu.php:309
753
  msgid "Enter your license key"
754
  msgstr "Ваш ліцензійний ключ"
755
 
756
- #: bws_menu.php:331
757
  msgid "Upload Plugin"
758
  msgstr "Завантажити плагін"
759
 
760
- #: bws_menu.php:335
761
  #, php-format
762
  msgid ""
763
  "The plugin generated %d characters of <strong>unexpected output</strong> "
@@ -770,7 +811,7 @@ msgstr ""
770
  "надіслані&#8221;, проблеми з каналами чи інші неполадки, спробуйте вимкнути "
771
  "чи видалити цей плагін."
772
 
773
- #: bws_menu.php:337
774
  msgid ""
775
  "Plugin could not be activated because it triggered a <strong>fatal error</"
776
  "strong>."
@@ -778,128 +819,113 @@ msgstr ""
778
  "Плагін не вдалося активувати, бо він спричинив <strong>критичну помилку</"
779
  "strong>."
780
 
781
- #: bws_menu.php:340
782
  msgid "Plugin <strong>activated</strong>."
783
  msgstr "Плагін <strong>активовано</strong>."
784
 
785
- #: bws_menu.php:347
786
  msgid "Installing Plugin"
787
  msgstr "Встановлення плагіну"
788
 
789
- #: bws_menu.php:353
790
  msgid "Downloading install package from"
791
  msgstr "Завантаження встановлюючого пакунку з"
792
 
793
- #: bws_menu.php:378
794
  msgid "Unpacking the package"
795
  msgstr "Розпакування пакета"
796
 
797
- #: bws_menu.php:383 bws_menu.php:391
798
  msgid "Installing the plugin"
799
  msgstr "Встановлення плагіну"
800
 
801
- #: bws_menu.php:397
802
- msgid "Successfully installed the plugin"
803
- msgstr "Успішно встановлено плагін"
 
804
 
805
- #: bws_menu.php:409
806
  msgid "Activate Plugin"
807
  msgstr "Активувати плагін"
808
 
809
- #: bws_menu.php:409 bws_menu.php:415
810
  msgid "Return to BestWebSoft Panel"
811
  msgstr "Назад до BestWebSoft Panel"
812
 
813
- #: bws_menu.php:419 bws_menu.php:434 bws_menu.php:563
814
  msgid "All"
815
  msgstr "Всі"
816
 
817
- #: bws_menu.php:420 bws_menu.php:620
818
  msgid "Installed"
819
  msgstr "Встановлені"
820
 
821
- #: bws_menu.php:421
822
  msgid "Not Installed"
823
  msgstr "Не встановлені"
824
 
825
- #: bws_menu.php:427
826
  msgid "Filter results"
827
  msgstr "Фільтр результатів"
828
 
829
- #: bws_menu.php:430 bws_menu.php:559
830
  msgid "Category"
831
  msgstr "Категорія"
832
 
833
- #: bws_menu.php:494
834
  msgid "Not installed"
835
  msgstr "Не встановлен"
836
 
837
- #: bws_menu.php:498
838
  msgid "Renew to get updates"
839
  msgstr "Продовжити для поновлення"
840
 
841
- #: bws_menu.php:501
842
  #, php-format
843
  msgid "Update to v %s"
844
  msgstr "Оновити до версії %s"
845
 
846
- #: bws_menu.php:513 bws_menu.php:536 bws_menu.php:545
847
  msgid "Install Now"
848
  msgstr "Встановити"
849
 
850
- #: bws_menu.php:519
851
  msgid "Upgrade to Pro"
852
  msgstr "Оновитися на Pro"
853
 
854
- #: bws_menu.php:523
855
- msgid "Donate"
856
- msgstr "Пожертвувати"
857
-
858
- #: bws_menu.php:533 bws_menu.php:542
859
  msgid "Activate this plugin"
860
  msgstr "Активувати плагін"
861
 
862
- #: bws_menu.php:545
863
  msgid "Install this plugin"
864
  msgstr "Встановити плагін"
865
 
866
- #: bws_menu.php:554
867
  msgid "Nothing found. Try another criteria."
868
  msgstr "Нічого не знайдено. Спробуйте інші критерії."
869
 
870
- #: bws_menu.php:591 bws_menu.php:611
871
  #, php-format
872
  msgid "By %s"
873
  msgstr "За %s"
874
 
875
- #: bws_menu.php:618
876
  msgid "Already Installed"
877
  msgstr "Уже встановлено %s"
878
 
879
- #: bws_menu.php:629
880
  msgid "Browse Free WordPress Themes"
881
  msgstr "Огляд безкоштовних WordPress тем"
882
 
883
- #: bws_menu.php:638
884
  msgid "Send to support"
885
  msgstr "Відправити службі тех. підтримки"
886
 
887
- #: bws_menu.php:645
888
  msgid "Send to custom email &#187;"
889
  msgstr "Відправити на електронну адресу &#187;"
890
 
891
- #: bws_menu.php:652
892
- msgid "Environment"
893
- msgstr "Системне оточення"
894
-
895
- #: bws_menu.php:663
896
- msgid "Active Plugins"
897
- msgstr "Активні плагіни"
898
-
899
- #: bws_menu.php:676
900
- msgid "Inactive Plugins"
901
- msgstr "Не активні плагіни"
902
-
903
  #: product_list.php:7
904
  msgid "Advertisement"
905
  msgstr "Реклама"
@@ -936,6 +962,221 @@ msgstr "Утиліти"
936
  msgid "Other"
937
  msgstr "Інше"
938
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
939
  #~ msgid "Activate Membership"
940
  #~ msgstr "Активувати Membership"
941
 
@@ -975,9 +1216,6 @@ msgstr "Інше"
975
  #~ msgid "Configure Settings"
976
  #~ msgstr "Налаштувати плагін"
977
 
978
- #~ msgid "Need help?"
979
- #~ msgstr "Потрібна допомога?"
980
-
981
  #~ msgid "Go"
982
  #~ msgstr "Перейти"
983
 
@@ -1018,9 +1256,6 @@ msgstr "Інше"
1018
  #~ "(ім'я користувача - це електронна адреса, яку ви вказуєте при купівлі "
1019
  #~ "продукту), де ви можете внести потрібні зміни."
1020
 
1021
- #~ msgid "Pro plugins"
1022
- #~ msgstr "Плагіни про-версії"
1023
-
1024
  #~ msgid "Activated plugins"
1025
  #~ msgstr "Активовані плагіни"
1026
 
@@ -1096,9 +1331,6 @@ msgstr "Інше"
1096
  #~ msgid "Words"
1097
  #~ msgstr "Слова"
1098
 
1099
- #~ msgid "Captcha Settings"
1100
- #~ msgstr "Настройки КАПЧИ"
1101
-
1102
  #~ msgid "Captcha"
1103
  #~ msgstr "КАПЧА"
1104
 
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-01-25 17:15+0300\n"
6
+ "PO-Revision-Date: 2017-01-25 17:19+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <http://support.bestwebsoft.com>\n"
9
  "Language: ru_RU\n"
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: bws_functions.php:72 bws_functions.php:190
 
 
 
 
 
 
 
 
 
 
 
 
20
  msgid "requires"
21
  msgstr "потребує"
22
 
23
+ #: bws_functions.php:74
24
  msgid ""
25
  "or higher, that is why it has been deactivated! Please upgrade WordPress and "
26
  "try again."
28
  "чи вище, тому його було деактивовано! Будь ласка оновіть WordPress та "
29
  "спробуйте ще раз."
30
 
31
+ #: bws_functions.php:75
32
  msgid "Back to the WordPress"
33
  msgstr "Повернутися на WordPress на"
34
 
35
+ #: bws_functions.php:77
36
  msgid "Plugins page"
37
  msgstr "Сторінку Плагінів"
38
 
39
+ #: bws_functions.php:91
40
+ msgid "Like the plugin?"
41
+ msgstr "Сподобався плагін?"
42
+
43
+ #: bws_functions.php:93
44
+ msgid "Rate it"
45
+ msgstr "Оцінити"
46
+
47
+ #: bws_functions.php:102
48
+ msgid "Need help?"
49
+ msgstr "Потрібна допомога?"
50
+
51
+ #: bws_functions.php:103 bws_functions.php:914
52
+ msgid "Visit Help Center"
53
+ msgstr "Перейти в Help Center"
54
+
55
+ #: bws_functions.php:106
56
+ msgid "Want to support the plugin?"
57
+ msgstr "Хочете підтримати плагін?"
58
+
59
+ #: bws_functions.php:107 bws_menu.php:553
60
+ msgid "Donate"
61
+ msgstr "Пожертвувати"
62
+
63
+ #: bws_functions.php:127
64
+ msgid "WARNING: Illegal use notification"
65
+ msgstr "УВАГА: виявлено несанкціоноване використання плагіну"
66
+
67
+ #: bws_functions.php:127
68
+ msgid ""
69
+ "You can use one license of the Pro plugin for one domain only. Please check "
70
+ "and edit your license or domain if necessary using you personal Client Area. "
71
+ "We strongly recommend you to solve the problem within 24 hours, otherwise "
72
+ "the Pro plugin will be deactivated."
73
+ msgstr ""
74
+ "Ви можете використовувати одну ліцензію Про-плагіну для одного домену. Будь "
75
+ "ласка, переконайтесь, що інформацію щодо ліцензії і домену введено вірно, у "
76
+ "вкладці Client Area. Ми настійливо рекомендуємо Вам вирішити це питання "
77
+ "протягом 24 годин, інакше плагін буде деактивовано."
78
+
79
+ #: bws_functions.php:127 bws_functions.php:339 bws_menu.php:627
80
+ #: class-bws-settings.php:136
81
+ msgid "Learn More"
82
+ msgstr "Дізнатись більше"
83
+
84
+ #: bws_functions.php:144
85
+ msgid ""
86
+ "Notice: Your Pro Trial license has expired. To continue using the plugin, "
87
+ "you should buy a Pro license"
88
+ msgstr ""
89
+ "Увага: Термін дії Pro Trial версії плагіну скінчився. Щоб продовжити "
90
+ "користуватись плагіном, будь ласка, придбайте Pro ліцензію"
91
+
92
+ #: bws_functions.php:146
93
+ msgid ""
94
+ "Your license has expired. To continue getting top-priority support and "
95
+ "plugin updates, you should extend it."
96
+ msgstr ""
97
+ "Строк вашої ліцензії витік. Якщо ви хочете отримувати першочергову технічну "
98
+ "підтримку та оновлювати плагін у майбутньому, вам слід подовжити ліцензію."
99
+
100
+ #: bws_functions.php:146 bws_functions.php:382 deprecated.php:584
101
+ msgid "Learn more"
102
+ msgstr "Дізнатись більше"
103
+
104
+ #: bws_functions.php:164
105
+ #, php-format
106
+ msgid "Notice: You are using the Pro Trial license of %s plugin."
107
+ msgstr "Увага: Ви використовуєте тріал Pro версію плагіну %s."
108
+
109
+ #: bws_functions.php:166
110
+ msgid "Notice: You are using the Pro Trial license of plugin."
111
+ msgstr "Увага: Ви використовуєте тріал Pro версію плагіну."
112
+
113
+ #: bws_functions.php:169
114
+ msgid "The Pro Trial license will expire on"
115
+ msgstr "Trial період Pro версії плагіну закінчується"
116
+
117
+ #: bws_functions.php:192
118
  msgid ""
119
  "or higher! We do not guarantee that our plugin will work correctly. Please "
120
  "upgrade to WordPress latest version."
122
  "чи вище! Ми не гарантуємо, що наш плагін буде працювати правильно. Будь "
123
  "ласка, оновіть WordPress до останньої версії."
124
 
125
+ #: bws_functions.php:207
126
  msgid "Thank you for installing"
127
  msgstr "Дякуємо, що встановили"
128
 
129
+ #: bws_functions.php:208
130
  msgid "Let's get started"
131
  msgstr "Розпочнемо"
132
 
133
+ #: bws_functions.php:209 bws_functions.php:242 bws_menu.php:557
134
+ #: bws_menu.php:559
135
  msgid "Settings"
136
  msgstr "Налаштування"
137
 
138
+ #: bws_functions.php:211 deprecated.php:694 bws_menu.php:328
139
+ #: class-bws-settings.php:736 class-bws-settings.php:1046
140
+ #: class-bws-settings.php:1076
141
  msgid "or"
142
  msgstr "або"
143
 
144
+ #: bws_functions.php:212 bws_functions.php:244
145
  msgid "Add New"
146
  msgstr "Додати"
147
 
148
+ #: bws_functions.php:216 bws_functions.php:226 bws_functions.php:330
149
+ #: bws_functions.php:378 bws_functions.php:482
150
  msgid "Close notice"
151
  msgstr "Закрити"
152
 
153
+ #: bws_functions.php:231
154
  msgid "Thank you for installing plugins by BestWebSoft!"
155
  msgstr "Дякуємо, що встановили плагіни від BestWebSoft!"
156
 
157
+ #: bws_functions.php:233
158
  msgid "More Details"
159
  msgstr "Деталі"
160
 
161
+ #: bws_functions.php:234
162
  msgid "Less Details"
163
  msgstr "Сховати Деталі"
164
 
165
+ #: bws_functions.php:262
166
+ msgid "Deprecated function(-s) is used on the site here:"
167
+ msgstr "Застарілі функціі використовується на сайті тут:"
168
+
169
+ #: bws_functions.php:276
170
+ msgid ""
171
+ "This function(-s) will be removed over time. Please update the product(-s)."
172
+ msgstr ""
173
+ "Ці функції буде видалено через деякий час. Будь ласка, поновіть продукт."
174
+
175
+ #: bws_functions.php:335
176
  msgid "It’s time to upgrade your"
177
  msgstr "Настав час модернізувати Ваш"
178
 
179
+ #: bws_functions.php:335
180
  msgid "to"
181
  msgstr "до"
182
 
183
+ #: bws_functions.php:335
184
  msgid "version!"
185
  msgstr "версії!"
186
 
187
+ #: bws_functions.php:336
188
  msgid "Extend standard plugin functionality with new great options."
189
  msgstr "Розширює можливості стандартного функціоналу плагіна."
190
 
191
+ #: bws_functions.php:382
192
+ #, php-format
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
193
  msgid ""
194
+ "Your license key for %s expires on %s and you won't be granted TOP-PRIORITY "
195
+ "SUPPORT or UPDATES."
196
  msgstr ""
197
+ "Ваш ліцензійний ключ для %s витікає %s та ви більше не будете отримувати "
198
+ "першочергову технічну підтримку та оновлення."
 
 
 
 
 
199
 
200
+ #: bws_functions.php:477
201
+ msgid "Thank you for choosing"
202
+ msgstr "Дякуємо, що обрали"
203
 
204
+ #: bws_functions.php:478
205
  msgid ""
206
+ "If you have a feature, suggestion or idea you'd like to see in the plugin, "
207
+ "we'd love to hear about it!"
208
  msgstr ""
209
+ "Якщо у вас є пропозиції по додаванню нового або поліпшення поточного "
210
+ "функціоналу плагіна, будь ласка, надсилайте їх нам! Ми завжди відкриті для "
211
+ "нових ідей!"
212
 
213
+ #: bws_functions.php:479
214
+ msgid "Suggest a Feature"
215
+ msgstr "Запропонувати функціонал"
 
 
 
 
216
 
217
+ #: bws_functions.php:495 class-bws-settings.php:527 class-bws-settings.php:530
218
+ #: class-bws-settings.php:585 class-bws-settings.php:588
219
+ msgid "Notice"
220
+ msgstr "Зауважте"
 
 
 
221
 
222
+ #: bws_functions.php:495
223
+ msgid "The plugin's settings have been changed."
224
+ msgstr "Налаштування плагіну змінено."
 
 
225
 
226
+ #: bws_functions.php:496 deprecated.php:640 class-bws-settings.php:175
227
+ #: class-bws-settings.php:189
228
+ msgid "Save Changes"
229
+ msgstr "Зберегти зміни"
230
 
231
+ #: bws_functions.php:510
232
  msgid ""
233
+ "You can always look at premium options by checking the \"Pro Options\" in "
234
+ "the \"Misc\" tab."
235
  msgstr ""
236
+ "Ви завжди можете подивитися на преміум опції, натиснувши на кнопку \"Pro "
237
+ "опції\" на вкладці \"Різне\"."
238
 
239
+ #: bws_functions.php:649
240
+ msgid "Add shortcode"
241
+ msgstr "Додати шорткод"
 
 
242
 
243
+ #: bws_functions.php:649
244
+ msgid "Add BestWebSoft plugins' shortcodes using this button."
245
+ msgstr "Додайте шорткоди BestWebSoft плагінів за допомогою цієї кнопки."
 
 
 
 
246
 
247
+ #: bws_functions.php:698
248
+ msgid "Close"
249
+ msgstr "Закрити"
250
 
251
+ #: bws_functions.php:790
252
+ msgid "Are you sure you want to restore default settings?"
253
+ msgstr "Ви впевнені, що хочете скинути налаштування плагіну до стандартних?"
 
 
254
 
255
+ #: bws_functions.php:793
256
+ msgid "Yes, restore all settings"
257
+ msgstr "Так, скинути налаштування"
258
 
259
+ #: bws_functions.php:794
260
+ msgid "No, go back to the settings page"
261
+ msgstr "Ні, повернутись назад на сторінку налаштувань"
262
 
263
+ #: bws_functions.php:840
264
+ msgid "Plugin"
265
+ msgstr "Плагін"
266
 
267
+ #: bws_functions.php:849
268
+ msgid "Shortcode settings"
269
+ msgstr "Налаштування шорткоду"
270
 
271
+ #: bws_functions.php:854
272
+ msgid "The shortcode will be inserted"
273
+ msgstr "Буде вставлено шорткод"
274
 
275
+ #: bws_functions.php:859
276
+ msgid "Insert"
277
+ msgstr "Вставити"
278
 
279
+ #: bws_functions.php:919
280
+ msgid "FAQ"
281
+ msgstr "FAQ"
282
 
283
+ #: bws_functions.php:925
284
+ msgid "For more information:"
285
+ msgstr "Для отримання додаткової інформації:"
286
 
287
+ #: bws_functions.php:926
288
+ msgid "Documentation"
289
+ msgstr "Документація"
 
290
 
291
+ #: bws_functions.php:927
292
+ msgid "Video Instructions"
293
+ msgstr "Відео інструкції"
 
 
294
 
295
+ #: bws_functions.php:928
296
+ msgid "Submit a Request"
297
+ msgstr "Надіслати запит"
 
 
298
 
299
+ #: deprecated.php:91 bws_menu.php:307 bws_menu.php:311 bws_menu.php:360
300
+ msgid "Plugins"
301
+ msgstr "Плагіни"
302
 
303
+ #: deprecated.php:92 bws_menu.php:308 bws_menu.php:312 bws_menu.php:611
304
+ msgid "Themes"
305
+ msgstr "Теми"
306
 
307
+ #: deprecated.php:93
308
+ msgid "System Status"
309
+ msgstr "Системна інформація"
310
+
311
+ #: deprecated.php:133 deprecated.php:199 deprecated.php:352 bws_menu.php:120
312
+ #: class-bws-settings.php:807 class-bws-settings.php:873
313
+ #: class-bws-settings.php:909
314
  msgid ""
315
+ "Something went wrong. Please try again later. If the error appears again, "
316
+ "please contact us"
317
+ msgstr ""
318
+ "Щось не так, спробуйте пізніше. Якщо помилка повториться, будь ласка, "
319
+ "повідомте нам"
320
 
321
+ #: deprecated.php:133 deprecated.php:199 deprecated.php:352 bws_menu.php:120
322
+ #: class-bws-settings.php:807 class-bws-settings.php:873
323
+ #: class-bws-settings.php:909
324
+ msgid "We are sorry for inconvenience."
325
+ msgstr "Просимо вибачення за незручності."
326
+
327
+ #: deprecated.php:139 deprecated.php:358 bws_menu.php:126
328
+ #: class-bws-settings.php:813 class-bws-settings.php:915
329
  msgid "Wrong license key."
330
  msgstr "Неправильний ліцензійний ключ."
331
 
332
+ #: deprecated.php:141 deprecated.php:360 class-bws-settings.php:815
333
+ #: class-bws-settings.php:917
334
+ msgid "This license key is bound to another site."
335
  msgstr "Цей ліцензійний ключ прив'язано до іншого сайту."
336
 
337
+ #: deprecated.php:143 class-bws-settings.php:817
338
  msgid ""
339
  "This license key is valid, but Your license has expired. If you want to "
340
  "update our plugin in future, you should extend the license."
342
  "Даний ліцензійний ключ дійсний, але строк вашої ліцензії витік. Якщо ви "
343
  "хочете оновлювати наш плагін у майбутньому, вам слід подовжити ліцензію."
344
 
345
+ #: deprecated.php:145 class-bws-settings.php:819
346
  msgid "Unfortunately, you have exceeded the number of available tries."
347
  msgstr "На жаль, ви перевищили кількість допустимих спроб."
348
 
349
+ #: deprecated.php:147 class-bws-settings.php:821
350
  msgid ""
351
  "Unfortunately, the Pro Trial licence was already installed to this domain. "
352
  "The Pro Trial license can be installed only once."
353
  msgstr ""
354
+ "На жаль, Trial Pro версія плагіну уже встановлювалась на цей домен. Trial "
355
  "Pro версію можна встановлювати лише один раз."
356
 
357
+ #: deprecated.php:151 class-bws-settings.php:825
358
  msgid "The Pro Trial license key is valid."
359
  msgstr "Ключ тріал Pro версії вірний."
360
 
361
+ #: deprecated.php:153 bws_menu.php:140 class-bws-settings.php:827
362
  msgid "The license key is valid."
363
  msgstr "Ліцензійний ключ дійсний."
364
 
365
+ #: deprecated.php:156 bws_menu.php:142 class-bws-settings.php:830
366
  msgid "Your license will expire on"
367
  msgstr "Ваша ліцензія закінчується"
368
 
369
+ #: deprecated.php:159 deprecated.php:246 class-bws-settings.php:833
370
+ #, php-format
371
+ msgid ""
372
+ "In order to continue using the plugin it is necessary to buy a %s license."
373
+ msgstr "Щоб продовжити користуватись плагіном, потрібно придбати %s ліцензію."
374
+
375
+ #: deprecated.php:204
376
  msgid "Please, enter your license key"
377
  msgstr "Будь ласка, введіть ваш ліцензійний ключ"
378
 
379
+ #: deprecated.php:223
380
  msgid ""
381
+ "If necessary, you can check if the license key is correct or reenter it in "
382
+ "the field below. You can find your license key on your personal page - "
383
+ "Client Area - on our website"
384
  msgstr ""
385
  "При необхідності ви можете перевірити правильність вашого ліцензійного ключа "
386
  "або знову ввести його у полі, що знаходиться нижче. Ви можете знайти свій "
387
  "ліцензійний ключ на вашій персональній сторінці - Client area - на нашому "
388
+ "сайті"
389
 
390
+ #: deprecated.php:223
391
  msgid ""
392
  "(your username is the email address specified during the purchase). If "
393
  "necessary, please submit \"Lost your password?\" request."
395
  "(ваше ім'я користувача - це емейл, який ви вказували при купівлі). При "
396
  "необхідності, будь ласка, відправте запит на відновлення вашого паролю."
397
 
398
+ #: deprecated.php:227 bws_menu.php:336 bws_menu.php:347
399
+ #: class-bws-settings.php:749
400
  msgid "Check license key"
401
  msgstr "Перевірте ліцензійний ключ"
402
 
403
+ #: deprecated.php:247
404
+ msgid "After that, you can activate it by entering your license key."
405
+ msgstr "Після цього ви зможете активувати його ввівши ліцензійний ключ."
406
 
407
+ #: deprecated.php:249 deprecated.php:688
408
+ msgid "License key can be found in the"
409
+ msgstr "Ліцензійний ключ можна знайти в"
 
 
 
 
 
 
 
 
410
 
411
+ #: deprecated.php:251 deprecated.php:690
412
+ msgid "(your username is the email address specified during the purchase)."
413
+ msgstr "(ваше ім'я користувача - це емейл, який ви вказували при купівлі)"
414
+
415
+ #: deprecated.php:259 deprecated.php:267 deprecated.php:629 deprecated.php:700
416
+ #: deprecated.php:709 bws_menu.php:345 bws_menu.php:563 bws_menu.php:572
417
+ #: class-bws-settings.php:728
418
+ msgid "Activate"
419
+ msgstr "Активувати"
420
 
421
+ #: deprecated.php:261 bws_menu.php:130 bws_menu.php:334
422
+ msgid "Unfortunately, you have exceeded the number of available tries per day."
423
+ msgstr "На жаль, ви перевищили кількість допустимих спроб."
424
+
425
+ #: deprecated.php:278
426
  msgid ""
427
+ "Congratulations! The Pro license of the plugin is activated successfully."
428
+ msgstr "Вітаємо! Pro версію плагіну успішно активовано."
 
 
 
429
 
430
+ #: deprecated.php:280 deprecated.php:669
431
+ msgid "Please, go to"
432
+ msgstr "Будь ласка, перейдіть на"
433
 
434
+ #: deprecated.php:280 deprecated.php:669
435
+ msgid "the setting page"
436
+ msgstr "сторінку установок"
 
437
 
438
+ #: deprecated.php:281 deprecated.php:670
439
+ msgid "You will be redirected automatically in 5 seconds."
440
+ msgstr "Вас буде перенаправлено автоматично через 5 секунд."
441
 
442
+ #: deprecated.php:315
443
+ msgid "Check premium options on the plugin settings page!"
444
+ msgstr "Подивіться преміум опції на сторінці налаштувань плагіна!"
445
 
446
+ #: deprecated.php:322 bws_menu.php:99 class-bws-settings.php:781
447
+ msgid "Wrong license key"
448
+ msgstr "Невірний ключ ліцензії"
449
 
450
+ #: deprecated.php:362 deprecated.php:703 class-bws-settings.php:733
451
+ #: class-bws-settings.php:919
452
+ msgid ""
453
+ "Unfortunately, you have exceeded the number of available tries per day. "
454
+ "Please, upload the plugin manually."
455
+ msgstr ""
456
+ "На жаль, ви перевищили кількість доступних спроб на день. Будь ласка, "
457
+ "завантажте плагін вручну"
458
+
459
+ #: deprecated.php:364 bws_menu.php:132 class-bws-settings.php:921
460
+ #, php-format
461
+ msgid ""
462
+ "Unfortunately, Your license has expired. To continue getting top-priority "
463
+ "support and plugin updates, you should extend it in your %s"
464
+ msgstr ""
465
+ "На жаль, ваша ліцензія скінчилась. Для того, щоб і надалі отримувати "
466
+ "першочергову техпідтримку і оновлення, будь ласка, продовжте ліцензію на %s"
467
 
468
+ #: deprecated.php:366 bws_menu.php:134 class-bws-settings.php:923
469
+ msgid ""
470
+ "Unfortunately, the Pro licence was already installed to this domain. The Pro "
471
+ "Trial license can be installed only once."
472
+ msgstr ""
473
+ "На жаль, Pro ліцензія уже використовувалась на цьому домені. Тріал Pro "
474
+ "версії плагіну можна використати лише один раз."
475
+
476
+ #: deprecated.php:387 deprecated.php:409 deprecated.php:431 bws_menu.php:400
477
+ #: bws_menu.php:431 bws_menu.php:442 class-bws-settings.php:947
478
+ #: class-bws-settings.php:969 class-bws-settings.php:991
479
+ msgid "Failed to download the zip archive. Please, upload the plugin manually"
480
  msgstr ""
481
+ "Помилка при завантаженні zip-архіву. Будь ласка, завантажте плагін вручну"
 
482
 
483
+ #: deprecated.php:399 bws_menu.php:417 class-bws-settings.php:959
484
+ msgid "Failed to open the zip archive. Please, upload the plugin manually"
485
+ msgstr "Помилка при відкритті zip-архіву. Будь ласка, завантажте плагін вручну"
486
 
487
+ #: deprecated.php:405 bws_menu.php:424 class-bws-settings.php:965
488
  msgid ""
489
+ "Your server does not support either ZipArchive or Phar. Please, upload the "
490
+ "plugin manually"
491
  msgstr ""
492
+ "Ваш сервер не підтримує формати Zip і Phar. Будь ласка, завантажте плагін "
493
+ "вручну"
 
 
 
 
 
 
 
 
 
 
 
 
 
494
 
495
+ #: deprecated.php:412 bws_menu.php:434 class-bws-settings.php:972
496
+ msgid "UploadDir is not writable. Please, upload the plugin manually"
497
+ msgstr ""
498
+ "Немає доступу до теки завантажень WordPress. Будь ласка, завантажте плагін "
499
+ "вручну"
500
 
501
+ #: deprecated.php:435 bws_menu.php:151 class-bws-settings.php:995
502
  msgid ""
503
+ "Something went wrong. Try again later or upload the plugin manually. We are "
504
+ "sorry for inconvenience."
505
  msgstr ""
506
+ "Виникли певні проблеми. Спробуйте ще раз пізніше або завантажте плагін "
507
+ "вручну. Просимо вибачення за незручності."
 
 
 
 
 
 
 
 
508
 
509
+ #: deprecated.php:463 class-bws-settings.php:1030
510
+ msgid "Please, enter Your license key"
511
+ msgstr "Будь ласка, впишіть ваш ліцензійний ключ"
512
 
513
+ #: deprecated.php:478
514
  msgid "Restore all plugin settings to defaults"
515
  msgstr "Скинути налаштування плагіну до стандартних"
516
 
517
+ #: deprecated.php:480
518
  msgid "Restore settings"
519
  msgstr "Скинути налаштування"
520
 
521
+ #: deprecated.php:497 class-bws-settings.php:421
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
522
  msgid "You do not have sufficient permissions to edit plugins for this site."
523
  msgstr "У вас недостатньо повноважень для редагування плагінів цього сайту."
524
 
525
+ #: deprecated.php:548 deprecated.php:575
526
  #, php-format
527
  msgid "File %s edited successfully."
528
  msgstr "Файл %s успішно відредаговано."
529
 
530
+ #: deprecated.php:550 deprecated.php:577
531
  msgid "Not enough permissions to create or update the file"
532
  msgstr "У Вас недостатньо дозволів для створення або поновлення файлу"
533
 
534
+ #: deprecated.php:580
535
  msgid "Not enough permissions to create the file"
536
  msgstr "У Вас недостатньо дозволів для створення файлу"
537
 
538
+ #: deprecated.php:618 class-bws-settings.php:426
539
  msgid "These styles will be added to the header on all pages of your site."
540
  msgstr "Ці стилі будуть додані в заголовок на всіх сторінках вашого сайту."
541
 
542
+ #: deprecated.php:620 class-bws-settings.php:429
543
  #, php-format
544
  msgid ""
545
  "This PHP code will be hooked to the %s action and will be printed on front "
547
  msgstr ""
548
  "Цей PHP код буде прикріплений до %s action і буде додано лише у фронтенді."
549
 
550
+ #: deprecated.php:624
551
  msgid "Editing"
552
  msgstr "Редагування"
553
 
554
+ #: deprecated.php:626 class-bws-settings.php:450
555
  msgid "Browsing"
556
  msgstr "Огляд"
557
 
558
+ #: deprecated.php:633 class-bws-settings.php:461
559
  #, php-format
560
  msgid "Learn more about %s"
561
  msgstr "Дізнатись більше про %s"
562
 
563
+ #: deprecated.php:644 class-bws-settings.php:440
564
  #, php-format
565
  msgid ""
566
  "You need to make this files writable before you can save your changes. See "
569
  "Вам потрібно зробити цей файл доступним для запису, перед тим як ви зможете "
570
  "зберегти свої зміни. Перегляньте %sКодекс%s для додаткової інформації."
571
 
572
+ #: deprecated.php:667
573
+ msgid ""
574
+ "Congratulations! Pro version of the plugin is installed and activated "
575
+ "successfully."
576
+ msgstr "Вітаємо! Pro версію плагіну успішно завантажено та активовано."
577
+
578
+ #: deprecated.php:677
579
+ msgid "Show Pro features"
580
+ msgstr "Показати Pro опції"
581
+
582
+ #: deprecated.php:684
583
+ msgid "Enter your license key to install and activate"
584
+ msgstr "Введіть ліцензійний ключ для установки і активації"
585
+
586
+ #: deprecated.php:686
587
+ msgid "version of the plugin."
588
+ msgstr "версія плагіна."
589
+
590
+ #: deprecated.php:694 class-bws-settings.php:736
591
+ #, php-format
592
+ msgid "Start Your Free %s-Day Trial Now"
593
+ msgstr "Спробуйте %s-денну Trial версію безкоштовно"
594
+
595
+ #: bws_menu.php:128
596
  msgid ""
597
+ "This license key is bound to another site. Change it via personal Client "
598
  "Area."
599
  msgstr ""
600
  "Цей ліцензійний ключ прив'язано до іншого сайту. Змініть це в Client Area."
601
 
602
+ #: bws_menu.php:128
603
  msgid "Log in"
604
  msgstr "Увійти"
605
 
606
+ #: bws_menu.php:144
607
+ msgid "Congratulations! Pro Membership license is activated successfully."
608
  msgstr "Вітаємо! Pro Membership ліцензія успішно активована."
609
 
610
+ #: bws_menu.php:161
611
  msgid "Please enter your license key."
612
  msgstr "Будь ласка, введіть ваш ліцензійний ключ."
613
 
614
+ #: bws_menu.php:172
615
  msgid "Not set"
616
  msgstr "Не задано"
617
 
618
+ #: bws_menu.php:174 bws_menu.php:175
619
  msgid "On"
620
  msgstr "Увімк."
621
 
622
+ #: bws_menu.php:174 bws_menu.php:175
623
  msgid "Off"
624
  msgstr "Вимк."
625
 
626
+ #: bws_menu.php:176 bws_menu.php:177 bws_menu.php:178 bws_menu.php:179
627
+ #: bws_menu.php:180 bws_menu.php:181 bws_menu.php:190
628
  msgid "N/A"
629
  msgstr "Невідомо"
630
 
631
+ #: bws_menu.php:181
632
  msgid " Mb"
633
  msgstr "Мб"
634
 
635
+ #: bws_menu.php:182 bws_menu.php:183 bws_menu.php:184 bws_menu.php:188
636
  msgid "Yes"
637
  msgstr "Так"
638
 
639
+ #: bws_menu.php:182 bws_menu.php:183 bws_menu.php:184 bws_menu.php:188
640
  msgid "No"
641
  msgstr "Ні"
642
 
643
+ #: bws_menu.php:195
644
+ msgid "WordPress Environment"
645
+ msgstr "Системне оточення WordPress"
646
+
647
+ #: bws_menu.php:197
648
+ msgid "Home URL"
649
+ msgstr "Адреса домашньої сторінки"
650
+
651
+ #: bws_menu.php:198
652
+ msgid "Website URL"
653
+ msgstr "Адреса сайту"
654
+
655
+ #: bws_menu.php:199
656
+ msgid "WP Version"
657
+ msgstr "Версія WordPress"
658
+
659
+ #: bws_menu.php:200
660
+ msgid "WP Multisite"
661
+ msgstr "Мультисайт"
662
+
663
+ #: bws_menu.php:201
664
+ msgid "WP Memory Limit"
665
+ msgstr "Ліміт пам’яті WordPress"
666
+
667
+ #: bws_menu.php:202
668
+ msgid "Active Theme"
669
+ msgstr "Активна тема"
670
+
671
+ #: bws_menu.php:202 bws_menu.php:248 bws_menu.php:251
672
+ #, php-format
673
+ msgid "by %s"
674
+ msgstr "%s"
675
+
676
+ #: bws_menu.php:206
677
+ msgid "Server Environment"
678
+ msgstr "Системне оточення сервера"
679
+
680
+ #: bws_menu.php:208
681
  msgid "Operating System"
682
  msgstr "Операційна система"
683
 
684
+ #: bws_menu.php:209
685
  msgid "Server"
686
  msgstr "Тип серверу"
687
 
688
+ #: bws_menu.php:210
 
 
 
 
 
 
 
 
 
 
 
 
689
  msgid "PHP Version"
690
  msgstr "Версія PHP"
691
 
692
+ #: bws_menu.php:211
693
  msgid "PHP Safe Mode"
694
  msgstr "PHP Безпечний режим"
695
 
696
+ #: bws_menu.php:212
697
  msgid "PHP Allow URL fopen"
698
  msgstr "Дозволити PHP URL fopen"
699
 
700
+ #: bws_menu.php:213
701
  msgid "PHP Memory Limit"
702
  msgstr "Ліміт пам’яті"
703
 
704
+ #: bws_menu.php:214
705
+ msgid "Memory Usage"
706
+ msgstr "Використання пам'яті"
707
+
708
+ #: bws_menu.php:215
709
  msgid "PHP Max Upload Size"
710
  msgstr "Макс. розмір файлу, що завантажується"
711
 
712
+ #: bws_menu.php:216
713
  msgid "PHP Max Post Size"
714
  msgstr "Макс. розмір посту"
715
 
716
+ #: bws_menu.php:217
717
  msgid "PHP Max Script Execute Time"
718
  msgstr "Макс. час виконання сценарію"
719
 
720
+ #: bws_menu.php:218
721
  msgid "PHP Exif support"
722
  msgstr "Підтримка PHP Exif"
723
 
724
+ #: bws_menu.php:219
725
  msgid "PHP IPTC support"
726
  msgstr "Підтримка PHP IPTC"
727
 
728
+ #: bws_menu.php:220
729
  msgid "PHP XML support"
730
  msgstr "Підтримка PHP XML"
731
 
732
+ #: bws_menu.php:226
733
+ msgid "Database"
734
+ msgstr "База даних"
735
 
736
+ #: bws_menu.php:228
737
+ msgid "WP DB version"
738
+ msgstr "Версія бази даних WordPress"
739
 
740
+ #: bws_menu.php:229
741
+ msgid "MySQL version"
742
+ msgstr "Версія MYSQL"
743
 
744
+ #: bws_menu.php:230
745
+ msgid "SQL Mode"
746
+ msgstr "Режим SQL"
747
 
748
+ #: bws_menu.php:234
749
+ msgid "Active Plugins"
750
+ msgstr "Активні плагіни"
751
 
752
+ #: bws_menu.php:239
753
+ msgid "Inactive Plugins"
754
+ msgstr "Не активні плагіни"
755
 
756
+ #: bws_menu.php:260
757
  msgid "Please enter a valid email address."
758
  msgstr "Будь ласка, введіть коректний емейл."
759
 
760
+ #: bws_menu.php:264
761
+ msgid "Email with system info is sent to"
762
  msgstr "Емейл з системною інформацією надіслано на"
763
 
764
+ #: bws_menu.php:268
765
  msgid "Thank you for contacting us."
766
  msgstr "Дякуємо, що звернулись до нас."
767
 
768
+ #: bws_menu.php:291
769
  msgid "Sorry, email message could not be delivered."
770
  msgstr "Вибачте, ваше емейл не може бути доставлено"
771
 
772
+ #: bws_menu.php:309 bws_menu.php:313 bws_menu.php:662
773
  msgid "System status"
774
  msgstr "Системна інформація"
775
 
776
+ #: bws_menu.php:317
777
  msgid "Support"
778
+ msgstr "Підтримка"
779
 
780
+ #: bws_menu.php:318
781
  msgid "Manage purchased licenses & subscriptions"
782
  msgstr "Управління придбаними ліцензіями і підписками"
783
 
784
+ #: bws_menu.php:326
 
 
 
 
785
  #, php-format
786
  msgid "Get Access to %s+ Premium Plugins"
787
  msgstr "Отримати Доступ до %s+ Преміум Плагинам"
788
 
789
+ #: bws_menu.php:328
790
  msgid "Subscribe to Pro Membership"
791
  msgstr "Підписатися на Pro Membership"
792
 
793
+ #: bws_menu.php:339
794
  msgid "Enter your license key"
795
  msgstr "Ваш ліцензійний ключ"
796
 
797
+ #: bws_menu.php:361
798
  msgid "Upload Plugin"
799
  msgstr "Завантажити плагін"
800
 
801
+ #: bws_menu.php:365
802
  #, php-format
803
  msgid ""
804
  "The plugin generated %d characters of <strong>unexpected output</strong> "
811
  "надіслані&#8221;, проблеми з каналами чи інші неполадки, спробуйте вимкнути "
812
  "чи видалити цей плагін."
813
 
814
+ #: bws_menu.php:367
815
  msgid ""
816
  "Plugin could not be activated because it triggered a <strong>fatal error</"
817
  "strong>."
819
  "Плагін не вдалося активувати, бо він спричинив <strong>критичну помилку</"
820
  "strong>."
821
 
822
+ #: bws_menu.php:370
823
  msgid "Plugin <strong>activated</strong>."
824
  msgstr "Плагін <strong>активовано</strong>."
825
 
826
+ #: bws_menu.php:377
827
  msgid "Installing Plugin"
828
  msgstr "Встановлення плагіну"
829
 
830
+ #: bws_menu.php:383
831
  msgid "Downloading install package from"
832
  msgstr "Завантаження встановлюючого пакунку з"
833
 
834
+ #: bws_menu.php:408
835
  msgid "Unpacking the package"
836
  msgstr "Розпакування пакета"
837
 
838
+ #: bws_menu.php:413 bws_menu.php:421
839
  msgid "Installing the plugin"
840
  msgstr "Встановлення плагіну"
841
 
842
+ #: bws_menu.php:427
843
+ #, php-format
844
+ msgid "The plugin %s is successfully installed."
845
+ msgstr "Плагін %s успішно встановлено."
846
 
847
+ #: bws_menu.php:439
848
  msgid "Activate Plugin"
849
  msgstr "Активувати плагін"
850
 
851
+ #: bws_menu.php:439 bws_menu.php:445
852
  msgid "Return to BestWebSoft Panel"
853
  msgstr "Назад до BestWebSoft Panel"
854
 
855
+ #: bws_menu.php:449 bws_menu.php:464 bws_menu.php:593
856
  msgid "All"
857
  msgstr "Всі"
858
 
859
+ #: bws_menu.php:450 bws_menu.php:650
860
  msgid "Installed"
861
  msgstr "Встановлені"
862
 
863
+ #: bws_menu.php:451
864
  msgid "Not Installed"
865
  msgstr "Не встановлені"
866
 
867
+ #: bws_menu.php:457
868
  msgid "Filter results"
869
  msgstr "Фільтр результатів"
870
 
871
+ #: bws_menu.php:460 bws_menu.php:589
872
  msgid "Category"
873
  msgstr "Категорія"
874
 
875
+ #: bws_menu.php:524
876
  msgid "Not installed"
877
  msgstr "Не встановлен"
878
 
879
+ #: bws_menu.php:528
880
  msgid "Renew to get updates"
881
  msgstr "Продовжити для поновлення"
882
 
883
+ #: bws_menu.php:531
884
  #, php-format
885
  msgid "Update to v %s"
886
  msgstr "Оновити до версії %s"
887
 
888
+ #: bws_menu.php:543 bws_menu.php:566 bws_menu.php:575
889
  msgid "Install Now"
890
  msgstr "Встановити"
891
 
892
+ #: bws_menu.php:549 class-bws-settings.php:149 class-bws-settings.php:1073
893
  msgid "Upgrade to Pro"
894
  msgstr "Оновитися на Pro"
895
 
896
+ #: bws_menu.php:563 bws_menu.php:572
 
 
 
 
897
  msgid "Activate this plugin"
898
  msgstr "Активувати плагін"
899
 
900
+ #: bws_menu.php:575
901
  msgid "Install this plugin"
902
  msgstr "Встановити плагін"
903
 
904
+ #: bws_menu.php:584
905
  msgid "Nothing found. Try another criteria."
906
  msgstr "Нічого не знайдено. Спробуйте інші критерії."
907
 
908
+ #: bws_menu.php:621 bws_menu.php:641
909
  #, php-format
910
  msgid "By %s"
911
  msgstr "За %s"
912
 
913
+ #: bws_menu.php:648
914
  msgid "Already Installed"
915
  msgstr "Уже встановлено %s"
916
 
917
+ #: bws_menu.php:659
918
  msgid "Browse Free WordPress Themes"
919
  msgstr "Огляд безкоштовних WordPress тем"
920
 
921
+ #: bws_menu.php:668
922
  msgid "Send to support"
923
  msgstr "Відправити службі тех. підтримки"
924
 
925
+ #: bws_menu.php:675
926
  msgid "Send to custom email &#187;"
927
  msgstr "Відправити на електронну адресу &#187;"
928
 
 
 
 
 
 
 
 
 
 
 
 
 
929
  #: product_list.php:7
930
  msgid "Advertisement"
931
  msgstr "Реклама"
962
  msgid "Other"
963
  msgstr "Інше"
964
 
965
+ #: class-bws-settings.php:129
966
+ msgid "Information"
967
+ msgstr "Інформація"
968
+
969
+ #: class-bws-settings.php:136
970
+ msgid "Inactive"
971
+ msgstr "Неактивна"
972
+
973
+ #: class-bws-settings.php:144
974
+ msgid "Expired"
975
+ msgstr "Закінчилась"
976
+
977
+ #: class-bws-settings.php:147
978
+ #, php-format
979
+ msgid "%s day(-s) left"
980
+ msgstr "%s днів залишилося"
981
+
982
+ #: class-bws-settings.php:153
983
+ #, php-format
984
+ msgid "Expired on %s"
985
+ msgstr "Витікає %s"
986
+
987
+ #: class-bws-settings.php:153
988
+ msgid "Renew Now"
989
+ msgstr "Відновити зараз"
990
+
991
+ #: class-bws-settings.php:155
992
+ msgid "Active"
993
+ msgstr "Активна"
994
+
995
+ #: class-bws-settings.php:160
996
+ msgid "License"
997
+ msgstr "Ліцензія"
998
+
999
+ #: class-bws-settings.php:163
1000
+ msgid "Status"
1001
+ msgstr "Статус"
1002
+
1003
+ #: class-bws-settings.php:167
1004
+ msgid "Version"
1005
+ msgstr "Версія"
1006
+
1007
+ #: class-bws-settings.php:276
1008
+ msgid "All plugin settings were restored."
1009
+ msgstr "Усі налаштування плагіну відновлені."
1010
+
1011
+ #: class-bws-settings.php:417
1012
+ msgid "Custom Code"
1013
+ msgstr "Користувацький код"
1014
+
1015
+ #: class-bws-settings.php:432
1016
+ msgid "These code will be added to the header on all pages of your site."
1017
+ msgstr "Цей код буде додано в заголовок на всіх сторінках вашого сайту."
1018
+
1019
+ #: class-bws-settings.php:454
1020
+ #, php-format
1021
+ msgid "Activate custom %s code."
1022
+ msgstr "Активувать користувацький %s код."
1023
+
1024
+ #: class-bws-settings.php:520
1025
+ msgid "Miscellaneous Settings"
1026
+ msgstr "Інші налаштування"
1027
+
1028
+ #: class-bws-settings.php:527 class-bws-settings.php:585
1029
+ #, php-format
1030
+ msgid ""
1031
+ "It is prohibited to change %s settings on this site in the %s network "
1032
+ "settings."
1033
+ msgstr ""
1034
+ "Мережевими налаштуваннями %s забороняється змінювати налаштування %s на "
1035
+ "цьому сайті."
1036
+
1037
+ #: class-bws-settings.php:530 class-bws-settings.php:588
1038
+ #, php-format
1039
+ msgid ""
1040
+ "It is prohibited to view %s settings on this site in the %s network settings."
1041
+ msgstr ""
1042
+ "Мережевими налаштуваннями %s забороняється дивитися налаштування %s на цьому "
1043
+ "сайті."
1044
+
1045
+ #: class-bws-settings.php:536
1046
+ msgid "Pro Options"
1047
+ msgstr "Pro опції"
1048
+
1049
+ #: class-bws-settings.php:539
1050
+ msgid "Enable to display plugin Pro options."
1051
+ msgstr "Увімкніть для відображення Pro опцій плагіна."
1052
+
1053
+ #: class-bws-settings.php:544
1054
+ msgid "Track Usage"
1055
+ msgstr "Збирати статистику"
1056
+
1057
+ #: class-bws-settings.php:547
1058
+ msgid ""
1059
+ "Enable to allow tracking plugin usage anonymously in order to make it better."
1060
+ msgstr ""
1061
+ "Включити, щоб дозволити анонімно відстежувати використання і зробити плагін "
1062
+ "краще."
1063
+
1064
+ #: class-bws-settings.php:551
1065
+ msgid "Default Settings"
1066
+ msgstr "Налаштування за замовчуванням"
1067
+
1068
+ #: class-bws-settings.php:553
1069
+ msgid "Restore Settings"
1070
+ msgstr "Відновлення налаштувань"
1071
+
1072
+ #: class-bws-settings.php:554
1073
+ msgid "This will restore plugin settings to defaults."
1074
+ msgstr "Відновити всі налаштування плагіна до налаштувань за замовчуванням."
1075
+
1076
+ #: class-bws-settings.php:578
1077
+ msgid "Import / Export"
1078
+ msgstr "Імпорт / Експорт"
1079
+
1080
+ #: class-bws-settings.php:701 class-bws-settings.php:724
1081
+ #: class-bws-settings.php:746
1082
+ msgid "License Key"
1083
+ msgstr "Ключ ліцензії"
1084
+
1085
+ #: class-bws-settings.php:714
1086
+ msgid "Congratulations! Pro license is activated successfully."
1087
+ msgstr "Вітаємо! Pro ліцензія успішно активована."
1088
+
1089
+ #: class-bws-settings.php:715
1090
+ #, php-format
1091
+ msgid "You will be automatically redirected to the %s in 7 seconds."
1092
+ msgstr "Вас буде автоматично перенаправлено на %s через 7 секунд."
1093
+
1094
+ #: class-bws-settings.php:715
1095
+ msgid "Settings page"
1096
+ msgstr "сторінку налаштувань"
1097
+
1098
+ #: class-bws-settings.php:730
1099
+ #, php-format
1100
+ msgid "Enter your license key to activate %s and get premium plugin features."
1101
+ msgstr ""
1102
+ "Введіть ліцензійний ключ для активації %s і отримання додаткових можливостей "
1103
+ "плагіна."
1104
+
1105
+ #: class-bws-settings.php:751
1106
+ msgid ""
1107
+ "If necessary, you can check if the license key is correct or reenter it in "
1108
+ "the field below."
1109
+ msgstr ""
1110
+ "При необхідності ви можете перевірити правильність вашого ліцензійного ключа "
1111
+ "або знову ввести його у полі, що знаходиться нижче."
1112
+
1113
+ #: class-bws-settings.php:756
1114
+ msgid "Manage License Settings"
1115
+ msgstr "Управління налаштуваннями ліцензій"
1116
+
1117
+ #: class-bws-settings.php:758
1118
+ msgid "Login to Client Area"
1119
+ msgstr "Зайти в Client Area"
1120
+
1121
+ #: class-bws-settings.php:760
1122
+ msgid ""
1123
+ "Manage active licenses, download BWS products, and view your payment history "
1124
+ "using BestWebSoft Client Area."
1125
+ msgstr ""
1126
+ "Керуй активними ліцензіями, завантажуй BWS продукти, а також переглядай "
1127
+ "історію платежів за допомогою BestWebSoft Client Area."
1128
+
1129
+ #: class-bws-settings.php:1044
1130
+ msgid "Need Help?"
1131
+ msgstr "Потрібна допомога?"
1132
+
1133
+ #: class-bws-settings.php:1044
1134
+ msgid "Read the Instruction"
1135
+ msgstr "Читати інструкцію"
1136
+
1137
+ #: class-bws-settings.php:1046
1138
+ msgid "Watch the Video"
1139
+ msgstr "Дивитися відео"
1140
+
1141
+ #: class-bws-settings.php:1077
1142
+ msgid "Start Your Free Trial"
1143
+ msgstr "Використовувати безкоштовну Trial версію"
1144
+
1145
+ #~ msgid "You license for"
1146
+ #~ msgstr "Ваша ліцензія для"
1147
+
1148
+ #~ msgid "expires on"
1149
+ #~ msgstr "витікає"
1150
+
1151
+ #~ msgid "This license key is bind to another site"
1152
+ #~ msgstr "Цей ліцензійний ключ прив'язано до іншого сайту"
1153
+
1154
+ #~ msgid "Successfully installed the plugin"
1155
+ #~ msgstr "Успішно встановлено плагін"
1156
+
1157
+ #~ msgid "Please, go to %s"
1158
+ #~ msgstr "Будь ласка, перейдіть на %s"
1159
+
1160
+ #~ msgid "Trial"
1161
+ #~ msgstr "Триал"
1162
+
1163
+ #~ msgid "Client Area"
1164
+ #~ msgstr "Client Area"
1165
+
1166
+ #~ msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
1167
+ #~ msgstr ""
1168
+ #~ "Якщо вам сподобався плагін, будь ласка, поставте нам 5 зірочок на "
1169
+ #~ "WordPress"
1170
+
1171
+ #~ msgid "If there is something wrong about it, please contact us"
1172
+ #~ msgstr "Якщо щось не так, будь ласка, повідомте нам"
1173
+
1174
+ #~ msgid "Donations play an important role in supporting great projects"
1175
+ #~ msgstr "Пожертви грають важливу роль в підтримці проектів"
1176
+
1177
+ #~ msgid "WordPress Version"
1178
+ #~ msgstr "Версія WordPress"
1179
+
1180
  #~ msgid "Activate Membership"
1181
  #~ msgstr "Активувати Membership"
1182
 
1216
  #~ msgid "Configure Settings"
1217
  #~ msgstr "Налаштувати плагін"
1218
 
 
 
 
1219
  #~ msgid "Go"
1220
  #~ msgstr "Перейти"
1221
 
1256
  #~ "(ім'я користувача - це електронна адреса, яку ви вказуєте при купівлі "
1257
  #~ "продукту), де ви можете внести потрібні зміни."
1258
 
 
 
 
1259
  #~ msgid "Activated plugins"
1260
  #~ msgstr "Активовані плагіни"
1261
 
1331
  #~ msgid "Words"
1332
  #~ msgstr "Слова"
1333
 
 
 
 
1334
  #~ msgid "Captcha"
1335
  #~ msgstr "КАПЧА"
1336
 
bws_menu/product_list.php CHANGED
@@ -97,7 +97,7 @@ $bws_plugins = array(
97
  'link' => 'http://bestwebsoft.com/products/wordpress/plugins/db-manager/?k=01ed9731780d87f85f5901064b7d76d8&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
98
  'install_url' => 'http://bestwebsoft.com/products/wordpress/plugins/db-manager/download/?k=01ed9731780d87f85f5901064b7d76d8&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
99
  'settings' => 'admin.php?page=db-manager.php',
100
- 'icon' => plugins_url( 'icons/plugins/', __FILE__ ) . 'db-manager.png'
101
  ),
102
  'donate-button/donate.php' => array(
103
  'category' => array( 'other' ),
@@ -353,6 +353,13 @@ $bws_plugins = array(
353
  'link' => 'http://bestwebsoft.com/products/wordpress/plugins/quotes-and-tips/?k=5738a4e85a798c4a5162240c6515098d&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
354
  'settings' => 'admin.php?page=quotes-and-tips.php'
355
  ),
 
 
 
 
 
 
 
356
  'realty/realty.php' => array(
357
  'category' => array( 'content-and-media' ),
358
  'name' => 'Realty',
97
  'link' => 'http://bestwebsoft.com/products/wordpress/plugins/db-manager/?k=01ed9731780d87f85f5901064b7d76d8&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
98
  'install_url' => 'http://bestwebsoft.com/products/wordpress/plugins/db-manager/download/?k=01ed9731780d87f85f5901064b7d76d8&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
99
  'settings' => 'admin.php?page=db-manager.php',
100
+ 'icon' => bws_menu_url( 'icons/plugins/' ) . 'db-manager.png'
101
  ),
102
  'donate-button/donate.php' => array(
103
  'category' => array( 'other' ),
353
  'link' => 'http://bestwebsoft.com/products/wordpress/plugins/quotes-and-tips/?k=5738a4e85a798c4a5162240c6515098d&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
354
  'settings' => 'admin.php?page=quotes-and-tips.php'
355
  ),
356
+ 'rating-bws/rating-bws.php' => array(
357
+ 'category' => array( 'content-and-media' ),
358
+ 'name' => 'Rating',
359
+ 'description' => 'Add rating plugin to your WordPress website to receive feedback from your customers.',
360
+ 'link' => 'http://bestwebsoft.com/products/wordpress/plugins/rating/?k=c00e0824bb999735a3224616ef51f4c5&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
361
+ 'settings' => 'admin.php?page=rating.php'
362
+ ),
363
  'realty/realty.php' => array(
364
  'category' => array( 'content-and-media' ),
365
  'name' => 'Realty',
css/style.css CHANGED
@@ -1,12 +1,6 @@
1
  /*
2
  * Plugin styles
3
  */
4
- #fcbkbttn_settings_form select,
5
- #fcbkbttn_settings_form input[type="text"],
6
- #fcbkbttn_settings_form input[type="file"],
7
- #fcbkbttn_settings_form input[type="number"] {
8
- min-width: 200px;
9
- }
10
  .fcbk_share {
11
  clear: both;
12
  line-height: 1;
@@ -40,38 +34,6 @@
40
  .fcbk_like .fb_iframe_widget span {
41
  vertical-align: top !important;
42
  }
43
- #fcbkbttn_id_option,
44
- #fcbkbttn_layout_option {
45
- border-top: 1px solid #ccc;
46
- }
47
- #fcbkbttn_preview_content {
48
- margin-left: 10px;
49
- }
50
- #fcbkbttn_preview_content h3 {
51
- margin-top: 0;
52
- padding-top: 1em;
53
- }
54
- #fcbkbttn_preview {
55
- display: inline-block;
56
- width: 300px;
57
- vertical-align: top;
58
- }
59
- #fcbkbttn_settings_form {
60
- display: inline-block;
61
- margin-right: 20px;
62
- }
63
- .fcbkbttn_how_to_use {
64
- float: right !important;
65
- }
66
- .rtl .fcbkbttn_how_to_use {
67
- float: left !important;
68
- }
69
- @media only screen and ( max-width: 782px ) {
70
- .fcbkbttn_how_to_use {
71
- float: none !important;
72
- text-align: left;
73
- }
74
- .rtl .fcbkbttn_how_to_use {
75
- text-align: right;
76
- }
77
  }
1
  /*
2
  * Plugin styles
3
  */
 
 
 
 
 
 
4
  .fcbk_share {
5
  clear: both;
6
  line-height: 1;
34
  .fcbk_like .fb_iframe_widget span {
35
  vertical-align: top !important;
36
  }
37
+ .form-table td fieldset.fcbkbttn_layout_option label {
38
+ display: block;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
39
  }
facebook-button-plugin.php CHANGED
@@ -6,12 +6,12 @@ Description: Add Facebook Like, Share and Profile buttons to WordPress posts, pa
6
  Author: BestWebSoft
7
  Text Domain: facebook-button-plugin
8
  Domain Path: /languages
9
- Version: 2.52
10
  Author URI: http://bestwebsoft.com/
11
  License: GPLv2 or later
12
  */
13
 
14
- /* Copyright 2016 BestWebSoft ( http://support.bestwebsoft.com )
15
 
16
  This program is free software; you can redistribute it and/or modify
17
  it under the terms of the GNU General Public License, version 2, as
@@ -27,11 +27,22 @@ License: GPLv2 or later
27
  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
28
  */
29
 
30
- /* Add BWS menu */
31
  if ( ! function_exists( 'fcbkbttn_add_pages' ) ) {
32
  function fcbkbttn_add_pages() {
33
- bws_general_menu();
34
- $settings = add_submenu_page( 'bws_panel', __( 'Facebook Button Settings', 'facebook-button-plugin' ), 'Facebook Button', 'manage_options', 'facebook-button-plugin.php', 'fcbkbttn_settings_page' );
 
 
 
 
 
 
 
 
 
 
 
35
  add_action( 'load-' . $settings, 'fcbkbttn_add_tabs' );
36
  }
37
  }
@@ -70,8 +81,12 @@ if ( ! function_exists( 'fcbkbttn_init' ) ) {
70
  "af_ZA" => 'Afrikaans', "ar_AR" => 'العربية', "az_AZ" => 'Azərbaycan dili', "be_BY" => 'Беларуская', "bg_BG" => 'Български', "bn_IN" => 'বাংলা', "bs_BA" => 'Bosanski', "ca_ES" => 'Català', "cs_CZ" => 'Čeština', "cy_GB" => 'Cymraeg', "da_DK" => 'Dansk', "de_DE" => 'Deutsch', "el_GR" => 'Ελληνικά', "en_US" => 'English', "en_PI" => 'English (Pirate)', "eo_EO" => 'Esperanto', "es_CO" => 'Español (Colombia)', "es_ES" => 'Español (España)', "es_LA" => 'Español', "et_EE" => 'Eesti', "eu_ES" => 'Euskara', "fa_IR" => 'فارسی', "fb_LT" => 'Leet Speak', "fi_FI" => 'Suomi', "fo_FO" => 'Føroyskt', "fr_CA" => 'Français (Canada)', "fr_FR" => 'Français (France)', "fy_NL" => 'Frysk', "ga_IE" => 'Gaeilge', "gl_ES" => 'Galego', "gn_PY" => "Avañe'ẽ", "gu_IN" => 'ગુજરાતી', "he_IL" => 'עברית', "hi_IN" => 'हिन्दी', "hr_HR" => 'Hrvatski', "hu_HU" => 'Magyar', "hy_AM" => 'Հայերեն', "id_ID" => 'Bahasa Indonesia', "is_IS" => 'Íslenska', "it_IT" => 'Italiano', "ja_JP" => '日本語', "jv_ID" => 'Basa Jawa', "ka_GE" => 'ქართული', "kk_KZ" => 'Қазақша', "km_KH" => 'ភាសាខ្មែរ', "kn_IN" => 'ಕನ್ನಡ', "ko_KR" => '한국어', "ku_TR" => 'Kurdî', "la_VA" => 'lingua latina', "lt_LT" => 'Lietuvių', "lv_LV" => 'Latviešu', "mk_MK" => 'Македонски', "ml_IN" => 'മലയാളം', "mn_MN" => 'Монгол', "mr_IN" => 'मराठी', "ms_MY" => 'Bahasa Melayu', "nb_NO" => 'Norsk (bokmål)', "ne_NP" => 'नेपाली', "nl_BE" => 'Nederlands (België)', "nl_NL" => 'Nederlands', "nn_NO" => 'Norsk (nynorsk)', "pa_IN" => 'ਪੰਜਾਬੀ', "pl_PL" => 'Polski', "ps_AF" => 'پښتو', "pt_BR" => 'Português (Brasil)', "pt_PT" => 'Português (Portugal)', "ro_RO" => 'Română', "ru_RU" => 'Русский', "sk_SK" => 'Slovenčina', "sl_SI" => 'Slovenščina', "sq_AL" => 'Shqip', "sr_RS" => 'Српски', "sv_SE" => 'Svenska', "sw_KE" => 'Kiswahili', "ta_IN" => 'தமிழ்', "te_IN" => 'తెలుగు', "tg_TJ" => 'тоҷикӣ', "th_TH" => 'ภาษาไทย', "tl_PH" => 'Filipino', "tr_TR" => 'Türkçe', "uk_UA" => 'Українська', "ur_PK" => 'اردو', "uz_UZ" => "O'zbek", "vi_VN" => 'Tiếng Việt', "zh_CN" => '中文(简体)', "zh_HK" => '中文(香港)', "zh_TW" => '中文(台灣)'
71
  );
72
 
73
- if ( ! is_admin() && isset( $fcbkbttn_options['display_for_excerpt'] ) && 1 == $fcbkbttn_options['display_for_excerpt'] )
74
- add_filter( 'the_excerpt', 'fcbkbttn_display_button' );
 
 
 
 
75
  }
76
  }
77
  }
@@ -96,32 +111,7 @@ if ( ! function_exists( 'fcbkbttn_admin_init' ) ) {
96
 
97
  if ( ! function_exists( 'fcbkbttn_settings' ) ) {
98
  function fcbkbttn_settings() {
99
- global $fcbkbttn_options, $fcbkbttn_plugin_info, $fcbkbttn_options_default;
100
-
101
- $fcbkbttn_options_default = array(
102
- 'plugin_option_version' => $fcbkbttn_plugin_info["Version"],
103
- 'display_settings_notice' => 1,
104
- 'first_install' => strtotime( "now" ),
105
- 'suggest_feature_banner' => 1,
106
- 'link' => '',
107
- 'my_page' => 1,
108
- 'like' => 1,
109
- 'layout_option' => 'button_count',
110
- 'like_action' => 'like',
111
- 'color_scheme' => 'light',
112
- 'share' => 0,
113
- 'faces' => 0,
114
- 'width' => 450,
115
- 'where' => 'before',
116
- 'display_option' => 'standard',
117
- 'count_icon' => 1,
118
- 'extention' => 'png',
119
- 'fb_img_link' => plugins_url( "images/standard-facebook-ico.png", __FILE__ ),
120
- 'locale' => 'en_US',
121
- 'html5' => 0,
122
- 'use_multilanguage_locale' => 0,
123
- 'display_for_excerpt' => 0
124
- );
125
  /**
126
  * @since 2.49
127
  * @todo remove after 08.02.2017
@@ -136,8 +126,10 @@ if ( ! function_exists( 'fcbkbttn_settings' ) ) {
136
  /* end @todo */
137
 
138
  /* Install the option defaults */
139
- if ( ! get_option( 'fcbkbttn_options' ) )
140
- add_option( 'fcbkbttn_options', $fcbkbttn_options_default );
 
 
141
 
142
  /* Get options from the database */
143
  $fcbkbttn_options = get_option( 'fcbkbttn_options' );
@@ -146,513 +138,74 @@ if ( ! function_exists( 'fcbkbttn_settings' ) ) {
146
  /* show pro features */
147
  $fcbkbttn_options['hide_premium_options'] = array();
148
 
149
- $fcbkbttn_options = array_merge( $fcbkbttn_options_default, $fcbkbttn_options );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
150
  $fcbkbttn_options['plugin_option_version'] = $fcbkbttn_plugin_info["Version"];
151
  update_option( 'fcbkbttn_options', $fcbkbttn_options );
152
  }
153
  }
154
  }
155
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
156
  /* Function formed content of the plugin's admin page. */
157
  if ( ! function_exists( 'fcbkbttn_settings_page' ) ) {
158
  function fcbkbttn_settings_page() {
159
- global $fcbkbttn_options, $wp_version, $fcbkbttn_plugin_info, $fcbkbttn_options_default, $fcbkbttn_lang_codes;
160
- $message = $error = "";
161
- $upload_dir = wp_upload_dir();
162
- $plugin_basename = plugin_basename( __FILE__ );
163
-
164
- if ( ! function_exists( 'get_plugins' ) || ! function_exists( 'is_plugin_active' ) )
165
- require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
166
-
167
- $all_plugins = get_plugins();
168
-
169
- if ( isset( $_REQUEST['fcbkbttn_form_submit'] ) && check_admin_referer( $plugin_basename, 'fcbkbttn_nonce_name' ) ) {
170
- if ( isset( $_POST['bws_hide_premium_options'] ) ) {
171
- $hide_result = bws_hide_premium_options( $fcbkbttn_options );
172
- $fcbkbttn_options = $hide_result['options'];
173
- }
174
-
175
- /* Takes all the changed settings on the plugin's admin page and saves them in array 'fcbkbttn_options'. */
176
- $fcbkbttn_options['link'] = stripslashes( esc_html( $_REQUEST['fcbkbttn_link'] ) );
177
- $fcbkbttn_options['link'] = str_replace( 'https://www.facebook.com/profile.php?id=', '', $fcbkbttn_options['link'] );
178
- $fcbkbttn_options['link'] = str_replace( 'https://www.facebook.com/', '', $fcbkbttn_options['link'] );
179
-
180
- $fcbkbttn_options['where'] = $_REQUEST['fcbkbttn_where'];
181
- $fcbkbttn_options['display_option'] = $_REQUEST['fcbkbttn_display_option'];
182
- if ( 'standard' == $fcbkbttn_options['display_option'] ) {
183
- $fcbkbttn_options['fb_img_link'] = plugins_url( 'images/standard-facebook-ico.png', __FILE__ );
184
- }
185
- $fcbkbttn_options['my_page'] = isset( $_REQUEST['fcbkbttn_my_page'] ) ? 1 : 0;
186
- $fcbkbttn_options['like'] = isset( $_REQUEST['fcbkbttn_like'] ) ? 1 : 0;
187
- $fcbkbttn_options['layout_option'] = $_REQUEST['fcbkbttn_layout_option'];
188
- $fcbkbttn_options['share'] = isset( $_REQUEST['fcbkbttn_share'] ) ? 1 : 0;
189
- $fcbkbttn_options['faces'] = isset( $_REQUEST['fcbkbttn_faces'] ) ? 1 : 0;
190
- $fcbkbttn_options['like_action'] = $_REQUEST['fcbkbttn_like_action'];
191
- $fcbkbttn_options['color_scheme'] = $_REQUEST['fcbkbttn_color_scheme'];
192
- $fcbkbttn_options['width'] = intval( $_REQUEST['fcbkbttn_width'] );
193
- $fcbkbttn_options['locale'] = $_REQUEST['fcbkbttn_locale'];
194
- $fcbkbttn_options['html5'] = $_REQUEST['fcbkbttn_html5'];
195
- if ( isset( $_FILES['fcbkbttn_uploadfile']['tmp_name'] ) && $_FILES['fcbkbttn_uploadfile']['tmp_name'] != "" ) {
196
- $fcbkbttn_options['count_icon'] = $fcbkbttn_options['count_icon'] + 1;
197
- $file_ext = wp_check_filetype( $_FILES['fcbkbttn_uploadfile']['name'] );
198
- $fcbkbttn_options['extention'] = $file_ext['ext'];
199
- }
200
-
201
- if ( 2 < $fcbkbttn_options['count_icon'] )
202
- $fcbkbttn_options['count_icon'] = 1;
203
-
204
- $fcbkbttn_options['use_multilanguage_locale'] = isset( $_REQUEST['fcbkbttn_use_multilanguage_locale'] ) ? 1 : 0;
205
- $fcbkbttn_options['display_for_excerpt'] = isset( $_REQUEST['fcbkbttn_display_for_excerpt'] ) ? 1 : 0;
206
-
207
- $lnkdn_options = apply_filters( 'fcbkbttn_before_save_options', $fcbkbttn_options );
208
- update_option( 'fcbkbttn_options', $fcbkbttn_options );
209
- $message = __( "Settings saved", 'facebook-button-plugin' );
210
-
211
- if ( isset( $_FILES['fcbkbttn_uploadfile']['tmp_name'] ) && "" != $_FILES['fcbkbttn_uploadfile']['tmp_name'] ) {
212
- if ( ! $upload_dir["error"] ) {
213
- $fcbkbttn_cstm_mg_folder = $upload_dir['basedir'] . '/facebook-image';
214
- if ( ! is_dir( $fcbkbttn_cstm_mg_folder ) ) {
215
- wp_mkdir_p( $fcbkbttn_cstm_mg_folder, 0755 );
216
- }
217
- }
218
- $max_image_width = 100;
219
- $max_image_height = 40;
220
- $max_image_size = 32 * 1024;
221
- $valid_types = array( 'jpg', 'jpeg', 'png' );
222
- /* Construction to rename downloading file */
223
- $new_name = 'facebook-ico' . $fcbkbttn_options['count_icon'];
224
- $new_ext = wp_check_filetype( $_FILES['fcbkbttn_uploadfile']['name'] );
225
- $namefile = $new_name . '.' . $new_ext['ext'];
226
- $uploadfile = $fcbkbttn_cstm_mg_folder . '/' . $namefile;
227
-
228
- /* Checks is file download initiated by user */
229
- if ( isset( $_FILES['fcbkbttn_uploadfile'] ) && 'custom' == $_REQUEST['fcbkbttn_display_option'] ) {
230
- /* Checking is allowed download file given parameters */
231
- if ( is_uploaded_file( $_FILES['fcbkbttn_uploadfile']['tmp_name'] ) ) {
232
- $filename = $_FILES['fcbkbttn_uploadfile']['tmp_name'];
233
- $ext = substr( $_FILES['fcbkbttn_uploadfile']['name'], 1 + strrpos( $_FILES['fcbkbttn_uploadfile']['name'], '.' ) );
234
- if ( filesize( $filename ) > $max_image_size ) {
235
- $error = __( "Error: File size > 32K", 'facebook-button-plugin' );
236
- }
237
- elseif ( ! in_array( strtolower( $ext ), $valid_types ) ) {
238
- $error = __( "Error: Invalid file type", 'facebook-button-plugin' );
239
- } else {
240
- $size = GetImageSize( $filename );
241
- if ( $size && $size[0] <= $max_image_width && $size[1] <= $max_image_height ) {
242
- /* If file satisfies requirements, we will move them from temp to your plugin folder and rename to 'facebook_ico.jpg' */
243
- if ( move_uploaded_file( $_FILES['fcbkbttn_uploadfile']['tmp_name'], $uploadfile ) ) {
244
- $message .= '. ' . __( "Upload successful.", 'facebook-button-plugin' );
245
-
246
- if ( 'standard' == $fcbkbttn_options['display_option'] ) {
247
- $fb_img_link = plugins_url( 'images/standard-facebook-ico.png', __FILE__ );
248
- } else if ( 'custom' == $fcbkbttn_options['display_option'] ) {
249
- $fb_img_link = $upload_dir['baseurl'] . '/facebook-image/facebook-ico' . $fcbkbttn_options['count_icon'] . '.' . $fcbkbttn_options['extention'];
250
- }
251
- $fcbkbttn_options['fb_img_link'] = $fb_img_link ;
252
- update_option( 'fcbkbttn_options', $fcbkbttn_options );
253
- } else {
254
- $error = __( "Error: moving file failed", 'facebook-button-plugin' );
255
- }
256
- } else {
257
- $error = __( "Error: check image width or height", 'facebook-button-plugin' );
258
- }
259
- }
260
- } else {
261
- $error = __( "Uploading Error: check image properties", 'facebook-button-plugin' );
262
- }
263
- }
264
- }
265
- }
266
-
267
- /*## check banner */
268
- $bws_hide_premium_options_check = bws_hide_premium_options_check( $fcbkbttn_options );
269
-
270
- /* add restore function */
271
- if ( isset( $_REQUEST['bws_restore_confirm'] ) && check_admin_referer( $plugin_basename, 'bws_settings_nonce_name' ) ) {
272
- $fcbkbttn_options = $fcbkbttn_options_default;
273
- update_option( 'fcbkbttn_options', $fcbkbttn_options );
274
- $message = __( 'All plugin settings were restored.', 'facebook-button-plugin' );
275
- }
276
-
277
- /*pls GO PRO */
278
- if ( isset( $_GET['action'] ) && 'go_pro' == $_GET['action'] ) {
279
- $go_pro_result = bws_go_pro_tab_check( $plugin_basename, 'fcbkbttn_options' );
280
- if ( ! empty( $go_pro_result['error'] ) )
281
- $error = $go_pro_result['error'];
282
- elseif ( ! empty( $go_pro_result['message'] ) )
283
- $message = $go_pro_result['message'];
284
- }/* end GO PRO pls*/##*/ ?>
285
- <!-- general -->
286
  <div class="wrap">
287
  <h1><?php _e( 'Facebook Button Settings', 'facebook-button-plugin' ); ?></h1>
288
- <ul class="subsubsub fcbkbttn_how_to_use">
289
- <li><a href="https://docs.google.com/document/d/1gy5uDVoebmYRUvlKRwBmc97jdJFz7GvUCtXy3L7r_Yg/edit" target="_blank"><?php _e( 'How to Use Step-by-step Instruction', 'facebook-button-plugin' ); ?></a></li>
290
- </ul>
291
- <h2 class="nav-tab-wrapper">
292
- <a class="nav-tab<?php if ( ! isset( $_GET['action'] ) ) echo ' nav-tab-active'; ?>" href="admin.php?page=facebook-button-plugin.php"><?php _e( 'Settings', 'facebook-button-plugin' ); ?></a>
293
- <!-- pls -->
294
- <a class="nav-tab<?php if ( isset( $_GET['action'] ) && 'extra' == $_GET['action'] ) echo ' nav-tab-active'; ?>" href="admin.php?page=facebook-button-plugin.php&amp;action=extra"><?php _e( 'Extra settings', 'facebook-button-plugin' ); ?></a>
295
- <!-- end pls -->
296
- <a class="nav-tab<?php if ( isset( $_GET['action'] ) && 'custom_code' == $_GET['action'] ) echo ' nav-tab-active'; ?>" href="admin.php?page=facebook-button-plugin.php&amp;action=custom_code"><?php _e( 'Custom code', 'facebook-button-plugin' ); ?></a>
297
- <!-- pls -->
298
- <a class="nav-tab bws_go_pro_tab<?php if ( isset( $_GET['action'] ) && 'go_pro' == $_GET['action'] ) echo ' nav-tab-active'; ?>" href="admin.php?page=facebook-button-plugin.php&amp;action=go_pro"><?php _e( 'Go PRO', 'facebook-button-plugin' ); ?></a>
299
- <!-- end pls -->
300
- </h2>
301
- <!-- end general -->
302
  <noscript><div class="error below-h2"><p><strong><?php _e( "Please, enable JavaScript in Your browser.", 'facebook-button-plugin' ); ?></strong></p></div></noscript>
303
- <div class="updated fade below-h2" <?php if ( empty( $message ) || "" != $error ) echo "style=\"display:none\""; ?>><p><strong><?php echo $message; ?></strong></p></div>
304
- <div class="error below-h2" <?php if ( "" == $error ) echo "style=\"display:none\""; ?>><p><strong><?php echo $error; ?></strong></p></div>
305
- <?php if ( ! empty( $hide_result['message'] ) ) { ?>
306
- <div class="updated fade below-h2"><p><strong><?php echo $hide_result['message']; ?></strong></p></div>
307
- <?php }
308
- bws_show_settings_notice();
309
- /*## check action */
310
- if ( ! isset( $_GET['action'] ) ) {
311
- if ( isset( $_REQUEST['bws_restore_default'] ) && check_admin_referer( $plugin_basename, 'bws_settings_nonce_name' ) ) {
312
- bws_form_restore_default_confirm( $plugin_basename );
313
- } else { /* check action ##*/ ?>
314
- <br>
315
- <div><?php $icon_shortcode = ( "facebook-button-plugin.php" == $_GET['page'] ) ? plugins_url( 'bws_menu/images/shortcode-icon.png', __FILE__ ) : plugins_url( 'social-buttons-pack/bws_menu/images/shortcode-icon.png' );
316
- printf(
317
- __( "If you would like to add Facebook buttons to your page or post, please use %s button", 'facebook-button-plugin' ),
318
- '<span class="bws_code"><img style="vertical-align: sub;" src="' . $icon_shortcode . '" alt=""/></span>' ); ?>
319
- <div class="bws_help_box bws_help_box_right dashicons dashicons-editor-help">
320
- <div class="bws_hidden_help_text" style="min-width: 180px;">
321
- <?php printf(
322
- __( "You can add Facebook buttons to your page or post by clicking on %s button in the content edit block using the Visual mode. If the button isn't displayed, please use the shortcode %s", 'facebook-button-plugin' ),
323
- '<code><img style="vertical-align: sub;" src="' . $icon_shortcode . '" alt="" /></code>',
324
- '<code>[fb_button]</code>'
325
- ); ?>
326
- </div>
327
- </div>
328
- </div>
329
- <form method="post" action="" enctype="multipart/form-data" class="bws_form">
330
- <div id="fcbkbttn_settings_form">
331
- <table class="form-table">
332
- <tr>
333
- <th scope="row"><?php _e( 'Display button', 'facebook-button-plugin' ); ?></th>
334
- <td>
335
- <fieldset>
336
- <label><input name='fcbkbttn_my_page' type='checkbox' value='1' <?php if ( 1 == $fcbkbttn_options['my_page'] ) echo 'checked="checked "'; ?>/> <?php _e( "My Page", 'facebook-button-plugin' ); ?></label><br />
337
- <label><input name='fcbkbttn_like' type='checkbox' <?php if ( 0 !== ( $fcbkbttn_options['like'] ) ) echo 'checked="checked "'; ?>/> <?php _e( "Like", 'facebook-button-plugin' ); ?></label><br />
338
- <label><input name='fcbkbttn_share' type='checkbox' value='1' <?php if ( 1 == $fcbkbttn_options['share'] ) echo 'checked="checked "'; ?>/> <?php _e( "Share", 'facebook-button-plugin' ); ?></label><br />
339
- </fieldset>
340
- </td>
341
- </tr>
342
- <tr>
343
- <th><?php _e( 'Facebook buttons position', 'facebook-button-plugin' ); ?></th>
344
- <td>
345
- <select name="fcbkbttn_where">
346
- <option <?php if ( 'before' == $fcbkbttn_options['where'] ) echo 'selected="selected"'; ?> value="before"><?php _e( "Before", 'facebook-button-plugin' ); ?></option>
347
- <option <?php if ( 'after' == $fcbkbttn_options['where'] ) echo 'selected="selected"'; ?> value="after"><?php _e( "After", 'facebook-button-plugin' ); ?></option>
348
- <option <?php if ( 'beforeandafter' == $fcbkbttn_options['where'] ) echo 'selected="selected"'; ?> value="beforeandafter"><?php _e( "Before and After", 'facebook-button-plugin' ); ?></option>
349
- <option <?php if ( 'shortcode' == $fcbkbttn_options['where'] ) echo 'selected="selected"'; ?> value="shortcode"><?php _e( "Shortcode", 'facebook-button-plugin' ); ?></option>
350
- </select>
351
- </td>
352
- </tr>
353
- <tr>
354
- <th><?php _e( "Facebook buttons language", 'facebook-button-plugin' ); ?></th>
355
- <td>
356
- <fieldset>
357
- <select name="fcbkbttn_locale">
358
- <?php foreach ( $fcbkbttn_lang_codes as $key => $val ) {
359
- echo '<option value="' . $key . '"';
360
- if ( $key == $fcbkbttn_options['locale'] )
361
- echo ' selected="selected"';
362
- echo '>' . esc_html ( $val ) . '</option>';
363
- } ?>
364
- </select>
365
- <span class="bws_info"><?php _e( 'Change the language of Facebook Button', 'facebook-button-plugin' ); ?></span><br />
366
- <label>
367
- <?php if ( array_key_exists( 'multilanguage/multilanguage.php', $all_plugins ) || array_key_exists( 'multilanguage-pro/multilanguage-pro.php', $all_plugins ) ) {
368
- if ( is_plugin_active( 'multilanguage/multilanguage.php' ) || is_plugin_active( 'multilanguage-pro/multilanguage-pro.php' ) ) { ?>
369
- <input type="checkbox" name="fcbkbttn_use_multilanguage_locale" value="1" <?php if ( 1 == $fcbkbttn_options["use_multilanguage_locale"] ) echo 'checked="checked"'; ?> />
370
- <?php _e( 'Use the current site language', 'facebook-button-plugin' ); ?> <span class="bws_info">(<?php _e( 'Using', 'facebook-button-plugin' ); ?> Multilanguage by BestWebSoft)</span>
371
- <?php } else { ?>
372
- <input disabled="disabled" type="checkbox" name="fcbkbttn_use_multilanguage_locale" value="1" />
373
- <?php _e( 'Use the current site language', 'facebook-button-plugin' ); ?>
374
- <span class="bws_info">(<?php _e( 'Using', 'facebook-button-plugin' ); ?> Multilanguage by BestWebSoft) <a href="<?php echo bloginfo( "url" ); ?>/wp-admin/plugins.php"><?php _e( 'Activate', 'facebook-button-plugin' ); ?> Multilanguage</a></span>
375
- <?php }
376
- } else { ?>
377
- <input disabled="disabled" type="checkbox" name="fcbkbttn_use_multilanguage_locale" value="1" />
378
- <?php _e( 'Use the current site language', 'facebook-button-plugin' ); ?>
379
- <span class="bws_info">(<?php _e( 'Using', 'facebook-button-plugin' ); ?> Multilanguage by BestWebSoft) <a href="http://bestwebsoft.com/products/wordpress/plugins/multilanguage/?k=196fb3bb74b6e8b1e08f92cddfd54313&pn=78&v=<?php echo $fcbkbttn_plugin_info["Version"]; ?>&wp_v=<?php echo $wp_version; ?>"><?php _e( 'Download', 'facebook-button-plugin' ); ?> Multilanguage</a></span>
380
- <?php } ?>
381
- </label>
382
- </fieldset>
383
- </td>
384
- </tr>
385
- <tr>
386
- <th><?php _e( 'Display buttons in excerpt', 'facebook-button-plugin' ); ?></th>
387
- <td>
388
- <input name='fcbkbttn_display_for_excerpt' type='checkbox' value='1' <?php if ( 1 == $fcbkbttn_options['display_for_excerpt'] ) echo 'checked="checked "'; ?>/>
389
- </td>
390
- </tr>
391
- <?php do_action( 'fcbkbttn_settings_page_action', $fcbkbttn_options ); ?>
392
- </table>
393
- <!-- general --><!-- pls -->
394
- <?php if ( ! $bws_hide_premium_options_check ) { ?>
395
- <div class="bws_pro_version_bloc">
396
- <div class="bws_pro_version_table_bloc">
397
- <button type="submit" name="bws_hide_premium_options" class="notice-dismiss bws_hide_premium_options" title="<?php _e( 'Close', 'facebook-button-plugin' ); ?>"></button>
398
- <div class="bws_table_bg"></div>
399
- <table class="form-table bws_pro_version">
400
- <tr>
401
- <th><?php _e( 'Meta tags', 'facebook-button-plugin' ); ?></th>
402
- <td>
403
- <fieldset>
404
- <legend style="font-weight: 600;"><?php _e( 'Image', 'facebook-button-plugin' ); ?></legend>
405
- <label>
406
- <input disabled="disabled" type="radio" name="fcbkbttn_meta_image" value="featured_image" checked="checked" />
407
- <?php _e( 'Featured Image', 'facebook-button-plugin' ); ?>
408
- </label><br />
409
- <label>
410
- <input disabled="disabled" type="radio" name="fcbkbttn_meta_image" value="custom_image" />
411
- <?php _e( 'Custom Image', 'facebook-button-plugin' ); ?> <span class="bws_info">(<?php _e( 'This image will be used for all of the posts', 'facebook-button-plugin' ); ?>)</span>
412
- </label><br />
413
- <input disabled="disabled" name="fcbkbttn_meta_uploadfile" type="file" />
414
- </fieldset>
415
- </td>
416
- </tr>
417
- <tr>
418
- <th></th>
419
- <td>
420
- <fieldset>
421
- <legend style="font-weight: 600;"><?php _e( 'Description', 'facebook-button-plugin' ); ?></legend>
422
- <label>
423
- <input disabled="disabled" type="radio" name="fcbkbttn_meta_description" value="post_excerpt" />
424
- <?php _e( 'Post excerpt', 'facebook-button-plugin' );?>
425
- </label><br />
426
- <label>
427
- <input disabled="disabled" type="radio" name="fcbkbttn_meta_description" value="custom" checked="checked" />
428
- <input disabled="disabled" type="text" name="fcbkbttn_meta_description_custom" value="" /><br />
429
- <span class="bws_info"><?php _e( 'This description will be used for all of the posts', 'facebook-button-plugin' ); ?></span>
430
- </label>
431
- </fieldset>
432
- </td>
433
- </tr>
434
- <tr>
435
- <th scope="row" colspan="2">
436
- * <?php _e( 'If you upgrade to Pro version all your settings will be saved.', 'facebook-button-plugin' ); ?>
437
- </th>
438
- </tr>
439
- </table>
440
- </div>
441
- <div class="bws_pro_version_tooltip">
442
- <div class="bws_info">
443
- <?php _e( 'Unlock premium options by upgrading to Pro version', 'facebook-button-plugin' ); ?>
444
- </div>
445
- <a class="bws_button" href="http://bestwebsoft.com/products/wordpress/plugins/facebook-like-button/?k=427287ceae749cbd015b4bba6041c4b8&pn=78&v=<?php echo $fcbkbttn_plugin_info["Version"]; ?>&wp_v=<?php echo $wp_version; ?>" target="_blank" title="Facebook Button Pro"><?php _e( 'Learn More', 'facebook-button-plugin' ); ?></a>
446
- <div class="clear"></div>
447
- </div>
448
- </div>
449
- <?php } ?>
450
- <!-- end general --><!-- end pls -->
451
- <table class="form-table">
452
- <tr id="fcbkbttn_id_option" class="fcbkbttn_my_page" <?php if ( 1 != $fcbkbttn_options['my_page'] ) echo 'style="display:none"'; ?>>
453
- <th scope="row"><?php _e( 'Your Facebook ID or username', 'facebook-button-plugin' ); ?></th>
454
- <td>
455
- <input name='fcbkbttn_link' type='text' maxlength='250' value='<?php echo $fcbkbttn_options['link']; ?>' />
456
- </td>
457
- </tr>
458
- <tr class="fcbkbttn_my_page" <?php if ( 1 != $fcbkbttn_options['my_page'] ) echo 'style="display:none"'; ?>>
459
- <th>
460
- <?php _e( '"My page" button image', 'facebook-button-plugin' ); ?>
461
- </th>
462
- <td>
463
- <?php if ( scandir( $upload_dir['basedir'] ) && is_writable( $upload_dir['basedir'] ) ) { ?>
464
- <select name="fcbkbttn_display_option">
465
- <option <?php if ( 'standard' == $fcbkbttn_options['display_option'] ) echo 'selected="selected"'; ?> value="standard"><?php _e( 'Standard Facebook image', 'facebook-button-plugin' ); ?></option>
466
- <option <?php if ( 'custom' == $fcbkbttn_options['display_option'] ) echo 'selected="selected"'; ?> value="custom"><?php _e( 'Custom Facebook image', 'facebook-button-plugin' ); ?></option>
467
- </select>
468
- <?php } else {
469
- echo __( 'To use custom image you need to setup permissions to upload directory of your site', 'facebook-button-plugin' ) . " - " . $upload_dir['basedir'];
470
- } ?>
471
- </td>
472
- </tr>
473
- <tr class="fcbkbttn_my_page" <?php if ( 1 != $fcbkbttn_options['my_page'] ) echo 'style="display:none"'; ?>>
474
- <th></th>
475
- <td>
476
- <?php _e( 'Current image', 'facebook-button-plugin' ); ?>:
477
- <img src="<?php echo $fcbkbttn_options['fb_img_link']; ?>" style="vertical-align: middle;" />
478
- </td>
479
- </tr>
480
- <tr class="fcbkbttn_my_page" id="fcbkbttn_display_option_custom" <?php if ( ! ( 1 == $fcbkbttn_options['my_page'] && 'custom' == $fcbkbttn_options['display_option'] ) ) echo 'style="display:none"'; ?>>
481
- <th></th>
482
- <td>
483
- <input name="fcbkbttn_uploadfile" type="file" /><br />
484
- <span class="bws_info"><?php _e( 'Image properties: max image width:100px; max image height:40px; max image size:32Kb; image types:"jpg", "jpeg", "png".', 'facebook-button-plugin' ); ?></span>
485
- </td>
486
- </tr>
487
- <tr id="fcbkbttn_layout_option" class="fcbkbttn_like fcbkbttn_share" <?php if ( 1 != $fcbkbttn_options['like'] && 1 != $fcbkbttn_options['share'] ) echo 'style="display: none"'; ?>>
488
- <th><?php _e( 'Button layout', 'facebook-button-plugin' ); ?></th>
489
- <td>
490
- <select name="fcbkbttn_layout_option">
491
- <option class="fcbkbttn_like_layout" <?php if ( 1 != $fcbkbttn_options['like'] ) echo 'style="display: none"'; ?><?php if ( 'standard' == $fcbkbttn_options['layout_option'] || 1 == $fcbkbttn_options['like'] ) echo 'selected="selected"'; ?> value="standard">Standard</option>
492
- <option <?php if ( 'box_count' == $fcbkbttn_options['layout_option'] ) echo 'selected="selected"'; ?> value="box_count">Box count</option>
493
- <option <?php if ( 'button_count' == $fcbkbttn_options['layout_option'] ) echo 'selected="selected"'; ?> value="button_count">Button count</option>
494
- <option <?php if ( 'button' == $fcbkbttn_options['layout_option'] ) echo 'selected="selected"'; ?> value="button">Button</option>
495
- <option class="fcbkbttn_share_layout" <?php if ( 1 == $fcbkbttn_options['like'] ) echo 'style="display: none"'; ?><?php if ( 'icon_link' == $fcbkbttn_options['layout_option'] && 0 == $fcbkbttn_options['like'] ) echo 'selected="selected"'; ?> value="icon_link">Icon link</option>
496
- <option class="fcbkbttn_share_layout" <?php if ( 1 == $fcbkbttn_options['like'] ) echo 'style="display: none"'; ?><?php if ( 'icon' == $fcbkbttn_options['layout_option'] && 0 == $fcbkbttn_options['like'] ) echo 'selected="selected"'; ?> value="icon">Icon</option>
497
- <option class="fcbkbttn_share_layout" <?php if ( 1 == $fcbkbttn_options['like'] ) echo 'style="display: none"'; ?><?php if ( 'link' == $fcbkbttn_options['layout_option'] && 0 == $fcbkbttn_options['like'] ) echo 'selected="selected"'; ?> value="link">Link</option>
498
- </select>
499
- </td>
500
- </tr>
501
- <tr class="fcbkbttn_like" <?php if ( 1 !== $fcbkbttn_options['like'] ) echo 'style="display: none"'; ?>>
502
- <th><?php _e( 'Like button action', 'facebook-button-plugin' ); ?></th>
503
- <td>
504
- <select name="fcbkbttn_like_action">
505
- <option <?php if ( 'like' == $fcbkbttn_options['like_action'] ) echo 'selected="selected"'; ?> value="like"><?php _e( 'Like', 'facebook-button-plugin' ); ?></option>
506
- <option <?php if ( 'recommend' == $fcbkbttn_options['like_action'] ) echo 'selected="selected"'; ?> value="recommend"><?php _e( 'Recommend', 'facebook-button-plugin' ); ?></option>
507
- </select>
508
- </td>
509
- </tr>
510
- <tr class="fcbkbttn_like fcbkbttn_like_standard_layout" <?php if ( 1 !== $fcbkbttn_options['like'] || 'standard' != $fcbkbttn_options['layout_option'] ) echo 'style="display: none"'; ?>>
511
- <th><?php _e( 'Show faces', 'facebook-button-plugin' ); ?></th>
512
- <td>
513
- <input name="fcbkbttn_faces" type='checkbox' value="1" <?php if ( 1 == $fcbkbttn_options['faces'] ) echo 'checked="checked"'; ?> />
514
- </td>
515
- </tr>
516
- <tr class="fcbkbttn_like fcbkbttn_like_standard_layout" <?php if ( 'standard' !== $fcbkbttn_options['layout_option'] ) echo 'style="display:none"'; ?>>
517
- <th><?php _e( 'Layout width', 'facebook-button-plugin' ); ?></th>
518
- <td>
519
- <label><input name="fcbkbttn_width" type="number" step="1" min="225" value="<?php echo $fcbkbttn_options['width']; ?>"> px</label>
520
- </td>
521
- </tr>
522
- <tr class="fcbkbttn_like fcbkbttn_like_standard_layout" <?php if ( 1 !== $fcbkbttn_options['like'] || 'standard' != $fcbkbttn_options['layout_option'] ) echo 'style="display: none"'; ?>>
523
- <th><?php _e( 'Color scheme', 'facebook-button-plugin' ); ?></th>
524
- <td>
525
- <select name="fcbkbttn_color_scheme">
526
- <option <?php if ( 'light' == $fcbkbttn_options['color_scheme'] ) echo 'selected="selected"'; ?> value="light"><?php _e( 'Light', 'facebook-button-plugin' ); ?></option>
527
- <option <?php if ( 'dark' == $fcbkbttn_options['color_scheme'] ) echo 'selected="selected"'; ?> value="dark"><?php _e( 'Dark', 'facebook-button-plugin' ); ?></option>
528
- </select>
529
- </td>
530
- </tr>
531
- <tr class="fcbkbttn_like" <?php if ( 1 !== $fcbkbttn_options['like'] ) echo 'style="display: none"'; ?>>
532
- <th scope="row"><?php _e( 'Html tag for "Like" button', 'facebook-button-plugin' ); ?></th>
533
- <td>
534
- <fieldset>
535
- <label><input name='fcbkbttn_html5' type='radio' value='0' <?php if ( 0 == $fcbkbttn_options['html5'] ) echo 'checked="checked "'; ?> /><?php echo "<code>&lt;fb:like&gt;</code>"; ?></label><br />
536
- <label><input name='fcbkbttn_html5' type='radio' value='1' <?php if ( 1 == $fcbkbttn_options['html5'] ) echo 'checked="checked "'; ?> /><?php echo "<code>&lt;div&gt;</code>"; ?></label>
537
- <span class="bws_info">(<?php _e( "Use this tag to improve validation of your site", 'facebook-button-plugin' ); ?>)</span>
538
- </fieldset>
539
- </td>
540
- </tr>
541
- </table>
542
- <!-- general --><!-- pls -->
543
- <?php if ( ! $bws_hide_premium_options_check ) { ?>
544
- <div class="bws_pro_version_bloc fcbkbttn_like">
545
- <div class="bws_pro_version_table_bloc">
546
- <button type="submit" name="bws_hide_premium_options" class="notice-dismiss bws_hide_premium_options" title="<?php _e( 'Close', 'facebook-button-plugin' ); ?>"></button>
547
- <div class="bws_table_bg"></div>
548
- <table class="form-table bws_pro_version">
549
- <tr>
550
- <th><?php _e( '"Like" for an entire site on every page:', 'facebook-button-plugin' ); ?></th>
551
- <td><input disabled="disabled" name='fcbkbttn_entire_site_like' type='checkbox' value='1' /><br />
552
- <span style="color: rgb(136, 136, 136); font-size: 10px; display:inline"><?php _e( 'Notice: "Like for the entire site" option does not create an extra button. This option merely allows your users to like the entire website when this option is enabled, or a single post when this option is disabled, when clicking the regular "Like" button.', 'facebook-button-plugin' ); ?></span>
553
- </td>
554
- </tr>
555
- <tr>
556
- <th scope="row" colspan="2">
557
- * <?php _e( 'If you upgrade to Pro version all your settings will be saved.', 'facebook-button-plugin' ); ?>
558
- </th>
559
- </tr>
560
- </table>
561
- </div>
562
- <div class="bws_pro_version_tooltip">
563
- <div class="bws_info">
564
- <?php _e( 'Unlock premium options by upgrading to Pro version', 'facebook-button-plugin' ); ?>
565
- </div>
566
- <a class="bws_button" href="http://bestwebsoft.com/products/wordpress/plugins/facebook-like-button/?k=427287ceae749cbd015b4bba6041c4b8&pn=78&v=<?php echo $fcbkbttn_plugin_info["Version"]; ?>&wp_v=<?php echo $wp_version; ?>" target="_blank" title="Facebook Button Pro"><?php _e( 'Learn More', 'facebook-button-plugin' ); ?></a>
567
- <div class="clear"></div>
568
- </div>
569
- </div>
570
- <?php } ?>
571
- <!-- end general --><!-- end pls -->
572
- <p class="submit">
573
- <input type="hidden" name="fcbkbttn_form_submit" value="submit" />
574
- <input id="bws-submit-button" type="submit" class="button-primary" value="<?php _e( 'Save Changes', 'facebook-button-plugin' ); ?>" />
575
- <?php wp_nonce_field( $plugin_basename, 'fcbkbttn_nonce_name' ); ?>
576
- </p>
577
- </div>
578
- <!-- general --><!-- pls -->
579
- <?php if ( ! $bws_hide_premium_options_check ) { ?>
580
- <div id="fcbkbttn_preview">
581
- <div class="bws_pro_version_bloc">
582
- <div class="bws_pro_version_table_bloc">
583
- <button type="submit" name="bws_hide_premium_options" class="notice-dismiss bws_hide_premium_options" title="<?php _e( 'Close', 'facebook-button-plugin' ); ?>"></button>
584
- <div class="bws_table_bg"></div>
585
- <div id="fcbkbttn_preview_content">
586
- <h3><?php _e( 'Facebook Button preview:', 'facebook-button-plugin' ); ?></h3>
587
- <img src='<?php echo plugins_url( 'images/preview.png', __FILE__ ); ?>' />
588
- </div>
589
- </div>
590
- <div class="bws_pro_version_tooltip">
591
- <div class="bws_info">
592
- <?php _e( 'Unlock premium options by upgrading to Pro version', 'facebook-button-plugin' ); ?>
593
- </div>
594
- <a class="bws_button" href="http://bestwebsoft.com/products/wordpress/plugins/facebook-like-button/?k=427287ceae749cbd015b4bba6041c4b8&pn=78&v=<?php echo $fcbkbttn_plugin_info["Version"]; ?>&wp_v=<?php echo $wp_version; ?>" target="_blank" title="Facebook Button Pro"><?php _e( 'Learn More', 'facebook-button-plugin' ); ?></a>
595
- <div class="clear"></div>
596
- </div>
597
- </div>
598
- </div>
599
- <?php } ?>
600
- <!-- end general --><!-- end pls -->
601
- </form>
602
- <!-- general -->
603
- <?php bws_form_restore_default_settings( $plugin_basename );
604
- }
605
- } elseif ( 'custom_code' == $_GET['action'] ) {
606
- bws_custom_code_tab();
607
- } /*pls extra banner */ elseif ( 'extra' == $_GET['action'] ) { ?>
608
- <div class="bws_pro_version_bloc">
609
- <div class="bws_pro_version_table_bloc">
610
- <div class="bws_table_bg"></div>
611
- <table class="form-table bws_pro_version">
612
- <tr>
613
- <td colspan="2">
614
- <?php _e( 'Please choose the necessary post types (or single pages) where Facebook button will be displayed:', 'facebook-button-plugin' ); ?>
615
- </td>
616
- </tr>
617
- <tr>
618
- <td colspan="2">
619
- <label>
620
- <input disabled="disabled" checked="checked" type="checkbox" name="jstree_url" value="1" />
621
- <?php _e( "Show URL for pages", 'facebook-button-plugin' );?>
622
- </label>
623
- </td>
624
- </tr>
625
- <tr>
626
- <td colspan="2">
627
- <img src="<?php echo plugins_url( 'images/pro_screen_1.png', __FILE__ ); ?>" alt="<?php _e( "Example of the site's pages tree", 'facebook-button-plugin' ); ?>" title="<?php _e( "Example of site pages' tree", 'facebook-button-plugin' ); ?>" />
628
- </td>
629
- </tr>
630
- <tr>
631
- <td colspan="2">
632
- <input disabled="disabled" type="submit" class="button-primary" value="<?php _e( 'Save Changes', 'facebook-button-plugin' ); ?>" />
633
- </td>
634
- </tr>
635
- <tr>
636
- <th scope="row" colspan="2">
637
- * <?php _e( 'If you upgrade to Pro version all your settings will be saved.', 'facebook-button-plugin' ); ?>
638
- </th>
639
- </tr>
640
- </table>
641
- </div>
642
- <div class="bws_pro_version_tooltip">
643
- <div class="bws_info">
644
- <?php _e( 'Unlock premium options by upgrading to Pro version', 'facebook-button-plugin' ); ?>
645
- </div>
646
- <a class="bws_button" href="http://bestwebsoft.com/products/wordpress/plugins/facebook-like-button/?k=427287ceae749cbd015b4bba6041c4b8&pn=78&v=<?php echo $fcbkbttn_plugin_info["Version"]; ?>&wp_v=<?php echo $wp_version; ?>" target="_blank" title="Facebook Button Pro"><?php _e( 'Learn More', 'facebook-button-plugin' ); ?></a>
647
- <div class="clear"></div>
648
- </div>
649
- </div>
650
- <?php } elseif ( 'go_pro' == $_GET['action'] ) {
651
- bws_go_pro_tab_show( $bws_hide_premium_options_check, $fcbkbttn_plugin_info, $plugin_basename, 'facebook-button-plugin.php', 'facebook-button-pro.php', 'facebook-button-pro/facebook-button-pro.php', 'facebook-like-button', '427287ceae749cbd015b4bba6041c4b8', '78', isset( $go_pro_result['pro_plugin_is_activated'] ) );
652
- }
653
- bws_plugin_reviews_block( $fcbkbttn_plugin_info['Name'], 'facebook-button-plugin' ); /* show reviews block pls*/ ?>
654
  </div>
655
- <!-- end general -->
656
  <?php }
657
  }
658
 
@@ -712,22 +265,15 @@ if ( ! function_exists( 'fcbkbttn_display_button' ) ) {
712
  return $content;
713
 
714
  global $fcbkbttn_options;
715
- /* Query the database to receive array 'fcbkbttn_options' and receiving necessary information to create button */
716
- $fcbkbttn_where = $fcbkbttn_options['where'];
717
 
718
  $button = apply_filters( 'fcbkbttn_button_in_the_content', fcbkbttn_button() );
719
  /* Indication where show Facebook Button depending on selected item in admin page. */
720
- if ( 'before' == $fcbkbttn_where ) {
721
- return $button . $content;
722
- } else if ( 'after' == $fcbkbttn_where ) {
723
- return $content . $button;
724
- } else if ( 'beforeandafter' == $fcbkbttn_where ) {
725
- return $button . $content . $button;
726
- } else if ( 'shortcode' == $fcbkbttn_where ) {
727
- return $content;
728
- } else {
729
- return $content;
730
- }
731
  }
732
  }
733
 
@@ -816,7 +362,7 @@ if ( ! function_exists( 'fcbkbttn_footer_script' ) ) {
816
  function fcbkbttn_footer_script() {
817
  global $fcbkbttn_options, $fcbkbttn_shortcode_add_script;
818
  if ( isset( $fcbkbttn_shortcode_add_script ) ||
819
- ( ( 1 == $fcbkbttn_options['like'] || 1 == $fcbkbttn_options['share'] ) && 'shortcode' != $fcbkbttn_options['where'] )
820
  || defined( 'BWS_ENQUEUE_ALL_SCRIPTS' ) ) { ?>
821
  <div id="fb-root"></div>
822
  <script>(function(d, s, id) {
@@ -841,10 +387,10 @@ if ( ! function_exists( 'fcbkbttn_pagination_callback' ) ) {
841
  if ( ! function_exists( 'fcbkbttn_admin_head' ) ) {
842
  function fcbkbttn_admin_head() {
843
  if ( isset( $_GET['page'] ) && ( "facebook-button-plugin.php" == $_GET['page'] || "social-buttons.php" == $_GET['page'] ) ) {
 
 
844
  wp_enqueue_script( 'fcbk_script', plugins_url( 'js/script.js', __FILE__ ), array( 'jquery' ) );
845
- wp_enqueue_style( 'fcbk_stylesheet', plugins_url( 'css/style.css', __FILE__ ) );
846
- if ( isset( $_GET['action'] ) && 'custom_code' == $_GET['action'] )
847
- bws_plugins_include_codemirror();
848
  } elseif ( ! is_admin() ) {
849
  wp_enqueue_style( 'fcbk_stylesheet', plugins_url( 'css/style.css', __FILE__ ) );
850
  }
@@ -875,7 +421,7 @@ if ( ! function_exists ( 'fcbkbttn_links' ) ) {
875
  if ( $file == $base ) {
876
  if ( ! is_network_admin() )
877
  $links[] = '<a href="admin.php?page=facebook-button-plugin.php">' . __( 'Settings', 'facebook-button-plugin' ) . '</a>';
878
- $links[] = '<a href="http://wordpress.org/plugins/facebook-button-plugin/faq/" target="_blank">' . __( 'FAQ', 'facebook-button-plugin' ) . '</a>';
879
  $links[] = '<a href="http://support.bestwebsoft.com">' . __( 'Support', 'facebook-button-plugin' ) . '</a>';
880
  }
881
  return $links;
@@ -977,7 +523,6 @@ add_action( 'wp_footer', 'fcbkbttn_footer_script' );
977
  add_filter( 'pgntn_callback', 'fcbkbttn_pagination_callback' );
978
  /* Add shortcode and plugin buttons */
979
  add_shortcode( 'fb_button', 'fcbkbttn_shortcode' );
980
- add_filter( 'the_content', 'fcbkbttn_display_button' );
981
  /* custom filter for bws button in tinyMCE */
982
  add_filter( 'bws_shortcode_button_content', 'fcbkbttn_shortcode_button_content' );
983
  /*## Additional links on the plugin page */
6
  Author: BestWebSoft
7
  Text Domain: facebook-button-plugin
8
  Domain Path: /languages
9
+ Version: 2.53
10
  Author URI: http://bestwebsoft.com/
11
  License: GPLv2 or later
12
  */
13
 
14
+ /* Copyright 2017 BestWebSoft ( http://support.bestwebsoft.com )
15
 
16
  This program is free software; you can redistribute it and/or modify
17
  it under the terms of the GNU General Public License, version 2, as
27
  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
28
  */
29
 
30
+ /* Add menu pages */
31
  if ( ! function_exists( 'fcbkbttn_add_pages' ) ) {
32
  function fcbkbttn_add_pages() {
33
+ global $submenu, $fcbkbttn_plugin_info, $wp_version;
34
+
35
+ $settings = add_menu_page( __( 'Facebook Button Settings', 'facebook-button-plugin' ), 'Facebook Button', 'manage_options', 'facebook-button-plugin.php', 'fcbkbttn_settings_page', 'dashicons-facebook-alt' );
36
+ add_submenu_page( 'facebook-button-plugin.php', __( 'Facebook Button Settings', 'facebook-button-plugin' ), __( 'Settings', 'facebook-button-plugin' ), 'manage_options', 'facebook-button-plugin.php', 'fcbkbttn_settings_page' );
37
+
38
+ add_submenu_page( 'facebook-button-plugin.php', 'BWS Panel', 'BWS Panel', 'manage_options', 'fcbkbttn-bws-panel', 'bws_add_menu_render' );
39
+ /*pls */
40
+ if ( isset( $submenu['facebook-button-plugin.php'] ) )
41
+ $submenu['facebook-button-plugin.php'][] = array(
42
+ '<span style="color:#d86463"> ' . __( 'Upgrade to Pro', 'facebook-button-plugin' ) . '</span>',
43
+ 'manage_options',
44
+ 'http://bestwebsoft.com/products/wordpress/plugins/facebook-like-button/?k=427287ceae749cbd015b4bba6041c4b8&pn=78&v=' . $fcbkbttn_plugin_info["Version"] . '&wp_v=' . $wp_version );
45
+ /* pls*/
46
  add_action( 'load-' . $settings, 'fcbkbttn_add_tabs' );
47
  }
48
  }
81
  "af_ZA" => 'Afrikaans', "ar_AR" => 'العربية', "az_AZ" => 'Azərbaycan dili', "be_BY" => 'Беларуская', "bg_BG" => 'Български', "bn_IN" => 'বাংলা', "bs_BA" => 'Bosanski', "ca_ES" => 'Català', "cs_CZ" => 'Čeština', "cy_GB" => 'Cymraeg', "da_DK" => 'Dansk', "de_DE" => 'Deutsch', "el_GR" => 'Ελληνικά', "en_US" => 'English', "en_PI" => 'English (Pirate)', "eo_EO" => 'Esperanto', "es_CO" => 'Español (Colombia)', "es_ES" => 'Español (España)', "es_LA" => 'Español', "et_EE" => 'Eesti', "eu_ES" => 'Euskara', "fa_IR" => 'فارسی', "fb_LT" => 'Leet Speak', "fi_FI" => 'Suomi', "fo_FO" => 'Føroyskt', "fr_CA" => 'Français (Canada)', "fr_FR" => 'Français (France)', "fy_NL" => 'Frysk', "ga_IE" => 'Gaeilge', "gl_ES" => 'Galego', "gn_PY" => "Avañe'ẽ", "gu_IN" => 'ગુજરાતી', "he_IL" => 'עברית', "hi_IN" => 'हिन्दी', "hr_HR" => 'Hrvatski', "hu_HU" => 'Magyar', "hy_AM" => 'Հայերեն', "id_ID" => 'Bahasa Indonesia', "is_IS" => 'Íslenska', "it_IT" => 'Italiano', "ja_JP" => '日本語', "jv_ID" => 'Basa Jawa', "ka_GE" => 'ქართული', "kk_KZ" => 'Қазақша', "km_KH" => 'ភាសាខ្មែរ', "kn_IN" => 'ಕನ್ನಡ', "ko_KR" => '한국어', "ku_TR" => 'Kurdî', "la_VA" => 'lingua latina', "lt_LT" => 'Lietuvių', "lv_LV" => 'Latviešu', "mk_MK" => 'Македонски', "ml_IN" => 'മലയാളം', "mn_MN" => 'Монгол', "mr_IN" => 'मराठी', "ms_MY" => 'Bahasa Melayu', "nb_NO" => 'Norsk (bokmål)', "ne_NP" => 'नेपाली', "nl_BE" => 'Nederlands (België)', "nl_NL" => 'Nederlands', "nn_NO" => 'Norsk (nynorsk)', "pa_IN" => 'ਪੰਜਾਬੀ', "pl_PL" => 'Polski', "ps_AF" => 'پښتو', "pt_BR" => 'Português (Brasil)', "pt_PT" => 'Português (Portugal)', "ro_RO" => 'Română', "ru_RU" => 'Русский', "sk_SK" => 'Slovenčina', "sl_SI" => 'Slovenščina', "sq_AL" => 'Shqip', "sr_RS" => 'Српски', "sv_SE" => 'Svenska', "sw_KE" => 'Kiswahili', "ta_IN" => 'தமிழ்', "te_IN" => 'తెలుగు', "tg_TJ" => 'тоҷикӣ', "th_TH" => 'ภาษาไทย', "tl_PH" => 'Filipino', "tr_TR" => 'Türkçe', "uk_UA" => 'Українська', "ur_PK" => 'اردو', "uz_UZ" => "O'zbek", "vi_VN" => 'Tiếng Việt', "zh_CN" => '中文(简体)', "zh_HK" => '中文(香港)', "zh_TW" => '中文(台灣)'
82
  );
83
 
84
+ if ( ! is_admin() ) {
85
+ add_filter( 'the_content', 'fcbkbttn_display_button' );
86
+
87
+ if ( isset( $fcbkbttn_options['display_for_excerpt'] ) && 1 == $fcbkbttn_options['display_for_excerpt'] )
88
+ add_filter( 'the_excerpt', 'fcbkbttn_display_button' );
89
+ }
90
  }
91
  }
92
  }
111
 
112
  if ( ! function_exists( 'fcbkbttn_settings' ) ) {
113
  function fcbkbttn_settings() {
114
+ global $fcbkbttn_options, $fcbkbttn_plugin_info;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
115
  /**
116
  * @since 2.49
117
  * @todo remove after 08.02.2017
126
  /* end @todo */
127
 
128
  /* Install the option defaults */
129
+ if ( ! get_option( 'fcbkbttn_options' ) ) {
130
+ $options_default = fcbkbttn_get_options_default();
131
+ add_option( 'fcbkbttn_options', $options_default );
132
+ }
133
 
134
  /* Get options from the database */
135
  $fcbkbttn_options = get_option( 'fcbkbttn_options' );
138
  /* show pro features */
139
  $fcbkbttn_options['hide_premium_options'] = array();
140
 
141
+ /**
142
+ * @since 2.49
143
+ * @todo remove after 08.02.2017
144
+ */
145
+ if ( ! is_array( $fcbkbttn_options['where'] ) ) {
146
+ switch ( $fcbkbttn_options['where'] ) {
147
+ case 'shortcode':
148
+ $fcbkbttn_options['where'] = array();
149
+ break;
150
+ case 'beforeandafter':
151
+ $fcbkbttn_options['where'] = array( 'before', 'after' );
152
+ break;
153
+ default:
154
+ $fcbkbttn_options['where'] = array( $fcbkbttn_options['where'] );
155
+ break;
156
+ }
157
+ }/* end @todo */
158
+
159
+ $options_default = fcbkbttn_get_options_default();
160
+ $fcbkbttn_options = array_merge( $options_default, $fcbkbttn_options );
161
  $fcbkbttn_options['plugin_option_version'] = $fcbkbttn_plugin_info["Version"];
162
  update_option( 'fcbkbttn_options', $fcbkbttn_options );
163
  }
164
  }
165
  }
166
 
167
+ if ( ! function_exists( 'fcbkbttn_get_options_default' ) ) {
168
+ function fcbkbttn_get_options_default() {
169
+ global $fcbkbttn_plugin_info;
170
+
171
+ $options_default = array(
172
+ 'plugin_option_version' => $fcbkbttn_plugin_info["Version"],
173
+ 'display_settings_notice' => 1,
174
+ 'first_install' => strtotime( "now" ),
175
+ 'suggest_feature_banner' => 1,
176
+ 'link' => '',
177
+ 'my_page' => 1,
178
+ 'like' => 1,
179
+ 'layout_option' => 'button_count',
180
+ 'like_action' => 'like',
181
+ 'color_scheme' => 'light',
182
+ 'share' => 0,
183
+ 'faces' => 0,
184
+ 'width' => 450,
185
+ 'where' => array( 'before' ),
186
+ 'display_option' => 'standard',
187
+ 'count_icon' => 1,
188
+ 'extention' => 'png',
189
+ 'fb_img_link' => plugins_url( "images/standard-facebook-ico.png", __FILE__ ),
190
+ 'locale' => 'en_US',
191
+ 'html5' => 0,
192
+ 'use_multilanguage_locale' => 0,
193
+ 'display_for_excerpt' => 0
194
+ );
195
+ return $options_default;
196
+ }
197
+ }
198
+
199
  /* Function formed content of the plugin's admin page. */
200
  if ( ! function_exists( 'fcbkbttn_settings_page' ) ) {
201
  function fcbkbttn_settings_page() {
202
+ require_once( dirname( __FILE__ ) . '/includes/class-fcbkbttn-settings.php' );
203
+ $page = new Fcbkbttn_Settings_Tabs( plugin_basename( __FILE__ ) ); ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
204
  <div class="wrap">
205
  <h1><?php _e( 'Facebook Button Settings', 'facebook-button-plugin' ); ?></h1>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
206
  <noscript><div class="error below-h2"><p><strong><?php _e( "Please, enable JavaScript in Your browser.", 'facebook-button-plugin' ); ?></strong></p></div></noscript>
207
+ <?php $page->display_content(); ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
208
  </div>
 
209
  <?php }
210
  }
211
 
265
  return $content;
266
 
267
  global $fcbkbttn_options;
 
 
268
 
269
  $button = apply_filters( 'fcbkbttn_button_in_the_content', fcbkbttn_button() );
270
  /* Indication where show Facebook Button depending on selected item in admin page. */
271
+ if ( in_array( 'before', $fcbkbttn_options['where'] ) )
272
+ $content = $button . $content;
273
+ if ( in_array( 'after', $fcbkbttn_options['where'] ) )
274
+ $content .= $button;
275
+
276
+ return $content;
 
 
 
 
 
277
  }
278
  }
279
 
362
  function fcbkbttn_footer_script() {
363
  global $fcbkbttn_options, $fcbkbttn_shortcode_add_script;
364
  if ( isset( $fcbkbttn_shortcode_add_script ) ||
365
+ ( ( 1 == $fcbkbttn_options['like'] || 1 == $fcbkbttn_options['share'] ) && ! empty( $fcbkbttn_options['where'] ) )
366
  || defined( 'BWS_ENQUEUE_ALL_SCRIPTS' ) ) { ?>
367
  <div id="fb-root"></div>
368
  <script>(function(d, s, id) {
387
  if ( ! function_exists( 'fcbkbttn_admin_head' ) ) {
388
  function fcbkbttn_admin_head() {
389
  if ( isset( $_GET['page'] ) && ( "facebook-button-plugin.php" == $_GET['page'] || "social-buttons.php" == $_GET['page'] ) ) {
390
+ bws_enqueue_settings_scripts();
391
+ bws_plugins_include_codemirror();
392
  wp_enqueue_script( 'fcbk_script', plugins_url( 'js/script.js', __FILE__ ), array( 'jquery' ) );
393
+ wp_enqueue_style( 'fcbk_stylesheet', plugins_url( 'css/style.css', __FILE__ ) );
 
 
394
  } elseif ( ! is_admin() ) {
395
  wp_enqueue_style( 'fcbk_stylesheet', plugins_url( 'css/style.css', __FILE__ ) );
396
  }
421
  if ( $file == $base ) {
422
  if ( ! is_network_admin() )
423
  $links[] = '<a href="admin.php?page=facebook-button-plugin.php">' . __( 'Settings', 'facebook-button-plugin' ) . '</a>';
424
+ $links[] = '<a href="http://support.bestwebsoft.com/hc/en-us/sections/200538939" target="_blank">' . __( 'FAQ', 'facebook-button-plugin' ) . '</a>';
425
  $links[] = '<a href="http://support.bestwebsoft.com">' . __( 'Support', 'facebook-button-plugin' ) . '</a>';
426
  }
427
  return $links;
523
  add_filter( 'pgntn_callback', 'fcbkbttn_pagination_callback' );
524
  /* Add shortcode and plugin buttons */
525
  add_shortcode( 'fb_button', 'fcbkbttn_shortcode' );
 
526
  /* custom filter for bws button in tinyMCE */
527
  add_filter( 'bws_shortcode_button_content', 'fcbkbttn_shortcode_button_content' );
528
  /*## Additional links on the plugin page */
includes/class-fcbkbttn-settings.php ADDED
@@ -0,0 +1,528 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Displays the content on the plugin settings page
4
+ */
5
+
6
+ require_once( dirname( dirname( __FILE__ ) ) . '/bws_menu/class-bws-settings.php' );
7
+
8
+ if ( ! class_exists( 'Fcbkbttn_Settings_Tabs' ) ) {
9
+ class Fcbkbttn_Settings_Tabs extends Bws_Settings_Tabs {
10
+ /**
11
+ * Constructor.
12
+ *
13
+ * @access public
14
+ *
15
+ * @see Bws_Settings_Tabs::__construct() for more information on default arguments.
16
+ *
17
+ * @param string $plugin_basename
18
+ */
19
+ public function __construct( $plugin_basename ) {
20
+ global $fcbkbttn_options, $fcbkbttn_plugin_info;
21
+
22
+ $tabs = array(
23
+ 'settings' => array( 'label' => __( 'Settings', 'facebook-button-plugin' ) ),
24
+ /*pls */
25
+ 'display' => array( 'label' => __( 'Display', 'facebook-button-plugin' ), 'is_pro' => 1 ),
26
+ /* pls*/
27
+ 'misc' => array( 'label' => __( 'Misc', 'facebook-button-plugin' ) ),
28
+ 'custom_code' => array( 'label' => __( 'Custom Code', 'facebook-button-plugin' ) ),
29
+ /*pls */
30
+ 'license' => array( 'label' => __( 'License Key', 'facebook-button-plugin' ) ),
31
+ /* pls*/
32
+ );
33
+
34
+ parent::__construct( array(
35
+ 'plugin_basename' => $plugin_basename,
36
+ 'plugins_info' => $fcbkbttn_plugin_info,
37
+ 'prefix' => 'fcbkbttn',
38
+ 'default_options' => fcbkbttn_get_options_default(),
39
+ 'options' => $fcbkbttn_options,
40
+ 'is_network_options' => is_network_admin(),
41
+ 'tabs' => $tabs,
42
+ 'doc_link' => 'https://docs.google.com/document/d/1gy5uDVoebmYRUvlKRwBmc97jdJFz7GvUCtXy3L7r_Yg/',
43
+ /*pls */
44
+ 'wp_slug' => 'facebook-button-plugin',
45
+ 'pro_page' => 'admin.php?page=facebook-button-pro.php',
46
+ 'bws_license_plugin' => 'facebook-button-pro/facebook-button-pro.php',
47
+ 'link_key' => '427287ceae749cbd015b4bba6041c4b8',
48
+ 'link_pn' => '78'
49
+ /* pls*/
50
+ ) );
51
+
52
+ add_action( get_parent_class( $this ) . '_additional_misc_options', array( $this, 'additional_misc_options' ) );
53
+ add_action( get_parent_class( $this ) . '_display_metabox', array( $this, 'display_metabox' ) );
54
+ add_action( get_parent_class( $this ) . '_display_second_postbox', array( $this, 'display_second_postbox' ) );
55
+ }
56
+
57
+ /**
58
+ * Save plugin options to the database
59
+ * @access public
60
+ * @param void
61
+ * @return array The action results
62
+ */
63
+ public function save_options() {
64
+
65
+ /* Takes all the changed settings on the plugin's admin page and saves them in array 'fcbkbttn_options'. */
66
+ $this->options['link'] = stripslashes( esc_html( $_REQUEST['fcbkbttn_link'] ) );
67
+ $this->options['link'] = str_replace( 'https://www.facebook.com/profile.php?id=', '', $this->options['link'] );
68
+ $this->options['link'] = str_replace( 'https://www.facebook.com/', '', $this->options['link'] );
69
+
70
+ $this->options['where'] = isset( $_REQUEST['fcbkbttn_where'] ) ? $_REQUEST['fcbkbttn_where'] : array();
71
+ $this->options['display_option'] = $_REQUEST['fcbkbttn_display_option'];
72
+ if ( 'standard' == $this->options['display_option'] ) {
73
+ $this->options['fb_img_link'] = plugins_url( 'images/standard-facebook-ico.png', dirname( __FILE__ ) );
74
+ }
75
+ $this->options['my_page'] = isset( $_REQUEST['fcbkbttn_my_page'] ) ? 1 : 0;
76
+ $this->options['like'] = isset( $_REQUEST['fcbkbttn_like'] ) ? 1 : 0;
77
+ $this->options['layout_option'] = $_REQUEST['fcbkbttn_layout_option'];
78
+ $this->options['share'] = isset( $_REQUEST['fcbkbttn_share'] ) ? 1 : 0;
79
+ $this->options['faces'] = isset( $_REQUEST['fcbkbttn_faces'] ) ? 1 : 0;
80
+ $this->options['like_action'] = $_REQUEST['fcbkbttn_like_action'];
81
+ $this->options['color_scheme'] = $_REQUEST['fcbkbttn_color_scheme'];
82
+ $this->options['width'] = intval( $_REQUEST['fcbkbttn_width'] );
83
+ $this->options['locale'] = $_REQUEST['fcbkbttn_locale'];
84
+ $this->options['html5'] = $_REQUEST['fcbkbttn_html5'];
85
+ if ( isset( $_FILES['fcbkbttn_uploadfile']['tmp_name'] ) && $_FILES['fcbkbttn_uploadfile']['tmp_name'] != "" ) {
86
+ $this->options['count_icon'] = $this->options['count_icon'] + 1;
87
+ $file_ext = wp_check_filetype( $_FILES['fcbkbttn_uploadfile']['name'] );
88
+ $this->options['extention'] = $file_ext['ext'];
89
+ }
90
+
91
+ if ( 2 < $this->options['count_icon'] )
92
+ $this->options['count_icon'] = 1;
93
+
94
+ $this->options['use_multilanguage_locale'] = isset( $_REQUEST['fcbkbttn_use_multilanguage_locale'] ) ? 1 : 0;
95
+ $this->options['display_for_excerpt'] = isset( $_REQUEST['fcbkbttn_display_for_excerpt'] ) ? 1 : 0;
96
+
97
+ $this->options = apply_filters( 'fcbkbttn_before_save_options', $this->options );
98
+ update_option( 'fcbkbttn_options', $this->options );
99
+ $message = __( "Settings saved", 'facebook-button-plugin' );
100
+
101
+ if ( ! empty( $_FILES['fcbkbttn_uploadfile']['tmp_name'] ) ) {
102
+ if ( ! $this->upload_dir )
103
+ $this->upload_dir = wp_upload_dir();
104
+
105
+ if ( ! $this->upload_dir["error"] ) {
106
+ $fcbkbttn_cstm_mg_folder = $this->upload_dir['basedir'] . '/facebook-image';
107
+ if ( ! is_dir( $fcbkbttn_cstm_mg_folder ) ) {
108
+ wp_mkdir_p( $fcbkbttn_cstm_mg_folder, 0755 );
109
+ }
110
+ }
111
+ $max_image_width = 100;
112
+ $max_image_height = 40;
113
+ $max_image_size = 32 * 1024;
114
+ $valid_types = array( 'jpg', 'jpeg', 'png' );
115
+ /* Construction to rename downloading file */
116
+ $new_name = 'facebook-ico' . $this->options['count_icon'];
117
+ $new_ext = wp_check_filetype( $_FILES['fcbkbttn_uploadfile']['name'] );
118
+ $namefile = $new_name . '.' . $new_ext['ext'];
119
+ $uploadfile = $fcbkbttn_cstm_mg_folder . '/' . $namefile;
120
+
121
+ /* Checks is file download initiated by user */
122
+ if ( isset( $_FILES['fcbkbttn_uploadfile'] ) && 'custom' == $_REQUEST['fcbkbttn_display_option'] ) {
123
+ /* Checking is allowed download file given parameters */
124
+ if ( is_uploaded_file( $_FILES['fcbkbttn_uploadfile']['tmp_name'] ) ) {
125
+ $filename = $_FILES['fcbkbttn_uploadfile']['tmp_name'];
126
+ $ext = substr( $_FILES['fcbkbttn_uploadfile']['name'], 1 + strrpos( $_FILES['fcbkbttn_uploadfile']['name'], '.' ) );
127
+ if ( filesize( $filename ) > $max_image_size ) {
128
+ $error = __( "Error: File size > 32K", 'facebook-button-plugin' );
129
+ }
130
+ elseif ( ! in_array( strtolower( $ext ), $valid_types ) ) {
131
+ $error = __( "Error: Invalid file type", 'facebook-button-plugin' );
132
+ } else {
133
+ $size = GetImageSize( $filename );
134
+ if ( $size && $size[0] <= $max_image_width && $size[1] <= $max_image_height ) {
135
+ /* If file satisfies requirements, we will move them from temp to your plugin folder and rename to 'facebook_ico.jpg' */
136
+ if ( move_uploaded_file( $_FILES['fcbkbttn_uploadfile']['tmp_name'], $uploadfile ) ) {
137
+ $message .= '. ' . __( "Upload successful.", 'facebook-button-plugin' );
138
+
139
+ if ( 'standard' == $this->options['display_option'] ) {
140
+ $fb_img_link = plugins_url( 'images/standard-facebook-ico.png', dirname( __FILE__ ) );
141
+ } else if ( 'custom' == $this->options['display_option'] ) {
142
+ $fb_img_link = $this->upload_dir['baseurl'] . '/facebook-image/facebook-ico' . $this->options['count_icon'] . '.' . $this->options['extention'];
143
+ }
144
+ $this->options['fb_img_link'] = $fb_img_link ;
145
+ update_option( 'fcbkbttn_options', $this->options );
146
+ } else {
147
+ $error = __( "Error: failed to move file.", 'facebook-button-plugin' );
148
+ }
149
+ } else {
150
+ $error = __( "Error: check image width or height.", 'facebook-button-plugin' );
151
+ }
152
+ }
153
+ } else {
154
+ $error = __( "Uploading Error: check image properties", 'facebook-button-plugin' );
155
+ }
156
+ }
157
+ }
158
+
159
+ return compact( 'message', 'notice', 'error' );
160
+ }
161
+
162
+ /**
163
+ *
164
+ */
165
+ public function tab_settings() {
166
+ global $fcbkbttn_lang_codes, $wp_version;
167
+ if ( ! $this->upload_dir )
168
+ $this->upload_dir = wp_upload_dir();
169
+
170
+ if ( ! $this->all_plugins ) {
171
+ if ( ! function_exists( 'get_plugins' ) )
172
+ require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
173
+ $this->all_plugins = get_plugins();
174
+ } ?>
175
+ <h3 class="bws_tab_label"><?php _e( 'Facebook button Settings', 'facebook-button-plugin' ); ?></h3>
176
+ <?php $this->help_phrase(); ?>
177
+ <hr>
178
+ <div class="bws_tab_sub_label"><?php _e( 'General', 'facebook-button-plugin' ); ?></div>
179
+ <table class="form-table">
180
+ <tr>
181
+ <th scope="row"><?php _e( 'Buttons', 'facebook-button-plugin' ); ?></th>
182
+ <td>
183
+ <fieldset>
184
+ <label><input name='fcbkbttn_my_page' type='checkbox' value='1' <?php if ( 1 == $this->options['my_page'] ) echo 'checked="checked "'; ?>/> <?php _e( 'Profile URL', 'facebook-button-plugin' ); ?></label><br />
185
+ <label><input name='fcbkbttn_like' type='checkbox' <?php if ( 0 !== ( $this->options['like'] ) ) echo 'checked="checked "'; ?>/> <?php _e( "Like", 'facebook-button-plugin' ); ?></label><br />
186
+ <label><input name='fcbkbttn_share' type='checkbox' value='1' <?php if ( 1 == $this->options['share'] ) echo 'checked="checked "'; ?>/> <?php _e( "Share", 'facebook-button-plugin' ); ?></label><br />
187
+ </fieldset>
188
+ </td>
189
+ </tr>
190
+ <tr>
191
+ <th><?php _e( 'Buttons Position', 'facebook-button-plugin' ); ?></th>
192
+ <td>
193
+ <fieldset>
194
+ <label>
195
+ <input type="checkbox" name="fcbkbttn_where[]" value="before" <?php if ( in_array( 'before', $this->options['where'] ) ) echo 'checked="checked"'; ?> />
196
+ <?php _e( 'Before content', 'facebook-button-plugin' ); ?></option>
197
+ </label>
198
+ <br>
199
+ <label>
200
+ <input type="checkbox" name="fcbkbttn_where[]" value="after" <?php if ( in_array( 'after', $this->options['where'] ) ) echo 'checked="checked"'; ?> />
201
+ <?php _e( 'After content', 'facebook-button-plugin' ); ?></option>
202
+ </label>
203
+ </fieldset>
204
+ </td>
205
+ </tr>
206
+ <tr>
207
+ <th><?php _e( 'Language', 'facebook-button-plugin' ); ?></th>
208
+ <td>
209
+ <select name="fcbkbttn_locale">
210
+ <?php foreach ( $fcbkbttn_lang_codes as $key => $val ) {
211
+ echo '<option value="' . $key . '"';
212
+ if ( $key == $this->options['locale'] )
213
+ echo ' selected="selected"';
214
+ echo '>' . esc_html ( $val ) . '</option>';
215
+ } ?>
216
+ </select>
217
+ <br />
218
+ <span class="bws_info"><?php _e( 'Select the default language for Facebook button(-s).', 'facebook-button-plugin' ); ?></span>
219
+ </td>
220
+ </tr>
221
+ <tr>
222
+ <th>Multilanguage</th>
223
+ <td>
224
+ <?php if ( array_key_exists( 'multilanguage/multilanguage.php', $this->all_plugins ) || array_key_exists( 'multilanguage-pro/multilanguage-pro.php', $this->all_plugins ) ) {
225
+ if ( is_plugin_active( 'multilanguage/multilanguage.php' ) || is_plugin_active( 'multilanguage-pro/multilanguage-pro.php' ) ) { ?>
226
+ <input type="checkbox" name="fcbkbttn_use_multilanguage_locale" value="1" <?php if ( 1 == $this->options["use_multilanguage_locale"] ) echo 'checked="checked"'; ?> />
227
+ <span class="bws_info"><?php _e( 'Enable to switch language automatically on multilingual website using Multilanguage plugin.', 'facebook-button-plugin' ); ?></span>
228
+ <?php } else { ?>
229
+ <input disabled="disabled" type="checkbox" name="fcbkbttn_use_multilanguage_locale" value="1" />
230
+ <span class="bws_info"><?php _e( 'Enable to switch language automatically on multilingual website using Multilanguage plugin.', 'facebook-button-plugin' ); ?> <a href="<?php echo bloginfo( "url" ); ?>/wp-admin/plugins.php"><?php printf( __( 'Activate %s', 'facebook-button-plugin' ), 'Multilanguage' ); ?></a></span>
231
+ <?php }
232
+ } else { ?>
233
+ <input disabled="disabled" type="checkbox" name="fcbkbttn_use_multilanguage_locale" value="1" />
234
+ <span class="bws_info"><?php _e( 'Enable to switch language automatically on multilingual website using Multilanguage plugin.', 'facebook-button-plugin' ); ?> <a href="http://bestwebsoft.com/products/wordpress/plugins/multilanguage/?k=196fb3bb74b6e8b1e08f92cddfd54313&pn=78&v=<?php echo $this->plugins_info["Version"]; ?>&wp_v=<?php echo $wp_version; ?>"><?php _e( 'Learn More', 'facebook-button-plugin' ); ?></a></span>
235
+ <?php } ?>
236
+ </td>
237
+ </tr>
238
+ <tr>
239
+ <th><?php _e( 'Excerpt', 'facebook-button-plugin' ); ?></th>
240
+ <td>
241
+ <input name='fcbkbttn_display_for_excerpt' type='checkbox' value='1' <?php if ( 1 == $this->options['display_for_excerpt'] ) echo 'checked="checked "'; ?>/> <span class="bws_info"><?php _e( 'Enable to display buttons in excerpt.', 'facebook-button-plugin' ); ?></span>
242
+ </td>
243
+ </tr>
244
+ <?php do_action( 'fcbkbttn_settings_page_action', $this->options ); ?>
245
+ </table>
246
+ <!-- general --><!-- pls -->
247
+ <?php if ( ! $this->hide_pro_tabs ) { ?>
248
+ <div class="bws_pro_version_bloc">
249
+ <div class="bws_pro_version_table_bloc">
250
+ <button type="submit" name="bws_hide_premium_options" class="notice-dismiss bws_hide_premium_options" title="<?php _e( 'Close', 'facebook-button-plugin' ); ?>"></button>
251
+ <div class="bws_table_bg"></div>
252
+ <table class="form-table bws_pro_version">
253
+ <tr>
254
+ <th><?php _e( 'Meta Image', 'facebook-button-plugin' ); ?></th>
255
+ <td>
256
+ <fieldset>
257
+ <label>
258
+ <input disabled="disabled" type="radio" name="fcbkbttn_meta_image" value="featured_image" checked="checked" />
259
+ <?php _e( 'Featured Image', 'facebook-button-plugin' ); ?>
260
+ </label><br />
261
+ <label>
262
+ <input disabled="disabled" type="radio" name="fcbkbttn_meta_image" value="custom_image" />
263
+ <?php _e( 'Custom Image', 'facebook-button-plugin' ); ?> <span class="bws_info">(<?php _e( 'This image will be used for all posts', 'facebook-button-plugin' ); ?>)</span>
264
+ </label><br />
265
+ <input disabled="disabled" name="fcbkbttn_meta_uploadfile" type="file" />
266
+ </fieldset>
267
+ </td>
268
+ </tr>
269
+ <tr>
270
+ <th><?php _e( 'Meta Description', 'facebook-button-plugin' ); ?></th>
271
+ <td>
272
+ <textarea disabled="disabled" name="fcbkbttn_meta_description_custom"></textarea>
273
+ <br>
274
+ <span class="bws_info"><?php _e( 'This description will be used for all pages and posts. Leave blank to use page description.', 'facebook-button-plugin' ); ?></span>
275
+ </td>
276
+ </tr>
277
+ </table>
278
+ </div>
279
+ <?php $this->bws_pro_block_links(); ?>
280
+ </div>
281
+ <?php } ?>
282
+ <!-- end general --><!-- end pls -->
283
+ <div class="bws_tab_sub_label fcbkbttn_my_page_enabled"><?php _e( 'Profile URL Button', 'facebook-button-plugin' ); ?></div>
284
+ <table class="form-table fcbkbttn_my_page_enabled">
285
+ <tr>
286
+ <th scope="row"><?php _e( 'Facebook ID or Username', 'facebook-button-plugin' ); ?></th>
287
+ <td>
288
+ <input name='fcbkbttn_link' type='text' maxlength='250' value='<?php echo $this->options['link']; ?>' />
289
+ </td>
290
+ </tr>
291
+ <tr>
292
+ <th>
293
+ <?php _e( 'Profile Button Image', 'facebook-button-plugin' ); ?>
294
+ </th>
295
+ <td>
296
+ <?php if ( scandir( $this->upload_dir['basedir'] ) && is_writable( $this->upload_dir['basedir'] ) ) { ?>
297
+ <fieldset>
298
+ <label>
299
+ <input type="radio" name="fcbkbttn_display_option" value="standard" <?php if ( 'standard' == $this->options['display_option'] ) echo 'checked="checked"'; ?> />
300
+ <?php _e( 'Default', 'facebook-button-plugin' ); ?>
301
+ </label>
302
+ <br>
303
+ <label>
304
+ <input type="radio" name="fcbkbttn_display_option" value="custom" <?php if ( 'custom' == $this->options['display_option'] ) echo 'checked="checked"'; ?> />
305
+ <?php _e( 'Custom image', 'facebook-button-plugin' ); ?>
306
+ </label>
307
+ </fieldset>
308
+ <?php } else {
309
+ echo __( 'To use custom image, You need to setup permissions for upload directory of your site', 'facebook-button-plugin' ) . " - " . $this->upload_dir['basedir'];
310
+ } ?>
311
+ </td>
312
+ </tr>
313
+ <tr>
314
+ <th></th>
315
+ <td>
316
+ <?php _e( 'Current image', 'facebook-button-plugin' ); ?>:
317
+ <img src="<?php echo $this->options['fb_img_link']; ?>" style="vertical-align: middle;" />
318
+ </td>
319
+ </tr>
320
+ <tr id="fcbkbttn_display_option_custom">
321
+ <th></th>
322
+ <td>
323
+ <input name="fcbkbttn_uploadfile" type="file" /><br />
324
+ <span class="bws_info"><?php _e( 'Image requirements: max image width:100px; max image height:40px; max image size:32Kb; image types:"jpg", "jpeg", "png".', 'facebook-button-plugin' ); ?></span>
325
+ </td>
326
+ </tr>
327
+ </table>
328
+ <div class="bws_tab_sub_label fcbkbttn_like_enabled fcbkbttn_share_enabled"><?php _e( 'Like&Share Buttons', 'facebook-button-plugin' ); ?></div>
329
+ <table class="form-table fcbkbttn_like_enabled fcbkbttn_share_enabled">
330
+ <tr>
331
+ <th><?php _e( 'Layout', 'facebook-button-plugin' ); ?></th>
332
+ <td>
333
+ <fieldset class="fcbkbttn_layout_option">
334
+ <label class="fcbkbttn_like_layout">
335
+ <input type="radio" name="fcbkbttn_layout_option" <?php if ( 'standard' == $this->options['layout_option'] || 1 == $this->options['like'] ) echo 'checked="checked"'; ?> value="standard" />
336
+ Standard
337
+ </label>
338
+ <label>
339
+ <input type="radio" name="fcbkbttn_layout_option" <?php if ( 'box_count' == $this->options['layout_option'] ) echo 'checked="checked"'; ?> value="box_count" />
340
+ Box count
341
+ </label>
342
+ <label>
343
+ <input type="radio" name="fcbkbttn_layout_option" <?php if ( 'button_count' == $this->options['layout_option'] ) echo 'checked="checked"'; ?> value="button_count" />
344
+ Button count
345
+ </label>
346
+ <label>
347
+ <input type="radio" name="fcbkbttn_layout_option" <?php if ( 'button' == $this->options['layout_option'] ) echo 'checked="checked"'; ?> value="button" />
348
+ Button
349
+ </label>
350
+ <label class="fcbkbttn_share_layout">
351
+ <input type="radio" name="fcbkbttn_layout_option" <?php if ( 'icon_link' == $this->options['layout_option'] && 0 == $this->options['like'] ) echo 'checked="checked"'; ?> value="icon_link" />
352
+ Icon link
353
+ </label>
354
+ <label class="fcbkbttn_share_layout">
355
+ <input type="radio" name="fcbkbttn_layout_option" <?php if ( 'icon' == $this->options['layout_option'] && 0 == $this->options['like'] ) echo 'checked="checked"'; ?> value="icon" />
356
+ Icon
357
+ </label>
358
+ <label class="fcbkbttn_share_layout">
359
+ <input type="radio" name="fcbkbttn_layout_option" <?php if ( 'link' == $this->options['layout_option'] && 0 == $this->options['like'] ) echo 'checked="checked"'; ?> value="link" />
360
+ Link
361
+ </label>
362
+ </fieldset>
363
+ </td>
364
+ </tr>
365
+ <tr class="fcbkbttn_like_enabled">
366
+ <th><?php _e( 'Like Button Action', 'facebook-button-plugin' ); ?></th>
367
+ <td>
368
+ <fieldset>
369
+ <label>
370
+ <input type="radio" name="fcbkbttn_like_action" value="like" <?php if ( 'like' == $this->options['like_action'] ) echo 'checked="checked"'; ?> />
371
+ <?php _e( 'Like', 'facebook-button-plugin' ); ?>
372
+ </label>
373
+ <br>
374
+ <label>
375
+ <input type="radio" name="fcbkbttn_like_action" value="recommend" <?php if ( 'recommend' == $this->options['like_action'] ) echo 'checked="checked"'; ?> />
376
+ <?php _e( 'Recommend', 'facebook-button-plugin' ); ?>
377
+ </label>
378
+ </fieldset>
379
+ </td>
380
+ </tr>
381
+ <tr class="fcbkbttn_like_enabled fcbkbttn_like_standard_layout">
382
+ <th><?php _e( 'Friends faces', 'facebook-button-plugin' ); ?></th>
383
+ <td>
384
+ <input name="fcbkbttn_faces" type='checkbox' value="1" <?php if ( 1 == $this->options['faces'] ) echo 'checked="checked"'; ?> />
385
+ <span class="bws_info"><?php _e( ' Enable to show faces of your friends who submitted the button.', 'facebook-button-plugin' ); ?></span>
386
+ </td>
387
+ </tr>
388
+ <tr class="fcbkbttn_like_enabled fcbkbttn_like_standard_layout">
389
+ <th><?php _e( 'Layout Width', 'facebook-button-plugin' ); ?></th>
390
+ <td>
391
+ <label><input name="fcbkbttn_width" type="number" step="1" min="225" value="<?php echo $this->options['width']; ?>"> <?php _e( 'px', 'facebook-button-plugin' ); ?></label>
392
+ </td>
393
+ </tr>
394
+ <tr class="fcbkbttn_like_enabled fcbkbttn_like_standard_layout">
395
+ <th><?php _e( 'Theme', 'facebook-button-plugin' ); ?></th>
396
+ <td>
397
+ <fieldset>
398
+ <label>
399
+ <input type="radio" name="fcbkbttn_color_scheme" value="light" <?php if ( 'light' == $this->options['color_scheme'] ) echo 'checked="checked"'; ?> />
400
+ <?php _e( 'Light', 'facebook-button-plugin' ); ?>
401
+ </label>
402
+ <br>
403
+ <label>
404
+ <input type="radio" name="fcbkbttn_color_scheme" value="dark" <?php if ( 'dark' == $this->options['color_scheme'] ) echo 'checked="checked"'; ?> />
405
+ <?php _e( 'Dark', 'facebook-button-plugin' ); ?>
406
+ </label>
407
+ </fieldset>
408
+ </td>
409
+ </tr>
410
+ <tr class="fcbkbttn_like_enabled">
411
+ <th scope="row"><?php _e( 'Like Button HTML Tag', 'facebook-button-plugin' ); ?></th>
412
+ <td>
413
+ <fieldset>
414
+ <label><input name='fcbkbttn_html5' type='radio' value='0' <?php if ( 0 == $this->options['html5'] ) echo 'checked="checked "'; ?> /><?php echo "&lt;fb:like&gt;"; ?></label><br />
415
+ <label><input name='fcbkbttn_html5' type='radio' value='1' <?php if ( 1 == $this->options['html5'] ) echo 'checked="checked "'; ?> /><?php echo "&lt;div&gt;"; ?></label>
416
+ <br>
417
+ <span class="bws_info"><?php printf( __( "Tag %s can be used to improve website code validation.", 'facebook-button-plugin' ), '&lt;div&gt;' ); ?></span>
418
+ </fieldset>
419
+ </td>
420
+ </tr>
421
+ </table>
422
+ <!-- general --><!-- pls -->
423
+ <?php if ( ! $this->hide_pro_tabs ) { ?>
424
+ <div class="bws_pro_version_bloc fcbkbttn_like_enabled">
425
+ <div class="bws_pro_version_table_bloc">
426
+ <button type="submit" name="bws_hide_premium_options" class="notice-dismiss bws_hide_premium_options" title="<?php _e( 'Close', 'facebook-button-plugin' ); ?>"></button>
427
+ <div class="bws_table_bg"></div>
428
+ <table class="form-table bws_pro_version">
429
+ <tr>
430
+ <th><?php _e( 'URL to Like', 'facebook-button-plugin' ); ?></th>
431
+ <td><input disabled="disabled" name='fcbkbttn_url_to_like' type='text' value="" /><br />
432
+ <span class="bws_info"><?php _e( 'Leave blank to use a current page.', 'facebook-button-plugin' ); ?></span>
433
+ </td>
434
+ </tr>
435
+ </table>
436
+ </div>
437
+ <?php $this->bws_pro_block_links(); ?>
438
+ </div>
439
+ <?php } ?>
440
+ <!-- end general --><!-- end pls -->
441
+ <?php }
442
+
443
+ /**
444
+ * Display custom options on the 'misc' tab
445
+ * @access public
446
+ */
447
+ public function additional_misc_options() {
448
+ do_action( 'fcbkbttn_settings_page_misc_action', $this->options );
449
+ }
450
+
451
+ /**
452
+ * Display custom metabox
453
+ * @access public
454
+ * @param void
455
+ * @return array The action results
456
+ */
457
+ public function display_metabox() { ?>
458
+ <div class="postbox">
459
+ <h3 class="hndle">
460
+ <?php _e( 'Facebook Buttons Shortchode', 'facebook-button-plugin' ); ?>
461
+ </h3>
462
+ <div class="inside">
463
+ <?php _e( "Add Facebook button(-s) to your posts, pages, custom post types or widgets by using the following shortcode:", 'facebook-button-plugin' ); ?>
464
+ <?php bws_shortcode_output( '[fb_button]' ); ?>
465
+ </div>
466
+ </div>
467
+ <?php }
468
+
469
+ /**
470
+ * Display custom metabox
471
+ * @access public
472
+ * @param void
473
+ * @return array The action results
474
+ */
475
+ public function display_second_postbox() {
476
+ /*pls */
477
+ if ( ! $this->hide_pro_tabs ) { ?>
478
+ <div class="postbox bws_pro_version_bloc">
479
+ <div class="bws_table_bg"></div>
480
+ <h3 class="hndle">
481
+ <button type="submit" name="bws_hide_premium_options" class="notice-dismiss bws_hide_premium_options" title="<?php _e( 'Close', 'facebook-button-plugin' ); ?>"></button>
482
+ <?php _e( 'Facebook Buttons Preview', 'facebook-button-plugin' ); ?>
483
+ </h3>
484
+ <div class="inside">
485
+ <img src='<?php echo plugins_url( 'images/preview.png', dirname( __FILE__ ) ); ?>' />
486
+ </div>
487
+ <?php $this->bws_pro_block_links(); ?>
488
+ </div>
489
+ <?php }
490
+ }
491
+
492
+
493
+ /**
494
+ *
495
+ */
496
+ public function tab_display() { ?>
497
+ <h3 class="bws_tab_label"><?php _e( 'Display Settings', 'facebook-button-plugin' ); ?></h3>
498
+ <?php $this->help_phrase(); ?>
499
+ <hr>
500
+ <div class="bws_pro_version_bloc">
501
+ <div class="bws_pro_version_table_bloc">
502
+ <div class="bws_table_bg"></div>
503
+ <table class="form-table bws_pro_version">
504
+ <tr>
505
+ <td colspan="2">
506
+ <?php _e( 'Please choose the necessary post types (or single pages) where Facebook button will be displayed:', 'facebook-button-plugin' ); ?>
507
+ </td>
508
+ </tr>
509
+ <tr>
510
+ <td colspan="2">
511
+ <label>
512
+ <input disabled="disabled" checked="checked" type="checkbox" name="jstree_url" value="1" />
513
+ <?php _e( "Show URL for pages", 'facebook-button-plugin' );?>
514
+ </label>
515
+ </td>
516
+ </tr>
517
+ <tr>
518
+ <td colspan="2">
519
+ <img src="<?php echo plugins_url( 'images/pro_screen_1.png', dirname( __FILE__ ) ); ?>" alt="<?php _e( "Example of the site's pages tree", 'facebook-button-plugin' ); ?>" title="<?php _e( "Example of site pages' tree", 'facebook-button-plugin' ); ?>" />
520
+ </td>
521
+ </tr>
522
+ </table>
523
+ </div>
524
+ <?php $this->bws_pro_block_links(); ?>
525
+ </div>
526
+ <?php /* pls*/ }
527
+ }
528
+ }
js/script.js CHANGED
@@ -1,67 +1,67 @@
1
  (function($) {
2
  $(document).ready( function() {
3
-
4
- $( 'input[name="fcbkbttn_my_page"]' ).change( function() {
5
- if ( $( this ).is( ":checked" ) ) {
6
- $( '.fcbkbttn_my_page' ).show();
7
- if ( $( 'select[name="fcbkbttn_display_option"]' ).val() == 'custom' ) {
8
- $( '#fcbkbttn_display_option_custom' ).show();
9
- } else {
10
- $( '#fcbkbttn_display_option_custom' ).hide();
11
- }
12
  } else {
13
- $( '.fcbkbttn_my_page' ).hide();
14
  }
15
- });
16
-
17
- $( 'input[name="fcbkbttn_like"]' ).change( function() {
18
- if ( $( this ).is( ":checked" ) ) {
19
- $( '.fcbkbttn_like' ).show();
20
  } else {
21
- $( '.fcbkbttn_like' ).hide();
22
  }
23
- });
24
-
25
- $( 'input[name="fcbkbttn_share"]' ).change( function() {
26
- if ( $( this ).is( ":checked" ) ) {
27
- $( '.fcbkbttn_share' ).show();
28
  } else {
29
- if ( ! $( 'input[name="fcbkbttn_like"]' ).is( ":checked" ) ) {
30
- $( '.fcbkbttn_share' ).hide();
31
- }
32
  }
33
- });
34
-
35
- $( 'select[name="fcbkbttn_display_option"]' ).change( function() {
36
- if ( $( this ).val() == 'custom' ) {
37
- $( '#fcbkbttn_display_option_custom' ).show();
38
  } else {
39
- $( '#fcbkbttn_display_option_custom' ).hide();
 
 
40
  }
41
- });
42
-
43
- $( 'input[name="fcbkbttn_like"]' ).change( function() {
44
- if ( $( this ).is( ':checked' ) ) {
45
  $( '.fcbkbttn_share_layout' ).hide();
46
- $( '.fcbkbttn_like_layout' ).show().attr( 'selected', 'selected' );
47
- $( '.fcbkbttn_like' ).show();
48
- } else {
49
  $( '.fcbkbttn_share_layout' ).show();
50
- $( 'select[name="fcbkbttn_layout_option"]' ).find( 'option[value="button_count"]' ).attr( 'selected', 'selected' );
51
- $( '.fcbkbttn_like, .fcbkbttn_like_layout' ).hide();
52
- if ( $( 'input[name="fcbkbttn_share"]' ).is( ":checked" ) ) {
53
- $( '.fcbkbttn_share' ).show();
54
- }
 
 
55
  }
56
- });
57
 
 
 
 
 
 
58
  $( 'select[name="fcbkbttn_layout_option"]' ).change( function() {
59
- if ( $( this ).val() == 'standard' ) {
60
- $( '.fcbkbttn_like_standard_layout' ).show();
61
- } else {
62
- $( '.fcbkbttn_like_standard_layout' ).hide();
63
- }
 
 
 
 
64
  });
65
-
66
  });
67
  })(jQuery);
1
  (function($) {
2
  $(document).ready( function() {
3
+ function fcbkbttn_my_page() {
4
+ if ( $( 'input[name="fcbkbttn_my_page"]' ).is( ":checked" ) ) {
5
+ $( '.fcbkbttn_my_page_enabled' ).show();
 
 
 
 
 
 
6
  } else {
7
+ $( '.fcbkbttn_my_page_enabled' ).hide();
8
  }
9
+ }
10
+ function fcbkbttn_display_option() {
11
+ if ( $( 'input[name="fcbkbttn_display_option"]:checked' ).val() == 'custom' ) {
12
+ $( '#fcbkbttn_display_option_custom' ).show();
 
13
  } else {
14
+ $( '#fcbkbttn_display_option_custom' ).hide();
15
  }
16
+ }
17
+ function fcbkbttn_layout_option() {
18
+ if ( $( 'select[name="fcbkbttn_layout_option"]' ).val() == 'standard' ) {
19
+ $( '.fcbkbttn_like_standard_layout' ).show();
 
20
  } else {
21
+ $( '.fcbkbttn_like_standard_layout' ).hide();
 
 
22
  }
23
+ }
24
+ function fcbkbttn_share() {
25
+ if ( $( 'input[name="fcbkbttn_share"]' ).is( ":checked" ) ) {
26
+ $( '.fcbkbttn_share_enabled' ).show();
 
27
  } else {
28
+ if( ! $( 'input[name="fcbkbttn_like"]' ).is( ":checked" ) ) {
29
+ $( '.fcbkbttn_share_enabled' ).hide();
30
+ }
31
  }
32
+ }
33
+ function fcbkbttn_like() {
34
+ if ( $( 'input[name="fcbkbttn_like"]' ).is( ':checked' ) ) {
35
+ $( '.fcbkbttn_like_enabled, .fcbkbttn_share_enabled' ).show();
36
  $( '.fcbkbttn_share_layout' ).hide();
37
+ $( '.fcbkbttn_like_layout' ).show().attr( 'selected', 'selected' );
38
+ } else {
 
39
  $( '.fcbkbttn_share_layout' ).show();
40
+ $( '#fcbkbttn_box_count_layout' ).attr( 'selected', 'selected' );
41
+ $( '.fcbkbttn_like_enabled, .fcbkbttn_like_layout' ).hide();
42
+ if ( ! $( 'input[name="fcbkbttn_share"]' ).is( ":checked" ) ) {
43
+ $( '.fcbkbttn_share_enabled' ).hide();
44
+ } else {
45
+ $( '.fcbkbttn_share_enabled' ).show();
46
+ }
47
  }
48
+ }
49
 
50
+ fcbkbttn_display_option();
51
+ $( 'input[name="fcbkbttn_display_option"]' ).on( 'change', function() { fcbkbttn_display_option(); });
52
+ fcbkbttn_my_page();
53
+ $( 'input[name="fcbkbttn_my_page"]' ).on( 'change', function() { fcbkbttn_my_page() });
54
+ fcbkbttn_layout_option();
55
  $( 'select[name="fcbkbttn_layout_option"]' ).change( function() {
56
+ fcbkbttn_layout_option();
57
+ });
58
+ fcbkbttn_like();
59
+ $( 'input[name="fcbkbttn_like"]' ).change( function() {
60
+ fcbkbttn_like();
61
+ });
62
+ fcbkbttn_share();
63
+ $( 'input[name="fcbkbttn_share"]' ).change( function() {
64
+ fcbkbttn_share();
65
  });
 
66
  });
67
  })(jQuery);
languages/facebook-button-plugin-es_ES.mo CHANGED
Binary file
languages/facebook-button-plugin-es_ES.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: facebook-button-plugin\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2016-10-03 13:14+0300\n"
6
- "PO-Revision-Date: 2016-10-03 13:14+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Africa Boleko <info@markekimika.es>\n"
9
  "Language: es_ES\n"
@@ -18,308 +18,331 @@ msgstr ""
18
  "X-Poedit-Bookmarks: -1,102,-1,-1,-1,-1,-1,-1,-1,-1\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
- #: facebook-button-plugin.php:34 facebook-button-plugin.php:287
 
22
  msgid "Facebook Button Settings"
23
  msgstr "Ajustes de Facebook Button"
24
 
25
- #: facebook-button-plugin.php:209
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
26
  msgid "Settings saved"
27
  msgstr "Configuración guardada"
28
 
29
- #: facebook-button-plugin.php:235
30
  msgid "Error: File size > 32K"
31
  msgstr "Error: Tamaño archivo >32K"
32
 
33
- #: facebook-button-plugin.php:238
34
  msgid "Error: Invalid file type"
35
  msgstr "Error: Tipo de archivo no válido"
36
 
37
- #: facebook-button-plugin.php:244
38
  msgid "Upload successful."
39
  msgstr "Descarga correcta"
40
 
41
- #: facebook-button-plugin.php:254
42
- msgid "Error: moving file failed"
 
43
  msgstr "Error: error al mover archivo"
44
 
45
- #: facebook-button-plugin.php:257
46
- msgid "Error: check image width or height"
 
47
  msgstr "Error: Compruebe la altura o anchura de la imagen"
48
 
49
- #: facebook-button-plugin.php:261
50
  msgid "Uploading Error: check image properties"
51
  msgstr "Error de descarga: compruebe las propiedades de la imagen"
52
 
53
- #: facebook-button-plugin.php:274
54
- msgid "All plugin settings were restored."
55
- msgstr "Todos los ajustes del pluggin fueron restaurados"
56
-
57
- #: facebook-button-plugin.php:289
58
- msgid "How to Use Step-by-step Instruction"
59
- msgstr "Instrucciones Paso a Paso"
60
-
61
- #: facebook-button-plugin.php:292 facebook-button-plugin.php:846
62
- #: facebook-button-plugin.php:860
63
- msgid "Settings"
64
- msgstr "Ajustes"
65
-
66
- #: facebook-button-plugin.php:294
67
- msgid "Extra settings"
68
- msgstr "Ajustes extra"
69
-
70
- #: facebook-button-plugin.php:296
71
- msgid "Custom code"
72
- msgstr "Custom código"
73
-
74
- #: facebook-button-plugin.php:298
75
- msgid "Go PRO"
76
- msgstr "Ir a PRO"
77
-
78
- #: facebook-button-plugin.php:302
79
- msgid "Please, enable JavaScript in Your browser."
80
- msgstr "Por favor, habilite JavaScrip en su navegador"
81
-
82
- #: facebook-button-plugin.php:317
83
- #, php-format
84
- msgid ""
85
- "If you would like to add Facebook buttons to your page or post, please use "
86
- "%s button"
87
- msgstr ""
88
- "Si usted quiere añadir Facebook Buttons a su pàgina o post utilice por favor "
89
- "el botón %s"
90
 
91
- #: facebook-button-plugin.php:322
92
- #, php-format
93
- msgid ""
94
- "You can add Facebook buttons to your page or post by clicking on %s button "
95
- "in the content edit block using the Visual mode. If the button isn't "
96
- "displayed, please use the shortcode %s"
97
  msgstr ""
98
- "Usted puede añadir Facebook Buttons a su pàgina o post haciendo click en el "
99
- "botón %s en el edit block contenido usando el modo Visual. Si el botón no se "
100
- "despliega, por favor use el atajo %s"
101
 
102
- #: facebook-button-plugin.php:333
103
- msgid "Display button"
104
- msgstr "Botón despliegue"
 
105
 
106
- #: facebook-button-plugin.php:336
107
- msgid "My Page"
108
- msgstr "Mi página"
109
 
110
- #: facebook-button-plugin.php:337 facebook-button-plugin.php:505
 
111
  msgid "Like"
112
  msgstr "Me gusta"
113
 
114
- #: facebook-button-plugin.php:338
115
  msgid "Share"
116
  msgstr "Compartir"
117
 
118
- #: facebook-button-plugin.php:343
119
- msgid "Facebook buttons position"
 
120
  msgstr "Posición Facebook Buttons"
121
 
122
- #: facebook-button-plugin.php:346
123
- msgid "Before"
124
- msgstr "Antes"
125
-
126
- #: facebook-button-plugin.php:347
127
- msgid "After"
128
- msgstr "Después"
129
-
130
- #: facebook-button-plugin.php:348
131
- msgid "Before and After"
132
  msgstr "Antes y Después"
133
 
134
- #: facebook-button-plugin.php:349
135
- msgid "Shortcode"
136
- msgstr "Shortcode"
137
 
138
- #: facebook-button-plugin.php:354
139
- msgid "Facebook buttons language"
140
- msgstr "Idioma Facebook Buttons"
141
 
142
- #: facebook-button-plugin.php:365
143
- msgid "Change the language of Facebook Button"
 
144
  msgstr "Cambie el idioma de Facebook Button"
145
 
146
- #: facebook-button-plugin.php:370 facebook-button-plugin.php:373
147
- #: facebook-button-plugin.php:378
148
- msgid "Use the current site language"
149
- msgstr "Utilize el lenguaje actual del sitio"
150
-
151
- #: facebook-button-plugin.php:370 facebook-button-plugin.php:374
152
- #: facebook-button-plugin.php:379
153
- msgid "Using"
154
- msgstr "En uso"
155
 
156
- #: facebook-button-plugin.php:374
157
- msgid "Activate"
 
158
  msgstr "Activado"
159
 
160
- #: facebook-button-plugin.php:379
161
- msgid "Download"
162
- msgstr "Descarga"
 
 
 
 
 
163
 
164
- #: facebook-button-plugin.php:386
165
- msgid "Display buttons in excerpt"
 
166
  msgstr "Despliegue el botón en el fragmento"
167
 
168
- #: facebook-button-plugin.php:397 facebook-button-plugin.php:546
169
- #: facebook-button-plugin.php:583
 
170
  msgid "Close"
171
  msgstr "Cerrar"
172
 
173
- #: facebook-button-plugin.php:401
174
- msgid "Meta tags"
 
175
  msgstr "Meta etiquetas"
176
 
177
- #: facebook-button-plugin.php:404
178
- msgid "Image"
179
- msgstr "Imagen"
180
-
181
- #: facebook-button-plugin.php:407
182
  msgid "Featured Image"
183
  msgstr "Imagen distintitiva"
184
 
185
- #: facebook-button-plugin.php:411
186
  msgid "Custom Image"
187
  msgstr "Imagen customizada"
188
 
189
- #: facebook-button-plugin.php:411
190
- msgid "This image will be used for all of the posts"
 
191
  msgstr "Esta imagen serà usada para todos los posts"
192
 
193
- #: facebook-button-plugin.php:421
194
- msgid "Description"
 
195
  msgstr "Descripción"
196
 
197
- #: facebook-button-plugin.php:424
198
- msgid "Post excerpt"
199
- msgstr "Post fragmentado"
200
-
201
- #: facebook-button-plugin.php:429
202
- msgid "This description will be used for all of the posts"
203
  msgstr "Esta descripción será utilitzada en todos los post"
204
 
205
- #: facebook-button-plugin.php:436 facebook-button-plugin.php:557
206
- #: facebook-button-plugin.php:637
207
- msgid "If you upgrade to Pro version all your settings will be saved."
208
- msgstr "Si usted mejora a la versión Pro todos sus ajustes serán guardados"
209
-
210
- #: facebook-button-plugin.php:443 facebook-button-plugin.php:564
211
- #: facebook-button-plugin.php:592 facebook-button-plugin.php:644
212
- msgid "Unlock premium options by upgrading to Pro version"
213
- msgstr "Desbloquée las opciones Premium mejorando a la versión Pro"
214
-
215
- #: facebook-button-plugin.php:445 facebook-button-plugin.php:566
216
- #: facebook-button-plugin.php:594 facebook-button-plugin.php:646
217
- msgid "Learn More"
218
- msgstr "Conozca más"
219
 
220
- #: facebook-button-plugin.php:453
221
- msgid "Your Facebook ID or username"
 
222
  msgstr "Su ID de Facebook o usuario"
223
 
224
- #: facebook-button-plugin.php:460
225
- msgid "\"My page\" button image"
226
- msgstr "\"Mi pàgina\" (imagen del botón)"
227
 
228
- #: facebook-button-plugin.php:465
229
- msgid "Standard Facebook image"
230
  msgstr ""
231
 
232
- #: facebook-button-plugin.php:466
233
- msgid "Custom Facebook image"
234
- msgstr "Imagen de Facebook personalizada"
 
235
 
236
- #: facebook-button-plugin.php:469
 
237
  msgid ""
238
- "To use custom image you need to setup permissions to upload directory of "
239
  "your site"
240
  msgstr ""
241
  "Para utilizar imágenes personalizadas necessita instalar permisos para "
242
  "descargar el directorio de su sitio"
243
 
244
- #: facebook-button-plugin.php:476
245
  msgid "Current image"
246
  msgstr "Imagen actual"
247
 
248
- #: facebook-button-plugin.php:484
 
249
  msgid ""
250
- "Image properties: max image width:100px; max image height:40px; max image "
251
  "size:32Kb; image types:\"jpg\", \"jpeg\", \"png\"."
252
  msgstr ""
253
  "Propiedades de imagen: ancho máximo de imagen: 100 px; altura màxima de "
254
  "imagen: 40px; tamaño máximo de imagen: 32Kb; tipus de imagen: \"jpg\", \"jpeg"
255
  "\", \"png\"."
256
 
257
- #: facebook-button-plugin.php:488
258
- msgid "Button layout"
259
- msgstr "Diseño del botón"
 
 
 
 
 
 
260
 
261
- #: facebook-button-plugin.php:502
262
- msgid "Like button action"
 
263
  msgstr "Acción del botón \"me gusta\""
264
 
265
- #: facebook-button-plugin.php:506
266
  msgid "Recommend"
267
  msgstr "Recomendar"
268
 
269
- #: facebook-button-plugin.php:511
270
- msgid "Show faces"
271
- msgstr "Mostrar fotos"
 
 
 
 
272
 
273
- #: facebook-button-plugin.php:517
274
- msgid "Layout width"
 
275
  msgstr "Ancho del diseño"
276
 
277
- #: facebook-button-plugin.php:523
278
- msgid "Color scheme"
279
- msgstr "Color del esquema"
 
 
 
 
280
 
281
- #: facebook-button-plugin.php:526
282
  msgid "Light"
283
  msgstr "Claro"
284
 
285
- #: facebook-button-plugin.php:527
286
  msgid "Dark"
287
  msgstr "Oscuro"
288
 
289
- #: facebook-button-plugin.php:532
290
- msgid "Html tag for \"Like\" button"
291
- msgstr "Etiqueta Html para el botón \"Me gusta\""
 
 
 
 
 
 
 
 
 
 
292
 
293
- #: facebook-button-plugin.php:537
294
- msgid "Use this tag to improve validation of your site"
295
- msgstr "Use esta etiqueta para mejorar la validez de su sitio"
296
 
297
- #: facebook-button-plugin.php:550
298
- msgid "\"Like\" for an entire site on every page:"
299
- msgstr "\"Me gusta\" para la totalidad de su sitio en todas las páginas"
 
300
 
301
- #: facebook-button-plugin.php:552
302
  msgid ""
303
- "Notice: \"Like for the entire site\" option does not create an extra button. "
304
- "This option merely allows your users to like the entire website when this "
305
- "option is enabled, or a single post when this option is disabled, when "
306
- "clicking the regular \"Like\" button."
307
  msgstr ""
308
- "Tenga en cuenta: La opción \"Me gusta para todo el sitio\" no crea un botón "
309
- "addicional. Esta opción simplemente permite a sus usuarios dar un me gusta a "
310
- "la totalidad de la web cuando la opción está marcada o a un post en "
311
- "particular si la opción está desmarcada cuando hagan click sobre el botón "
312
- "\"Me gusta\"."
313
-
314
- #: facebook-button-plugin.php:574 facebook-button-plugin.php:632
315
- msgid "Save Changes"
316
- msgstr "Guardar cambios"
317
-
318
- #: facebook-button-plugin.php:586
319
- msgid "Facebook Button preview:"
320
  msgstr "Vista preliminar del Facebook Button"
321
 
322
- #: facebook-button-plugin.php:614
 
 
 
 
 
323
  msgid ""
324
  "Please choose the necessary post types (or single pages) where Facebook "
325
  "button will be displayed:"
@@ -327,29 +350,114 @@ msgstr ""
327
  "Por favor, escoja los tipos de post necesario (o pàgines individuales) donde "
328
  "el Facebook Button debe ser mostrado:"
329
 
330
- #: facebook-button-plugin.php:621
331
  msgid "Show URL for pages"
332
  msgstr "Mostrar la URL de las páginas"
333
 
334
- #: facebook-button-plugin.php:627
335
  msgid "Example of the site's pages tree"
336
  msgstr "Ejemplo de las tres páginas del sitio"
337
 
338
- #: facebook-button-plugin.php:627
339
  msgid "Example of site pages' tree"
340
  msgstr "Ejemplo de las tres pàgines del sitio"
341
 
342
- #: facebook-button-plugin.php:756
343
- msgid "Add Facebook buttons to your page or post"
344
- msgstr "Añada los botones de Facebook a su página o post"
345
 
346
- #: facebook-button-plugin.php:861
347
- msgid "FAQ"
348
- msgstr "Preguntas frecuentes"
349
 
350
- #: facebook-button-plugin.php:862
351
- msgid "Support"
352
- msgstr "Soporte"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
353
 
354
  #~ msgid "None"
355
  #~ msgstr "Ninguno"
@@ -411,9 +519,6 @@ msgstr "Soporte"
411
  #~ msgid "Plugins page"
412
  #~ msgstr "Página de pluggins"
413
 
414
- #~ msgid "Wrong license key"
415
- #~ msgstr "Clave de licencia incorrecta"
416
-
417
  #~ msgid ""
418
  #~ "Something went wrong. Try again later. If the error will appear again, "
419
  #~ "please, contact us <a href=http://support.bestwebsoft.com>BestWebSoft</"
2
  msgstr ""
3
  "Project-Id-Version: facebook-button-plugin\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-01-26 11:24+0300\n"
6
+ "PO-Revision-Date: 2017-01-26 11:24+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Africa Boleko <info@markekimika.es>\n"
9
  "Language: es_ES\n"
18
  "X-Poedit-Bookmarks: -1,102,-1,-1,-1,-1,-1,-1,-1,-1\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
+ #: facebook-button-plugin.php:35 facebook-button-plugin.php:36
22
+ #: facebook-button-plugin.php:201
23
  msgid "Facebook Button Settings"
24
  msgstr "Ajustes de Facebook Button"
25
 
26
+ #: facebook-button-plugin.php:36 facebook-button-plugin.php:405
27
+ #: facebook-button-plugin.php:419 includes/class-fcbkbttn-settings.php:23
28
+ msgid "Settings"
29
+ msgstr "Ajustes"
30
+
31
+ #: facebook-button-plugin.php:42
32
+ msgid "Upgrade to Pro"
33
+ msgstr ""
34
+
35
+ #: facebook-button-plugin.php:202
36
+ msgid "Please, enable JavaScript in Your browser."
37
+ msgstr "Por favor, habilite JavaScrip en su navegador"
38
+
39
+ #: facebook-button-plugin.php:298
40
+ msgid "Add Facebook buttons to your page or post"
41
+ msgstr "Añada los botones de Facebook a su página o post"
42
+
43
+ #: facebook-button-plugin.php:420
44
+ msgid "FAQ"
45
+ msgstr "Preguntas frecuentes"
46
+
47
+ #: facebook-button-plugin.php:421
48
+ msgid "Support"
49
+ msgstr "Soporte"
50
+
51
+ #: includes/class-fcbkbttn-settings.php:25
52
+ #, fuzzy
53
+ msgid "Display"
54
+ msgstr "Botón despliegue"
55
+
56
+ #: includes/class-fcbkbttn-settings.php:27
57
+ msgid "Misc"
58
+ msgstr ""
59
+
60
+ #: includes/class-fcbkbttn-settings.php:28
61
+ #, fuzzy
62
+ msgid "Custom Code"
63
+ msgstr "Custom código"
64
+
65
+ #: includes/class-fcbkbttn-settings.php:30
66
+ #, fuzzy
67
+ msgid "License Key"
68
+ msgstr "Clave de licencia incorrecta"
69
+
70
+ #: includes/class-fcbkbttn-settings.php:95
71
  msgid "Settings saved"
72
  msgstr "Configuración guardada"
73
 
74
+ #: includes/class-fcbkbttn-settings.php:124
75
  msgid "Error: File size > 32K"
76
  msgstr "Error: Tamaño archivo >32K"
77
 
78
+ #: includes/class-fcbkbttn-settings.php:127
79
  msgid "Error: Invalid file type"
80
  msgstr "Error: Tipo de archivo no válido"
81
 
82
+ #: includes/class-fcbkbttn-settings.php:133
83
  msgid "Upload successful."
84
  msgstr "Descarga correcta"
85
 
86
+ #: includes/class-fcbkbttn-settings.php:143
87
+ #, fuzzy
88
+ msgid "Error: failed to move file."
89
  msgstr "Error: error al mover archivo"
90
 
91
+ #: includes/class-fcbkbttn-settings.php:146
92
+ #, fuzzy
93
+ msgid "Error: check image width or height."
94
  msgstr "Error: Compruebe la altura o anchura de la imagen"
95
 
96
+ #: includes/class-fcbkbttn-settings.php:150
97
  msgid "Uploading Error: check image properties"
98
  msgstr "Error de descarga: compruebe las propiedades de la imagen"
99
 
100
+ #: includes/class-fcbkbttn-settings.php:171
101
+ #, fuzzy
102
+ msgid "Facebook button Settings"
103
+ msgstr "Ajustes de Facebook Button"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
104
 
105
+ #: includes/class-fcbkbttn-settings.php:174
106
+ msgid "General"
 
 
 
 
107
  msgstr ""
 
 
 
108
 
109
+ #: includes/class-fcbkbttn-settings.php:177
110
+ #, fuzzy
111
+ msgid "Buttons"
112
+ msgstr "Diseño del botón"
113
 
114
+ #: includes/class-fcbkbttn-settings.php:180
115
+ msgid "Profile URL"
116
+ msgstr ""
117
 
118
+ #: includes/class-fcbkbttn-settings.php:181
119
+ #: includes/class-fcbkbttn-settings.php:367
120
  msgid "Like"
121
  msgstr "Me gusta"
122
 
123
+ #: includes/class-fcbkbttn-settings.php:182
124
  msgid "Share"
125
  msgstr "Compartir"
126
 
127
+ #: includes/class-fcbkbttn-settings.php:187
128
+ #, fuzzy
129
+ msgid "Buttons Position"
130
  msgstr "Posición Facebook Buttons"
131
 
132
+ #: includes/class-fcbkbttn-settings.php:192
133
+ #, fuzzy
134
+ msgid "Before content"
 
 
 
 
 
 
 
135
  msgstr "Antes y Después"
136
 
137
+ #: includes/class-fcbkbttn-settings.php:197
138
+ msgid "After content"
139
+ msgstr ""
140
 
141
+ #: includes/class-fcbkbttn-settings.php:203
142
+ msgid "Language"
143
+ msgstr ""
144
 
145
+ #: includes/class-fcbkbttn-settings.php:214
146
+ #, fuzzy
147
+ msgid "Select the default language for Facebook button(-s)."
148
  msgstr "Cambie el idioma de Facebook Button"
149
 
150
+ #: includes/class-fcbkbttn-settings.php:223
151
+ #: includes/class-fcbkbttn-settings.php:226
152
+ #: includes/class-fcbkbttn-settings.php:230
153
+ msgid ""
154
+ "Enable to switch language automatically on multilingual website using "
155
+ "Multilanguage plugin."
156
+ msgstr ""
 
 
157
 
158
+ #: includes/class-fcbkbttn-settings.php:226
159
+ #, fuzzy, php-format
160
+ msgid "Activate %s"
161
  msgstr "Activado"
162
 
163
+ #: includes/class-fcbkbttn-settings.php:230
164
+ msgid "Learn More"
165
+ msgstr "Conozca más"
166
+
167
+ #: includes/class-fcbkbttn-settings.php:235
168
+ #, fuzzy
169
+ msgid "Excerpt"
170
+ msgstr "Post fragmentado"
171
 
172
+ #: includes/class-fcbkbttn-settings.php:237
173
+ #, fuzzy
174
+ msgid "Enable to display buttons in excerpt."
175
  msgstr "Despliegue el botón en el fragmento"
176
 
177
+ #: includes/class-fcbkbttn-settings.php:246
178
+ #: includes/class-fcbkbttn-settings.php:422
179
+ #: includes/class-fcbkbttn-settings.php:477
180
  msgid "Close"
181
  msgstr "Cerrar"
182
 
183
+ #: includes/class-fcbkbttn-settings.php:250
184
+ #, fuzzy
185
+ msgid "Meta Image"
186
  msgstr "Meta etiquetas"
187
 
188
+ #: includes/class-fcbkbttn-settings.php:255
 
 
 
 
189
  msgid "Featured Image"
190
  msgstr "Imagen distintitiva"
191
 
192
+ #: includes/class-fcbkbttn-settings.php:259
193
  msgid "Custom Image"
194
  msgstr "Imagen customizada"
195
 
196
+ #: includes/class-fcbkbttn-settings.php:259
197
+ #, fuzzy
198
+ msgid "This image will be used for all posts"
199
  msgstr "Esta imagen serà usada para todos los posts"
200
 
201
+ #: includes/class-fcbkbttn-settings.php:266
202
+ #, fuzzy
203
+ msgid "Meta Description"
204
  msgstr "Descripción"
205
 
206
+ #: includes/class-fcbkbttn-settings.php:270
207
+ #, fuzzy
208
+ msgid ""
209
+ "This description will be used for all pages and posts. Leave blank to use "
210
+ "page description."
 
211
  msgstr "Esta descripción será utilitzada en todos los post"
212
 
213
+ #: includes/class-fcbkbttn-settings.php:279
214
+ msgid "Profile URL Button"
215
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
216
 
217
+ #: includes/class-fcbkbttn-settings.php:282
218
+ #, fuzzy
219
+ msgid "Facebook ID or Username"
220
  msgstr "Su ID de Facebook o usuario"
221
 
222
+ #: includes/class-fcbkbttn-settings.php:289
223
+ msgid "Profile Button Image"
224
+ msgstr ""
225
 
226
+ #: includes/class-fcbkbttn-settings.php:296
227
+ msgid "Default"
228
  msgstr ""
229
 
230
+ #: includes/class-fcbkbttn-settings.php:301
231
+ #, fuzzy
232
+ msgid "Custom image"
233
+ msgstr "Imagen customizada"
234
 
235
+ #: includes/class-fcbkbttn-settings.php:305
236
+ #, fuzzy
237
  msgid ""
238
+ "To use custom image, You need to setup permissions for upload directory of "
239
  "your site"
240
  msgstr ""
241
  "Para utilizar imágenes personalizadas necessita instalar permisos para "
242
  "descargar el directorio de su sitio"
243
 
244
+ #: includes/class-fcbkbttn-settings.php:312
245
  msgid "Current image"
246
  msgstr "Imagen actual"
247
 
248
+ #: includes/class-fcbkbttn-settings.php:320
249
+ #, fuzzy
250
  msgid ""
251
+ "Image requirements: max image width:100px; max image height:40px; max image "
252
  "size:32Kb; image types:\"jpg\", \"jpeg\", \"png\"."
253
  msgstr ""
254
  "Propiedades de imagen: ancho máximo de imagen: 100 px; altura màxima de "
255
  "imagen: 40px; tamaño máximo de imagen: 32Kb; tipus de imagen: \"jpg\", \"jpeg"
256
  "\", \"png\"."
257
 
258
+ #: includes/class-fcbkbttn-settings.php:324
259
+ #, fuzzy
260
+ msgid "Like&Share Buttons"
261
+ msgstr "Acción del botón \"me gusta\""
262
+
263
+ #: includes/class-fcbkbttn-settings.php:327
264
+ #, fuzzy
265
+ msgid "Layout"
266
+ msgstr "Ancho del diseño"
267
 
268
+ #: includes/class-fcbkbttn-settings.php:362
269
+ #, fuzzy
270
+ msgid "Like Button Action"
271
  msgstr "Acción del botón \"me gusta\""
272
 
273
+ #: includes/class-fcbkbttn-settings.php:372
274
  msgid "Recommend"
275
  msgstr "Recomendar"
276
 
277
+ #: includes/class-fcbkbttn-settings.php:378
278
+ msgid "Friends faces"
279
+ msgstr ""
280
+
281
+ #: includes/class-fcbkbttn-settings.php:381
282
+ msgid " Enable to show faces of your friends who submitted the button."
283
+ msgstr ""
284
 
285
+ #: includes/class-fcbkbttn-settings.php:385
286
+ #, fuzzy
287
+ msgid "Layout Width"
288
  msgstr "Ancho del diseño"
289
 
290
+ #: includes/class-fcbkbttn-settings.php:387
291
+ msgid "px"
292
+ msgstr ""
293
+
294
+ #: includes/class-fcbkbttn-settings.php:391
295
+ msgid "Theme"
296
+ msgstr ""
297
 
298
+ #: includes/class-fcbkbttn-settings.php:396
299
  msgid "Light"
300
  msgstr "Claro"
301
 
302
+ #: includes/class-fcbkbttn-settings.php:401
303
  msgid "Dark"
304
  msgstr "Oscuro"
305
 
306
+ #: includes/class-fcbkbttn-settings.php:407
307
+ #, fuzzy
308
+ msgid "Like Button HTML Tag"
309
+ msgstr "Acción del botón \"me gusta\""
310
+
311
+ #: includes/class-fcbkbttn-settings.php:413
312
+ #, php-format
313
+ msgid "Tag %s can be used to improve website code validation."
314
+ msgstr ""
315
+
316
+ #: includes/class-fcbkbttn-settings.php:426
317
+ msgid "URL to Like"
318
+ msgstr ""
319
 
320
+ #: includes/class-fcbkbttn-settings.php:428
321
+ msgid "Leave blank to use a current page."
322
+ msgstr ""
323
 
324
+ #: includes/class-fcbkbttn-settings.php:456
325
+ #, fuzzy
326
+ msgid "Facebook Buttons Shortchode"
327
+ msgstr "Posición Facebook Buttons"
328
 
329
+ #: includes/class-fcbkbttn-settings.php:459
330
  msgid ""
331
+ "Add Facebook button(-s) to your posts, pages, custom post types or widgets "
332
+ "by using the following shortcode:"
 
 
333
  msgstr ""
334
+
335
+ #: includes/class-fcbkbttn-settings.php:478
336
+ #, fuzzy
337
+ msgid "Facebook Buttons Preview"
 
 
 
 
 
 
 
 
338
  msgstr "Vista preliminar del Facebook Button"
339
 
340
+ #: includes/class-fcbkbttn-settings.php:493
341
+ #, fuzzy
342
+ msgid "Display Settings"
343
+ msgstr "Botón despliegue"
344
+
345
+ #: includes/class-fcbkbttn-settings.php:502
346
  msgid ""
347
  "Please choose the necessary post types (or single pages) where Facebook "
348
  "button will be displayed:"
350
  "Por favor, escoja los tipos de post necesario (o pàgines individuales) donde "
351
  "el Facebook Button debe ser mostrado:"
352
 
353
+ #: includes/class-fcbkbttn-settings.php:509
354
  msgid "Show URL for pages"
355
  msgstr "Mostrar la URL de las páginas"
356
 
357
+ #: includes/class-fcbkbttn-settings.php:515
358
  msgid "Example of the site's pages tree"
359
  msgstr "Ejemplo de las tres páginas del sitio"
360
 
361
+ #: includes/class-fcbkbttn-settings.php:515
362
  msgid "Example of site pages' tree"
363
  msgstr "Ejemplo de las tres pàgines del sitio"
364
 
365
+ #~ msgid "All plugin settings were restored."
366
+ #~ msgstr "Todos los ajustes del pluggin fueron restaurados"
 
367
 
368
+ #~ msgid "How to Use Step-by-step Instruction"
369
+ #~ msgstr "Instrucciones Paso a Paso"
 
370
 
371
+ #~ msgid "Extra settings"
372
+ #~ msgstr "Ajustes extra"
373
+
374
+ #~ msgid "Go PRO"
375
+ #~ msgstr "Ir a PRO"
376
+
377
+ #~ msgid ""
378
+ #~ "If you would like to add Facebook buttons to your page or post, please "
379
+ #~ "use %s button"
380
+ #~ msgstr ""
381
+ #~ "Si usted quiere añadir Facebook Buttons a su pàgina o post utilice por "
382
+ #~ "favor el botón %s"
383
+
384
+ #~ msgid ""
385
+ #~ "You can add Facebook buttons to your page or post by clicking on %s "
386
+ #~ "button in the content edit block using the Visual mode. If the button "
387
+ #~ "isn't displayed, please use the shortcode %s"
388
+ #~ msgstr ""
389
+ #~ "Usted puede añadir Facebook Buttons a su pàgina o post haciendo click en "
390
+ #~ "el botón %s en el edit block contenido usando el modo Visual. Si el botón "
391
+ #~ "no se despliega, por favor use el atajo %s"
392
+
393
+ #~ msgid "My Page"
394
+ #~ msgstr "Mi página"
395
+
396
+ #~ msgid "Before"
397
+ #~ msgstr "Antes"
398
+
399
+ #~ msgid "After"
400
+ #~ msgstr "Después"
401
+
402
+ #~ msgid "Shortcode"
403
+ #~ msgstr "Shortcode"
404
+
405
+ #~ msgid "Facebook buttons language"
406
+ #~ msgstr "Idioma Facebook Buttons"
407
+
408
+ #~ msgid "Use the current site language"
409
+ #~ msgstr "Utilize el lenguaje actual del sitio"
410
+
411
+ #~ msgid "Using"
412
+ #~ msgstr "En uso"
413
+
414
+ #~ msgid "Download"
415
+ #~ msgstr "Descarga"
416
+
417
+ #~ msgid "Image"
418
+ #~ msgstr "Imagen"
419
+
420
+ #~ msgid "If you upgrade to Pro version all your settings will be saved."
421
+ #~ msgstr "Si usted mejora a la versión Pro todos sus ajustes serán guardados"
422
+
423
+ #~ msgid "Unlock premium options by upgrading to Pro version"
424
+ #~ msgstr "Desbloquée las opciones Premium mejorando a la versión Pro"
425
+
426
+ #~ msgid "\"My page\" button image"
427
+ #~ msgstr "\"Mi pàgina\" (imagen del botón)"
428
+
429
+ #~ msgid "Custom Facebook image"
430
+ #~ msgstr "Imagen de Facebook personalizada"
431
+
432
+ #~ msgid "Show faces"
433
+ #~ msgstr "Mostrar fotos"
434
+
435
+ #~ msgid "Color scheme"
436
+ #~ msgstr "Color del esquema"
437
+
438
+ #~ msgid "Html tag for \"Like\" button"
439
+ #~ msgstr "Etiqueta Html para el botón \"Me gusta\""
440
+
441
+ #~ msgid "Use this tag to improve validation of your site"
442
+ #~ msgstr "Use esta etiqueta para mejorar la validez de su sitio"
443
+
444
+ #~ msgid "\"Like\" for an entire site on every page:"
445
+ #~ msgstr "\"Me gusta\" para la totalidad de su sitio en todas las páginas"
446
+
447
+ #~ msgid ""
448
+ #~ "Notice: \"Like for the entire site\" option does not create an extra "
449
+ #~ "button. This option merely allows your users to like the entire website "
450
+ #~ "when this option is enabled, or a single post when this option is "
451
+ #~ "disabled, when clicking the regular \"Like\" button."
452
+ #~ msgstr ""
453
+ #~ "Tenga en cuenta: La opción \"Me gusta para todo el sitio\" no crea un "
454
+ #~ "botón addicional. Esta opción simplemente permite a sus usuarios dar un "
455
+ #~ "me gusta a la totalidad de la web cuando la opción está marcada o a un "
456
+ #~ "post en particular si la opción está desmarcada cuando hagan click sobre "
457
+ #~ "el botón \"Me gusta\"."
458
+
459
+ #~ msgid "Save Changes"
460
+ #~ msgstr "Guardar cambios"
461
 
462
  #~ msgid "None"
463
  #~ msgstr "Ninguno"
519
  #~ msgid "Plugins page"
520
  #~ msgstr "Página de pluggins"
521
 
 
 
 
522
  #~ msgid ""
523
  #~ "Something went wrong. Try again later. If the error will appear again, "
524
  #~ "please, contact us <a href=http://support.bestwebsoft.com>BestWebSoft</"
languages/facebook-button-plugin-fi_FI.mo CHANGED
Binary file
languages/facebook-button-plugin-fi_FI.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: facebook-button-plugin\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2016-05-05 17:23+0300\n"
6
- "PO-Revision-Date: 2016-05-05 17:23+0300\n"
7
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: Juhani Honkanen <juhani.honkanen@dnainternet.net>\n"
9
  "Language: fi_FI\n"
@@ -17,313 +17,321 @@ msgstr ""
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: facebook-button-plugin.php:34 facebook-button-plugin.php:294
 
21
  msgid "Facebook Button Settings"
22
  msgstr "Facebook Napin asetukset"
23
 
24
- #: facebook-button-plugin.php:216
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
25
  msgid "Settings saved"
26
  msgstr "Asetukset tallennettu"
27
 
28
- #: facebook-button-plugin.php:242
29
  msgid "Error: File size > 32K"
30
  msgstr "Virhe: Tiedoston koko > 32K"
31
 
32
- #: facebook-button-plugin.php:245
33
  msgid "Error: Invalid file type"
34
  msgstr "Virhe: Väärä tiedostotyyppi"
35
 
36
- #: facebook-button-plugin.php:251
37
  msgid "Upload successful."
38
  msgstr "Lataaminen onnistui"
39
 
40
- #: facebook-button-plugin.php:261
41
- msgid "Error: moving file failed"
 
42
  msgstr "Virhe: tiedoston siirto epäonnistui"
43
 
44
- #: facebook-button-plugin.php:264
45
- msgid "Error: check image width or height"
 
46
  msgstr "Virhe: tarkista kuvan leveys tai korkeus"
47
 
48
- #: facebook-button-plugin.php:268
49
  msgid "Uploading Error: check image properties"
50
  msgstr "Virhe latauksessa: tarkista kuvan ominaisuudet"
51
 
52
- #: facebook-button-plugin.php:281
53
- msgid "All plugin settings were restored."
54
- msgstr ""
55
-
56
- #: facebook-button-plugin.php:296
57
- msgid "How to Use Step-by-step Instruction"
58
- msgstr ""
59
-
60
- #: facebook-button-plugin.php:299 facebook-button-plugin.php:861
61
- #: facebook-button-plugin.php:875
62
- msgid "Settings"
63
- msgstr "Asetukset"
64
-
65
- #: facebook-button-plugin.php:300
66
- msgid "Extra settings"
67
- msgstr "Lisää asetuksia"
68
-
69
- #: facebook-button-plugin.php:301
70
  #, fuzzy
71
- msgid "Custom code"
72
- msgstr "Mukautettu Fecabook kuva"
73
-
74
- #: facebook-button-plugin.php:302
75
- msgid "Go PRO"
76
- msgstr "Hanki PRO versio"
77
-
78
- #: facebook-button-plugin.php:305
79
- msgid "Please, enable JavaScript in Your browser."
80
- msgstr ""
81
-
82
- #: facebook-button-plugin.php:320
83
- #, fuzzy, php-format
84
- msgid ""
85
- "If you would like to add Facebook buttons to your page or post, please use "
86
- "%s button"
87
- msgstr ""
88
- "Mikäli haluat lisätä Facebook napin sivullesi, kopioi ja liitä tämä "
89
- "lyhytkoodi artikkeliisi tai sivullesi:"
90
 
91
- #: facebook-button-plugin.php:325
92
- #, php-format
93
- msgid ""
94
- "You can add Facebook buttons to your page or post by clicking on %s button "
95
- "in the content edit block using the Visual mode. If the button isn't "
96
- "displayed, please use the shortcode %s"
97
  msgstr ""
98
 
99
- #: facebook-button-plugin.php:336
100
  #, fuzzy
101
- msgid "Display button"
102
- msgstr "Näytä nappi:"
103
 
104
- #: facebook-button-plugin.php:339
105
- msgid "My Page"
106
- msgstr "Minun sivuni"
107
 
108
- #: facebook-button-plugin.php:340 facebook-button-plugin.php:507
 
109
  msgid "Like"
110
  msgstr "Tykkää"
111
 
112
- #: facebook-button-plugin.php:341
113
  msgid "Share"
114
  msgstr "Jaa"
115
 
116
- #: facebook-button-plugin.php:346
117
  #, fuzzy
118
- msgid "Facebook buttons position"
119
  msgstr "Facebook napin paikka:"
120
 
121
- #: facebook-button-plugin.php:349
122
- msgid "Before"
123
- msgstr "Ennen"
124
-
125
- #: facebook-button-plugin.php:350
126
- msgid "After"
127
- msgstr "Jälkeen"
128
-
129
- #: facebook-button-plugin.php:351
130
- msgid "Before and After"
131
  msgstr "Ennen ja Jälkeen"
132
 
133
- #: facebook-button-plugin.php:352
134
- msgid "Shortcode"
135
- msgstr "Lyhytkoodi"
136
 
137
- #: facebook-button-plugin.php:357
138
- #, fuzzy
139
- msgid "Facebook buttons language"
140
- msgstr "Facebook Napin kieli:"
141
 
142
- #: facebook-button-plugin.php:368
143
  #, fuzzy
144
- msgid "Change the language of Facebook Button"
145
  msgstr "Vaihda Facebook napin kieli"
146
 
147
- #: facebook-button-plugin.php:373 facebook-button-plugin.php:376
148
- #: facebook-button-plugin.php:381
149
- msgid "Use the current site language"
 
 
 
150
  msgstr ""
151
 
152
- #: facebook-button-plugin.php:373 facebook-button-plugin.php:377
153
- #: facebook-button-plugin.php:382
154
- msgid "Using"
155
  msgstr ""
156
 
157
- #: facebook-button-plugin.php:377
158
- msgid "Activate"
159
- msgstr ""
160
 
161
- #: facebook-button-plugin.php:382
162
- msgid "Download"
163
  msgstr ""
164
 
165
- #: facebook-button-plugin.php:389
166
  #, fuzzy
167
- msgid "Display buttons in excerpt"
168
  msgstr "Näytä nappi:"
169
 
170
- #: facebook-button-plugin.php:399 facebook-button-plugin.php:548
171
- #: facebook-button-plugin.php:585
 
172
  msgid "Close"
173
  msgstr ""
174
 
175
- #: facebook-button-plugin.php:403
176
- msgid "Meta tags"
177
- msgstr ""
178
-
179
- #: facebook-button-plugin.php:406
180
- msgid "Image"
181
- msgstr ""
182
 
183
- #: facebook-button-plugin.php:409
184
  msgid "Featured Image"
185
  msgstr ""
186
 
187
- #: facebook-button-plugin.php:413
188
  #, fuzzy
189
  msgid "Custom Image"
190
  msgstr "Mukautettu Fecabook kuva"
191
 
192
- #: facebook-button-plugin.php:413
193
- msgid "This image will be used for all of the posts"
194
  msgstr ""
195
 
196
- #: facebook-button-plugin.php:423
197
- msgid "Description"
198
  msgstr ""
199
 
200
- #: facebook-button-plugin.php:426
201
- msgid "Post excerpt"
 
 
202
  msgstr ""
203
 
204
- #: facebook-button-plugin.php:431
205
- msgid "This description will be used for all of the posts"
206
  msgstr ""
207
 
208
- #: facebook-button-plugin.php:438 facebook-button-plugin.php:559
209
- #: facebook-button-plugin.php:637
210
- msgid "If you upgrade to Pro version all your settings will be saved."
211
- msgstr "Mikäli päivität Pro versioon, kaikki asetuksesi tallennetaan."
212
-
213
- #: facebook-button-plugin.php:445 facebook-button-plugin.php:566
214
- #: facebook-button-plugin.php:594 facebook-button-plugin.php:644
215
- #, fuzzy
216
- msgid "Unlock premium options by upgrading to Pro version"
217
- msgstr "Ota käyttöön premium valinnat päivittämällä PRO versioon."
218
-
219
- #: facebook-button-plugin.php:447 facebook-button-plugin.php:568
220
- #: facebook-button-plugin.php:596 facebook-button-plugin.php:646
221
- msgid "Learn More"
222
- msgstr "Lue Lisää"
223
-
224
- #: facebook-button-plugin.php:455
225
  #, fuzzy
226
- msgid "Your Facebook ID or username"
227
  msgstr "Sinun Facebook ID:si tai käyttäjänimesi:"
228
 
229
- #: facebook-button-plugin.php:462
230
- msgid "\"My page\" button image"
231
  msgstr ""
232
 
233
- #: facebook-button-plugin.php:467
234
- msgid "Standard Facebook image"
235
- msgstr "Standardi Facebook kuva"
236
 
237
- #: facebook-button-plugin.php:468
238
- msgid "Custom Facebook image"
 
239
  msgstr "Mukautettu Fecabook kuva"
240
 
241
- #: facebook-button-plugin.php:471
 
242
  msgid ""
243
- "To use custom image you need to setup permissions to upload directory of "
244
  "your site"
245
  msgstr "Käyttääksesi mukautettua, kuva pitää voida ladata hakemistoosi"
246
 
247
- #: facebook-button-plugin.php:478
248
  #, fuzzy
249
  msgid "Current image"
250
  msgstr "Nykyinen kuva:"
251
 
252
- #: facebook-button-plugin.php:486
 
253
  msgid ""
254
- "Image properties: max image width:100px; max image height:40px; max image "
255
  "size:32Kb; image types:\"jpg\", \"jpeg\", \"png\"."
256
  msgstr ""
257
  "Kuvan ominaisuudet: max leveys 100px; max korkeus 40px; max koko 32Kb; kuvan "
258
  "tyypit:\"jpg\", \"jpeg\", \"png\"."
259
 
260
- #: facebook-button-plugin.php:490
261
- msgid "Button layout"
 
 
 
 
262
  msgstr ""
263
 
264
- #: facebook-button-plugin.php:504
265
- msgid "Like button action"
266
  msgstr ""
267
 
268
- #: facebook-button-plugin.php:508
269
  msgid "Recommend"
270
  msgstr ""
271
 
272
- #: facebook-button-plugin.php:513
273
- msgid "Show faces"
 
 
 
 
 
 
 
 
274
  msgstr ""
275
 
276
- #: facebook-button-plugin.php:519
277
- msgid "Layout width"
278
  msgstr ""
279
 
280
- #: facebook-button-plugin.php:525
281
- msgid "Color scheme"
282
  msgstr ""
283
 
284
- #: facebook-button-plugin.php:528
285
  msgid "Light"
286
  msgstr ""
287
 
288
- #: facebook-button-plugin.php:529
289
  msgid "Dark"
290
  msgstr ""
291
 
292
- #: facebook-button-plugin.php:534
293
- #, fuzzy
294
- msgid "Html tag for \"Like\" button"
295
- msgstr "HTML tagi Tykkää Napille:"
 
 
 
 
 
 
 
 
296
 
297
- #: facebook-button-plugin.php:539
298
- msgid "Use this tag to improve validation of your site"
299
- msgstr "Käytä tätä tagia parantamaan sivusi näkyvyyttä"
300
 
301
- #: facebook-button-plugin.php:552
302
- msgid "\"Like\" for an entire site on every page:"
303
- msgstr "\"Like\" koko sivustolle ja kaikille sivuille:"
 
304
 
305
- #: facebook-button-plugin.php:554
306
  msgid ""
307
- "Notice: \"Like for the entire site\" option does not create an extra button. "
308
- "This option merely allows your users to like the entire website when this "
309
- "option is enabled, or a single post when this option is disabled, when "
310
- "clicking the regular \"Like\" button."
311
  msgstr ""
312
- "Huomautus: \"Tykkää koko sivustosta\" tämä valinta ei tee ylimääräistä "
313
- "nappia. Tämä valinnan avulla käyttäjät tykkäävät koko sivustosta. Mikäli ei "
314
- "ole valittu, niin käyttäjä tykkää vain yhdestä sivusta klikatessaan \"Tykkää"
315
- "\" nappia."
316
-
317
- #: facebook-button-plugin.php:576 facebook-button-plugin.php:632
318
- msgid "Save Changes"
319
- msgstr "Tallenna muutokset"
320
 
321
- #: facebook-button-plugin.php:588
322
  #, fuzzy
323
- msgid "Facebook Button preview:"
324
  msgstr "Facebook Nappi"
325
 
326
- #: facebook-button-plugin.php:614
 
 
 
 
 
327
  msgid ""
328
  "Please choose the necessary post types (or single pages) where Facebook "
329
  "button will be displayed:"
@@ -331,30 +339,84 @@ msgstr ""
331
  "Valitse haluamasi viestin tyyppi (tai yksittäiset sivut) joissa Facebook "
332
  "nappi näytetään:"
333
 
334
- #: facebook-button-plugin.php:621
335
  msgid "Show URL for pages"
336
  msgstr "Näytä URL sivuilla"
337
 
338
- #: facebook-button-plugin.php:627
339
  msgid "Example of the site's pages tree"
340
  msgstr "Esimerkki sivuston sivuhakemistosta"
341
 
342
- #: facebook-button-plugin.php:627
343
  msgid "Example of site pages' tree"
344
  msgstr "Esimerkki sivun sivuhakemistosta"
345
 
346
- #: facebook-button-plugin.php:765
 
 
 
 
 
347
  #, fuzzy
348
- msgid "Add Facebook buttons to your page or post"
349
- msgstr "Facebook napin paikka:"
 
 
 
 
350
 
351
- #: facebook-button-plugin.php:876
352
- msgid "FAQ"
353
- msgstr "FAQ"
354
 
355
- #: facebook-button-plugin.php:877
356
- msgid "Support"
357
- msgstr "Tuki"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
358
 
359
  #~ msgid "Notice:"
360
  #~ msgstr "Huomautus:"
2
  msgstr ""
3
  "Project-Id-Version: facebook-button-plugin\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-01-26 11:24+0300\n"
6
+ "PO-Revision-Date: 2017-01-26 11:24+0300\n"
7
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: Juhani Honkanen <juhani.honkanen@dnainternet.net>\n"
9
  "Language: fi_FI\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: facebook-button-plugin.php:35 facebook-button-plugin.php:36
21
+ #: facebook-button-plugin.php:201
22
  msgid "Facebook Button Settings"
23
  msgstr "Facebook Napin asetukset"
24
 
25
+ #: facebook-button-plugin.php:36 facebook-button-plugin.php:405
26
+ #: facebook-button-plugin.php:419 includes/class-fcbkbttn-settings.php:23
27
+ msgid "Settings"
28
+ msgstr "Asetukset"
29
+
30
+ #: facebook-button-plugin.php:42
31
+ msgid "Upgrade to Pro"
32
+ msgstr ""
33
+
34
+ #: facebook-button-plugin.php:202
35
+ msgid "Please, enable JavaScript in Your browser."
36
+ msgstr ""
37
+
38
+ #: facebook-button-plugin.php:298
39
+ #, fuzzy
40
+ msgid "Add Facebook buttons to your page or post"
41
+ msgstr "Facebook napin paikka:"
42
+
43
+ #: facebook-button-plugin.php:420
44
+ msgid "FAQ"
45
+ msgstr "FAQ"
46
+
47
+ #: facebook-button-plugin.php:421
48
+ msgid "Support"
49
+ msgstr "Tuki"
50
+
51
+ #: includes/class-fcbkbttn-settings.php:25
52
+ #, fuzzy
53
+ msgid "Display"
54
+ msgstr "Näytä nappi:"
55
+
56
+ #: includes/class-fcbkbttn-settings.php:27
57
+ msgid "Misc"
58
+ msgstr ""
59
+
60
+ #: includes/class-fcbkbttn-settings.php:28
61
+ #, fuzzy
62
+ msgid "Custom Code"
63
+ msgstr "Mukautettu Fecabook kuva"
64
+
65
+ #: includes/class-fcbkbttn-settings.php:30
66
+ msgid "License Key"
67
+ msgstr ""
68
+
69
+ #: includes/class-fcbkbttn-settings.php:95
70
  msgid "Settings saved"
71
  msgstr "Asetukset tallennettu"
72
 
73
+ #: includes/class-fcbkbttn-settings.php:124
74
  msgid "Error: File size > 32K"
75
  msgstr "Virhe: Tiedoston koko > 32K"
76
 
77
+ #: includes/class-fcbkbttn-settings.php:127
78
  msgid "Error: Invalid file type"
79
  msgstr "Virhe: Väärä tiedostotyyppi"
80
 
81
+ #: includes/class-fcbkbttn-settings.php:133
82
  msgid "Upload successful."
83
  msgstr "Lataaminen onnistui"
84
 
85
+ #: includes/class-fcbkbttn-settings.php:143
86
+ #, fuzzy
87
+ msgid "Error: failed to move file."
88
  msgstr "Virhe: tiedoston siirto epäonnistui"
89
 
90
+ #: includes/class-fcbkbttn-settings.php:146
91
+ #, fuzzy
92
+ msgid "Error: check image width or height."
93
  msgstr "Virhe: tarkista kuvan leveys tai korkeus"
94
 
95
+ #: includes/class-fcbkbttn-settings.php:150
96
  msgid "Uploading Error: check image properties"
97
  msgstr "Virhe latauksessa: tarkista kuvan ominaisuudet"
98
 
99
+ #: includes/class-fcbkbttn-settings.php:171
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
100
  #, fuzzy
101
+ msgid "Facebook button Settings"
102
+ msgstr "Facebook Napin asetukset"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
103
 
104
+ #: includes/class-fcbkbttn-settings.php:174
105
+ msgid "General"
 
 
 
 
106
  msgstr ""
107
 
108
+ #: includes/class-fcbkbttn-settings.php:177
109
  #, fuzzy
110
+ msgid "Buttons"
111
+ msgstr "Facebook napin paikka:"
112
 
113
+ #: includes/class-fcbkbttn-settings.php:180
114
+ msgid "Profile URL"
115
+ msgstr ""
116
 
117
+ #: includes/class-fcbkbttn-settings.php:181
118
+ #: includes/class-fcbkbttn-settings.php:367
119
  msgid "Like"
120
  msgstr "Tykkää"
121
 
122
+ #: includes/class-fcbkbttn-settings.php:182
123
  msgid "Share"
124
  msgstr "Jaa"
125
 
126
+ #: includes/class-fcbkbttn-settings.php:187
127
  #, fuzzy
128
+ msgid "Buttons Position"
129
  msgstr "Facebook napin paikka:"
130
 
131
+ #: includes/class-fcbkbttn-settings.php:192
132
+ #, fuzzy
133
+ msgid "Before content"
 
 
 
 
 
 
 
134
  msgstr "Ennen ja Jälkeen"
135
 
136
+ #: includes/class-fcbkbttn-settings.php:197
137
+ msgid "After content"
138
+ msgstr ""
139
 
140
+ #: includes/class-fcbkbttn-settings.php:203
141
+ msgid "Language"
142
+ msgstr ""
 
143
 
144
+ #: includes/class-fcbkbttn-settings.php:214
145
  #, fuzzy
146
+ msgid "Select the default language for Facebook button(-s)."
147
  msgstr "Vaihda Facebook napin kieli"
148
 
149
+ #: includes/class-fcbkbttn-settings.php:223
150
+ #: includes/class-fcbkbttn-settings.php:226
151
+ #: includes/class-fcbkbttn-settings.php:230
152
+ msgid ""
153
+ "Enable to switch language automatically on multilingual website using "
154
+ "Multilanguage plugin."
155
  msgstr ""
156
 
157
+ #: includes/class-fcbkbttn-settings.php:226
158
+ #, php-format
159
+ msgid "Activate %s"
160
  msgstr ""
161
 
162
+ #: includes/class-fcbkbttn-settings.php:230
163
+ msgid "Learn More"
164
+ msgstr "Lue Lisää"
165
 
166
+ #: includes/class-fcbkbttn-settings.php:235
167
+ msgid "Excerpt"
168
  msgstr ""
169
 
170
+ #: includes/class-fcbkbttn-settings.php:237
171
  #, fuzzy
172
+ msgid "Enable to display buttons in excerpt."
173
  msgstr "Näytä nappi:"
174
 
175
+ #: includes/class-fcbkbttn-settings.php:246
176
+ #: includes/class-fcbkbttn-settings.php:422
177
+ #: includes/class-fcbkbttn-settings.php:477
178
  msgid "Close"
179
  msgstr ""
180
 
181
+ #: includes/class-fcbkbttn-settings.php:250
182
+ #, fuzzy
183
+ msgid "Meta Image"
184
+ msgstr "Mukautettu Fecabook kuva"
 
 
 
185
 
186
+ #: includes/class-fcbkbttn-settings.php:255
187
  msgid "Featured Image"
188
  msgstr ""
189
 
190
+ #: includes/class-fcbkbttn-settings.php:259
191
  #, fuzzy
192
  msgid "Custom Image"
193
  msgstr "Mukautettu Fecabook kuva"
194
 
195
+ #: includes/class-fcbkbttn-settings.php:259
196
+ msgid "This image will be used for all posts"
197
  msgstr ""
198
 
199
+ #: includes/class-fcbkbttn-settings.php:266
200
+ msgid "Meta Description"
201
  msgstr ""
202
 
203
+ #: includes/class-fcbkbttn-settings.php:270
204
+ msgid ""
205
+ "This description will be used for all pages and posts. Leave blank to use "
206
+ "page description."
207
  msgstr ""
208
 
209
+ #: includes/class-fcbkbttn-settings.php:279
210
+ msgid "Profile URL Button"
211
  msgstr ""
212
 
213
+ #: includes/class-fcbkbttn-settings.php:282
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
214
  #, fuzzy
215
+ msgid "Facebook ID or Username"
216
  msgstr "Sinun Facebook ID:si tai käyttäjänimesi:"
217
 
218
+ #: includes/class-fcbkbttn-settings.php:289
219
+ msgid "Profile Button Image"
220
  msgstr ""
221
 
222
+ #: includes/class-fcbkbttn-settings.php:296
223
+ msgid "Default"
224
+ msgstr ""
225
 
226
+ #: includes/class-fcbkbttn-settings.php:301
227
+ #, fuzzy
228
+ msgid "Custom image"
229
  msgstr "Mukautettu Fecabook kuva"
230
 
231
+ #: includes/class-fcbkbttn-settings.php:305
232
+ #, fuzzy
233
  msgid ""
234
+ "To use custom image, You need to setup permissions for upload directory of "
235
  "your site"
236
  msgstr "Käyttääksesi mukautettua, kuva pitää voida ladata hakemistoosi"
237
 
238
+ #: includes/class-fcbkbttn-settings.php:312
239
  #, fuzzy
240
  msgid "Current image"
241
  msgstr "Nykyinen kuva:"
242
 
243
+ #: includes/class-fcbkbttn-settings.php:320
244
+ #, fuzzy
245
  msgid ""
246
+ "Image requirements: max image width:100px; max image height:40px; max image "
247
  "size:32Kb; image types:\"jpg\", \"jpeg\", \"png\"."
248
  msgstr ""
249
  "Kuvan ominaisuudet: max leveys 100px; max korkeus 40px; max koko 32Kb; kuvan "
250
  "tyypit:\"jpg\", \"jpeg\", \"png\"."
251
 
252
+ #: includes/class-fcbkbttn-settings.php:324
253
+ msgid "Like&Share Buttons"
254
+ msgstr ""
255
+
256
+ #: includes/class-fcbkbttn-settings.php:327
257
+ msgid "Layout"
258
  msgstr ""
259
 
260
+ #: includes/class-fcbkbttn-settings.php:362
261
+ msgid "Like Button Action"
262
  msgstr ""
263
 
264
+ #: includes/class-fcbkbttn-settings.php:372
265
  msgid "Recommend"
266
  msgstr ""
267
 
268
+ #: includes/class-fcbkbttn-settings.php:378
269
+ msgid "Friends faces"
270
+ msgstr ""
271
+
272
+ #: includes/class-fcbkbttn-settings.php:381
273
+ msgid " Enable to show faces of your friends who submitted the button."
274
+ msgstr ""
275
+
276
+ #: includes/class-fcbkbttn-settings.php:385
277
+ msgid "Layout Width"
278
  msgstr ""
279
 
280
+ #: includes/class-fcbkbttn-settings.php:387
281
+ msgid "px"
282
  msgstr ""
283
 
284
+ #: includes/class-fcbkbttn-settings.php:391
285
+ msgid "Theme"
286
  msgstr ""
287
 
288
+ #: includes/class-fcbkbttn-settings.php:396
289
  msgid "Light"
290
  msgstr ""
291
 
292
+ #: includes/class-fcbkbttn-settings.php:401
293
  msgid "Dark"
294
  msgstr ""
295
 
296
+ #: includes/class-fcbkbttn-settings.php:407
297
+ msgid "Like Button HTML Tag"
298
+ msgstr ""
299
+
300
+ #: includes/class-fcbkbttn-settings.php:413
301
+ #, php-format
302
+ msgid "Tag %s can be used to improve website code validation."
303
+ msgstr ""
304
+
305
+ #: includes/class-fcbkbttn-settings.php:426
306
+ msgid "URL to Like"
307
+ msgstr ""
308
 
309
+ #: includes/class-fcbkbttn-settings.php:428
310
+ msgid "Leave blank to use a current page."
311
+ msgstr ""
312
 
313
+ #: includes/class-fcbkbttn-settings.php:456
314
+ #, fuzzy
315
+ msgid "Facebook Buttons Shortchode"
316
+ msgstr "Facebook napin paikka:"
317
 
318
+ #: includes/class-fcbkbttn-settings.php:459
319
  msgid ""
320
+ "Add Facebook button(-s) to your posts, pages, custom post types or widgets "
321
+ "by using the following shortcode:"
 
 
322
  msgstr ""
 
 
 
 
 
 
 
 
323
 
324
+ #: includes/class-fcbkbttn-settings.php:478
325
  #, fuzzy
326
+ msgid "Facebook Buttons Preview"
327
  msgstr "Facebook Nappi"
328
 
329
+ #: includes/class-fcbkbttn-settings.php:493
330
+ #, fuzzy
331
+ msgid "Display Settings"
332
+ msgstr "Näytä nappi:"
333
+
334
+ #: includes/class-fcbkbttn-settings.php:502
335
  msgid ""
336
  "Please choose the necessary post types (or single pages) where Facebook "
337
  "button will be displayed:"
339
  "Valitse haluamasi viestin tyyppi (tai yksittäiset sivut) joissa Facebook "
340
  "nappi näytetään:"
341
 
342
+ #: includes/class-fcbkbttn-settings.php:509
343
  msgid "Show URL for pages"
344
  msgstr "Näytä URL sivuilla"
345
 
346
+ #: includes/class-fcbkbttn-settings.php:515
347
  msgid "Example of the site's pages tree"
348
  msgstr "Esimerkki sivuston sivuhakemistosta"
349
 
350
+ #: includes/class-fcbkbttn-settings.php:515
351
  msgid "Example of site pages' tree"
352
  msgstr "Esimerkki sivun sivuhakemistosta"
353
 
354
+ #~ msgid "Extra settings"
355
+ #~ msgstr "Lisää asetuksia"
356
+
357
+ #~ msgid "Go PRO"
358
+ #~ msgstr "Hanki PRO versio"
359
+
360
  #, fuzzy
361
+ #~ msgid ""
362
+ #~ "If you would like to add Facebook buttons to your page or post, please "
363
+ #~ "use %s button"
364
+ #~ msgstr ""
365
+ #~ "Mikäli haluat lisätä Facebook napin sivullesi, kopioi ja liitä tämä "
366
+ #~ "lyhytkoodi artikkeliisi tai sivullesi:"
367
 
368
+ #~ msgid "My Page"
369
+ #~ msgstr "Minun sivuni"
 
370
 
371
+ #~ msgid "Before"
372
+ #~ msgstr "Ennen"
373
+
374
+ #~ msgid "After"
375
+ #~ msgstr "Jälkeen"
376
+
377
+ #~ msgid "Shortcode"
378
+ #~ msgstr "Lyhytkoodi"
379
+
380
+ #, fuzzy
381
+ #~ msgid "Facebook buttons language"
382
+ #~ msgstr "Facebook Napin kieli:"
383
+
384
+ #~ msgid "If you upgrade to Pro version all your settings will be saved."
385
+ #~ msgstr "Mikäli päivität Pro versioon, kaikki asetuksesi tallennetaan."
386
+
387
+ #, fuzzy
388
+ #~ msgid "Unlock premium options by upgrading to Pro version"
389
+ #~ msgstr "Ota käyttöön premium valinnat päivittämällä PRO versioon."
390
+
391
+ #~ msgid "Standard Facebook image"
392
+ #~ msgstr "Standardi Facebook kuva"
393
+
394
+ #~ msgid "Custom Facebook image"
395
+ #~ msgstr "Mukautettu Fecabook kuva"
396
+
397
+ #, fuzzy
398
+ #~ msgid "Html tag for \"Like\" button"
399
+ #~ msgstr "HTML tagi Tykkää Napille:"
400
+
401
+ #~ msgid "Use this tag to improve validation of your site"
402
+ #~ msgstr "Käytä tätä tagia parantamaan sivusi näkyvyyttä"
403
+
404
+ #~ msgid "\"Like\" for an entire site on every page:"
405
+ #~ msgstr "\"Like\" koko sivustolle ja kaikille sivuille:"
406
+
407
+ #~ msgid ""
408
+ #~ "Notice: \"Like for the entire site\" option does not create an extra "
409
+ #~ "button. This option merely allows your users to like the entire website "
410
+ #~ "when this option is enabled, or a single post when this option is "
411
+ #~ "disabled, when clicking the regular \"Like\" button."
412
+ #~ msgstr ""
413
+ #~ "Huomautus: \"Tykkää koko sivustosta\" tämä valinta ei tee ylimääräistä "
414
+ #~ "nappia. Tämä valinnan avulla käyttäjät tykkäävät koko sivustosta. Mikäli "
415
+ #~ "ei ole valittu, niin käyttäjä tykkää vain yhdestä sivusta klikatessaan "
416
+ #~ "\"Tykkää\" nappia."
417
+
418
+ #~ msgid "Save Changes"
419
+ #~ msgstr "Tallenna muutokset"
420
 
421
  #~ msgid "Notice:"
422
  #~ msgstr "Huomautus:"
languages/facebook-button-plugin-fr_FR.mo CHANGED
Binary file
languages/facebook-button-plugin-fr_FR.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: facebook-button-plugin\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2016-05-05 17:23+0300\n"
6
- "PO-Revision-Date: 2016-05-05 17:23+0300\n"
7
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: http://wptheme.fr/\n"
9
  "Language: fr\n"
@@ -17,337 +17,373 @@ msgstr ""
17
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: facebook-button-plugin.php:34 facebook-button-plugin.php:294
 
21
  msgid "Facebook Button Settings"
22
  msgstr "Réglages du bouton Facebook"
23
 
24
- #: facebook-button-plugin.php:216
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
25
  msgid "Settings saved"
26
  msgstr "Réglages sauvegardés "
27
 
28
- #: facebook-button-plugin.php:242
29
  msgid "Error: File size > 32K"
30
  msgstr "Erreur : Poids du fichier > 32K"
31
 
32
- #: facebook-button-plugin.php:245
33
  msgid "Error: Invalid file type"
34
  msgstr "Erreur : Type de fichier invalide"
35
 
36
- #: facebook-button-plugin.php:251
37
  msgid "Upload successful."
38
  msgstr ""
39
 
40
- #: facebook-button-plugin.php:261
41
- msgid "Error: moving file failed"
 
42
  msgstr "Erreur : le déplacement du fichier a echoué"
43
 
44
- #: facebook-button-plugin.php:264
45
- msgid "Error: check image width or height"
 
46
  msgstr "Erreur : Vérifiez la taille et la largeur de l'image"
47
 
48
- #: facebook-button-plugin.php:268
49
  msgid "Uploading Error: check image properties"
50
  msgstr "Erreur d'upload : vérifiez les propriétés de l'image"
51
 
52
- #: facebook-button-plugin.php:281
53
- msgid "All plugin settings were restored."
54
- msgstr ""
55
-
56
- #: facebook-button-plugin.php:296
57
- msgid "How to Use Step-by-step Instruction"
58
- msgstr ""
59
-
60
- #: facebook-button-plugin.php:299 facebook-button-plugin.php:861
61
- #: facebook-button-plugin.php:875
62
- msgid "Settings"
63
- msgstr "Réglages"
64
-
65
- #: facebook-button-plugin.php:300
66
- #, fuzzy
67
- msgid "Extra settings"
68
- msgstr "Réglages"
69
-
70
- #: facebook-button-plugin.php:301
71
  #, fuzzy
72
- msgid "Custom code"
73
- msgstr "Image Facebook personnalisée"
74
-
75
- #: facebook-button-plugin.php:302
76
- msgid "Go PRO"
77
- msgstr ""
78
-
79
- #: facebook-button-plugin.php:305
80
- msgid "Please, enable JavaScript in Your browser."
81
- msgstr ""
82
-
83
- #: facebook-button-plugin.php:320
84
- #, fuzzy, php-format
85
- msgid ""
86
- "If you would like to add Facebook buttons to your page or post, please use "
87
- "%s button"
88
- msgstr ""
89
- "Si vous souhaitez ajouter un bouton Facebook sur votre site internet, copier-"
90
- "collez ce Shortcodedans votre page ou votre article"
91
 
92
- #: facebook-button-plugin.php:325
93
- #, php-format
94
- msgid ""
95
- "You can add Facebook buttons to your page or post by clicking on %s button "
96
- "in the content edit block using the Visual mode. If the button isn't "
97
- "displayed, please use the shortcode %s"
98
  msgstr ""
99
 
100
- #: facebook-button-plugin.php:336
101
  #, fuzzy
102
- msgid "Display button"
103
- msgstr "Afficher le bouton"
104
 
105
- #: facebook-button-plugin.php:339
106
- msgid "My Page"
107
- msgstr "Ma page"
108
 
109
- #: facebook-button-plugin.php:340 facebook-button-plugin.php:507
 
110
  msgid "Like"
111
  msgstr "Like"
112
 
113
- #: facebook-button-plugin.php:341
114
  msgid "Share"
115
  msgstr ""
116
 
117
- #: facebook-button-plugin.php:346
118
  #, fuzzy
119
- msgid "Facebook buttons position"
120
  msgstr "Position du bouton Facebook"
121
 
122
- #: facebook-button-plugin.php:349
123
- msgid "Before"
124
- msgstr "Avant"
125
-
126
- #: facebook-button-plugin.php:350
127
- msgid "After"
128
- msgstr "Après"
129
-
130
- #: facebook-button-plugin.php:351
131
- msgid "Before and After"
132
  msgstr "Avant et après"
133
 
134
- #: facebook-button-plugin.php:352
135
- msgid "Shortcode"
136
- msgstr "Shortcode"
137
 
138
- #: facebook-button-plugin.php:357
139
- #, fuzzy
140
- msgid "Facebook buttons language"
141
- msgstr "Langue du bouton Facebook"
142
 
143
- #: facebook-button-plugin.php:368
144
  #, fuzzy
145
- msgid "Change the language of Facebook Button"
146
  msgstr "Changer la langue du bouton Facebook"
147
 
148
- #: facebook-button-plugin.php:373 facebook-button-plugin.php:376
149
- #: facebook-button-plugin.php:381
150
- msgid "Use the current site language"
 
 
 
151
  msgstr ""
152
 
153
- #: facebook-button-plugin.php:373 facebook-button-plugin.php:377
154
- #: facebook-button-plugin.php:382
155
- msgid "Using"
156
  msgstr ""
157
 
158
- #: facebook-button-plugin.php:377
159
- msgid "Activate"
160
  msgstr ""
161
 
162
- #: facebook-button-plugin.php:382
163
- msgid "Download"
164
  msgstr ""
165
 
166
- #: facebook-button-plugin.php:389
167
  #, fuzzy
168
- msgid "Display buttons in excerpt"
169
  msgstr "Afficher le bouton"
170
 
171
- #: facebook-button-plugin.php:399 facebook-button-plugin.php:548
172
- #: facebook-button-plugin.php:585
 
173
  msgid "Close"
174
  msgstr ""
175
 
176
- #: facebook-button-plugin.php:403
177
- msgid "Meta tags"
178
- msgstr ""
179
-
180
- #: facebook-button-plugin.php:406
181
- msgid "Image"
182
- msgstr ""
183
 
184
- #: facebook-button-plugin.php:409
185
  msgid "Featured Image"
186
  msgstr ""
187
 
188
- #: facebook-button-plugin.php:413
189
  #, fuzzy
190
  msgid "Custom Image"
191
  msgstr "Image Facebook personnalisée"
192
 
193
- #: facebook-button-plugin.php:413
194
- msgid "This image will be used for all of the posts"
195
  msgstr ""
196
 
197
- #: facebook-button-plugin.php:423
198
- msgid "Description"
199
  msgstr ""
200
 
201
- #: facebook-button-plugin.php:426
202
- msgid "Post excerpt"
203
- msgstr ""
204
-
205
- #: facebook-button-plugin.php:431
206
- msgid "This description will be used for all of the posts"
207
- msgstr ""
208
-
209
- #: facebook-button-plugin.php:438 facebook-button-plugin.php:559
210
- #: facebook-button-plugin.php:637
211
- msgid "If you upgrade to Pro version all your settings will be saved."
212
  msgstr ""
213
 
214
- #: facebook-button-plugin.php:445 facebook-button-plugin.php:566
215
- #: facebook-button-plugin.php:594 facebook-button-plugin.php:644
216
- msgid "Unlock premium options by upgrading to Pro version"
217
  msgstr ""
218
 
219
- #: facebook-button-plugin.php:447 facebook-button-plugin.php:568
220
- #: facebook-button-plugin.php:596 facebook-button-plugin.php:646
221
- msgid "Learn More"
222
- msgstr ""
223
-
224
- #: facebook-button-plugin.php:455
225
  #, fuzzy
226
- msgid "Your Facebook ID or username"
227
  msgstr "Votre identifiant Facebook"
228
 
229
- #: facebook-button-plugin.php:462
230
- msgid "\"My page\" button image"
231
  msgstr ""
232
 
233
- #: facebook-button-plugin.php:467
234
- msgid "Standard Facebook image"
235
- msgstr "Image Facebook par défaut"
236
 
237
- #: facebook-button-plugin.php:468
238
- msgid "Custom Facebook image"
 
239
  msgstr "Image Facebook personnalisée"
240
 
241
- #: facebook-button-plugin.php:471
242
  msgid ""
243
- "To use custom image you need to setup permissions to upload directory of "
244
  "your site"
245
  msgstr ""
246
 
247
- #: facebook-button-plugin.php:478
248
  #, fuzzy
249
  msgid "Current image"
250
  msgstr "Image actuelle"
251
 
252
- #: facebook-button-plugin.php:486
 
253
  msgid ""
254
- "Image properties: max image width:100px; max image height:40px; max image "
255
  "size:32Kb; image types:\"jpg\", \"jpeg\", \"png\"."
256
  msgstr ""
257
  "Propriétés de l'image : largeur max:100px; hauteur max: 40px; poids max : "
258
  "32kb; type d'image :\"jpg\", \"jpeg\", \"png\"."
259
 
260
- #: facebook-button-plugin.php:490
261
- msgid "Button layout"
 
 
 
 
262
  msgstr ""
263
 
264
- #: facebook-button-plugin.php:504
265
- msgid "Like button action"
266
  msgstr ""
267
 
268
- #: facebook-button-plugin.php:508
269
  msgid "Recommend"
270
  msgstr ""
271
 
272
- #: facebook-button-plugin.php:513
273
- msgid "Show faces"
 
 
 
 
 
 
 
 
274
  msgstr ""
275
 
276
- #: facebook-button-plugin.php:519
277
- msgid "Layout width"
278
  msgstr ""
279
 
280
- #: facebook-button-plugin.php:525
281
- msgid "Color scheme"
282
  msgstr ""
283
 
284
- #: facebook-button-plugin.php:528
285
  msgid "Light"
286
  msgstr ""
287
 
288
- #: facebook-button-plugin.php:529
289
  msgid "Dark"
290
  msgstr ""
291
 
292
- #: facebook-button-plugin.php:534
293
- msgid "Html tag for \"Like\" button"
294
  msgstr ""
295
 
296
- #: facebook-button-plugin.php:539
297
- msgid "Use this tag to improve validation of your site"
 
298
  msgstr ""
299
 
300
- #: facebook-button-plugin.php:552
301
- msgid "\"Like\" for an entire site on every page:"
302
  msgstr ""
303
 
304
- #: facebook-button-plugin.php:554
305
- msgid ""
306
- "Notice: \"Like for the entire site\" option does not create an extra button. "
307
- "This option merely allows your users to like the entire website when this "
308
- "option is enabled, or a single post when this option is disabled, when "
309
- "clicking the regular \"Like\" button."
310
  msgstr ""
311
 
312
- #: facebook-button-plugin.php:576 facebook-button-plugin.php:632
313
- msgid "Save Changes"
314
- msgstr "Sauvegarder les changements"
 
 
 
 
 
 
 
315
 
316
- #: facebook-button-plugin.php:588
317
  #, fuzzy
318
- msgid "Facebook Button preview:"
319
  msgstr "Bouton Facebook"
320
 
321
- #: facebook-button-plugin.php:614
 
 
 
 
 
322
  msgid ""
323
  "Please choose the necessary post types (or single pages) where Facebook "
324
  "button will be displayed:"
325
  msgstr ""
326
 
327
- #: facebook-button-plugin.php:621
328
  msgid "Show URL for pages"
329
  msgstr ""
330
 
331
- #: facebook-button-plugin.php:627
332
  msgid "Example of the site's pages tree"
333
  msgstr ""
334
 
335
- #: facebook-button-plugin.php:627
336
  msgid "Example of site pages' tree"
337
  msgstr ""
338
 
339
- #: facebook-button-plugin.php:765
340
  #, fuzzy
341
- msgid "Add Facebook buttons to your page or post"
342
- msgstr "Position du bouton Facebook"
343
 
344
- #: facebook-button-plugin.php:876
345
- msgid "FAQ"
346
- msgstr "FAQ"
 
 
 
 
347
 
348
- #: facebook-button-plugin.php:877
349
- msgid "Support"
350
- msgstr "Support"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
351
 
352
  #, fuzzy
353
  #~ msgid "Yes, restore all settings"
2
  msgstr ""
3
  "Project-Id-Version: facebook-button-plugin\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-01-26 11:24+0300\n"
6
+ "PO-Revision-Date: 2017-01-26 11:24+0300\n"
7
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: http://wptheme.fr/\n"
9
  "Language: fr\n"
17
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: facebook-button-plugin.php:35 facebook-button-plugin.php:36
21
+ #: facebook-button-plugin.php:201
22
  msgid "Facebook Button Settings"
23
  msgstr "Réglages du bouton Facebook"
24
 
25
+ #: facebook-button-plugin.php:36 facebook-button-plugin.php:405
26
+ #: facebook-button-plugin.php:419 includes/class-fcbkbttn-settings.php:23
27
+ msgid "Settings"
28
+ msgstr "Réglages"
29
+
30
+ #: facebook-button-plugin.php:42
31
+ msgid "Upgrade to Pro"
32
+ msgstr ""
33
+
34
+ #: facebook-button-plugin.php:202
35
+ msgid "Please, enable JavaScript in Your browser."
36
+ msgstr ""
37
+
38
+ #: facebook-button-plugin.php:298
39
+ #, fuzzy
40
+ msgid "Add Facebook buttons to your page or post"
41
+ msgstr "Position du bouton Facebook"
42
+
43
+ #: facebook-button-plugin.php:420
44
+ msgid "FAQ"
45
+ msgstr "FAQ"
46
+
47
+ #: facebook-button-plugin.php:421
48
+ msgid "Support"
49
+ msgstr "Support"
50
+
51
+ #: includes/class-fcbkbttn-settings.php:25
52
+ #, fuzzy
53
+ msgid "Display"
54
+ msgstr "Afficher le bouton"
55
+
56
+ #: includes/class-fcbkbttn-settings.php:27
57
+ msgid "Misc"
58
+ msgstr ""
59
+
60
+ #: includes/class-fcbkbttn-settings.php:28
61
+ #, fuzzy
62
+ msgid "Custom Code"
63
+ msgstr "Image Facebook personnalisée"
64
+
65
+ #: includes/class-fcbkbttn-settings.php:30
66
+ msgid "License Key"
67
+ msgstr ""
68
+
69
+ #: includes/class-fcbkbttn-settings.php:95
70
  msgid "Settings saved"
71
  msgstr "Réglages sauvegardés "
72
 
73
+ #: includes/class-fcbkbttn-settings.php:124
74
  msgid "Error: File size > 32K"
75
  msgstr "Erreur : Poids du fichier > 32K"
76
 
77
+ #: includes/class-fcbkbttn-settings.php:127
78
  msgid "Error: Invalid file type"
79
  msgstr "Erreur : Type de fichier invalide"
80
 
81
+ #: includes/class-fcbkbttn-settings.php:133
82
  msgid "Upload successful."
83
  msgstr ""
84
 
85
+ #: includes/class-fcbkbttn-settings.php:143
86
+ #, fuzzy
87
+ msgid "Error: failed to move file."
88
  msgstr "Erreur : le déplacement du fichier a echoué"
89
 
90
+ #: includes/class-fcbkbttn-settings.php:146
91
+ #, fuzzy
92
+ msgid "Error: check image width or height."
93
  msgstr "Erreur : Vérifiez la taille et la largeur de l'image"
94
 
95
+ #: includes/class-fcbkbttn-settings.php:150
96
  msgid "Uploading Error: check image properties"
97
  msgstr "Erreur d'upload : vérifiez les propriétés de l'image"
98
 
99
+ #: includes/class-fcbkbttn-settings.php:171
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
100
  #, fuzzy
101
+ msgid "Facebook button Settings"
102
+ msgstr "Réglages du bouton Facebook"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
103
 
104
+ #: includes/class-fcbkbttn-settings.php:174
105
+ msgid "General"
 
 
 
 
106
  msgstr ""
107
 
108
+ #: includes/class-fcbkbttn-settings.php:177
109
  #, fuzzy
110
+ msgid "Buttons"
111
+ msgstr "Position du bouton Facebook"
112
 
113
+ #: includes/class-fcbkbttn-settings.php:180
114
+ msgid "Profile URL"
115
+ msgstr ""
116
 
117
+ #: includes/class-fcbkbttn-settings.php:181
118
+ #: includes/class-fcbkbttn-settings.php:367
119
  msgid "Like"
120
  msgstr "Like"
121
 
122
+ #: includes/class-fcbkbttn-settings.php:182
123
  msgid "Share"
124
  msgstr ""
125
 
126
+ #: includes/class-fcbkbttn-settings.php:187
127
  #, fuzzy
128
+ msgid "Buttons Position"
129
  msgstr "Position du bouton Facebook"
130
 
131
+ #: includes/class-fcbkbttn-settings.php:192
132
+ #, fuzzy
133
+ msgid "Before content"
 
 
 
 
 
 
 
134
  msgstr "Avant et après"
135
 
136
+ #: includes/class-fcbkbttn-settings.php:197
137
+ msgid "After content"
138
+ msgstr ""
139
 
140
+ #: includes/class-fcbkbttn-settings.php:203
141
+ msgid "Language"
142
+ msgstr ""
 
143
 
144
+ #: includes/class-fcbkbttn-settings.php:214
145
  #, fuzzy
146
+ msgid "Select the default language for Facebook button(-s)."
147
  msgstr "Changer la langue du bouton Facebook"
148
 
149
+ #: includes/class-fcbkbttn-settings.php:223
150
+ #: includes/class-fcbkbttn-settings.php:226
151
+ #: includes/class-fcbkbttn-settings.php:230
152
+ msgid ""
153
+ "Enable to switch language automatically on multilingual website using "
154
+ "Multilanguage plugin."
155
  msgstr ""
156
 
157
+ #: includes/class-fcbkbttn-settings.php:226
158
+ #, php-format
159
+ msgid "Activate %s"
160
  msgstr ""
161
 
162
+ #: includes/class-fcbkbttn-settings.php:230
163
+ msgid "Learn More"
164
  msgstr ""
165
 
166
+ #: includes/class-fcbkbttn-settings.php:235
167
+ msgid "Excerpt"
168
  msgstr ""
169
 
170
+ #: includes/class-fcbkbttn-settings.php:237
171
  #, fuzzy
172
+ msgid "Enable to display buttons in excerpt."
173
  msgstr "Afficher le bouton"
174
 
175
+ #: includes/class-fcbkbttn-settings.php:246
176
+ #: includes/class-fcbkbttn-settings.php:422
177
+ #: includes/class-fcbkbttn-settings.php:477
178
  msgid "Close"
179
  msgstr ""
180
 
181
+ #: includes/class-fcbkbttn-settings.php:250
182
+ #, fuzzy
183
+ msgid "Meta Image"
184
+ msgstr "Image Facebook personnalisée"
 
 
 
185
 
186
+ #: includes/class-fcbkbttn-settings.php:255
187
  msgid "Featured Image"
188
  msgstr ""
189
 
190
+ #: includes/class-fcbkbttn-settings.php:259
191
  #, fuzzy
192
  msgid "Custom Image"
193
  msgstr "Image Facebook personnalisée"
194
 
195
+ #: includes/class-fcbkbttn-settings.php:259
196
+ msgid "This image will be used for all posts"
197
  msgstr ""
198
 
199
+ #: includes/class-fcbkbttn-settings.php:266
200
+ msgid "Meta Description"
201
  msgstr ""
202
 
203
+ #: includes/class-fcbkbttn-settings.php:270
204
+ msgid ""
205
+ "This description will be used for all pages and posts. Leave blank to use "
206
+ "page description."
 
 
 
 
 
 
 
207
  msgstr ""
208
 
209
+ #: includes/class-fcbkbttn-settings.php:279
210
+ msgid "Profile URL Button"
 
211
  msgstr ""
212
 
213
+ #: includes/class-fcbkbttn-settings.php:282
 
 
 
 
 
214
  #, fuzzy
215
+ msgid "Facebook ID or Username"
216
  msgstr "Votre identifiant Facebook"
217
 
218
+ #: includes/class-fcbkbttn-settings.php:289
219
+ msgid "Profile Button Image"
220
  msgstr ""
221
 
222
+ #: includes/class-fcbkbttn-settings.php:296
223
+ msgid "Default"
224
+ msgstr ""
225
 
226
+ #: includes/class-fcbkbttn-settings.php:301
227
+ #, fuzzy
228
+ msgid "Custom image"
229
  msgstr "Image Facebook personnalisée"
230
 
231
+ #: includes/class-fcbkbttn-settings.php:305
232
  msgid ""
233
+ "To use custom image, You need to setup permissions for upload directory of "
234
  "your site"
235
  msgstr ""
236
 
237
+ #: includes/class-fcbkbttn-settings.php:312
238
  #, fuzzy
239
  msgid "Current image"
240
  msgstr "Image actuelle"
241
 
242
+ #: includes/class-fcbkbttn-settings.php:320
243
+ #, fuzzy
244
  msgid ""
245
+ "Image requirements: max image width:100px; max image height:40px; max image "
246
  "size:32Kb; image types:\"jpg\", \"jpeg\", \"png\"."
247
  msgstr ""
248
  "Propriétés de l'image : largeur max:100px; hauteur max: 40px; poids max : "
249
  "32kb; type d'image :\"jpg\", \"jpeg\", \"png\"."
250
 
251
+ #: includes/class-fcbkbttn-settings.php:324
252
+ msgid "Like&Share Buttons"
253
+ msgstr ""
254
+
255
+ #: includes/class-fcbkbttn-settings.php:327
256
+ msgid "Layout"
257
  msgstr ""
258
 
259
+ #: includes/class-fcbkbttn-settings.php:362
260
+ msgid "Like Button Action"
261
  msgstr ""
262
 
263
+ #: includes/class-fcbkbttn-settings.php:372
264
  msgid "Recommend"
265
  msgstr ""
266
 
267
+ #: includes/class-fcbkbttn-settings.php:378
268
+ msgid "Friends faces"
269
+ msgstr ""
270
+
271
+ #: includes/class-fcbkbttn-settings.php:381
272
+ msgid " Enable to show faces of your friends who submitted the button."
273
+ msgstr ""
274
+
275
+ #: includes/class-fcbkbttn-settings.php:385
276
+ msgid "Layout Width"
277
  msgstr ""
278
 
279
+ #: includes/class-fcbkbttn-settings.php:387
280
+ msgid "px"
281
  msgstr ""
282
 
283
+ #: includes/class-fcbkbttn-settings.php:391
284
+ msgid "Theme"
285
  msgstr ""
286
 
287
+ #: includes/class-fcbkbttn-settings.php:396
288
  msgid "Light"
289
  msgstr ""
290
 
291
+ #: includes/class-fcbkbttn-settings.php:401
292
  msgid "Dark"
293
  msgstr ""
294
 
295
+ #: includes/class-fcbkbttn-settings.php:407
296
+ msgid "Like Button HTML Tag"
297
  msgstr ""
298
 
299
+ #: includes/class-fcbkbttn-settings.php:413
300
+ #, php-format
301
+ msgid "Tag %s can be used to improve website code validation."
302
  msgstr ""
303
 
304
+ #: includes/class-fcbkbttn-settings.php:426
305
+ msgid "URL to Like"
306
  msgstr ""
307
 
308
+ #: includes/class-fcbkbttn-settings.php:428
309
+ msgid "Leave blank to use a current page."
 
 
 
 
310
  msgstr ""
311
 
312
+ #: includes/class-fcbkbttn-settings.php:456
313
+ #, fuzzy
314
+ msgid "Facebook Buttons Shortchode"
315
+ msgstr "Position du bouton Facebook"
316
+
317
+ #: includes/class-fcbkbttn-settings.php:459
318
+ msgid ""
319
+ "Add Facebook button(-s) to your posts, pages, custom post types or widgets "
320
+ "by using the following shortcode:"
321
+ msgstr ""
322
 
323
+ #: includes/class-fcbkbttn-settings.php:478
324
  #, fuzzy
325
+ msgid "Facebook Buttons Preview"
326
  msgstr "Bouton Facebook"
327
 
328
+ #: includes/class-fcbkbttn-settings.php:493
329
+ #, fuzzy
330
+ msgid "Display Settings"
331
+ msgstr "Afficher le bouton"
332
+
333
+ #: includes/class-fcbkbttn-settings.php:502
334
  msgid ""
335
  "Please choose the necessary post types (or single pages) where Facebook "
336
  "button will be displayed:"
337
  msgstr ""
338
 
339
+ #: includes/class-fcbkbttn-settings.php:509
340
  msgid "Show URL for pages"
341
  msgstr ""
342
 
343
+ #: includes/class-fcbkbttn-settings.php:515
344
  msgid "Example of the site's pages tree"
345
  msgstr ""
346
 
347
+ #: includes/class-fcbkbttn-settings.php:515
348
  msgid "Example of site pages' tree"
349
  msgstr ""
350
 
 
351
  #, fuzzy
352
+ #~ msgid "Extra settings"
353
+ #~ msgstr "Réglages"
354
 
355
+ #, fuzzy
356
+ #~ msgid ""
357
+ #~ "If you would like to add Facebook buttons to your page or post, please "
358
+ #~ "use %s button"
359
+ #~ msgstr ""
360
+ #~ "Si vous souhaitez ajouter un bouton Facebook sur votre site internet, "
361
+ #~ "copier-collez ce Shortcodedans votre page ou votre article"
362
 
363
+ #~ msgid "My Page"
364
+ #~ msgstr "Ma page"
365
+
366
+ #~ msgid "Before"
367
+ #~ msgstr "Avant"
368
+
369
+ #~ msgid "After"
370
+ #~ msgstr "Après"
371
+
372
+ #~ msgid "Shortcode"
373
+ #~ msgstr "Shortcode"
374
+
375
+ #, fuzzy
376
+ #~ msgid "Facebook buttons language"
377
+ #~ msgstr "Langue du bouton Facebook"
378
+
379
+ #~ msgid "Standard Facebook image"
380
+ #~ msgstr "Image Facebook par défaut"
381
+
382
+ #~ msgid "Custom Facebook image"
383
+ #~ msgstr "Image Facebook personnalisée"
384
+
385
+ #~ msgid "Save Changes"
386
+ #~ msgstr "Sauvegarder les changements"
387
 
388
  #, fuzzy
389
  #~ msgid "Yes, restore all settings"
languages/facebook-button-plugin-hu_HU.mo CHANGED
Binary file
languages/facebook-button-plugin-hu_HU.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: facebook-button-plugin\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2016-05-05 17:23+0300\n"
6
- "PO-Revision-Date: 2016-05-05 17:23+0300\n"
7
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: BestWebSoft <plugin@bestwebsoft.com>\n"
9
  "Language: hu_HU\n"
@@ -16,311 +16,325 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: facebook-button-plugin.php:34 facebook-button-plugin.php:294
 
20
  msgid "Facebook Button Settings"
21
  msgstr "Facebook Gomb Beállítások"
22
 
23
- #: facebook-button-plugin.php:216
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
24
  msgid "Settings saved"
25
  msgstr "Beállítások mentve"
26
 
27
- #: facebook-button-plugin.php:242
28
  msgid "Error: File size > 32K"
29
  msgstr "Hiba: File méret > 32k"
30
 
31
- #: facebook-button-plugin.php:245
32
  msgid "Error: Invalid file type"
33
  msgstr "Hiba: Érvénytelen file típus"
34
 
35
- #: facebook-button-plugin.php:251
36
  msgid "Upload successful."
37
  msgstr "A feltöltés sikeres."
38
 
39
- #: facebook-button-plugin.php:261
40
- msgid "Error: moving file failed"
 
41
  msgstr "Hiba: file mozgatás sikertelen"
42
 
43
- #: facebook-button-plugin.php:264
44
- msgid "Error: check image width or height"
 
45
  msgstr "Hiba: ellenőrizze a kép szélességét és magasságát"
46
 
47
- #: facebook-button-plugin.php:268
48
  msgid "Uploading Error: check image properties"
49
  msgstr "Feltöltési Hiba: ellenőrizze a kép tulajdonságait"
50
 
51
- #: facebook-button-plugin.php:281
52
- msgid "All plugin settings were restored."
53
- msgstr "Minden plugin paraméter visszaállítva."
54
-
55
- #: facebook-button-plugin.php:296
56
- msgid "How to Use Step-by-step Instruction"
57
- msgstr ""
58
-
59
- #: facebook-button-plugin.php:299 facebook-button-plugin.php:861
60
- #: facebook-button-plugin.php:875
61
- msgid "Settings"
62
- msgstr "Beállítások"
63
-
64
- #: facebook-button-plugin.php:300
65
- msgid "Extra settings"
66
- msgstr "Extra beállítások"
67
-
68
- #: facebook-button-plugin.php:301
69
  #, fuzzy
70
- msgid "Custom code"
71
- msgstr "Egyéni Facebook kép"
72
-
73
- #: facebook-button-plugin.php:302
74
- msgid "Go PRO"
75
- msgstr "PRO-ra váltás"
76
 
77
- #: facebook-button-plugin.php:305
78
- msgid "Please, enable JavaScript in Your browser."
79
  msgstr ""
80
 
81
- #: facebook-button-plugin.php:320
82
- #, fuzzy, php-format
83
- msgid ""
84
- "If you would like to add Facebook buttons to your page or post, please use "
85
- "%s button"
86
- msgstr ""
87
- "Ha az oldalához Facebook gombot szeretne adni, csak másolja be ezt a rövid "
88
- "kódot a bejegyzésbe vagy az oldalra:"
89
 
90
- #: facebook-button-plugin.php:325
91
- #, php-format
92
- msgid ""
93
- "You can add Facebook buttons to your page or post by clicking on %s button "
94
- "in the content edit block using the Visual mode. If the button isn't "
95
- "displayed, please use the shortcode %s"
96
  msgstr ""
97
 
98
- #: facebook-button-plugin.php:336
99
- msgid "Display button"
100
- msgstr "Gomb megjelenítése"
101
-
102
- #: facebook-button-plugin.php:339
103
- msgid "My Page"
104
- msgstr "Oldalam"
105
-
106
- #: facebook-button-plugin.php:340 facebook-button-plugin.php:507
107
  msgid "Like"
108
  msgstr "Like"
109
 
110
- #: facebook-button-plugin.php:341
111
  msgid "Share"
112
  msgstr "Megosztás"
113
 
114
- #: facebook-button-plugin.php:346
115
- msgid "Facebook buttons position"
 
116
  msgstr "Facebook gombok helye"
117
 
118
- #: facebook-button-plugin.php:349
119
- msgid "Before"
120
- msgstr "Előtte"
121
-
122
- #: facebook-button-plugin.php:350
123
- msgid "After"
124
- msgstr "Utána"
125
-
126
- #: facebook-button-plugin.php:351
127
- msgid "Before and After"
128
  msgstr "Előtte és Utána"
129
 
130
- #: facebook-button-plugin.php:352
131
- msgid "Shortcode"
132
- msgstr "Rövid kód"
133
 
134
- #: facebook-button-plugin.php:357
135
- msgid "Facebook buttons language"
136
- msgstr "Facebook gomb nyelve"
137
 
138
- #: facebook-button-plugin.php:368
139
  #, fuzzy
140
- msgid "Change the language of Facebook Button"
141
  msgstr "Facebook Like Gomb nyelvének megváltoztatása"
142
 
143
- #: facebook-button-plugin.php:373 facebook-button-plugin.php:376
144
- #: facebook-button-plugin.php:381
145
- msgid "Use the current site language"
 
 
 
146
  msgstr ""
147
 
148
- #: facebook-button-plugin.php:373 facebook-button-plugin.php:377
149
- #: facebook-button-plugin.php:382
150
- msgid "Using"
151
  msgstr ""
152
 
153
- #: facebook-button-plugin.php:377
154
- msgid "Activate"
155
- msgstr ""
156
 
157
- #: facebook-button-plugin.php:382
158
- msgid "Download"
159
  msgstr ""
160
 
161
- #: facebook-button-plugin.php:389
162
  #, fuzzy
163
- msgid "Display buttons in excerpt"
164
  msgstr "Gomb megjelenítése"
165
 
166
- #: facebook-button-plugin.php:399 facebook-button-plugin.php:548
167
- #: facebook-button-plugin.php:585
 
168
  msgid "Close"
169
  msgstr ""
170
 
171
- #: facebook-button-plugin.php:403
172
- msgid "Meta tags"
173
- msgstr ""
174
-
175
- #: facebook-button-plugin.php:406
176
- msgid "Image"
177
- msgstr ""
178
 
179
- #: facebook-button-plugin.php:409
180
  msgid "Featured Image"
181
  msgstr ""
182
 
183
- #: facebook-button-plugin.php:413
184
  #, fuzzy
185
  msgid "Custom Image"
186
  msgstr "Egyéni Facebook kép"
187
 
188
- #: facebook-button-plugin.php:413
189
- msgid "This image will be used for all of the posts"
190
  msgstr ""
191
 
192
- #: facebook-button-plugin.php:423
193
- msgid "Description"
194
  msgstr ""
195
 
196
- #: facebook-button-plugin.php:426
197
- msgid "Post excerpt"
 
 
198
  msgstr ""
199
 
200
- #: facebook-button-plugin.php:431
201
- msgid "This description will be used for all of the posts"
202
  msgstr ""
203
 
204
- #: facebook-button-plugin.php:438 facebook-button-plugin.php:559
205
- #: facebook-button-plugin.php:637
206
- msgid "If you upgrade to Pro version all your settings will be saved."
207
- msgstr "Ha a PRO verzióra vált, minden paramétere el lesz mentve."
208
-
209
- #: facebook-button-plugin.php:445 facebook-button-plugin.php:566
210
- #: facebook-button-plugin.php:594 facebook-button-plugin.php:644
211
  #, fuzzy
212
- msgid "Unlock premium options by upgrading to Pro version"
213
- msgstr "A prémium paramétereket elérheti a PRO változatra váltással."
214
-
215
- #: facebook-button-plugin.php:447 facebook-button-plugin.php:568
216
- #: facebook-button-plugin.php:596 facebook-button-plugin.php:646
217
- msgid "Learn More"
218
- msgstr "Olvasson tovább"
219
-
220
- #: facebook-button-plugin.php:455
221
- msgid "Your Facebook ID or username"
222
  msgstr "Facebook ID-je vagy felhasználóneve"
223
 
224
- #: facebook-button-plugin.php:462
225
- msgid "\"My page\" button image"
226
- msgstr "\"Oldalam\" gomb képe"
227
 
228
- #: facebook-button-plugin.php:467
229
- msgid "Standard Facebook image"
230
- msgstr "Normál Facebook kép"
231
 
232
- #: facebook-button-plugin.php:468
233
- msgid "Custom Facebook image"
 
234
  msgstr "Egyéni Facebook kép"
235
 
236
- #: facebook-button-plugin.php:471
 
237
  msgid ""
238
- "To use custom image you need to setup permissions to upload directory of "
239
  "your site"
240
  msgstr ""
241
  "Egyedi kép használatához az oldala feltöltési könyvtárához jogosultságot "
242
  "kell beállítania"
243
 
244
- #: facebook-button-plugin.php:478
245
  msgid "Current image"
246
  msgstr "Aktuális kép"
247
 
248
- #: facebook-button-plugin.php:486
 
249
  msgid ""
250
- "Image properties: max image width:100px; max image height:40px; max image "
251
  "size:32Kb; image types:\"jpg\", \"jpeg\", \"png\"."
252
  msgstr ""
253
  "Kép paraméterek: max kép szélesség: 100px; max kép magasság: 40px; max kép "
254
  "méret: 32Kb; kép típusok:\"jpg\", \"jpeg\", \"png\"."
255
 
256
- #: facebook-button-plugin.php:490
257
- msgid "Button layout"
 
 
 
 
 
258
  msgstr ""
259
 
260
- #: facebook-button-plugin.php:504
261
  #, fuzzy
262
- msgid "Like button action"
263
  msgstr "Facebook gombok helye"
264
 
265
- #: facebook-button-plugin.php:508
266
  msgid "Recommend"
267
  msgstr ""
268
 
269
- #: facebook-button-plugin.php:513
270
- #, fuzzy
271
- msgid "Show faces"
272
- msgstr "URL megjelenítése oldalakon"
 
 
 
273
 
274
- #: facebook-button-plugin.php:519
275
- msgid "Layout width"
276
  msgstr ""
277
 
278
- #: facebook-button-plugin.php:525
279
- msgid "Color scheme"
280
  msgstr ""
281
 
282
- #: facebook-button-plugin.php:528
 
 
 
 
283
  msgid "Light"
284
  msgstr ""
285
 
286
- #: facebook-button-plugin.php:529
287
  msgid "Dark"
288
  msgstr ""
289
 
290
- #: facebook-button-plugin.php:534
291
- msgid "Html tag for \"Like\" button"
292
- msgstr "A \"Like\" gomb html címkéje"
 
293
 
294
- #: facebook-button-plugin.php:539
295
- msgid "Use this tag to improve validation of your site"
296
- msgstr "Használja ezt a címkét oldala minősítésének javításához"
 
297
 
298
- #: facebook-button-plugin.php:552
299
- msgid "\"Like\" for an entire site on every page:"
300
- msgstr "\"Like\" a weboldal minden lapjára:"
301
 
302
- #: facebook-button-plugin.php:554
303
- msgid ""
304
- "Notice: \"Like for the entire site\" option does not create an extra button. "
305
- "This option merely allows your users to like the entire website when this "
306
- "option is enabled, or a single post when this option is disabled, when "
307
- "clicking the regular \"Like\" button."
308
  msgstr ""
309
- "Megjegyzés: \"Like az egész oldalnak\" beállítás nem hoz létre extra gombot. "
310
- "Ez a beállítás csupán megengedi a felhasználóknak, hogy az egész oldalt "
311
- "kedveljék, ha ez a beállítás engedélyezett vagy egy egyedi bejegyzést, ha ez "
312
- "a beállítás kikapcsolt, ha a normál \"Like\" gombra kattintanak."
313
 
314
- #: facebook-button-plugin.php:576 facebook-button-plugin.php:632
315
- msgid "Save Changes"
316
- msgstr "Változások mentése"
 
 
 
 
 
 
 
317
 
318
- #: facebook-button-plugin.php:588
319
  #, fuzzy
320
- msgid "Facebook Button preview:"
321
  msgstr "Facebook Gomb Beállítások"
322
 
323
- #: facebook-button-plugin.php:614
 
 
 
 
 
324
  msgid ""
325
  "Please choose the necessary post types (or single pages) where Facebook "
326
  "button will be displayed:"
@@ -328,30 +342,93 @@ msgstr ""
328
  "Kérjük válassza ki a szükséges bejegyzés típusokat (vagy egyedi oldalakat) "
329
  "ahol a Facebook gomb megjelenjen:"
330
 
331
- #: facebook-button-plugin.php:621
332
  msgid "Show URL for pages"
333
  msgstr "URL megjelenítése oldalakon"
334
 
335
- #: facebook-button-plugin.php:627
336
  msgid "Example of the site's pages tree"
337
  msgstr "Példa az oldal lap struktúrájának fájára"
338
 
339
- #: facebook-button-plugin.php:627
340
  msgid "Example of site pages' tree"
341
  msgstr "Példa oldal lapjainak fa struktúrájára"
342
 
343
- #: facebook-button-plugin.php:765
 
 
 
 
 
 
 
 
344
  #, fuzzy
345
- msgid "Add Facebook buttons to your page or post"
346
- msgstr "Facebook gombok helye"
 
 
 
 
347
 
348
- #: facebook-button-plugin.php:876
349
- msgid "FAQ"
350
- msgstr "Gy.I.K."
351
 
352
- #: facebook-button-plugin.php:877
353
- msgid "Support"
354
- msgstr "Támogatás"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
355
 
356
  #~ msgid "Notice:"
357
  #~ msgstr "Megjegyzés:"
2
  msgstr ""
3
  "Project-Id-Version: facebook-button-plugin\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-01-26 11:25+0300\n"
6
+ "PO-Revision-Date: 2017-01-26 11:25+0300\n"
7
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: BestWebSoft <plugin@bestwebsoft.com>\n"
9
  "Language: hu_HU\n"
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: facebook-button-plugin.php:35 facebook-button-plugin.php:36
20
+ #: facebook-button-plugin.php:201
21
  msgid "Facebook Button Settings"
22
  msgstr "Facebook Gomb Beállítások"
23
 
24
+ #: facebook-button-plugin.php:36 facebook-button-plugin.php:405
25
+ #: facebook-button-plugin.php:419 includes/class-fcbkbttn-settings.php:23
26
+ msgid "Settings"
27
+ msgstr "Beállítások"
28
+
29
+ #: facebook-button-plugin.php:42
30
+ msgid "Upgrade to Pro"
31
+ msgstr ""
32
+
33
+ #: facebook-button-plugin.php:202
34
+ msgid "Please, enable JavaScript in Your browser."
35
+ msgstr ""
36
+
37
+ #: facebook-button-plugin.php:298
38
+ #, fuzzy
39
+ msgid "Add Facebook buttons to your page or post"
40
+ msgstr "Facebook gombok helye"
41
+
42
+ #: facebook-button-plugin.php:420
43
+ msgid "FAQ"
44
+ msgstr "Gy.I.K."
45
+
46
+ #: facebook-button-plugin.php:421
47
+ msgid "Support"
48
+ msgstr "Támogatás"
49
+
50
+ #: includes/class-fcbkbttn-settings.php:25
51
+ #, fuzzy
52
+ msgid "Display"
53
+ msgstr "Gomb megjelenítése"
54
+
55
+ #: includes/class-fcbkbttn-settings.php:27
56
+ msgid "Misc"
57
+ msgstr ""
58
+
59
+ #: includes/class-fcbkbttn-settings.php:28
60
+ #, fuzzy
61
+ msgid "Custom Code"
62
+ msgstr "Egyéni Facebook kép"
63
+
64
+ #: includes/class-fcbkbttn-settings.php:30
65
+ msgid "License Key"
66
+ msgstr ""
67
+
68
+ #: includes/class-fcbkbttn-settings.php:95
69
  msgid "Settings saved"
70
  msgstr "Beállítások mentve"
71
 
72
+ #: includes/class-fcbkbttn-settings.php:124
73
  msgid "Error: File size > 32K"
74
  msgstr "Hiba: File méret > 32k"
75
 
76
+ #: includes/class-fcbkbttn-settings.php:127
77
  msgid "Error: Invalid file type"
78
  msgstr "Hiba: Érvénytelen file típus"
79
 
80
+ #: includes/class-fcbkbttn-settings.php:133
81
  msgid "Upload successful."
82
  msgstr "A feltöltés sikeres."
83
 
84
+ #: includes/class-fcbkbttn-settings.php:143
85
+ #, fuzzy
86
+ msgid "Error: failed to move file."
87
  msgstr "Hiba: file mozgatás sikertelen"
88
 
89
+ #: includes/class-fcbkbttn-settings.php:146
90
+ #, fuzzy
91
+ msgid "Error: check image width or height."
92
  msgstr "Hiba: ellenőrizze a kép szélességét és magasságát"
93
 
94
+ #: includes/class-fcbkbttn-settings.php:150
95
  msgid "Uploading Error: check image properties"
96
  msgstr "Feltöltési Hiba: ellenőrizze a kép tulajdonságait"
97
 
98
+ #: includes/class-fcbkbttn-settings.php:171
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
99
  #, fuzzy
100
+ msgid "Facebook button Settings"
101
+ msgstr "Facebook Gomb Beállítások"
 
 
 
 
102
 
103
+ #: includes/class-fcbkbttn-settings.php:174
104
+ msgid "General"
105
  msgstr ""
106
 
107
+ #: includes/class-fcbkbttn-settings.php:177
108
+ #, fuzzy
109
+ msgid "Buttons"
110
+ msgstr "Facebook gombok helye"
 
 
 
 
111
 
112
+ #: includes/class-fcbkbttn-settings.php:180
113
+ msgid "Profile URL"
 
 
 
 
114
  msgstr ""
115
 
116
+ #: includes/class-fcbkbttn-settings.php:181
117
+ #: includes/class-fcbkbttn-settings.php:367
 
 
 
 
 
 
 
118
  msgid "Like"
119
  msgstr "Like"
120
 
121
+ #: includes/class-fcbkbttn-settings.php:182
122
  msgid "Share"
123
  msgstr "Megosztás"
124
 
125
+ #: includes/class-fcbkbttn-settings.php:187
126
+ #, fuzzy
127
+ msgid "Buttons Position"
128
  msgstr "Facebook gombok helye"
129
 
130
+ #: includes/class-fcbkbttn-settings.php:192
131
+ #, fuzzy
132
+ msgid "Before content"
 
 
 
 
 
 
 
133
  msgstr "Előtte és Utána"
134
 
135
+ #: includes/class-fcbkbttn-settings.php:197
136
+ msgid "After content"
137
+ msgstr ""
138
 
139
+ #: includes/class-fcbkbttn-settings.php:203
140
+ msgid "Language"
141
+ msgstr ""
142
 
143
+ #: includes/class-fcbkbttn-settings.php:214
144
  #, fuzzy
145
+ msgid "Select the default language for Facebook button(-s)."
146
  msgstr "Facebook Like Gomb nyelvének megváltoztatása"
147
 
148
+ #: includes/class-fcbkbttn-settings.php:223
149
+ #: includes/class-fcbkbttn-settings.php:226
150
+ #: includes/class-fcbkbttn-settings.php:230
151
+ msgid ""
152
+ "Enable to switch language automatically on multilingual website using "
153
+ "Multilanguage plugin."
154
  msgstr ""
155
 
156
+ #: includes/class-fcbkbttn-settings.php:226
157
+ #, php-format
158
+ msgid "Activate %s"
159
  msgstr ""
160
 
161
+ #: includes/class-fcbkbttn-settings.php:230
162
+ msgid "Learn More"
163
+ msgstr "Olvasson tovább"
164
 
165
+ #: includes/class-fcbkbttn-settings.php:235
166
+ msgid "Excerpt"
167
  msgstr ""
168
 
169
+ #: includes/class-fcbkbttn-settings.php:237
170
  #, fuzzy
171
+ msgid "Enable to display buttons in excerpt."
172
  msgstr "Gomb megjelenítése"
173
 
174
+ #: includes/class-fcbkbttn-settings.php:246
175
+ #: includes/class-fcbkbttn-settings.php:422
176
+ #: includes/class-fcbkbttn-settings.php:477
177
  msgid "Close"
178
  msgstr ""
179
 
180
+ #: includes/class-fcbkbttn-settings.php:250
181
+ #, fuzzy
182
+ msgid "Meta Image"
183
+ msgstr "Egyéni Facebook kép"
 
 
 
184
 
185
+ #: includes/class-fcbkbttn-settings.php:255
186
  msgid "Featured Image"
187
  msgstr ""
188
 
189
+ #: includes/class-fcbkbttn-settings.php:259
190
  #, fuzzy
191
  msgid "Custom Image"
192
  msgstr "Egyéni Facebook kép"
193
 
194
+ #: includes/class-fcbkbttn-settings.php:259
195
+ msgid "This image will be used for all posts"
196
  msgstr ""
197
 
198
+ #: includes/class-fcbkbttn-settings.php:266
199
+ msgid "Meta Description"
200
  msgstr ""
201
 
202
+ #: includes/class-fcbkbttn-settings.php:270
203
+ msgid ""
204
+ "This description will be used for all pages and posts. Leave blank to use "
205
+ "page description."
206
  msgstr ""
207
 
208
+ #: includes/class-fcbkbttn-settings.php:279
209
+ msgid "Profile URL Button"
210
  msgstr ""
211
 
212
+ #: includes/class-fcbkbttn-settings.php:282
 
 
 
 
 
 
213
  #, fuzzy
214
+ msgid "Facebook ID or Username"
 
 
 
 
 
 
 
 
 
215
  msgstr "Facebook ID-je vagy felhasználóneve"
216
 
217
+ #: includes/class-fcbkbttn-settings.php:289
218
+ msgid "Profile Button Image"
219
+ msgstr ""
220
 
221
+ #: includes/class-fcbkbttn-settings.php:296
222
+ msgid "Default"
223
+ msgstr ""
224
 
225
+ #: includes/class-fcbkbttn-settings.php:301
226
+ #, fuzzy
227
+ msgid "Custom image"
228
  msgstr "Egyéni Facebook kép"
229
 
230
+ #: includes/class-fcbkbttn-settings.php:305
231
+ #, fuzzy
232
  msgid ""
233
+ "To use custom image, You need to setup permissions for upload directory of "
234
  "your site"
235
  msgstr ""
236
  "Egyedi kép használatához az oldala feltöltési könyvtárához jogosultságot "
237
  "kell beállítania"
238
 
239
+ #: includes/class-fcbkbttn-settings.php:312
240
  msgid "Current image"
241
  msgstr "Aktuális kép"
242
 
243
+ #: includes/class-fcbkbttn-settings.php:320
244
+ #, fuzzy
245
  msgid ""
246
+ "Image requirements: max image width:100px; max image height:40px; max image "
247
  "size:32Kb; image types:\"jpg\", \"jpeg\", \"png\"."
248
  msgstr ""
249
  "Kép paraméterek: max kép szélesség: 100px; max kép magasság: 40px; max kép "
250
  "méret: 32Kb; kép típusok:\"jpg\", \"jpeg\", \"png\"."
251
 
252
+ #: includes/class-fcbkbttn-settings.php:324
253
+ #, fuzzy
254
+ msgid "Like&Share Buttons"
255
+ msgstr "Facebook gombok helye"
256
+
257
+ #: includes/class-fcbkbttn-settings.php:327
258
+ msgid "Layout"
259
  msgstr ""
260
 
261
+ #: includes/class-fcbkbttn-settings.php:362
262
  #, fuzzy
263
+ msgid "Like Button Action"
264
  msgstr "Facebook gombok helye"
265
 
266
+ #: includes/class-fcbkbttn-settings.php:372
267
  msgid "Recommend"
268
  msgstr ""
269
 
270
+ #: includes/class-fcbkbttn-settings.php:378
271
+ msgid "Friends faces"
272
+ msgstr ""
273
+
274
+ #: includes/class-fcbkbttn-settings.php:381
275
+ msgid " Enable to show faces of your friends who submitted the button."
276
+ msgstr ""
277
 
278
+ #: includes/class-fcbkbttn-settings.php:385
279
+ msgid "Layout Width"
280
  msgstr ""
281
 
282
+ #: includes/class-fcbkbttn-settings.php:387
283
+ msgid "px"
284
  msgstr ""
285
 
286
+ #: includes/class-fcbkbttn-settings.php:391
287
+ msgid "Theme"
288
+ msgstr ""
289
+
290
+ #: includes/class-fcbkbttn-settings.php:396
291
  msgid "Light"
292
  msgstr ""
293
 
294
+ #: includes/class-fcbkbttn-settings.php:401
295
  msgid "Dark"
296
  msgstr ""
297
 
298
+ #: includes/class-fcbkbttn-settings.php:407
299
+ #, fuzzy
300
+ msgid "Like Button HTML Tag"
301
+ msgstr "Facebook gombok helye"
302
 
303
+ #: includes/class-fcbkbttn-settings.php:413
304
+ #, php-format
305
+ msgid "Tag %s can be used to improve website code validation."
306
+ msgstr ""
307
 
308
+ #: includes/class-fcbkbttn-settings.php:426
309
+ msgid "URL to Like"
310
+ msgstr ""
311
 
312
+ #: includes/class-fcbkbttn-settings.php:428
313
+ msgid "Leave blank to use a current page."
 
 
 
 
314
  msgstr ""
 
 
 
 
315
 
316
+ #: includes/class-fcbkbttn-settings.php:456
317
+ #, fuzzy
318
+ msgid "Facebook Buttons Shortchode"
319
+ msgstr "Facebook gombok helye"
320
+
321
+ #: includes/class-fcbkbttn-settings.php:459
322
+ msgid ""
323
+ "Add Facebook button(-s) to your posts, pages, custom post types or widgets "
324
+ "by using the following shortcode:"
325
+ msgstr ""
326
 
327
+ #: includes/class-fcbkbttn-settings.php:478
328
  #, fuzzy
329
+ msgid "Facebook Buttons Preview"
330
  msgstr "Facebook Gomb Beállítások"
331
 
332
+ #: includes/class-fcbkbttn-settings.php:493
333
+ #, fuzzy
334
+ msgid "Display Settings"
335
+ msgstr "Gomb megjelenítése"
336
+
337
+ #: includes/class-fcbkbttn-settings.php:502
338
  msgid ""
339
  "Please choose the necessary post types (or single pages) where Facebook "
340
  "button will be displayed:"
342
  "Kérjük válassza ki a szükséges bejegyzés típusokat (vagy egyedi oldalakat) "
343
  "ahol a Facebook gomb megjelenjen:"
344
 
345
+ #: includes/class-fcbkbttn-settings.php:509
346
  msgid "Show URL for pages"
347
  msgstr "URL megjelenítése oldalakon"
348
 
349
+ #: includes/class-fcbkbttn-settings.php:515
350
  msgid "Example of the site's pages tree"
351
  msgstr "Példa az oldal lap struktúrájának fájára"
352
 
353
+ #: includes/class-fcbkbttn-settings.php:515
354
  msgid "Example of site pages' tree"
355
  msgstr "Példa oldal lapjainak fa struktúrájára"
356
 
357
+ #~ msgid "All plugin settings were restored."
358
+ #~ msgstr "Minden plugin paraméter visszaállítva."
359
+
360
+ #~ msgid "Extra settings"
361
+ #~ msgstr "Extra beállítások"
362
+
363
+ #~ msgid "Go PRO"
364
+ #~ msgstr "PRO-ra váltás"
365
+
366
  #, fuzzy
367
+ #~ msgid ""
368
+ #~ "If you would like to add Facebook buttons to your page or post, please "
369
+ #~ "use %s button"
370
+ #~ msgstr ""
371
+ #~ "Ha az oldalához Facebook gombot szeretne adni, csak másolja be ezt a "
372
+ #~ "rövid kódot a bejegyzésbe vagy az oldalra:"
373
 
374
+ #~ msgid "My Page"
375
+ #~ msgstr "Oldalam"
 
376
 
377
+ #~ msgid "Before"
378
+ #~ msgstr "Előtte"
379
+
380
+ #~ msgid "After"
381
+ #~ msgstr "Utána"
382
+
383
+ #~ msgid "Shortcode"
384
+ #~ msgstr "Rövid kód"
385
+
386
+ #~ msgid "Facebook buttons language"
387
+ #~ msgstr "Facebook gomb nyelve"
388
+
389
+ #~ msgid "If you upgrade to Pro version all your settings will be saved."
390
+ #~ msgstr "Ha a PRO verzióra vált, minden paramétere el lesz mentve."
391
+
392
+ #, fuzzy
393
+ #~ msgid "Unlock premium options by upgrading to Pro version"
394
+ #~ msgstr "A prémium paramétereket elérheti a PRO változatra váltással."
395
+
396
+ #~ msgid "\"My page\" button image"
397
+ #~ msgstr "\"Oldalam\" gomb képe"
398
+
399
+ #~ msgid "Standard Facebook image"
400
+ #~ msgstr "Normál Facebook kép"
401
+
402
+ #~ msgid "Custom Facebook image"
403
+ #~ msgstr "Egyéni Facebook kép"
404
+
405
+ #, fuzzy
406
+ #~ msgid "Show faces"
407
+ #~ msgstr "URL megjelenítése oldalakon"
408
+
409
+ #~ msgid "Html tag for \"Like\" button"
410
+ #~ msgstr "A \"Like\" gomb html címkéje"
411
+
412
+ #~ msgid "Use this tag to improve validation of your site"
413
+ #~ msgstr "Használja ezt a címkét oldala minősítésének javításához"
414
+
415
+ #~ msgid "\"Like\" for an entire site on every page:"
416
+ #~ msgstr "\"Like\" a weboldal minden lapjára:"
417
+
418
+ #~ msgid ""
419
+ #~ "Notice: \"Like for the entire site\" option does not create an extra "
420
+ #~ "button. This option merely allows your users to like the entire website "
421
+ #~ "when this option is enabled, or a single post when this option is "
422
+ #~ "disabled, when clicking the regular \"Like\" button."
423
+ #~ msgstr ""
424
+ #~ "Megjegyzés: \"Like az egész oldalnak\" beállítás nem hoz létre extra "
425
+ #~ "gombot. Ez a beállítás csupán megengedi a felhasználóknak, hogy az egész "
426
+ #~ "oldalt kedveljék, ha ez a beállítás engedélyezett vagy egy egyedi "
427
+ #~ "bejegyzést, ha ez a beállítás kikapcsolt, ha a normál \"Like\" gombra "
428
+ #~ "kattintanak."
429
+
430
+ #~ msgid "Save Changes"
431
+ #~ msgstr "Változások mentése"
432
 
433
  #~ msgid "Notice:"
434
  #~ msgstr "Megjegyzés:"
languages/facebook-button-plugin-id_ID.mo CHANGED
Binary file
languages/facebook-button-plugin-id_ID.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: facebook-button-plugin\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2016-05-05 17:23+0300\n"
6
- "PO-Revision-Date: 2016-05-05 17:23+0300\n"
7
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: nasrulhaq <nasrulhaq81@gmail.com>\n"
9
  "Language: es_ES\n"
@@ -16,338 +16,376 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: facebook-button-plugin.php:34 facebook-button-plugin.php:294
 
20
  msgid "Facebook Button Settings"
21
  msgstr "Pengaturan Facebook Button"
22
 
23
- #: facebook-button-plugin.php:216
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
24
  msgid "Settings saved"
25
  msgstr "Simpan Pengaturan"
26
 
27
- #: facebook-button-plugin.php:242
28
  msgid "Error: File size > 32K"
29
  msgstr "SALAH: Ukuran file lebih besar dari 32KB"
30
 
31
- #: facebook-button-plugin.php:245
32
  msgid "Error: Invalid file type"
33
  msgstr "SALAH: Tipe data tidak benar"
34
 
35
- #: facebook-button-plugin.php:251
36
  msgid "Upload successful."
37
  msgstr ""
38
 
39
- #: facebook-button-plugin.php:261
40
- msgid "Error: moving file failed"
 
41
  msgstr "Salah: gagal memindahkan data"
42
 
43
- #: facebook-button-plugin.php:264
44
- msgid "Error: check image width or height"
 
45
  msgstr "Salah: periksa lebar atau panjang gambar"
46
 
47
- #: facebook-button-plugin.php:268
48
  msgid "Uploading Error: check image properties"
49
  msgstr "Gagal Mengunggah: periksa properti gambar"
50
 
51
- #: facebook-button-plugin.php:281
52
- msgid "All plugin settings were restored."
53
- msgstr ""
54
-
55
- #: facebook-button-plugin.php:296
56
- msgid "How to Use Step-by-step Instruction"
57
- msgstr ""
58
-
59
- #: facebook-button-plugin.php:299 facebook-button-plugin.php:861
60
- #: facebook-button-plugin.php:875
61
- msgid "Settings"
62
- msgstr "Pengaturan"
63
-
64
- #: facebook-button-plugin.php:300
65
  #, fuzzy
66
- msgid "Extra settings"
67
- msgstr "Pengaturan"
68
-
69
- #: facebook-button-plugin.php:301
70
- #, fuzzy
71
- msgid "Custom code"
72
- msgstr "Kustom Gambar Facebook "
73
-
74
- #: facebook-button-plugin.php:302
75
- msgid "Go PRO"
76
- msgstr ""
77
-
78
- #: facebook-button-plugin.php:305
79
- msgid "Please, enable JavaScript in Your browser."
80
- msgstr ""
81
-
82
- #: facebook-button-plugin.php:320
83
- #, fuzzy, php-format
84
- msgid ""
85
- "If you would like to add Facebook buttons to your page or post, please use "
86
- "%s button"
87
- msgstr ""
88
- "Jika anda ingin menambahkan tombol Facebook di website anda, cukup salin "
89
- "kode singkat kedalam posting atau page anda:"
90
 
91
- #: facebook-button-plugin.php:325
92
- #, php-format
93
- msgid ""
94
- "You can add Facebook buttons to your page or post by clicking on %s button "
95
- "in the content edit block using the Visual mode. If the button isn't "
96
- "displayed, please use the shortcode %s"
97
  msgstr ""
98
 
99
- #: facebook-button-plugin.php:336
100
  #, fuzzy
101
- msgid "Display button"
102
- msgstr "Tampilan tombol:"
103
 
104
- #: facebook-button-plugin.php:339
105
- msgid "My Page"
106
- msgstr "Halamanku"
107
 
108
- #: facebook-button-plugin.php:340 facebook-button-plugin.php:507
 
109
  msgid "Like"
110
  msgstr "Suka"
111
 
112
- #: facebook-button-plugin.php:341
113
  msgid "Share"
114
  msgstr ""
115
 
116
- #: facebook-button-plugin.php:346
117
  #, fuzzy
118
- msgid "Facebook buttons position"
119
  msgstr "Posisi Tombol Facebook"
120
 
121
- #: facebook-button-plugin.php:349
122
- msgid "Before"
123
- msgstr "Sebelum"
124
-
125
- #: facebook-button-plugin.php:350
126
- msgid "After"
127
- msgstr "Setelah"
128
-
129
- #: facebook-button-plugin.php:351
130
- msgid "Before and After"
131
  msgstr "Sebelum dan Setelah"
132
 
133
- #: facebook-button-plugin.php:352
134
- msgid "Shortcode"
135
- msgstr "Kode Pendek"
136
 
137
- #: facebook-button-plugin.php:357
138
- #, fuzzy
139
- msgid "Facebook buttons language"
140
- msgstr "Bahasa Facebook Button:"
141
 
142
- #: facebook-button-plugin.php:368
143
  #, fuzzy
144
- msgid "Change the language of Facebook Button"
145
  msgstr "Ubah bahasa Facebook Like Button"
146
 
147
- #: facebook-button-plugin.php:373 facebook-button-plugin.php:376
148
- #: facebook-button-plugin.php:381
149
- msgid "Use the current site language"
150
- msgstr ""
151
-
152
- #: facebook-button-plugin.php:373 facebook-button-plugin.php:377
153
- #: facebook-button-plugin.php:382
154
- msgid "Using"
155
  msgstr ""
156
 
157
- #: facebook-button-plugin.php:377
158
- #, fuzzy
159
- msgid "Activate"
160
  msgstr "Aktif Eklentiler"
161
 
162
- #: facebook-button-plugin.php:382
163
- msgid "Download"
164
- msgstr "Ä°ndir"
 
 
 
 
165
 
166
- #: facebook-button-plugin.php:389
167
  #, fuzzy
168
- msgid "Display buttons in excerpt"
169
  msgstr "Tampilan tombol:"
170
 
171
- #: facebook-button-plugin.php:399 facebook-button-plugin.php:548
172
- #: facebook-button-plugin.php:585
 
173
  msgid "Close"
174
  msgstr ""
175
 
176
- #: facebook-button-plugin.php:403
177
- msgid "Meta tags"
178
- msgstr ""
179
-
180
- #: facebook-button-plugin.php:406
181
- msgid "Image"
182
- msgstr ""
183
 
184
- #: facebook-button-plugin.php:409
185
  msgid "Featured Image"
186
  msgstr ""
187
 
188
- #: facebook-button-plugin.php:413
189
  #, fuzzy
190
  msgid "Custom Image"
191
  msgstr "Kustom Gambar Facebook "
192
 
193
- #: facebook-button-plugin.php:413
194
- msgid "This image will be used for all of the posts"
195
  msgstr ""
196
 
197
- #: facebook-button-plugin.php:423
198
- msgid "Description"
199
  msgstr ""
200
 
201
- #: facebook-button-plugin.php:426
202
- msgid "Post excerpt"
203
- msgstr ""
204
-
205
- #: facebook-button-plugin.php:431
206
- msgid "This description will be used for all of the posts"
207
- msgstr ""
208
-
209
- #: facebook-button-plugin.php:438 facebook-button-plugin.php:559
210
- #: facebook-button-plugin.php:637
211
- msgid "If you upgrade to Pro version all your settings will be saved."
212
- msgstr ""
213
-
214
- #: facebook-button-plugin.php:445 facebook-button-plugin.php:566
215
- #: facebook-button-plugin.php:594 facebook-button-plugin.php:644
216
- msgid "Unlock premium options by upgrading to Pro version"
217
  msgstr ""
218
 
219
- #: facebook-button-plugin.php:447 facebook-button-plugin.php:568
220
- #: facebook-button-plugin.php:596 facebook-button-plugin.php:646
221
- msgid "Learn More"
222
  msgstr ""
223
 
224
- #: facebook-button-plugin.php:455
225
  #, fuzzy
226
- msgid "Your Facebook ID or username"
227
  msgstr " ID Facebook:"
228
 
229
- #: facebook-button-plugin.php:462
230
- msgid "\"My page\" button image"
231
  msgstr ""
232
 
233
- #: facebook-button-plugin.php:467
234
- msgid "Standard Facebook image"
235
- msgstr "Standar gambar Facebook "
236
 
237
- #: facebook-button-plugin.php:468
238
- msgid "Custom Facebook image"
 
239
  msgstr "Kustom Gambar Facebook "
240
 
241
- #: facebook-button-plugin.php:471
242
  msgid ""
243
- "To use custom image you need to setup permissions to upload directory of "
244
  "your site"
245
  msgstr ""
246
 
247
- #: facebook-button-plugin.php:478
248
  #, fuzzy
249
  msgid "Current image"
250
  msgstr "Gambar tertentu:"
251
 
252
- #: facebook-button-plugin.php:486
 
253
  msgid ""
254
- "Image properties: max image width:100px; max image height:40px; max image "
255
  "size:32Kb; image types:\"jpg\", \"jpeg\", \"png\"."
256
  msgstr ""
257
  "properti gambar: lebar gambar maks:100px; panjang gambar maks:40px; ukuran "
258
  "gambar maks:32Kb; tipe gambar:\"jpg\",\"jpeg\", \"png\"."
259
 
260
- #: facebook-button-plugin.php:490
261
- msgid "Button layout"
 
 
 
 
262
  msgstr ""
263
 
264
- #: facebook-button-plugin.php:504
265
- msgid "Like button action"
266
  msgstr ""
267
 
268
- #: facebook-button-plugin.php:508
269
  msgid "Recommend"
270
  msgstr ""
271
 
272
- #: facebook-button-plugin.php:513
273
- msgid "Show faces"
274
  msgstr ""
275
 
276
- #: facebook-button-plugin.php:519
277
- msgid "Layout width"
278
  msgstr ""
279
 
280
- #: facebook-button-plugin.php:525
281
- msgid "Color scheme"
282
  msgstr ""
283
 
284
- #: facebook-button-plugin.php:528
 
 
 
 
 
 
 
 
285
  msgid "Light"
286
  msgstr ""
287
 
288
- #: facebook-button-plugin.php:529
289
  msgid "Dark"
290
  msgstr ""
291
 
292
- #: facebook-button-plugin.php:534
293
- msgid "Html tag for \"Like\" button"
294
  msgstr ""
295
 
296
- #: facebook-button-plugin.php:539
297
- msgid "Use this tag to improve validation of your site"
 
298
  msgstr ""
299
 
300
- #: facebook-button-plugin.php:552
301
- msgid "\"Like\" for an entire site on every page:"
302
  msgstr ""
303
 
304
- #: facebook-button-plugin.php:554
305
- msgid ""
306
- "Notice: \"Like for the entire site\" option does not create an extra button. "
307
- "This option merely allows your users to like the entire website when this "
308
- "option is enabled, or a single post when this option is disabled, when "
309
- "clicking the regular \"Like\" button."
310
  msgstr ""
311
 
312
- #: facebook-button-plugin.php:576 facebook-button-plugin.php:632
313
- msgid "Save Changes"
314
- msgstr "Simpan Perubahan"
 
 
 
 
 
 
 
315
 
316
- #: facebook-button-plugin.php:588
317
  #, fuzzy
318
- msgid "Facebook Button preview:"
319
  msgstr "Tombol Facebook"
320
 
321
- #: facebook-button-plugin.php:614
 
 
 
 
 
322
  msgid ""
323
  "Please choose the necessary post types (or single pages) where Facebook "
324
  "button will be displayed:"
325
  msgstr ""
326
 
327
- #: facebook-button-plugin.php:621
328
  msgid "Show URL for pages"
329
  msgstr ""
330
 
331
- #: facebook-button-plugin.php:627
332
  msgid "Example of the site's pages tree"
333
  msgstr ""
334
 
335
- #: facebook-button-plugin.php:627
336
  msgid "Example of site pages' tree"
337
  msgstr ""
338
 
339
- #: facebook-button-plugin.php:765
340
  #, fuzzy
341
- msgid "Add Facebook buttons to your page or post"
342
- msgstr "Posisi Tombol Facebook"
343
 
344
- #: facebook-button-plugin.php:876
345
- msgid "FAQ"
346
- msgstr "SSS (Sık Sorulan Sorular)"
 
 
 
 
347
 
348
- #: facebook-button-plugin.php:877
349
- msgid "Support"
350
- msgstr "Dukungan"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
351
 
352
  #, fuzzy
353
  #~ msgid "Yes, restore all settings"
2
  msgstr ""
3
  "Project-Id-Version: facebook-button-plugin\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-01-26 11:25+0300\n"
6
+ "PO-Revision-Date: 2017-01-26 11:25+0300\n"
7
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: nasrulhaq <nasrulhaq81@gmail.com>\n"
9
  "Language: es_ES\n"
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: facebook-button-plugin.php:35 facebook-button-plugin.php:36
20
+ #: facebook-button-plugin.php:201
21
  msgid "Facebook Button Settings"
22
  msgstr "Pengaturan Facebook Button"
23
 
24
+ #: facebook-button-plugin.php:36 facebook-button-plugin.php:405
25
+ #: facebook-button-plugin.php:419 includes/class-fcbkbttn-settings.php:23
26
+ msgid "Settings"
27
+ msgstr "Pengaturan"
28
+
29
+ #: facebook-button-plugin.php:42
30
+ msgid "Upgrade to Pro"
31
+ msgstr ""
32
+
33
+ #: facebook-button-plugin.php:202
34
+ msgid "Please, enable JavaScript in Your browser."
35
+ msgstr ""
36
+
37
+ #: facebook-button-plugin.php:298
38
+ #, fuzzy
39
+ msgid "Add Facebook buttons to your page or post"
40
+ msgstr "Posisi Tombol Facebook"
41
+
42
+ #: facebook-button-plugin.php:420
43
+ msgid "FAQ"
44
+ msgstr "SSS (Sık Sorulan Sorular)"
45
+
46
+ #: facebook-button-plugin.php:421
47
+ msgid "Support"
48
+ msgstr "Dukungan"
49
+
50
+ #: includes/class-fcbkbttn-settings.php:25
51
+ #, fuzzy
52
+ msgid "Display"
53
+ msgstr "Tampilan tombol:"
54
+
55
+ #: includes/class-fcbkbttn-settings.php:27
56
+ msgid "Misc"
57
+ msgstr ""
58
+
59
+ #: includes/class-fcbkbttn-settings.php:28
60
+ #, fuzzy
61
+ msgid "Custom Code"
62
+ msgstr "Kustom Gambar Facebook "
63
+
64
+ #: includes/class-fcbkbttn-settings.php:30
65
+ msgid "License Key"
66
+ msgstr ""
67
+
68
+ #: includes/class-fcbkbttn-settings.php:95
69
  msgid "Settings saved"
70
  msgstr "Simpan Pengaturan"
71
 
72
+ #: includes/class-fcbkbttn-settings.php:124
73
  msgid "Error: File size > 32K"
74
  msgstr "SALAH: Ukuran file lebih besar dari 32KB"
75
 
76
+ #: includes/class-fcbkbttn-settings.php:127
77
  msgid "Error: Invalid file type"
78
  msgstr "SALAH: Tipe data tidak benar"
79
 
80
+ #: includes/class-fcbkbttn-settings.php:133
81
  msgid "Upload successful."
82
  msgstr ""
83
 
84
+ #: includes/class-fcbkbttn-settings.php:143
85
+ #, fuzzy
86
+ msgid "Error: failed to move file."
87
  msgstr "Salah: gagal memindahkan data"
88
 
89
+ #: includes/class-fcbkbttn-settings.php:146
90
+ #, fuzzy
91
+ msgid "Error: check image width or height."
92
  msgstr "Salah: periksa lebar atau panjang gambar"
93
 
94
+ #: includes/class-fcbkbttn-settings.php:150
95
  msgid "Uploading Error: check image properties"
96
  msgstr "Gagal Mengunggah: periksa properti gambar"
97
 
98
+ #: includes/class-fcbkbttn-settings.php:171
 
 
 
 
 
 
 
 
 
 
 
 
 
99
  #, fuzzy
100
+ msgid "Facebook button Settings"
101
+ msgstr "Pengaturan Facebook Button"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
102
 
103
+ #: includes/class-fcbkbttn-settings.php:174
104
+ msgid "General"
 
 
 
 
105
  msgstr ""
106
 
107
+ #: includes/class-fcbkbttn-settings.php:177
108
  #, fuzzy
109
+ msgid "Buttons"
110
+ msgstr "Posisi Tombol Facebook"
111
 
112
+ #: includes/class-fcbkbttn-settings.php:180
113
+ msgid "Profile URL"
114
+ msgstr ""
115
 
116
+ #: includes/class-fcbkbttn-settings.php:181
117
+ #: includes/class-fcbkbttn-settings.php:367
118
  msgid "Like"
119
  msgstr "Suka"
120
 
121
+ #: includes/class-fcbkbttn-settings.php:182
122
  msgid "Share"
123
  msgstr ""
124
 
125
+ #: includes/class-fcbkbttn-settings.php:187
126
  #, fuzzy
127
+ msgid "Buttons Position"
128
  msgstr "Posisi Tombol Facebook"
129
 
130
+ #: includes/class-fcbkbttn-settings.php:192
131
+ #, fuzzy
132
+ msgid "Before content"
 
 
 
 
 
 
 
133
  msgstr "Sebelum dan Setelah"
134
 
135
+ #: includes/class-fcbkbttn-settings.php:197
136
+ msgid "After content"
137
+ msgstr ""
138
 
139
+ #: includes/class-fcbkbttn-settings.php:203
140
+ msgid "Language"
141
+ msgstr ""
 
142
 
143
+ #: includes/class-fcbkbttn-settings.php:214
144
  #, fuzzy
145
+ msgid "Select the default language for Facebook button(-s)."
146
  msgstr "Ubah bahasa Facebook Like Button"
147
 
148
+ #: includes/class-fcbkbttn-settings.php:223
149
+ #: includes/class-fcbkbttn-settings.php:226
150
+ #: includes/class-fcbkbttn-settings.php:230
151
+ msgid ""
152
+ "Enable to switch language automatically on multilingual website using "
153
+ "Multilanguage plugin."
 
 
154
  msgstr ""
155
 
156
+ #: includes/class-fcbkbttn-settings.php:226
157
+ #, fuzzy, php-format
158
+ msgid "Activate %s"
159
  msgstr "Aktif Eklentiler"
160
 
161
+ #: includes/class-fcbkbttn-settings.php:230
162
+ msgid "Learn More"
163
+ msgstr ""
164
+
165
+ #: includes/class-fcbkbttn-settings.php:235
166
+ msgid "Excerpt"
167
+ msgstr ""
168
 
169
+ #: includes/class-fcbkbttn-settings.php:237
170
  #, fuzzy
171
+ msgid "Enable to display buttons in excerpt."
172
  msgstr "Tampilan tombol:"
173
 
174
+ #: includes/class-fcbkbttn-settings.php:246
175
+ #: includes/class-fcbkbttn-settings.php:422
176
+ #: includes/class-fcbkbttn-settings.php:477
177
  msgid "Close"
178
  msgstr ""
179
 
180
+ #: includes/class-fcbkbttn-settings.php:250
181
+ #, fuzzy
182
+ msgid "Meta Image"
183
+ msgstr "Kustom Gambar Facebook "
 
 
 
184
 
185
+ #: includes/class-fcbkbttn-settings.php:255
186
  msgid "Featured Image"
187
  msgstr ""
188
 
189
+ #: includes/class-fcbkbttn-settings.php:259
190
  #, fuzzy
191
  msgid "Custom Image"
192
  msgstr "Kustom Gambar Facebook "
193
 
194
+ #: includes/class-fcbkbttn-settings.php:259
195
+ msgid "This image will be used for all posts"
196
  msgstr ""
197
 
198
+ #: includes/class-fcbkbttn-settings.php:266
199
+ msgid "Meta Description"
200
  msgstr ""
201
 
202
+ #: includes/class-fcbkbttn-settings.php:270
203
+ msgid ""
204
+ "This description will be used for all pages and posts. Leave blank to use "
205
+ "page description."
 
 
 
 
 
 
 
 
 
 
 
 
206
  msgstr ""
207
 
208
+ #: includes/class-fcbkbttn-settings.php:279
209
+ msgid "Profile URL Button"
 
210
  msgstr ""
211
 
212
+ #: includes/class-fcbkbttn-settings.php:282
213
  #, fuzzy
214
+ msgid "Facebook ID or Username"
215
  msgstr " ID Facebook:"
216
 
217
+ #: includes/class-fcbkbttn-settings.php:289
218
+ msgid "Profile Button Image"
219
  msgstr ""
220
 
221
+ #: includes/class-fcbkbttn-settings.php:296
222
+ msgid "Default"
223
+ msgstr ""
224
 
225
+ #: includes/class-fcbkbttn-settings.php:301
226
+ #, fuzzy
227
+ msgid "Custom image"
228
  msgstr "Kustom Gambar Facebook "
229
 
230
+ #: includes/class-fcbkbttn-settings.php:305
231
  msgid ""
232
+ "To use custom image, You need to setup permissions for upload directory of "
233
  "your site"
234
  msgstr ""
235
 
236
+ #: includes/class-fcbkbttn-settings.php:312
237
  #, fuzzy
238
  msgid "Current image"
239
  msgstr "Gambar tertentu:"
240
 
241
+ #: includes/class-fcbkbttn-settings.php:320
242
+ #, fuzzy
243
  msgid ""
244
+ "Image requirements: max image width:100px; max image height:40px; max image "
245
  "size:32Kb; image types:\"jpg\", \"jpeg\", \"png\"."
246
  msgstr ""
247
  "properti gambar: lebar gambar maks:100px; panjang gambar maks:40px; ukuran "
248
  "gambar maks:32Kb; tipe gambar:\"jpg\",\"jpeg\", \"png\"."
249
 
250
+ #: includes/class-fcbkbttn-settings.php:324
251
+ msgid "Like&Share Buttons"
252
+ msgstr ""
253
+
254
+ #: includes/class-fcbkbttn-settings.php:327
255
+ msgid "Layout"
256
  msgstr ""
257
 
258
+ #: includes/class-fcbkbttn-settings.php:362
259
+ msgid "Like Button Action"
260
  msgstr ""
261
 
262
+ #: includes/class-fcbkbttn-settings.php:372
263
  msgid "Recommend"
264
  msgstr ""
265
 
266
+ #: includes/class-fcbkbttn-settings.php:378
267
+ msgid "Friends faces"
268
  msgstr ""
269
 
270
+ #: includes/class-fcbkbttn-settings.php:381
271
+ msgid " Enable to show faces of your friends who submitted the button."
272
  msgstr ""
273
 
274
+ #: includes/class-fcbkbttn-settings.php:385
275
+ msgid "Layout Width"
276
  msgstr ""
277
 
278
+ #: includes/class-fcbkbttn-settings.php:387
279
+ msgid "px"
280
+ msgstr ""
281
+
282
+ #: includes/class-fcbkbttn-settings.php:391
283
+ msgid "Theme"
284
+ msgstr ""
285
+
286
+ #: includes/class-fcbkbttn-settings.php:396
287
  msgid "Light"
288
  msgstr ""
289
 
290
+ #: includes/class-fcbkbttn-settings.php:401
291
  msgid "Dark"
292
  msgstr ""
293
 
294
+ #: includes/class-fcbkbttn-settings.php:407
295
+ msgid "Like Button HTML Tag"
296
  msgstr ""
297
 
298
+ #: includes/class-fcbkbttn-settings.php:413
299
+ #, php-format
300
+ msgid "Tag %s can be used to improve website code validation."
301
  msgstr ""
302
 
303
+ #: includes/class-fcbkbttn-settings.php:426
304
+ msgid "URL to Like"
305
  msgstr ""
306
 
307
+ #: includes/class-fcbkbttn-settings.php:428
308
+ msgid "Leave blank to use a current page."
 
 
 
 
309
  msgstr ""
310
 
311
+ #: includes/class-fcbkbttn-settings.php:456
312
+ #, fuzzy
313
+ msgid "Facebook Buttons Shortchode"
314
+ msgstr "Posisi Tombol Facebook"
315
+
316
+ #: includes/class-fcbkbttn-settings.php:459
317
+ msgid ""
318
+ "Add Facebook button(-s) to your posts, pages, custom post types or widgets "
319
+ "by using the following shortcode:"
320
+ msgstr ""
321
 
322
+ #: includes/class-fcbkbttn-settings.php:478
323
  #, fuzzy
324
+ msgid "Facebook Buttons Preview"
325
  msgstr "Tombol Facebook"
326
 
327
+ #: includes/class-fcbkbttn-settings.php:493
328
+ #, fuzzy
329
+ msgid "Display Settings"
330
+ msgstr "Tampilan tombol:"
331
+
332
+ #: includes/class-fcbkbttn-settings.php:502
333
  msgid ""
334
  "Please choose the necessary post types (or single pages) where Facebook "
335
  "button will be displayed:"
336
  msgstr ""
337
 
338
+ #: includes/class-fcbkbttn-settings.php:509
339
  msgid "Show URL for pages"
340
  msgstr ""
341
 
342
+ #: includes/class-fcbkbttn-settings.php:515
343
  msgid "Example of the site's pages tree"
344
  msgstr ""
345
 
346
+ #: includes/class-fcbkbttn-settings.php:515
347
  msgid "Example of site pages' tree"
348
  msgstr ""
349
 
 
350
  #, fuzzy
351
+ #~ msgid "Extra settings"
352
+ #~ msgstr "Pengaturan"
353
 
354
+ #, fuzzy
355
+ #~ msgid ""
356
+ #~ "If you would like to add Facebook buttons to your page or post, please "
357
+ #~ "use %s button"
358
+ #~ msgstr ""
359
+ #~ "Jika anda ingin menambahkan tombol Facebook di website anda, cukup salin "
360
+ #~ "kode singkat kedalam posting atau page anda:"
361
 
362
+ #~ msgid "My Page"
363
+ #~ msgstr "Halamanku"
364
+
365
+ #~ msgid "Before"
366
+ #~ msgstr "Sebelum"
367
+
368
+ #~ msgid "After"
369
+ #~ msgstr "Setelah"
370
+
371
+ #~ msgid "Shortcode"
372
+ #~ msgstr "Kode Pendek"
373
+
374
+ #, fuzzy
375
+ #~ msgid "Facebook buttons language"
376
+ #~ msgstr "Bahasa Facebook Button:"
377
+
378
+ #~ msgid "Download"
379
+ #~ msgstr "Ä°ndir"
380
+
381
+ #~ msgid "Standard Facebook image"
382
+ #~ msgstr "Standar gambar Facebook "
383
+
384
+ #~ msgid "Custom Facebook image"
385
+ #~ msgstr "Kustom Gambar Facebook "
386
+
387
+ #~ msgid "Save Changes"
388
+ #~ msgstr "Simpan Perubahan"
389
 
390
  #, fuzzy
391
  #~ msgid "Yes, restore all settings"
languages/facebook-button-plugin-ru_RU.mo CHANGED
Binary file
languages/facebook-button-plugin-ru_RU.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: facebook-button-plugin\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2016-05-05 17:23+0300\n"
6
- "PO-Revision-Date: 2016-11-14 11:18+0300\n"
7
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: BestWebSoft <plugin@bestwebsoft.com>\n"
9
  "Language: ru_RU\n"
@@ -16,336 +16,428 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: facebook-button-plugin.php:34 facebook-button-plugin.php:294
 
20
  msgid "Facebook Button Settings"
21
  msgstr "Настройки Facebook Button"
22
 
23
- #: facebook-button-plugin.php:216
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
24
  msgid "Settings saved"
25
  msgstr "Настройки сохранены"
26
 
27
- #: facebook-button-plugin.php:242
28
  msgid "Error: File size > 32K"
29
  msgstr "Ошибка: Размер файла > 32К"
30
 
31
- #: facebook-button-plugin.php:245
32
  msgid "Error: Invalid file type"
33
  msgstr "Ошибка: Некорректный тип файла"
34
 
35
- #: facebook-button-plugin.php:251
36
  msgid "Upload successful."
37
  msgstr "Загрузка прошла удачно."
38
 
39
- #: facebook-button-plugin.php:261
40
- msgid "Error: moving file failed"
41
- msgstr "Ошибка: При перемещении произошла ошибка"
42
 
43
- #: facebook-button-plugin.php:264
44
- msgid "Error: check image width or height"
45
- msgstr "Ошибка: Проверьте ширину и высоту изображения"
46
 
47
- #: facebook-button-plugin.php:268
48
  msgid "Uploading Error: check image properties"
49
  msgstr "Ошибка загрузки: Проверьте опции изображения"
50
 
51
- #: facebook-button-plugin.php:281
52
- msgid "All plugin settings were restored."
53
- msgstr "Все настройки плагина восстановлены."
54
 
55
- #: facebook-button-plugin.php:296
56
- msgid "How to Use Step-by-step Instruction"
57
- msgstr "Инструкция по использованию"
58
 
59
- #: facebook-button-plugin.php:299 facebook-button-plugin.php:861
60
- #: facebook-button-plugin.php:875
61
- msgid "Settings"
62
- msgstr "Настройки"
63
-
64
- #: facebook-button-plugin.php:300
65
- msgid "Extra settings"
66
- msgstr "Дополнительные настройки"
67
 
68
- #: facebook-button-plugin.php:301
69
- msgid "Custom code"
70
- msgstr "Пользовательский код"
71
-
72
- #: facebook-button-plugin.php:302
73
- msgid "Go PRO"
74
- msgstr "Перейти на PRO версию"
75
 
76
- #: facebook-button-plugin.php:305
77
- msgid "Please, enable JavaScript in Your browser."
78
- msgstr "Пожалуйста, включите поддержку JavaScript в вашем браузере."
79
-
80
- #: facebook-button-plugin.php:320
81
- #, php-format
82
- msgid ""
83
- "If you would like to add Facebook buttons to your page or post, please use "
84
- "%s button"
85
- msgstr ""
86
- "Если вы хотите добавить Facebook кнопки на вашу страницу или пост, то "
87
- "используйте кнопку %s"
88
-
89
- #: facebook-button-plugin.php:325
90
- #, php-format
91
- msgid ""
92
- "You can add Facebook buttons to your page or post by clicking on %s button "
93
- "in the content edit block using the Visual mode. If the button isn't "
94
- "displayed, please use the shortcode %s"
95
- msgstr ""
96
- "Вы можете добавить Facebook кнопки на вашу страницу или пост, нажав на "
97
- "кнопку %s в блоке редактирования контента в режиме Visual. Если кнопка не "
98
- "отображается, пожалуйста, используйте шорткод %s"
99
-
100
- #: facebook-button-plugin.php:336
101
- msgid "Display button"
102
- msgstr "Отображение кнопок"
103
-
104
- #: facebook-button-plugin.php:339
105
- msgid "My Page"
106
- msgstr "Моя страница"
107
-
108
- #: facebook-button-plugin.php:340 facebook-button-plugin.php:507
109
  msgid "Like"
110
- msgstr "Нравиться"
111
 
112
- #: facebook-button-plugin.php:341
113
  msgid "Share"
114
  msgstr "Поделиться"
115
 
116
- #: facebook-button-plugin.php:346
117
- msgid "Facebook buttons position"
118
- msgstr "Позиции Facebook кнопки"
119
-
120
- #: facebook-button-plugin.php:349
121
- msgid "Before"
122
- msgstr "Перед"
123
 
124
- #: facebook-button-plugin.php:350
125
- msgid "After"
126
- msgstr "После"
127
 
128
- #: facebook-button-plugin.php:351
129
- msgid "Before and After"
130
- msgstr "Перед и после"
131
 
132
- #: facebook-button-plugin.php:352
133
- msgid "Shortcode"
134
- msgstr "Шорткод"
135
 
136
- #: facebook-button-plugin.php:357
137
- msgid "Facebook buttons language"
138
- msgstr "Язык для Facebook кнопки"
139
 
140
- #: facebook-button-plugin.php:368
141
- msgid "Change the language of Facebook Button"
142
- msgstr "Выберите язык для Facebook кнопок"
143
-
144
- #: facebook-button-plugin.php:373 facebook-button-plugin.php:376
145
- #: facebook-button-plugin.php:381
146
- msgid "Use the current site language"
147
- msgstr "Использовать текущий язык сайта"
 
148
 
149
- #: facebook-button-plugin.php:373 facebook-button-plugin.php:377
150
- #: facebook-button-plugin.php:382
151
- msgid "Using"
152
- msgstr "Используя"
153
 
154
- #: facebook-button-plugin.php:377
155
- msgid "Activate"
156
- msgstr "Активировать"
157
 
158
- #: facebook-button-plugin.php:382
159
- msgid "Download"
160
- msgstr "Загрузить"
161
 
162
- #: facebook-button-plugin.php:389
163
- msgid "Display buttons in excerpt"
164
- msgstr "Отображать кнопки для цитаты"
165
 
166
- #: facebook-button-plugin.php:399 facebook-button-plugin.php:548
167
- #: facebook-button-plugin.php:585
 
168
  msgid "Close"
169
  msgstr "Закрыть"
170
 
171
- #: facebook-button-plugin.php:403
172
- msgid "Meta tags"
173
- msgstr "Мета теги"
174
-
175
- #: facebook-button-plugin.php:406
176
- msgid "Image"
177
- msgstr "Изображение"
178
 
179
- #: facebook-button-plugin.php:409
180
  msgid "Featured Image"
181
  msgstr "Миниатюра записи"
182
 
183
- #: facebook-button-plugin.php:413
184
  msgid "Custom Image"
185
  msgstr "Пользовательское изображение"
186
 
187
- #: facebook-button-plugin.php:413
188
- msgid "This image will be used for all of the posts"
189
- msgstr "Это изображение будет использоваться для всех постов"
190
-
191
- #: facebook-button-plugin.php:423
192
- msgid "Description"
193
- msgstr "Краткое описание"
194
-
195
- #: facebook-button-plugin.php:426
196
- msgid "Post excerpt"
197
- msgstr "Цитата"
198
-
199
- #: facebook-button-plugin.php:431
200
- msgid "This description will be used for all of the posts"
201
- msgstr "Это краткое описание будет использоваться для всех постов"
202
 
203
- #: facebook-button-plugin.php:438 facebook-button-plugin.php:559
204
- #: facebook-button-plugin.php:637
205
- msgid "If you upgrade to Pro version all your settings will be saved."
206
- msgstr "При установке Pro версии плагина, все ваши настройки сохраняются."
207
 
208
- #: facebook-button-plugin.php:445 facebook-button-plugin.php:566
209
- #: facebook-button-plugin.php:594 facebook-button-plugin.php:644
210
- msgid "Unlock premium options by upgrading to Pro version"
211
- msgstr "Активируйте премиум опции обновившись до Pro версии"
 
 
 
212
 
213
- #: facebook-button-plugin.php:447 facebook-button-plugin.php:568
214
- #: facebook-button-plugin.php:596 facebook-button-plugin.php:646
215
- msgid "Learn More"
216
- msgstr "Подробнее"
217
 
218
- #: facebook-button-plugin.php:455
219
- msgid "Your Facebook ID or username"
220
- msgstr "Ваш Facebook ID или имя пользователя"
221
 
222
- #: facebook-button-plugin.php:462
223
- msgid "\"My page\" button image"
224
- msgstr "Изображение кнопки \"Моя страница\""
225
 
226
- #: facebook-button-plugin.php:467
227
- msgid "Standard Facebook image"
228
- msgstr "Стандартная картинка Facebook"
229
 
230
- #: facebook-button-plugin.php:468
231
- msgid "Custom Facebook image"
232
- msgstr "Пользовательская картинка Facebook"
233
 
234
- #: facebook-button-plugin.php:471
235
  msgid ""
236
- "To use custom image you need to setup permissions to upload directory of "
237
  "your site"
238
  msgstr ""
239
- "Для использования кастомного изображения Вам нужно выдать права доступа на "
240
- "папку загрузок на вашем сайте"
241
 
242
- #: facebook-button-plugin.php:478
243
  msgid "Current image"
244
  msgstr "Текущее изображение"
245
 
246
- #: facebook-button-plugin.php:486
247
  msgid ""
248
- "Image properties: max image width:100px; max image height:40px; max image "
249
  "size:32Kb; image types:\"jpg\", \"jpeg\", \"png\"."
250
  msgstr ""
251
- "Опции изображения для загрузки: максимальная ширина:100px; максимальная "
252
  "высота:40px; максимальный размер:32Kb; тип файла:\"jpg\", \"jpeg\", \"png\"."
253
 
254
- #: facebook-button-plugin.php:490
255
- msgid "Button layout"
256
- msgstr "Вид кнопок"
 
 
 
 
257
 
258
- #: facebook-button-plugin.php:504
259
- msgid "Like button action"
260
- msgstr "Действие кнопки \"Like\""
261
 
262
- #: facebook-button-plugin.php:508
263
  msgid "Recommend"
264
  msgstr "Рекомендую"
265
 
266
- #: facebook-button-plugin.php:513
267
- msgid "Show faces"
268
- msgstr "Показать лица"
 
 
 
 
269
 
270
- #: facebook-button-plugin.php:519
271
- msgid "Layout width"
272
  msgstr "Ширина блока"
273
 
274
- #: facebook-button-plugin.php:525
275
- msgid "Color scheme"
276
- msgstr "Цветовая схема"
277
 
278
- #: facebook-button-plugin.php:528
 
 
 
 
279
  msgid "Light"
280
  msgstr "Светлая"
281
 
282
- #: facebook-button-plugin.php:529
283
  msgid "Dark"
284
  msgstr "Тёмная"
285
 
286
- #: facebook-button-plugin.php:534
287
- msgid "Html tag for \"Like\" button"
288
- msgstr "Html тег для кнопки \"Нравиться\""
 
 
 
 
 
 
 
 
 
289
 
290
- #: facebook-button-plugin.php:539
291
- msgid "Use this tag to improve validation of your site"
292
- msgstr "Используйте этот тег для лучшей валидации вашего сайта"
293
 
294
- #: facebook-button-plugin.php:552
295
- msgid "\"Like\" for an entire site on every page:"
296
- msgstr "Ставить \"Нравиться\" всему сайту на каждой странице:"
297
 
298
- #: facebook-button-plugin.php:554
299
  msgid ""
300
- "Notice: \"Like for the entire site\" option does not create an extra button. "
301
- "This option merely allows your users to like the entire website when this "
302
- "option is enabled, or a single post when this option is disabled, when "
303
- "clicking the regular \"Like\" button."
304
  msgstr ""
305
- "Внимание: опция \"Нравиться для всего сайта\" - не создает дополнительную "
306
- "кнопку. Эта опция позволяет при клике пользователями на стандартную кнопку "
307
- "ставить \"Нравиться\" для всего сайта, если эта опция включена, или "
308
- "\"Нравиться\" для отдельной записи, когда эта опция выключена."
309
-
310
- #: facebook-button-plugin.php:576 facebook-button-plugin.php:632
311
- msgid "Save Changes"
312
- msgstr "Сохранить изменения"
313
 
314
- #: facebook-button-plugin.php:588
315
- msgid "Facebook Button preview:"
316
  msgstr "Предварительный просмотр Facebook кнопок"
317
 
318
- #: facebook-button-plugin.php:614
 
 
 
 
319
  msgid ""
320
  "Please choose the necessary post types (or single pages) where Facebook "
321
  "button will be displayed:"
322
  msgstr ""
323
- "Пожалуйста, выберите те типы постов (или отдельные страницы), где будут "
324
  "отображаться кнопки Facebook:"
325
 
326
- #: facebook-button-plugin.php:621
327
  msgid "Show URL for pages"
328
  msgstr "Отображать URL для страниц"
329
 
330
- #: facebook-button-plugin.php:627
331
  msgid "Example of the site's pages tree"
332
  msgstr "Пример дерева страниц сайта"
333
 
334
- #: facebook-button-plugin.php:627
335
  msgid "Example of site pages' tree"
336
  msgstr "Пример дерева страниц сайта"
337
 
338
- #: facebook-button-plugin.php:765
339
- msgid "Add Facebook buttons to your page or post"
340
- msgstr "Добавить Facebook кнопки на вашу страницу или пост"
341
 
342
- #: facebook-button-plugin.php:876
343
- msgid "FAQ"
344
- msgstr "FAQ"
345
 
346
- #: facebook-button-plugin.php:877
347
- msgid "Support"
348
- msgstr "Поддержка"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
349
 
350
  #~ msgid "None"
351
  #~ msgstr "Не использовать"
@@ -408,9 +500,6 @@ msgstr "Поддержка"
408
  #~ msgid "Plugins page"
409
  #~ msgstr "Страницу плагинов"
410
 
411
- #~ msgid "Wrong license key"
412
- #~ msgstr "Неправильный лицензионный ключ"
413
-
414
  #~ msgid ""
415
  #~ "Something went wrong. Try again later. If the error will appear again, "
416
  #~ "please, contact us <a href=http://support.bestwebsoft.com>BestWebSoft</"
2
  msgstr ""
3
  "Project-Id-Version: facebook-button-plugin\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-01-26 11:25+0300\n"
6
+ "PO-Revision-Date: 2017-01-26 11:26+0300\n"
7
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: BestWebSoft <plugin@bestwebsoft.com>\n"
9
  "Language: ru_RU\n"
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: facebook-button-plugin.php:35 facebook-button-plugin.php:36
20
+ #: facebook-button-plugin.php:201
21
  msgid "Facebook Button Settings"
22
  msgstr "Настройки Facebook Button"
23
 
24
+ #: facebook-button-plugin.php:36 facebook-button-plugin.php:405
25
+ #: facebook-button-plugin.php:419 includes/class-fcbkbttn-settings.php:23
26
+ msgid "Settings"
27
+ msgstr "Настройки"
28
+
29
+ #: facebook-button-plugin.php:42
30
+ msgid "Upgrade to Pro"
31
+ msgstr "Обновиться до Pro"
32
+
33
+ #: facebook-button-plugin.php:202
34
+ msgid "Please, enable JavaScript in Your browser."
35
+ msgstr "Пожалуйста, включите поддержку JavaScript в вашем браузере."
36
+
37
+ #: facebook-button-plugin.php:298
38
+ msgid "Add Facebook buttons to your page or post"
39
+ msgstr "Добавить Facebook кнопки на вашу страницу или запись"
40
+
41
+ #: facebook-button-plugin.php:420
42
+ msgid "FAQ"
43
+ msgstr "FAQ"
44
+
45
+ #: facebook-button-plugin.php:421
46
+ msgid "Support"
47
+ msgstr "Поддержка"
48
+
49
+ #: includes/class-fcbkbttn-settings.php:25
50
+ msgid "Display"
51
+ msgstr "Отображение"
52
+
53
+ #: includes/class-fcbkbttn-settings.php:27
54
+ msgid "Misc"
55
+ msgstr "Разное"
56
+
57
+ #: includes/class-fcbkbttn-settings.php:28
58
+ msgid "Custom Code"
59
+ msgstr "Пользовательский код"
60
+
61
+ #: includes/class-fcbkbttn-settings.php:30
62
+ msgid "License Key"
63
+ msgstr "Лицензионный ключ"
64
+
65
+ #: includes/class-fcbkbttn-settings.php:95
66
  msgid "Settings saved"
67
  msgstr "Настройки сохранены"
68
 
69
+ #: includes/class-fcbkbttn-settings.php:124
70
  msgid "Error: File size > 32K"
71
  msgstr "Ошибка: Размер файла > 32К"
72
 
73
+ #: includes/class-fcbkbttn-settings.php:127
74
  msgid "Error: Invalid file type"
75
  msgstr "Ошибка: Некорректный тип файла"
76
 
77
+ #: includes/class-fcbkbttn-settings.php:133
78
  msgid "Upload successful."
79
  msgstr "Загрузка прошла удачно."
80
 
81
+ #: includes/class-fcbkbttn-settings.php:143
82
+ msgid "Error: failed to move file."
83
+ msgstr "Ошибка: При перемещении файла произошла ошибка."
84
 
85
+ #: includes/class-fcbkbttn-settings.php:146
86
+ msgid "Error: check image width or height."
87
+ msgstr "Ошибка: Проверьте ширину и высоту изображения."
88
 
89
+ #: includes/class-fcbkbttn-settings.php:150
90
  msgid "Uploading Error: check image properties"
91
  msgstr "Ошибка загрузки: Проверьте опции изображения"
92
 
93
+ #: includes/class-fcbkbttn-settings.php:171
94
+ msgid "Facebook button Settings"
95
+ msgstr "Настройки Facebook button"
96
 
97
+ #: includes/class-fcbkbttn-settings.php:174
98
+ msgid "General"
99
+ msgstr "Общее"
100
 
101
+ #: includes/class-fcbkbttn-settings.php:177
102
+ msgid "Buttons"
103
+ msgstr "Кнопоки"
 
 
 
 
 
104
 
105
+ #: includes/class-fcbkbttn-settings.php:180
106
+ msgid "Profile URL"
107
+ msgstr "URL профиля"
 
 
 
 
108
 
109
+ #: includes/class-fcbkbttn-settings.php:181
110
+ #: includes/class-fcbkbttn-settings.php:367
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
111
  msgid "Like"
112
+ msgstr "Нравится"
113
 
114
+ #: includes/class-fcbkbttn-settings.php:182
115
  msgid "Share"
116
  msgstr "Поделиться"
117
 
118
+ #: includes/class-fcbkbttn-settings.php:187
119
+ msgid "Buttons Position"
120
+ msgstr "Позиция кнопок"
 
 
 
 
121
 
122
+ #: includes/class-fcbkbttn-settings.php:192
123
+ msgid "Before content"
124
+ msgstr "Перед содержимым"
125
 
126
+ #: includes/class-fcbkbttn-settings.php:197
127
+ msgid "After content"
128
+ msgstr "После содержимого"
129
 
130
+ #: includes/class-fcbkbttn-settings.php:203
131
+ msgid "Language"
132
+ msgstr "Язык"
133
 
134
+ #: includes/class-fcbkbttn-settings.php:214
135
+ msgid "Select the default language for Facebook button(-s)."
136
+ msgstr "Выберите язык отображения по умолчанию для кнопок Facebook."
137
 
138
+ #: includes/class-fcbkbttn-settings.php:223
139
+ #: includes/class-fcbkbttn-settings.php:226
140
+ #: includes/class-fcbkbttn-settings.php:230
141
+ msgid ""
142
+ "Enable to switch language automatically on multilingual website using "
143
+ "Multilanguage plugin."
144
+ msgstr ""
145
+ "Включить, чтобы переключить язык автоматически на многоязычном сайте, "
146
+ "используя Multilanguage плагин."
147
 
148
+ #: includes/class-fcbkbttn-settings.php:226
149
+ #, php-format
150
+ msgid "Activate %s"
151
+ msgstr "Активировать %s"
152
 
153
+ #: includes/class-fcbkbttn-settings.php:230
154
+ msgid "Learn More"
155
+ msgstr "Подробнее"
156
 
157
+ #: includes/class-fcbkbttn-settings.php:235
158
+ msgid "Excerpt"
159
+ msgstr "Цитата"
160
 
161
+ #: includes/class-fcbkbttn-settings.php:237
162
+ msgid "Enable to display buttons in excerpt."
163
+ msgstr "Включите, чтоб отображать кнопки для цитаты."
164
 
165
+ #: includes/class-fcbkbttn-settings.php:246
166
+ #: includes/class-fcbkbttn-settings.php:422
167
+ #: includes/class-fcbkbttn-settings.php:477
168
  msgid "Close"
169
  msgstr "Закрыть"
170
 
171
+ #: includes/class-fcbkbttn-settings.php:250
172
+ msgid "Meta Image"
173
+ msgstr "Мета изображение"
 
 
 
 
174
 
175
+ #: includes/class-fcbkbttn-settings.php:255
176
  msgid "Featured Image"
177
  msgstr "Миниатюра записи"
178
 
179
+ #: includes/class-fcbkbttn-settings.php:259
180
  msgid "Custom Image"
181
  msgstr "Пользовательское изображение"
182
 
183
+ #: includes/class-fcbkbttn-settings.php:259
184
+ msgid "This image will be used for all posts"
185
+ msgstr "Это изображение будет использоваться для всех записей"
 
 
 
 
 
 
 
 
 
 
 
 
186
 
187
+ #: includes/class-fcbkbttn-settings.php:266
188
+ msgid "Meta Description"
189
+ msgstr "Мета описание"
 
190
 
191
+ #: includes/class-fcbkbttn-settings.php:270
192
+ msgid ""
193
+ "This description will be used for all pages and posts. Leave blank to use "
194
+ "page description."
195
+ msgstr ""
196
+ "Это описание будет использоваться для всех записей и страниц. Оставьте "
197
+ "пустым, чтобы использовать описание страницы."
198
 
199
+ #: includes/class-fcbkbttn-settings.php:279
200
+ msgid "Profile URL Button"
201
+ msgstr "Кнопка URL профиля"
 
202
 
203
+ #: includes/class-fcbkbttn-settings.php:282
204
+ msgid "Facebook ID or Username"
205
+ msgstr "Facebook ID или имя пользователя"
206
 
207
+ #: includes/class-fcbkbttn-settings.php:289
208
+ msgid "Profile Button Image"
209
+ msgstr "Изображение кнопки профиля"
210
 
211
+ #: includes/class-fcbkbttn-settings.php:296
212
+ msgid "Default"
213
+ msgstr "По умолчанию"
214
 
215
+ #: includes/class-fcbkbttn-settings.php:301
216
+ msgid "Custom image"
217
+ msgstr "Пользовательское изображение"
218
 
219
+ #: includes/class-fcbkbttn-settings.php:305
220
  msgid ""
221
+ "To use custom image, You need to setup permissions for upload directory of "
222
  "your site"
223
  msgstr ""
224
+ "Для использования пользовательского изображения Вам нужно выдать права "
225
+ "доступа на папку загрузок на вашем сайте"
226
 
227
+ #: includes/class-fcbkbttn-settings.php:312
228
  msgid "Current image"
229
  msgstr "Текущее изображение"
230
 
231
+ #: includes/class-fcbkbttn-settings.php:320
232
  msgid ""
233
+ "Image requirements: max image width:100px; max image height:40px; max image "
234
  "size:32Kb; image types:\"jpg\", \"jpeg\", \"png\"."
235
  msgstr ""
236
+ "Требования к изображению: максимальная ширина:100px; максимальная "
237
  "высота:40px; максимальный размер:32Kb; тип файла:\"jpg\", \"jpeg\", \"png\"."
238
 
239
+ #: includes/class-fcbkbttn-settings.php:324
240
+ msgid "Like&Share Buttons"
241
+ msgstr "Кнопки \"Нравится\" и \"Поделиться\""
242
+
243
+ #: includes/class-fcbkbttn-settings.php:327
244
+ msgid "Layout"
245
+ msgstr "Вид"
246
 
247
+ #: includes/class-fcbkbttn-settings.php:362
248
+ msgid "Like Button Action"
249
+ msgstr "Действие кнопки \"Нравится\""
250
 
251
+ #: includes/class-fcbkbttn-settings.php:372
252
  msgid "Recommend"
253
  msgstr "Рекомендую"
254
 
255
+ #: includes/class-fcbkbttn-settings.php:378
256
+ msgid "Friends faces"
257
+ msgstr "Лица друзей"
258
+
259
+ #: includes/class-fcbkbttn-settings.php:381
260
+ msgid " Enable to show faces of your friends who submitted the button."
261
+ msgstr "Включить, чтобы показать лица своих друзей, которые нажали кнопку."
262
 
263
+ #: includes/class-fcbkbttn-settings.php:385
264
+ msgid "Layout Width"
265
  msgstr "Ширина блока"
266
 
267
+ #: includes/class-fcbkbttn-settings.php:387
268
+ msgid "px"
269
+ msgstr "пикс"
270
 
271
+ #: includes/class-fcbkbttn-settings.php:391
272
+ msgid "Theme"
273
+ msgstr "Тема"
274
+
275
+ #: includes/class-fcbkbttn-settings.php:396
276
  msgid "Light"
277
  msgstr "Светлая"
278
 
279
+ #: includes/class-fcbkbttn-settings.php:401
280
  msgid "Dark"
281
  msgstr "Тёмная"
282
 
283
+ #: includes/class-fcbkbttn-settings.php:407
284
+ msgid "Like Button HTML Tag"
285
+ msgstr "HTML тег кнопки \"Нравится\""
286
+
287
+ #: includes/class-fcbkbttn-settings.php:413
288
+ #, php-format
289
+ msgid "Tag %s can be used to improve website code validation."
290
+ msgstr "Тег %s может быть использован для улучшения валидации кода сайта."
291
+
292
+ #: includes/class-fcbkbttn-settings.php:426
293
+ msgid "URL to Like"
294
+ msgstr "URL кнопки \"Нравится\""
295
 
296
+ #: includes/class-fcbkbttn-settings.php:428
297
+ msgid "Leave blank to use a current page."
298
+ msgstr "Оставьте пустым, чтобы использовать текущую страницу."
299
 
300
+ #: includes/class-fcbkbttn-settings.php:456
301
+ msgid "Facebook Buttons Shortchode"
302
+ msgstr "Шорткод Facebook кнопок"
303
 
304
+ #: includes/class-fcbkbttn-settings.php:459
305
  msgid ""
306
+ "Add Facebook button(-s) to your posts, pages, custom post types or widgets "
307
+ "by using the following shortcode:"
 
 
308
  msgstr ""
309
+ "Добавить кнопки Facebook на ваши записи, страницы, пользовательские типы "
310
+ "записей или виджеты с помощью данного шорткода:"
 
 
 
 
 
 
311
 
312
+ #: includes/class-fcbkbttn-settings.php:478
313
+ msgid "Facebook Buttons Preview"
314
  msgstr "Предварительный просмотр Facebook кнопок"
315
 
316
+ #: includes/class-fcbkbttn-settings.php:493
317
+ msgid "Display Settings"
318
+ msgstr "Настройка отображения"
319
+
320
+ #: includes/class-fcbkbttn-settings.php:502
321
  msgid ""
322
  "Please choose the necessary post types (or single pages) where Facebook "
323
  "button will be displayed:"
324
  msgstr ""
325
+ "Пожалуйста, выберите те типы записей (или отдельные страницы), где будут "
326
  "отображаться кнопки Facebook:"
327
 
328
+ #: includes/class-fcbkbttn-settings.php:509
329
  msgid "Show URL for pages"
330
  msgstr "Отображать URL для страниц"
331
 
332
+ #: includes/class-fcbkbttn-settings.php:515
333
  msgid "Example of the site's pages tree"
334
  msgstr "Пример дерева страниц сайта"
335
 
336
+ #: includes/class-fcbkbttn-settings.php:515
337
  msgid "Example of site pages' tree"
338
  msgstr "Пример дерева страниц сайта"
339
 
340
+ #~ msgid "Multilanguage"
341
+ #~ msgstr "Multilanguage"
 
342
 
343
+ #~ msgid "All plugin settings were restored."
344
+ #~ msgstr "Все настройки плагина восстановлены."
 
345
 
346
+ #~ msgid "How to Use Step-by-step Instruction"
347
+ #~ msgstr "Инструкция по использованию"
348
+
349
+ #~ msgid "Extra settings"
350
+ #~ msgstr "Дополнительные настройки"
351
+
352
+ #~ msgid "Go PRO"
353
+ #~ msgstr "Перейти на PRO версию"
354
+
355
+ #~ msgid ""
356
+ #~ "If you would like to add Facebook buttons to your page or post, please "
357
+ #~ "use %s button"
358
+ #~ msgstr ""
359
+ #~ "Если вы хотите добавить Facebook кнопки на вашу страницу или запись, то "
360
+ #~ "используйте кнопку %s"
361
+
362
+ #~ msgid ""
363
+ #~ "You can add Facebook buttons to your page or post by clicking on %s "
364
+ #~ "button in the content edit block using the Visual mode. If the button "
365
+ #~ "isn't displayed, please use the shortcode %s"
366
+ #~ msgstr ""
367
+ #~ "Вы можете добавить Facebook кнопки на вашу страницу или запись, нажав на "
368
+ #~ "кнопку %s в блоке редактирования контента в режиме Visual. Если кнопка не "
369
+ #~ "отображается, пожалуйста, используйте шорткод %s"
370
+
371
+ #~ msgid "My Page"
372
+ #~ msgstr "Моя страница"
373
+
374
+ #~ msgid "Before"
375
+ #~ msgstr "Перед"
376
+
377
+ #~ msgid "After"
378
+ #~ msgstr "После"
379
+
380
+ #~ msgid "Shortcode"
381
+ #~ msgstr "Шорткод"
382
+
383
+ #~ msgid "Facebook buttons language"
384
+ #~ msgstr "Язык для Facebook кнопки"
385
+
386
+ #~ msgid "Use the current site language"
387
+ #~ msgstr "Использовать текущий язык сайта"
388
+
389
+ #~ msgid "Using"
390
+ #~ msgstr "Используя"
391
+
392
+ #~ msgid "Download"
393
+ #~ msgstr "Загрузить"
394
+
395
+ #~ msgid "Image"
396
+ #~ msgstr "Изображение"
397
+
398
+ #~ msgid "If you upgrade to Pro version all your settings will be saved."
399
+ #~ msgstr "При установке Pro версии плагина, все ваши настройки сохраняются."
400
+
401
+ #~ msgid "Unlock premium options by upgrading to Pro version"
402
+ #~ msgstr "Активируйте премиум опции обновившись до Pro версии"
403
+
404
+ #~ msgid "\"My page\" button image"
405
+ #~ msgstr "Изображение кнопки \"Моя страница\""
406
+
407
+ #~ msgid "Standard Facebook image"
408
+ #~ msgstr "Стандартная картинка Facebook"
409
+
410
+ #~ msgid "Custom Facebook image"
411
+ #~ msgstr "Пользовательская картинка Facebook"
412
+
413
+ #~ msgid "Show faces"
414
+ #~ msgstr "Показать лица"
415
+
416
+ #~ msgid "Color scheme"
417
+ #~ msgstr "Цветовая схема"
418
+
419
+ #~ msgid "Html tag for \"Like\" button"
420
+ #~ msgstr "Html тег для кнопки \"Нравится\""
421
+
422
+ #~ msgid "Use this tag to improve validation of your site"
423
+ #~ msgstr "Используйте этот тег для лучшей валидации вашего сайта"
424
+
425
+ #~ msgid "\"Like\" for an entire site on every page:"
426
+ #~ msgstr "Ставить \"Нравится\" всему сайту на каждой странице:"
427
+
428
+ #~ msgid ""
429
+ #~ "Notice: \"Like for the entire site\" option does not create an extra "
430
+ #~ "button. This option merely allows your users to like the entire website "
431
+ #~ "when this option is enabled, or a single post when this option is "
432
+ #~ "disabled, when clicking the regular \"Like\" button."
433
+ #~ msgstr ""
434
+ #~ "Внимание: опция \"Нравится для всего сайта\" - не создает дополнительную "
435
+ #~ "кнопку. Эта опция позволяет при клике пользователями на стандартную "
436
+ #~ "кнопку ставить \"Нравится\" для всего сайта, если эта опция включена, или "
437
+ #~ "\"Нравится\" для отдельной записи, когда эта опция выключена."
438
+
439
+ #~ msgid "Save Changes"
440
+ #~ msgstr "Сохранить изменения"
441
 
442
  #~ msgid "None"
443
  #~ msgstr "Не использовать"
500
  #~ msgid "Plugins page"
501
  #~ msgstr "Страницу плагинов"
502
 
 
 
 
503
  #~ msgid ""
504
  #~ "Something went wrong. Try again later. If the error will appear again, "
505
  #~ "please, contact us <a href=http://support.bestwebsoft.com>BestWebSoft</"
languages/facebook-button-plugin-tr_TR.mo CHANGED
Binary file
languages/facebook-button-plugin-tr_TR.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: facebook-button-plugin\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2016-05-05 17:25+0300\n"
6
- "PO-Revision-Date: 2016-05-05 17:25+0300\n"
7
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: Can Atasever <webmaster@canatasever.com>\n"
9
  "Language: tr\n"
@@ -17,314 +17,325 @@ msgstr ""
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: facebook-button-plugin.php:34 facebook-button-plugin.php:294
 
21
  msgid "Facebook Button Settings"
22
  msgstr "Facebook Buton Ayarları"
23
 
24
- #: facebook-button-plugin.php:216
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
25
  msgid "Settings saved"
26
  msgstr "Ayarlar kaydedildi"
27
 
28
- #: facebook-button-plugin.php:242
29
  msgid "Error: File size > 32K"
30
  msgstr "HATA: Dosya boyutu > 32K"
31
 
32
- #: facebook-button-plugin.php:245
33
  msgid "Error: Invalid file type"
34
  msgstr "HATA: Geçersiz dosya türü"
35
 
36
- #: facebook-button-plugin.php:251
37
  msgid "Upload successful."
38
  msgstr "Yükleme başarılı"
39
 
40
- #: facebook-button-plugin.php:261
41
- msgid "Error: moving file failed"
 
42
  msgstr "HATA: dosya taşıma başarısız."
43
 
44
- #: facebook-button-plugin.php:264
45
- msgid "Error: check image width or height"
 
46
  msgstr "HATA: görselin genişliğini ya da yüksekliğini kontrol edin."
47
 
48
- #: facebook-button-plugin.php:268
49
  msgid "Uploading Error: check image properties"
50
  msgstr "Yükleme Hatası: görselin özelliklerini kontrol edin."
51
 
52
- #: facebook-button-plugin.php:281
53
- msgid "All plugin settings were restored."
54
- msgstr ""
55
-
56
- #: facebook-button-plugin.php:296
57
- msgid "How to Use Step-by-step Instruction"
58
- msgstr ""
59
-
60
- #: facebook-button-plugin.php:299 facebook-button-plugin.php:861
61
- #: facebook-button-plugin.php:875
62
- msgid "Settings"
63
- msgstr "Ayarlar"
64
-
65
- #: facebook-button-plugin.php:300
66
- msgid "Extra settings"
67
- msgstr "Ekstra Ayarlar"
68
-
69
- #: facebook-button-plugin.php:301
70
  #, fuzzy
71
- msgid "Custom code"
72
- msgstr "Özel Facebook görseli"
73
-
74
- #: facebook-button-plugin.php:302
75
- msgid "Go PRO"
76
- msgstr "PRO&#39;ya geçin"
77
-
78
- #: facebook-button-plugin.php:305
79
- msgid "Please, enable JavaScript in Your browser."
80
- msgstr ""
81
 
82
- #: facebook-button-plugin.php:320
83
- #, fuzzy, php-format
84
- msgid ""
85
- "If you would like to add Facebook buttons to your page or post, please use "
86
- "%s button"
87
  msgstr ""
88
- "eğer web sitenize Facebook butonu eklemek isterseniz, verilen kısa kodu "
89
- "sayfanıza ya da yazınıza eklemeniz yeterlidir."
90
 
91
- #: facebook-button-plugin.php:325
92
- #, php-format
93
- msgid ""
94
- "You can add Facebook buttons to your page or post by clicking on %s button "
95
- "in the content edit block using the Visual mode. If the button isn't "
96
- "displayed, please use the shortcode %s"
97
- msgstr ""
98
-
99
- #: facebook-button-plugin.php:336
100
  #, fuzzy
101
- msgid "Display button"
102
- msgstr "Butonu Göster:"
103
 
104
- #: facebook-button-plugin.php:339
105
- msgid "My Page"
106
- msgstr "Benim Sayfam"
107
 
108
- #: facebook-button-plugin.php:340 facebook-button-plugin.php:507
 
109
  msgid "Like"
110
  msgstr "Beğen"
111
 
112
- #: facebook-button-plugin.php:341
113
  msgid "Share"
114
  msgstr "Paylaş"
115
 
116
- #: facebook-button-plugin.php:346
117
  #, fuzzy
118
- msgid "Facebook buttons position"
119
  msgstr "Facebook Butonu pozisyonu"
120
 
121
- #: facebook-button-plugin.php:349
122
- msgid "Before"
123
- msgstr "Önce"
124
-
125
- #: facebook-button-plugin.php:350
126
- msgid "After"
127
- msgstr "Sonra"
128
-
129
- #: facebook-button-plugin.php:351
130
- msgid "Before and After"
131
  msgstr "Önce ve Sonra"
132
 
133
- #: facebook-button-plugin.php:352
134
- msgid "Shortcode"
135
- msgstr "Kısa kod"
136
 
137
- #: facebook-button-plugin.php:357
138
- #, fuzzy
139
- msgid "Facebook buttons language"
140
- msgstr "Facebook Butonu dili"
141
 
142
- #: facebook-button-plugin.php:368
143
  #, fuzzy
144
- msgid "Change the language of Facebook Button"
145
  msgstr "Facebook Beğen butonunun dilini değiştirin"
146
 
147
- #: facebook-button-plugin.php:373 facebook-button-plugin.php:376
148
- #: facebook-button-plugin.php:381
149
- msgid "Use the current site language"
 
 
 
150
  msgstr ""
151
 
152
- #: facebook-button-plugin.php:373 facebook-button-plugin.php:377
153
- #: facebook-button-plugin.php:382
154
- msgid "Using"
155
  msgstr ""
156
 
157
- #: facebook-button-plugin.php:377
158
- msgid "Activate"
159
- msgstr ""
160
 
161
- #: facebook-button-plugin.php:382
162
- msgid "Download"
163
  msgstr ""
164
 
165
- #: facebook-button-plugin.php:389
166
  #, fuzzy
167
- msgid "Display buttons in excerpt"
168
  msgstr "Butonu Göster:"
169
 
170
- #: facebook-button-plugin.php:399 facebook-button-plugin.php:548
171
- #: facebook-button-plugin.php:585
 
172
  msgid "Close"
173
  msgstr ""
174
 
175
- #: facebook-button-plugin.php:403
176
- msgid "Meta tags"
177
- msgstr ""
178
-
179
- #: facebook-button-plugin.php:406
180
- msgid "Image"
181
- msgstr ""
182
 
183
- #: facebook-button-plugin.php:409
184
  msgid "Featured Image"
185
  msgstr ""
186
 
187
- #: facebook-button-plugin.php:413
188
  #, fuzzy
189
  msgid "Custom Image"
190
  msgstr "Özel Facebook görseli"
191
 
192
- #: facebook-button-plugin.php:413
193
- msgid "This image will be used for all of the posts"
194
- msgstr ""
195
-
196
- #: facebook-button-plugin.php:423
197
- msgid "Description"
198
  msgstr ""
199
 
200
- #: facebook-button-plugin.php:426
201
- msgid "Post excerpt"
202
  msgstr ""
203
 
204
- #: facebook-button-plugin.php:431
205
- msgid "This description will be used for all of the posts"
 
 
206
  msgstr ""
207
 
208
- #: facebook-button-plugin.php:438 facebook-button-plugin.php:559
209
- #: facebook-button-plugin.php:637
210
- msgid "If you upgrade to Pro version all your settings will be saved."
211
  msgstr ""
212
- "Aboneliğinizi PRO versiyonuna yükseltirseniz tüm değişiklikleriniz "
213
- "kaydedilecek."
214
 
215
- #: facebook-button-plugin.php:445 facebook-button-plugin.php:566
216
- #: facebook-button-plugin.php:594 facebook-button-plugin.php:644
217
  #, fuzzy
218
- msgid "Unlock premium options by upgrading to Pro version"
219
- msgstr "PRO versiyonuna geçerek premium özellikleri aktifleştirin."
220
-
221
- #: facebook-button-plugin.php:447 facebook-button-plugin.php:568
222
- #: facebook-button-plugin.php:596 facebook-button-plugin.php:646
223
- msgid "Learn More"
224
- msgstr "Detaylı Bilgi"
225
-
226
- #: facebook-button-plugin.php:455
227
- #, fuzzy
228
- msgid "Your Facebook ID or username"
229
  msgstr "Facebook ID&#39;niz:"
230
 
231
- #: facebook-button-plugin.php:462
232
- msgid "\"My page\" button image"
233
  msgstr ""
234
 
235
- #: facebook-button-plugin.php:467
236
- msgid "Standard Facebook image"
237
- msgstr "Standart Facebook görseli"
238
 
239
- #: facebook-button-plugin.php:468
240
- msgid "Custom Facebook image"
 
241
  msgstr "Özel Facebook görseli"
242
 
243
- #: facebook-button-plugin.php:471
 
244
  msgid ""
245
- "To use custom image you need to setup permissions to upload directory of "
246
  "your site"
247
  msgstr ""
248
  "Özel görsel kullanmak için sitenizin dizinine yükleme yapılmasına izin "
249
  "vermelisiniz."
250
 
251
- #: facebook-button-plugin.php:478
252
  #, fuzzy
253
  msgid "Current image"
254
  msgstr "Şu anki görsel:"
255
 
256
- #: facebook-button-plugin.php:486
 
257
  msgid ""
258
- "Image properties: max image width:100px; max image height:40px; max image "
259
  "size:32Kb; image types:\"jpg\", \"jpeg\", \"png\"."
260
  msgstr ""
261
  "Görsel özellikleri: maksimum görsel genişliği: 100px; maksimum görsel "
262
  "yüksekliği: 40px; maksimum görsel boyutu: 32 KB; uzantılar: \"jpg\", \"jpeg"
263
  "\", \"png\"."
264
 
265
- #: facebook-button-plugin.php:490
266
- msgid "Button layout"
 
 
 
 
267
  msgstr ""
268
 
269
- #: facebook-button-plugin.php:504
270
- msgid "Like button action"
271
  msgstr ""
272
 
273
- #: facebook-button-plugin.php:508
274
  msgid "Recommend"
275
  msgstr ""
276
 
277
- #: facebook-button-plugin.php:513
278
- msgid "Show faces"
 
 
 
 
 
 
 
 
279
  msgstr ""
280
 
281
- #: facebook-button-plugin.php:519
282
- msgid "Layout width"
283
  msgstr ""
284
 
285
- #: facebook-button-plugin.php:525
286
- msgid "Color scheme"
287
  msgstr ""
288
 
289
- #: facebook-button-plugin.php:528
290
  msgid "Light"
291
  msgstr ""
292
 
293
- #: facebook-button-plugin.php:529
294
  msgid "Dark"
295
  msgstr ""
296
 
297
- #: facebook-button-plugin.php:534
298
- #, fuzzy
299
- msgid "Html tag for \"Like\" button"
300
- msgstr "Beğen butonu için HTML etiketi:"
301
 
302
- #: facebook-button-plugin.php:539
303
- msgid "Use this tag to improve validation of your site"
304
- msgstr "Sitenizin doğrulamasını geliştirmek için bu etiketi kullanın"
 
305
 
306
- #: facebook-button-plugin.php:552
307
- msgid "\"Like\" for an entire site on every page:"
308
  msgstr ""
309
 
310
- #: facebook-button-plugin.php:554
311
- msgid ""
312
- "Notice: \"Like for the entire site\" option does not create an extra button. "
313
- "This option merely allows your users to like the entire website when this "
314
- "option is enabled, or a single post when this option is disabled, when "
315
- "clicking the regular \"Like\" button."
316
  msgstr ""
317
 
318
- #: facebook-button-plugin.php:576 facebook-button-plugin.php:632
319
- msgid "Save Changes"
320
- msgstr "Değişiklikleri Kaydet"
 
 
 
 
 
 
 
321
 
322
- #: facebook-button-plugin.php:588
323
  #, fuzzy
324
- msgid "Facebook Button preview:"
325
  msgstr "Facebook Butonu"
326
 
327
- #: facebook-button-plugin.php:614
 
 
 
 
 
328
  msgid ""
329
  "Please choose the necessary post types (or single pages) where Facebook "
330
  "button will be displayed:"
@@ -332,30 +343,72 @@ msgstr ""
332
  "Lütfen Facebook butonunun gösterileceği yazı türlerini (ya da tek sayfaları) "
333
  "seçin."
334
 
335
- #: facebook-button-plugin.php:621
336
  msgid "Show URL for pages"
337
  msgstr "Sayfalar için URL göster"
338
 
339
- #: facebook-button-plugin.php:627
340
  msgid "Example of the site's pages tree"
341
  msgstr "Sitenin sayfalar izi için örnek"
342
 
343
- #: facebook-button-plugin.php:627
344
  msgid "Example of site pages' tree"
345
  msgstr "Site sayfaları izi için örnek"
346
 
347
- #: facebook-button-plugin.php:765
 
 
 
 
 
348
  #, fuzzy
349
- msgid "Add Facebook buttons to your page or post"
350
- msgstr "Facebook Butonu pozisyonu"
 
 
 
 
351
 
352
- #: facebook-button-plugin.php:876
353
- msgid "FAQ"
354
- msgstr "SSS"
355
 
356
- #: facebook-button-plugin.php:877
357
- msgid "Support"
358
- msgstr "Destek"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
359
 
360
  #~ msgid "Notice:"
361
  #~ msgstr "Uyarı:"
@@ -404,9 +457,6 @@ msgstr "Destek"
404
  #~ msgid "Plugins page"
405
  #~ msgstr "Eklentiler sayfası"
406
 
407
- #~ msgid "Wrong license key"
408
- #~ msgstr "Hatalı lisans anahtarı"
409
-
410
  #~ msgid ""
411
  #~ "Something went wrong. Try again later. If the error will appear again, "
412
  #~ "please, contact us <a href=http://support.bestwebsoft.com>BestWebSoft</"
2
  msgstr ""
3
  "Project-Id-Version: facebook-button-plugin\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-01-26 11:26+0300\n"
6
+ "PO-Revision-Date: 2017-01-26 11:26+0300\n"
7
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: Can Atasever <webmaster@canatasever.com>\n"
9
  "Language: tr\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: facebook-button-plugin.php:35 facebook-button-plugin.php:36
21
+ #: facebook-button-plugin.php:201
22
  msgid "Facebook Button Settings"
23
  msgstr "Facebook Buton Ayarları"
24
 
25
+ #: facebook-button-plugin.php:36 facebook-button-plugin.php:405
26
+ #: facebook-button-plugin.php:419 includes/class-fcbkbttn-settings.php:23
27
+ msgid "Settings"
28
+ msgstr "Ayarlar"
29
+
30
+ #: facebook-button-plugin.php:42
31
+ msgid "Upgrade to Pro"
32
+ msgstr ""
33
+
34
+ #: facebook-button-plugin.php:202
35
+ msgid "Please, enable JavaScript in Your browser."
36
+ msgstr ""
37
+
38
+ #: facebook-button-plugin.php:298
39
+ #, fuzzy
40
+ msgid "Add Facebook buttons to your page or post"
41
+ msgstr "Facebook Butonu pozisyonu"
42
+
43
+ #: facebook-button-plugin.php:420
44
+ msgid "FAQ"
45
+ msgstr "SSS"
46
+
47
+ #: facebook-button-plugin.php:421
48
+ msgid "Support"
49
+ msgstr "Destek"
50
+
51
+ #: includes/class-fcbkbttn-settings.php:25
52
+ #, fuzzy
53
+ msgid "Display"
54
+ msgstr "Butonu Göster:"
55
+
56
+ #: includes/class-fcbkbttn-settings.php:27
57
+ msgid "Misc"
58
+ msgstr ""
59
+
60
+ #: includes/class-fcbkbttn-settings.php:28
61
+ #, fuzzy
62
+ msgid "Custom Code"
63
+ msgstr "Özel Facebook görseli"
64
+
65
+ #: includes/class-fcbkbttn-settings.php:30
66
+ #, fuzzy
67
+ msgid "License Key"
68
+ msgstr "Hatalı lisans anahtarı"
69
+
70
+ #: includes/class-fcbkbttn-settings.php:95
71
  msgid "Settings saved"
72
  msgstr "Ayarlar kaydedildi"
73
 
74
+ #: includes/class-fcbkbttn-settings.php:124
75
  msgid "Error: File size > 32K"
76
  msgstr "HATA: Dosya boyutu > 32K"
77
 
78
+ #: includes/class-fcbkbttn-settings.php:127
79
  msgid "Error: Invalid file type"
80
  msgstr "HATA: Geçersiz dosya türü"
81
 
82
+ #: includes/class-fcbkbttn-settings.php:133
83
  msgid "Upload successful."
84
  msgstr "Yükleme başarılı"
85
 
86
+ #: includes/class-fcbkbttn-settings.php:143
87
+ #, fuzzy
88
+ msgid "Error: failed to move file."
89
  msgstr "HATA: dosya taşıma başarısız."
90
 
91
+ #: includes/class-fcbkbttn-settings.php:146
92
+ #, fuzzy
93
+ msgid "Error: check image width or height."
94
  msgstr "HATA: görselin genişliğini ya da yüksekliğini kontrol edin."
95
 
96
+ #: includes/class-fcbkbttn-settings.php:150
97
  msgid "Uploading Error: check image properties"
98
  msgstr "Yükleme Hatası: görselin özelliklerini kontrol edin."
99
 
100
+ #: includes/class-fcbkbttn-settings.php:171
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
101
  #, fuzzy
102
+ msgid "Facebook button Settings"
103
+ msgstr "Facebook Buton Ayarları"
 
 
 
 
 
 
 
 
104
 
105
+ #: includes/class-fcbkbttn-settings.php:174
106
+ msgid "General"
 
 
 
107
  msgstr ""
 
 
108
 
109
+ #: includes/class-fcbkbttn-settings.php:177
 
 
 
 
 
 
 
 
110
  #, fuzzy
111
+ msgid "Buttons"
112
+ msgstr "Facebook Butonu pozisyonu"
113
 
114
+ #: includes/class-fcbkbttn-settings.php:180
115
+ msgid "Profile URL"
116
+ msgstr ""
117
 
118
+ #: includes/class-fcbkbttn-settings.php:181
119
+ #: includes/class-fcbkbttn-settings.php:367
120
  msgid "Like"
121
  msgstr "Beğen"
122
 
123
+ #: includes/class-fcbkbttn-settings.php:182
124
  msgid "Share"
125
  msgstr "Paylaş"
126
 
127
+ #: includes/class-fcbkbttn-settings.php:187
128
  #, fuzzy
129
+ msgid "Buttons Position"
130
  msgstr "Facebook Butonu pozisyonu"
131
 
132
+ #: includes/class-fcbkbttn-settings.php:192
133
+ #, fuzzy
134
+ msgid "Before content"
 
 
 
 
 
 
 
135
  msgstr "Önce ve Sonra"
136
 
137
+ #: includes/class-fcbkbttn-settings.php:197
138
+ msgid "After content"
139
+ msgstr ""
140
 
141
+ #: includes/class-fcbkbttn-settings.php:203
142
+ msgid "Language"
143
+ msgstr ""
 
144
 
145
+ #: includes/class-fcbkbttn-settings.php:214
146
  #, fuzzy
147
+ msgid "Select the default language for Facebook button(-s)."
148
  msgstr "Facebook Beğen butonunun dilini değiştirin"
149
 
150
+ #: includes/class-fcbkbttn-settings.php:223
151
+ #: includes/class-fcbkbttn-settings.php:226
152
+ #: includes/class-fcbkbttn-settings.php:230
153
+ msgid ""
154
+ "Enable to switch language automatically on multilingual website using "
155
+ "Multilanguage plugin."
156
  msgstr ""
157
 
158
+ #: includes/class-fcbkbttn-settings.php:226
159
+ #, php-format
160
+ msgid "Activate %s"
161
  msgstr ""
162
 
163
+ #: includes/class-fcbkbttn-settings.php:230
164
+ msgid "Learn More"
165
+ msgstr "Detaylı Bilgi"
166
 
167
+ #: includes/class-fcbkbttn-settings.php:235
168
+ msgid "Excerpt"
169
  msgstr ""
170
 
171
+ #: includes/class-fcbkbttn-settings.php:237
172
  #, fuzzy
173
+ msgid "Enable to display buttons in excerpt."
174
  msgstr "Butonu Göster:"
175
 
176
+ #: includes/class-fcbkbttn-settings.php:246
177
+ #: includes/class-fcbkbttn-settings.php:422
178
+ #: includes/class-fcbkbttn-settings.php:477
179
  msgid "Close"
180
  msgstr ""
181
 
182
+ #: includes/class-fcbkbttn-settings.php:250
183
+ #, fuzzy
184
+ msgid "Meta Image"
185
+ msgstr "Özel Facebook görseli"
 
 
 
186
 
187
+ #: includes/class-fcbkbttn-settings.php:255
188
  msgid "Featured Image"
189
  msgstr ""
190
 
191
+ #: includes/class-fcbkbttn-settings.php:259
192
  #, fuzzy
193
  msgid "Custom Image"
194
  msgstr "Özel Facebook görseli"
195
 
196
+ #: includes/class-fcbkbttn-settings.php:259
197
+ msgid "This image will be used for all posts"
 
 
 
 
198
  msgstr ""
199
 
200
+ #: includes/class-fcbkbttn-settings.php:266
201
+ msgid "Meta Description"
202
  msgstr ""
203
 
204
+ #: includes/class-fcbkbttn-settings.php:270
205
+ msgid ""
206
+ "This description will be used for all pages and posts. Leave blank to use "
207
+ "page description."
208
  msgstr ""
209
 
210
+ #: includes/class-fcbkbttn-settings.php:279
211
+ msgid "Profile URL Button"
 
212
  msgstr ""
 
 
213
 
214
+ #: includes/class-fcbkbttn-settings.php:282
 
215
  #, fuzzy
216
+ msgid "Facebook ID or Username"
 
 
 
 
 
 
 
 
 
 
217
  msgstr "Facebook ID&#39;niz:"
218
 
219
+ #: includes/class-fcbkbttn-settings.php:289
220
+ msgid "Profile Button Image"
221
  msgstr ""
222
 
223
+ #: includes/class-fcbkbttn-settings.php:296
224
+ msgid "Default"
225
+ msgstr ""
226
 
227
+ #: includes/class-fcbkbttn-settings.php:301
228
+ #, fuzzy
229
+ msgid "Custom image"
230
  msgstr "Özel Facebook görseli"
231
 
232
+ #: includes/class-fcbkbttn-settings.php:305
233
+ #, fuzzy
234
  msgid ""
235
+ "To use custom image, You need to setup permissions for upload directory of "
236
  "your site"
237
  msgstr ""
238
  "Özel görsel kullanmak için sitenizin dizinine yükleme yapılmasına izin "
239
  "vermelisiniz."
240
 
241
+ #: includes/class-fcbkbttn-settings.php:312
242
  #, fuzzy
243
  msgid "Current image"
244
  msgstr "Şu anki görsel:"
245
 
246
+ #: includes/class-fcbkbttn-settings.php:320
247
+ #, fuzzy
248
  msgid ""
249
+ "Image requirements: max image width:100px; max image height:40px; max image "
250
  "size:32Kb; image types:\"jpg\", \"jpeg\", \"png\"."
251
  msgstr ""
252
  "Görsel özellikleri: maksimum görsel genişliği: 100px; maksimum görsel "
253
  "yüksekliği: 40px; maksimum görsel boyutu: 32 KB; uzantılar: \"jpg\", \"jpeg"
254
  "\", \"png\"."
255
 
256
+ #: includes/class-fcbkbttn-settings.php:324
257
+ msgid "Like&Share Buttons"
258
+ msgstr ""
259
+
260
+ #: includes/class-fcbkbttn-settings.php:327
261
+ msgid "Layout"
262
  msgstr ""
263
 
264
+ #: includes/class-fcbkbttn-settings.php:362
265
+ msgid "Like Button Action"
266
  msgstr ""
267
 
268
+ #: includes/class-fcbkbttn-settings.php:372
269
  msgid "Recommend"
270
  msgstr ""
271
 
272
+ #: includes/class-fcbkbttn-settings.php:378
273
+ msgid "Friends faces"
274
+ msgstr ""
275
+
276
+ #: includes/class-fcbkbttn-settings.php:381
277
+ msgid " Enable to show faces of your friends who submitted the button."
278
+ msgstr ""
279
+
280
+ #: includes/class-fcbkbttn-settings.php:385
281
+ msgid "Layout Width"
282
  msgstr ""
283
 
284
+ #: includes/class-fcbkbttn-settings.php:387
285
+ msgid "px"
286
  msgstr ""
287
 
288
+ #: includes/class-fcbkbttn-settings.php:391
289
+ msgid "Theme"
290
  msgstr ""
291
 
292
+ #: includes/class-fcbkbttn-settings.php:396
293
  msgid "Light"
294
  msgstr ""
295
 
296
+ #: includes/class-fcbkbttn-settings.php:401
297
  msgid "Dark"
298
  msgstr ""
299
 
300
+ #: includes/class-fcbkbttn-settings.php:407
301
+ msgid "Like Button HTML Tag"
302
+ msgstr ""
 
303
 
304
+ #: includes/class-fcbkbttn-settings.php:413
305
+ #, php-format
306
+ msgid "Tag %s can be used to improve website code validation."
307
+ msgstr ""
308
 
309
+ #: includes/class-fcbkbttn-settings.php:426
310
+ msgid "URL to Like"
311
  msgstr ""
312
 
313
+ #: includes/class-fcbkbttn-settings.php:428
314
+ msgid "Leave blank to use a current page."
 
 
 
 
315
  msgstr ""
316
 
317
+ #: includes/class-fcbkbttn-settings.php:456
318
+ #, fuzzy
319
+ msgid "Facebook Buttons Shortchode"
320
+ msgstr "Facebook Butonu pozisyonu"
321
+
322
+ #: includes/class-fcbkbttn-settings.php:459
323
+ msgid ""
324
+ "Add Facebook button(-s) to your posts, pages, custom post types or widgets "
325
+ "by using the following shortcode:"
326
+ msgstr ""
327
 
328
+ #: includes/class-fcbkbttn-settings.php:478
329
  #, fuzzy
330
+ msgid "Facebook Buttons Preview"
331
  msgstr "Facebook Butonu"
332
 
333
+ #: includes/class-fcbkbttn-settings.php:493
334
+ #, fuzzy
335
+ msgid "Display Settings"
336
+ msgstr "Butonu Göster:"
337
+
338
+ #: includes/class-fcbkbttn-settings.php:502
339
  msgid ""
340
  "Please choose the necessary post types (or single pages) where Facebook "
341
  "button will be displayed:"
343
  "Lütfen Facebook butonunun gösterileceği yazı türlerini (ya da tek sayfaları) "
344
  "seçin."
345
 
346
+ #: includes/class-fcbkbttn-settings.php:509
347
  msgid "Show URL for pages"
348
  msgstr "Sayfalar için URL göster"
349
 
350
+ #: includes/class-fcbkbttn-settings.php:515
351
  msgid "Example of the site's pages tree"
352
  msgstr "Sitenin sayfalar izi için örnek"
353
 
354
+ #: includes/class-fcbkbttn-settings.php:515
355
  msgid "Example of site pages' tree"
356
  msgstr "Site sayfaları izi için örnek"
357
 
358
+ #~ msgid "Extra settings"
359
+ #~ msgstr "Ekstra Ayarlar"
360
+
361
+ #~ msgid "Go PRO"
362
+ #~ msgstr "PRO&#39;ya geçin"
363
+
364
  #, fuzzy
365
+ #~ msgid ""
366
+ #~ "If you would like to add Facebook buttons to your page or post, please "
367
+ #~ "use %s button"
368
+ #~ msgstr ""
369
+ #~ "eğer web sitenize Facebook butonu eklemek isterseniz, verilen kısa kodu "
370
+ #~ "sayfanıza ya da yazınıza eklemeniz yeterlidir."
371
 
372
+ #~ msgid "My Page"
373
+ #~ msgstr "Benim Sayfam"
 
374
 
375
+ #~ msgid "Before"
376
+ #~ msgstr "Önce"
377
+
378
+ #~ msgid "After"
379
+ #~ msgstr "Sonra"
380
+
381
+ #~ msgid "Shortcode"
382
+ #~ msgstr "Kısa kod"
383
+
384
+ #, fuzzy
385
+ #~ msgid "Facebook buttons language"
386
+ #~ msgstr "Facebook Butonu dili"
387
+
388
+ #~ msgid "If you upgrade to Pro version all your settings will be saved."
389
+ #~ msgstr ""
390
+ #~ "Aboneliğinizi PRO versiyonuna yükseltirseniz tüm değişiklikleriniz "
391
+ #~ "kaydedilecek."
392
+
393
+ #, fuzzy
394
+ #~ msgid "Unlock premium options by upgrading to Pro version"
395
+ #~ msgstr "PRO versiyonuna geçerek premium özellikleri aktifleştirin."
396
+
397
+ #~ msgid "Standard Facebook image"
398
+ #~ msgstr "Standart Facebook görseli"
399
+
400
+ #~ msgid "Custom Facebook image"
401
+ #~ msgstr "Özel Facebook görseli"
402
+
403
+ #, fuzzy
404
+ #~ msgid "Html tag for \"Like\" button"
405
+ #~ msgstr "Beğen butonu için HTML etiketi:"
406
+
407
+ #~ msgid "Use this tag to improve validation of your site"
408
+ #~ msgstr "Sitenizin doğrulamasını geliştirmek için bu etiketi kullanın"
409
+
410
+ #~ msgid "Save Changes"
411
+ #~ msgstr "Değişiklikleri Kaydet"
412
 
413
  #~ msgid "Notice:"
414
  #~ msgstr "Uyarı:"
457
  #~ msgid "Plugins page"
458
  #~ msgstr "Eklentiler sayfası"
459
 
 
 
 
460
  #~ msgid ""
461
  #~ "Something went wrong. Try again later. If the error will appear again, "
462
  #~ "please, contact us <a href=http://support.bestwebsoft.com>BestWebSoft</"
languages/facebook-button-plugin-uk.mo CHANGED
Binary file
languages/facebook-button-plugin-uk.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: facebook-button-plugin\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2016-05-05 17:25+0300\n"
6
- "PO-Revision-Date: 2016-05-05 17:25+0300\n"
7
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: BestWebSoft <plugin@bestwebsoft.com>\n"
9
  "Language: ua_UA\n"
@@ -16,337 +16,426 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: facebook-button-plugin.php:34 facebook-button-plugin.php:294
 
20
  msgid "Facebook Button Settings"
21
  msgstr "Установки кнопки Facebook"
22
 
23
- #: facebook-button-plugin.php:216
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
24
  msgid "Settings saved"
25
  msgstr "Установки збережені"
26
 
27
- #: facebook-button-plugin.php:242
28
  msgid "Error: File size > 32K"
29
  msgstr "Помилка: Розмір файлу > 32K"
30
 
31
- #: facebook-button-plugin.php:245
32
  msgid "Error: Invalid file type"
33
  msgstr "Помилка: Невірний тип файлу"
34
 
35
- #: facebook-button-plugin.php:251
36
  msgid "Upload successful."
37
  msgstr "Файл був завантажений успішно"
38
 
39
- #: facebook-button-plugin.php:261
40
- msgid "Error: moving file failed"
41
- msgstr "Помилка: не вдалося переміщення файлів"
42
 
43
- #: facebook-button-plugin.php:264
44
- msgid "Error: check image width or height"
45
- msgstr "Помилка: Перевірте ширину або висоту зображення"
46
 
47
- #: facebook-button-plugin.php:268
48
  msgid "Uploading Error: check image properties"
49
  msgstr "Помилка Завантаження: Перевірте властивості зображення"
50
 
51
- #: facebook-button-plugin.php:281
52
- msgid "All plugin settings were restored."
53
- msgstr "Всі налаштування плагіну було скинуто до стандартних."
54
-
55
- #: facebook-button-plugin.php:296
56
- msgid "How to Use Step-by-step Instruction"
57
- msgstr "Iнструкцiя з використання"
58
-
59
- #: facebook-button-plugin.php:299 facebook-button-plugin.php:861
60
- #: facebook-button-plugin.php:875
61
- msgid "Settings"
62
- msgstr "Установки"
63
 
64
- #: facebook-button-plugin.php:300
65
- msgid "Extra settings"
66
- msgstr "Додаткові налаштування"
67
 
68
- #: facebook-button-plugin.php:301
69
- msgid "Custom code"
70
- msgstr "Користувацький код"
71
 
72
- #: facebook-button-plugin.php:302
73
- msgid "Go PRO"
74
- msgstr "Перейти на PRO версію"
75
 
76
- #: facebook-button-plugin.php:305
77
- msgid "Please, enable JavaScript in Your browser."
78
- msgstr "Будь ласка, активуйте JavaScript у Вашому браузері."
79
-
80
- #: facebook-button-plugin.php:320
81
- #, php-format
82
- msgid ""
83
- "If you would like to add Facebook buttons to your page or post, please use "
84
- "%s button"
85
- msgstr ""
86
- "Якщо ви хочете додати кнопки Facebook на вашу сторінку або пост, будь ласка, "
87
- "використовуйте кнопку %s"
88
-
89
- #: facebook-button-plugin.php:325
90
- #, php-format
91
- msgid ""
92
- "You can add Facebook buttons to your page or post by clicking on %s button "
93
- "in the content edit block using the Visual mode. If the button isn't "
94
- "displayed, please use the shortcode %s"
95
- msgstr ""
96
- "Ви можете додати Facebook кнопки на вашу сторінку або пост, натиснувши на "
97
- "кнопку %s в блоці редагування контенту в режимі Visual. Якщо кнопка не "
98
- "відображається, будь ласка, використовуйте шорткод %s"
99
-
100
- #: facebook-button-plugin.php:336
101
- msgid "Display button"
102
- msgstr "Відображати кнопку"
103
-
104
- #: facebook-button-plugin.php:339
105
- msgid "My Page"
106
- msgstr "Моя сторінка"
107
-
108
- #: facebook-button-plugin.php:340 facebook-button-plugin.php:507
109
  msgid "Like"
110
  msgstr "Подобається"
111
 
112
- #: facebook-button-plugin.php:341
113
  msgid "Share"
114
  msgstr "Поширити"
115
 
116
- #: facebook-button-plugin.php:346
117
- msgid "Facebook buttons position"
118
- msgstr "Розташування кнопок Facebook"
119
-
120
- #: facebook-button-plugin.php:349
121
- msgid "Before"
122
- msgstr "До"
123
-
124
- #: facebook-button-plugin.php:350
125
- msgid "After"
126
- msgstr "Після"
127
 
128
- #: facebook-button-plugin.php:351
129
- msgid "Before and After"
130
- msgstr "До та після"
131
 
132
- #: facebook-button-plugin.php:352
133
- msgid "Shortcode"
134
- msgstr "Шорткод"
135
 
136
- #: facebook-button-plugin.php:357
137
- msgid "Facebook buttons language"
138
- msgstr "Мова кнопок Facebook"
139
 
140
- #: facebook-button-plugin.php:368
141
- msgid "Change the language of Facebook Button"
142
- msgstr "Змінити мову для кнопок Facebook"
143
 
144
- #: facebook-button-plugin.php:373 facebook-button-plugin.php:376
145
- #: facebook-button-plugin.php:381
146
- msgid "Use the current site language"
147
- msgstr "Використовувати поточну мову сайту"
 
 
 
 
 
148
 
149
- #: facebook-button-plugin.php:373 facebook-button-plugin.php:377
150
- #: facebook-button-plugin.php:382
151
- msgid "Using"
152
- msgstr "Використовуючи"
153
 
154
- #: facebook-button-plugin.php:377
155
- msgid "Activate"
156
- msgstr "Активувати"
157
 
158
- #: facebook-button-plugin.php:382
159
- msgid "Download"
160
- msgstr "Завантажити"
161
 
162
- #: facebook-button-plugin.php:389
163
- msgid "Display buttons in excerpt"
164
- msgstr "Відображати кнопки в уривку"
165
 
166
- #: facebook-button-plugin.php:399 facebook-button-plugin.php:548
167
- #: facebook-button-plugin.php:585
 
168
  msgid "Close"
169
  msgstr "Закрити"
170
 
171
- #: facebook-button-plugin.php:403
172
- msgid "Meta tags"
173
- msgstr "Мета теги"
174
 
175
- #: facebook-button-plugin.php:406
176
- msgid "Image"
177
- msgstr "Зображення"
178
-
179
- #: facebook-button-plugin.php:409
180
  msgid "Featured Image"
181
  msgstr "Головне зображення"
182
 
183
- #: facebook-button-plugin.php:413
184
  msgid "Custom Image"
185
  msgstr "Користувацьке зображення"
186
 
187
- #: facebook-button-plugin.php:413
188
- msgid "This image will be used for all of the posts"
189
  msgstr "Це зображення буде використовуватися для всiх записiв"
190
 
191
- #: facebook-button-plugin.php:423
192
- msgid "Description"
193
- msgstr "Короткий опис"
194
-
195
- #: facebook-button-plugin.php:426
196
- msgid "Post excerpt"
197
- msgstr "Уривок"
198
-
199
- #: facebook-button-plugin.php:431
200
- msgid "This description will be used for all of the posts"
201
- msgstr "Цей короткий опис буде використовуватися у всiх постах"
202
 
203
- #: facebook-button-plugin.php:438 facebook-button-plugin.php:559
204
- #: facebook-button-plugin.php:637
205
- msgid "If you upgrade to Pro version all your settings will be saved."
206
- msgstr "Якщо ви перейдете на Pro версію, усі установки будуть збережені."
 
 
 
207
 
208
- #: facebook-button-plugin.php:445 facebook-button-plugin.php:566
209
- #: facebook-button-plugin.php:594 facebook-button-plugin.php:644
210
- msgid "Unlock premium options by upgrading to Pro version"
211
- msgstr "Зробити доступними преміум-опції, перейшовши на Pro версію"
212
 
213
- #: facebook-button-plugin.php:447 facebook-button-plugin.php:568
214
- #: facebook-button-plugin.php:596 facebook-button-plugin.php:646
215
- msgid "Learn More"
216
- msgstr "Докладніше"
217
-
218
- #: facebook-button-plugin.php:455
219
- msgid "Your Facebook ID or username"
220
- msgstr "ID вашого Facebook акаунту"
221
 
222
- #: facebook-button-plugin.php:462
223
- msgid "\"My page\" button image"
224
- msgstr "Зображення кнопки \"Моя сторінка\""
225
 
226
- #: facebook-button-plugin.php:467
227
- msgid "Standard Facebook image"
228
- msgstr "Стандартне зображення Facebook "
229
 
230
- #: facebook-button-plugin.php:468
231
- msgid "Custom Facebook image"
232
- msgstr "Кастомне зображення Facebook"
233
 
234
- #: facebook-button-plugin.php:471
235
  msgid ""
236
- "To use custom image you need to setup permissions to upload directory of "
237
  "your site"
238
  msgstr ""
239
- "Для використання кастомного зображення Вам необхідно видати права доступу на "
240
- "папку завантажень на вашому сайті"
241
 
242
- #: facebook-button-plugin.php:478
243
  msgid "Current image"
244
  msgstr "Поточне зображення"
245
 
246
- #: facebook-button-plugin.php:486
247
  msgid ""
248
- "Image properties: max image width:100px; max image height:40px; max image "
249
  "size:32Kb; image types:\"jpg\", \"jpeg\", \"png\"."
250
  msgstr ""
251
- "Властивості зображення: максимальна ширина зображення:100px; максимальна "
252
  "висота зображення: 40px; максимальний розмір зображення: 32Kb; типи "
253
  "зображеннь :\"jpg\", \"jpeg\", \"png\"."
254
 
255
- #: facebook-button-plugin.php:490
256
- msgid "Button layout"
257
- msgstr "Тип кнопок"
258
 
259
- #: facebook-button-plugin.php:504
260
- msgid "Like button action"
261
- msgstr "Дія кнопки \"Like\""
262
 
263
- #: facebook-button-plugin.php:508
 
 
 
 
264
  msgid "Recommend"
265
  msgstr "Рекомендую"
266
 
267
- #: facebook-button-plugin.php:513
268
- msgid "Show faces"
269
- msgstr "Показувати обличчя"
 
 
 
 
270
 
271
- #: facebook-button-plugin.php:519
272
- msgid "Layout width"
273
  msgstr "Ширина блоку"
274
 
275
- #: facebook-button-plugin.php:525
276
- msgid "Color scheme"
277
- msgstr "Кольорова схема"
 
 
 
 
278
 
279
- #: facebook-button-plugin.php:528
280
  msgid "Light"
281
  msgstr "Світла"
282
 
283
- #: facebook-button-plugin.php:529
284
  msgid "Dark"
285
  msgstr "Темна"
286
 
287
- #: facebook-button-plugin.php:534
288
- msgid "Html tag for \"Like\" button"
289
- msgstr "Html тег для кнопки \"Подобається\""
 
 
 
 
 
 
 
 
 
290
 
291
- #: facebook-button-plugin.php:539
292
- msgid "Use this tag to improve validation of your site"
293
- msgstr "Використовуйте цей тег для поліпшення валідації вашого сайту"
294
 
295
- #: facebook-button-plugin.php:552
296
- msgid "\"Like\" for an entire site on every page:"
297
- msgstr "\"Подобається\" для всього сайту на кожній сторінці"
298
 
299
- #: facebook-button-plugin.php:554
300
  msgid ""
301
- "Notice: \"Like for the entire site\" option does not create an extra button. "
302
- "This option merely allows your users to like the entire website when this "
303
- "option is enabled, or a single post when this option is disabled, when "
304
- "clicking the regular \"Like\" button."
305
  msgstr ""
306
- "Увага: опція \"Подобається для всього сайту\" - не створює додаткову "
307
- "кнопку. Ця опція дозволяє при кліку користувачами на стандартну кнопку "
308
- "плагіна ставити \"Подобається\" усьому сайту , якщо ця опція увімкнена, або "
309
- "ставити \"Подобається\" окремим постам, якщо опція вимкнена."
310
 
311
- #: facebook-button-plugin.php:576 facebook-button-plugin.php:632
312
- msgid "Save Changes"
313
- msgstr "Зберегти зміни"
314
 
315
- #: facebook-button-plugin.php:588
316
- msgid "Facebook Button preview:"
317
- msgstr "Попередній перегляд Facebook кнопок:"
318
 
319
- #: facebook-button-plugin.php:614
320
  msgid ""
321
  "Please choose the necessary post types (or single pages) where Facebook "
322
  "button will be displayed:"
323
  msgstr ""
324
- "Будь ласка, оберіть необхідні типи постів (чи сторінок), де буде "
325
  "відображатися кнопка Facebook"
326
 
327
- #: facebook-button-plugin.php:621
328
  msgid "Show URL for pages"
329
  msgstr "Відображати URL сторінок"
330
 
331
- #: facebook-button-plugin.php:627
332
  msgid "Example of the site's pages tree"
333
  msgstr "Приклад дерева сторінок сайту"
334
 
335
- #: facebook-button-plugin.php:627
336
  msgid "Example of site pages' tree"
337
  msgstr "Приклад дерева сторінок сайту"
338
 
339
- #: facebook-button-plugin.php:765
340
- msgid "Add Facebook buttons to your page or post"
341
- msgstr "Додати кнопки Facebook на вашу сторінку або пост"
342
 
343
- #: facebook-button-plugin.php:876
344
- msgid "FAQ"
345
- msgstr "FAQ"
346
 
347
- #: facebook-button-plugin.php:877
348
- msgid "Support"
349
- msgstr "Підтримка"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
350
 
351
  #~ msgid "None"
352
  #~ msgstr "Не використовувати"
@@ -407,9 +496,6 @@ msgstr "Підтримка"
407
  #~ msgid "Plugins page"
408
  #~ msgstr "Сторінку плагинів"
409
 
410
- #~ msgid "Wrong license key"
411
- #~ msgstr "Невірний ліцензійний ключ!"
412
-
413
  #~ msgid ""
414
  #~ "Something went wrong. Try again later. If the error will appear again, "
415
  #~ "please, contact us <a href=http://support.bestwebsoft.com>BestWebSoft</"
2
  msgstr ""
3
  "Project-Id-Version: facebook-button-plugin\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-01-26 11:26+0300\n"
6
+ "PO-Revision-Date: 2017-01-26 11:26+0300\n"
7
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: BestWebSoft <plugin@bestwebsoft.com>\n"
9
  "Language: ua_UA\n"
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: facebook-button-plugin.php:35 facebook-button-plugin.php:36
20
+ #: facebook-button-plugin.php:201
21
  msgid "Facebook Button Settings"
22
  msgstr "Установки кнопки Facebook"
23
 
24
+ #: facebook-button-plugin.php:36 facebook-button-plugin.php:405
25
+ #: facebook-button-plugin.php:419 includes/class-fcbkbttn-settings.php:23
26
+ msgid "Settings"
27
+ msgstr "Установки"
28
+
29
+ #: facebook-button-plugin.php:42
30
+ msgid "Upgrade to Pro"
31
+ msgstr "Оновитися до Pro"
32
+
33
+ #: facebook-button-plugin.php:202
34
+ msgid "Please, enable JavaScript in Your browser."
35
+ msgstr "Будь ласка, активуйте JavaScript у Вашому браузері."
36
+
37
+ #: facebook-button-plugin.php:298
38
+ msgid "Add Facebook buttons to your page or post"
39
+ msgstr "Додати кнопки Facebook на вашу сторінку або запис"
40
+
41
+ #: facebook-button-plugin.php:420
42
+ msgid "FAQ"
43
+ msgstr "FAQ"
44
+
45
+ #: facebook-button-plugin.php:421
46
+ msgid "Support"
47
+ msgstr "Підтримка"
48
+
49
+ #: includes/class-fcbkbttn-settings.php:25
50
+ msgid "Display"
51
+ msgstr "Відображення"
52
+
53
+ #: includes/class-fcbkbttn-settings.php:27
54
+ msgid "Misc"
55
+ msgstr "Різне"
56
+
57
+ #: includes/class-fcbkbttn-settings.php:28
58
+ msgid "Custom Code"
59
+ msgstr "Користувацький код"
60
+
61
+ #: includes/class-fcbkbttn-settings.php:30
62
+ msgid "License Key"
63
+ msgstr "Ліцензійний ключ"
64
+
65
+ #: includes/class-fcbkbttn-settings.php:95
66
  msgid "Settings saved"
67
  msgstr "Установки збережені"
68
 
69
+ #: includes/class-fcbkbttn-settings.php:124
70
  msgid "Error: File size > 32K"
71
  msgstr "Помилка: Розмір файлу > 32K"
72
 
73
+ #: includes/class-fcbkbttn-settings.php:127
74
  msgid "Error: Invalid file type"
75
  msgstr "Помилка: Невірний тип файлу"
76
 
77
+ #: includes/class-fcbkbttn-settings.php:133
78
  msgid "Upload successful."
79
  msgstr "Файл був завантажений успішно"
80
 
81
+ #: includes/class-fcbkbttn-settings.php:143
82
+ msgid "Error: failed to move file."
83
+ msgstr "Помилка: не вдалося переміщення файлу."
84
 
85
+ #: includes/class-fcbkbttn-settings.php:146
86
+ msgid "Error: check image width or height."
87
+ msgstr "Помилка: Перевірте ширину або висоту зображення."
88
 
89
+ #: includes/class-fcbkbttn-settings.php:150
90
  msgid "Uploading Error: check image properties"
91
  msgstr "Помилка Завантаження: Перевірте властивості зображення"
92
 
93
+ #: includes/class-fcbkbttn-settings.php:171
94
+ msgid "Facebook button Settings"
95
+ msgstr "Установки кнопок Facebook"
 
 
 
 
 
 
 
 
 
96
 
97
+ #: includes/class-fcbkbttn-settings.php:174
98
+ msgid "General"
99
+ msgstr "Загальне"
100
 
101
+ #: includes/class-fcbkbttn-settings.php:177
102
+ msgid "Buttons"
103
+ msgstr "Кнопки"
104
 
105
+ #: includes/class-fcbkbttn-settings.php:180
106
+ msgid "Profile URL"
107
+ msgstr "URL профілю"
108
 
109
+ #: includes/class-fcbkbttn-settings.php:181
110
+ #: includes/class-fcbkbttn-settings.php:367
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
111
  msgid "Like"
112
  msgstr "Подобається"
113
 
114
+ #: includes/class-fcbkbttn-settings.php:182
115
  msgid "Share"
116
  msgstr "Поширити"
117
 
118
+ #: includes/class-fcbkbttn-settings.php:187
119
+ msgid "Buttons Position"
120
+ msgstr "Розташування кнопок"
 
 
 
 
 
 
 
 
121
 
122
+ #: includes/class-fcbkbttn-settings.php:192
123
+ msgid "Before content"
124
+ msgstr "Перед вмістом"
125
 
126
+ #: includes/class-fcbkbttn-settings.php:197
127
+ msgid "After content"
128
+ msgstr "Після вмісту"
129
 
130
+ #: includes/class-fcbkbttn-settings.php:203
131
+ msgid "Language"
132
+ msgstr "Мова"
133
 
134
+ #: includes/class-fcbkbttn-settings.php:214
135
+ msgid "Select the default language for Facebook button(-s)."
136
+ msgstr "Оберіть мову за замовчуванням для кнопок Facebook."
137
 
138
+ #: includes/class-fcbkbttn-settings.php:223
139
+ #: includes/class-fcbkbttn-settings.php:226
140
+ #: includes/class-fcbkbttn-settings.php:230
141
+ msgid ""
142
+ "Enable to switch language automatically on multilingual website using "
143
+ "Multilanguage plugin."
144
+ msgstr ""
145
+ "Включити, щоб перемкнути мову автоматично на багатомовному сайті, "
146
+ "використовуючи Multilanguage плагін."
147
 
148
+ #: includes/class-fcbkbttn-settings.php:226
149
+ #, php-format
150
+ msgid "Activate %s"
151
+ msgstr "Активувати %s"
152
 
153
+ #: includes/class-fcbkbttn-settings.php:230
154
+ msgid "Learn More"
155
+ msgstr "Докладніше"
156
 
157
+ #: includes/class-fcbkbttn-settings.php:235
158
+ msgid "Excerpt"
159
+ msgstr "Уривок"
160
 
161
+ #: includes/class-fcbkbttn-settings.php:237
162
+ msgid "Enable to display buttons in excerpt."
163
+ msgstr "Ввімкнути для відображення кнопок в уривку."
164
 
165
+ #: includes/class-fcbkbttn-settings.php:246
166
+ #: includes/class-fcbkbttn-settings.php:422
167
+ #: includes/class-fcbkbttn-settings.php:477
168
  msgid "Close"
169
  msgstr "Закрити"
170
 
171
+ #: includes/class-fcbkbttn-settings.php:250
172
+ msgid "Meta Image"
173
+ msgstr "Мета зображення"
174
 
175
+ #: includes/class-fcbkbttn-settings.php:255
 
 
 
 
176
  msgid "Featured Image"
177
  msgstr "Головне зображення"
178
 
179
+ #: includes/class-fcbkbttn-settings.php:259
180
  msgid "Custom Image"
181
  msgstr "Користувацьке зображення"
182
 
183
+ #: includes/class-fcbkbttn-settings.php:259
184
+ msgid "This image will be used for all posts"
185
  msgstr "Це зображення буде використовуватися для всiх записiв"
186
 
187
+ #: includes/class-fcbkbttn-settings.php:266
188
+ msgid "Meta Description"
189
+ msgstr "Мета опис"
 
 
 
 
 
 
 
 
190
 
191
+ #: includes/class-fcbkbttn-settings.php:270
192
+ msgid ""
193
+ "This description will be used for all pages and posts. Leave blank to use "
194
+ "page description."
195
+ msgstr ""
196
+ "Цей опис буде використовуватися для всіх записів і сторінок. Залиште "
197
+ "порожнім, щоб використовувати опис сторінки."
198
 
199
+ #: includes/class-fcbkbttn-settings.php:279
200
+ msgid "Profile URL Button"
201
+ msgstr "Кнопка URL профілю"
 
202
 
203
+ #: includes/class-fcbkbttn-settings.php:282
204
+ msgid "Facebook ID or Username"
205
+ msgstr "Facebook ID або Ім'я користувача"
 
 
 
 
 
206
 
207
+ #: includes/class-fcbkbttn-settings.php:289
208
+ msgid "Profile Button Image"
209
+ msgstr "Зображення кнопки профілю"
210
 
211
+ #: includes/class-fcbkbttn-settings.php:296
212
+ msgid "Default"
213
+ msgstr "За замовчуванням"
214
 
215
+ #: includes/class-fcbkbttn-settings.php:301
216
+ msgid "Custom image"
217
+ msgstr "Користувацьке зображення"
218
 
219
+ #: includes/class-fcbkbttn-settings.php:305
220
  msgid ""
221
+ "To use custom image, You need to setup permissions for upload directory of "
222
  "your site"
223
  msgstr ""
224
+ "Для використання користувацького зображення Вам необхідно видати права "
225
+ "доступу на папку завантажень на вашому сайті"
226
 
227
+ #: includes/class-fcbkbttn-settings.php:312
228
  msgid "Current image"
229
  msgstr "Поточне зображення"
230
 
231
+ #: includes/class-fcbkbttn-settings.php:320
232
  msgid ""
233
+ "Image requirements: max image width:100px; max image height:40px; max image "
234
  "size:32Kb; image types:\"jpg\", \"jpeg\", \"png\"."
235
  msgstr ""
236
+ "Вимоги до зображення: максимальна ширина зображення:100px; максимальна "
237
  "висота зображення: 40px; максимальний розмір зображення: 32Kb; типи "
238
  "зображеннь :\"jpg\", \"jpeg\", \"png\"."
239
 
240
+ #: includes/class-fcbkbttn-settings.php:324
241
+ msgid "Like&Share Buttons"
242
+ msgstr "Кнопки \"Подобається\" та \"Поширити\""
243
 
244
+ #: includes/class-fcbkbttn-settings.php:327
245
+ msgid "Layout"
246
+ msgstr "Вид"
247
 
248
+ #: includes/class-fcbkbttn-settings.php:362
249
+ msgid "Like Button Action"
250
+ msgstr "Дія кнопки \"Подобається\""
251
+
252
+ #: includes/class-fcbkbttn-settings.php:372
253
  msgid "Recommend"
254
  msgstr "Рекомендую"
255
 
256
+ #: includes/class-fcbkbttn-settings.php:378
257
+ msgid "Friends faces"
258
+ msgstr "Обличчя друзів"
259
+
260
+ #: includes/class-fcbkbttn-settings.php:381
261
+ msgid " Enable to show faces of your friends who submitted the button."
262
+ msgstr "Включити, щоб показати обличчя своїх друзів, які натиснули кнопку."
263
 
264
+ #: includes/class-fcbkbttn-settings.php:385
265
+ msgid "Layout Width"
266
  msgstr "Ширина блоку"
267
 
268
+ #: includes/class-fcbkbttn-settings.php:387
269
+ msgid "px"
270
+ msgstr "пікс"
271
+
272
+ #: includes/class-fcbkbttn-settings.php:391
273
+ msgid "Theme"
274
+ msgstr "Тема"
275
 
276
+ #: includes/class-fcbkbttn-settings.php:396
277
  msgid "Light"
278
  msgstr "Світла"
279
 
280
+ #: includes/class-fcbkbttn-settings.php:401
281
  msgid "Dark"
282
  msgstr "Темна"
283
 
284
+ #: includes/class-fcbkbttn-settings.php:407
285
+ msgid "Like Button HTML Tag"
286
+ msgstr "HTML тег кнопки \"Подобається\""
287
+
288
+ #: includes/class-fcbkbttn-settings.php:413
289
+ #, php-format
290
+ msgid "Tag %s can be used to improve website code validation."
291
+ msgstr "Тег %s може бути використаний для поліпшення валідації коду сайту."
292
+
293
+ #: includes/class-fcbkbttn-settings.php:426
294
+ msgid "URL to Like"
295
+ msgstr "URL кнопки \"Подобається\""
296
 
297
+ #: includes/class-fcbkbttn-settings.php:428
298
+ msgid "Leave blank to use a current page."
299
+ msgstr "Залиште порожнім, щоб використовувати поточну сторінку."
300
 
301
+ #: includes/class-fcbkbttn-settings.php:456
302
+ msgid "Facebook Buttons Shortchode"
303
+ msgstr "Шорткод Facebook кнопок"
304
 
305
+ #: includes/class-fcbkbttn-settings.php:459
306
  msgid ""
307
+ "Add Facebook button(-s) to your posts, pages, custom post types or widgets "
308
+ "by using the following shortcode:"
 
 
309
  msgstr ""
310
+ "Додати кнопки Facebook на ваші записи, сторінки, користувацькі типи записів "
311
+ "або віджети за допомогою даного шорткода:"
 
 
312
 
313
+ #: includes/class-fcbkbttn-settings.php:478
314
+ msgid "Facebook Buttons Preview"
315
+ msgstr "Попередній перегляд Facebook кнопок"
316
 
317
+ #: includes/class-fcbkbttn-settings.php:493
318
+ msgid "Display Settings"
319
+ msgstr "Налаштування відображення"
320
 
321
+ #: includes/class-fcbkbttn-settings.php:502
322
  msgid ""
323
  "Please choose the necessary post types (or single pages) where Facebook "
324
  "button will be displayed:"
325
  msgstr ""
326
+ "Будь ласка, оберіть необхідні типи записів (чи сторінок), де буде "
327
  "відображатися кнопка Facebook"
328
 
329
+ #: includes/class-fcbkbttn-settings.php:509
330
  msgid "Show URL for pages"
331
  msgstr "Відображати URL сторінок"
332
 
333
+ #: includes/class-fcbkbttn-settings.php:515
334
  msgid "Example of the site's pages tree"
335
  msgstr "Приклад дерева сторінок сайту"
336
 
337
+ #: includes/class-fcbkbttn-settings.php:515
338
  msgid "Example of site pages' tree"
339
  msgstr "Приклад дерева сторінок сайту"
340
 
341
+ #~ msgid "All plugin settings were restored."
342
+ #~ msgstr "Всі налаштування плагіну було скинуто до стандартних."
 
343
 
344
+ #~ msgid "How to Use Step-by-step Instruction"
345
+ #~ msgstr "Iнструкцiя з використання"
 
346
 
347
+ #~ msgid "Extra settings"
348
+ #~ msgstr "Додаткові налаштування"
349
+
350
+ #~ msgid "Go PRO"
351
+ #~ msgstr "Перейти на PRO версію"
352
+
353
+ #~ msgid ""
354
+ #~ "If you would like to add Facebook buttons to your page or post, please "
355
+ #~ "use %s button"
356
+ #~ msgstr ""
357
+ #~ "Якщо ви хочете додати кнопки Facebook на вашу сторінку або пост, будь "
358
+ #~ "ласка, використовуйте кнопку %s"
359
+
360
+ #~ msgid ""
361
+ #~ "You can add Facebook buttons to your page or post by clicking on %s "
362
+ #~ "button in the content edit block using the Visual mode. If the button "
363
+ #~ "isn't displayed, please use the shortcode %s"
364
+ #~ msgstr ""
365
+ #~ "Ви можете додати Facebook кнопки на вашу сторінку або пост, натиснувши на "
366
+ #~ "кнопку %s в блоці редагування контенту в режимі Visual. Якщо кнопка не "
367
+ #~ "відображається, будь ласка, використовуйте шорткод %s"
368
+
369
+ #~ msgid "My Page"
370
+ #~ msgstr "Моя сторінка"
371
+
372
+ #~ msgid "Before"
373
+ #~ msgstr "До"
374
+
375
+ #~ msgid "After"
376
+ #~ msgstr "Після"
377
+
378
+ #~ msgid "Shortcode"
379
+ #~ msgstr "Шорткод"
380
+
381
+ #~ msgid "Facebook buttons language"
382
+ #~ msgstr "Мова кнопок Facebook"
383
+
384
+ #~ msgid "Use the current site language"
385
+ #~ msgstr "Використовувати поточну мову сайту"
386
+
387
+ #~ msgid "Using"
388
+ #~ msgstr "Використовуючи"
389
+
390
+ #~ msgid "Download"
391
+ #~ msgstr "Завантажити"
392
+
393
+ #~ msgid "Image"
394
+ #~ msgstr "Зображення"
395
+
396
+ #~ msgid "If you upgrade to Pro version all your settings will be saved."
397
+ #~ msgstr "Якщо ви перейдете на Pro версію, усі установки будуть збережені."
398
+
399
+ #~ msgid "Unlock premium options by upgrading to Pro version"
400
+ #~ msgstr "Зробити доступними преміум-опції, перейшовши на Pro версію"
401
+
402
+ #~ msgid "\"My page\" button image"
403
+ #~ msgstr "Зображення кнопки \"Моя сторінка\""
404
+
405
+ #~ msgid "Standard Facebook image"
406
+ #~ msgstr "Стандартне зображення Facebook "
407
+
408
+ #~ msgid "Custom Facebook image"
409
+ #~ msgstr "Кастомне зображення Facebook"
410
+
411
+ #~ msgid "Show faces"
412
+ #~ msgstr "Показувати обличчя"
413
+
414
+ #~ msgid "Color scheme"
415
+ #~ msgstr "Кольорова схема"
416
+
417
+ #~ msgid "Html tag for \"Like\" button"
418
+ #~ msgstr "Html тег для кнопки \"Подобається\""
419
+
420
+ #~ msgid "Use this tag to improve validation of your site"
421
+ #~ msgstr "Використовуйте цей тег для поліпшення валідації вашого сайту"
422
+
423
+ #~ msgid "\"Like\" for an entire site on every page:"
424
+ #~ msgstr "\"Подобається\" для всього сайту на кожній сторінці"
425
+
426
+ #~ msgid ""
427
+ #~ "Notice: \"Like for the entire site\" option does not create an extra "
428
+ #~ "button. This option merely allows your users to like the entire website "
429
+ #~ "when this option is enabled, or a single post when this option is "
430
+ #~ "disabled, when clicking the regular \"Like\" button."
431
+ #~ msgstr ""
432
+ #~ "Увага: опція \"Подобається для всього сайту\" - не створює додаткову "
433
+ #~ "кнопку. Ця опція дозволяє при кліку користувачами на стандартну кнопку "
434
+ #~ "плагіна ставити \"Подобається\" усьому сайту , якщо ця опція увімкнена, "
435
+ #~ "або ставити \"Подобається\" окремим постам, якщо опція вимкнена."
436
+
437
+ #~ msgid "Save Changes"
438
+ #~ msgstr "Зберегти зміни"
439
 
440
  #~ msgid "None"
441
  #~ msgstr "Не використовувати"
496
  #~ msgid "Plugins page"
497
  #~ msgstr "Сторінку плагинів"
498
 
 
 
 
499
  #~ msgid ""
500
  #~ "Something went wrong. Try again later. If the error will appear again, "
501
  #~ "please, contact us <a href=http://support.bestwebsoft.com>BestWebSoft</"
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: bestwebsoft
3
  Donate link: http://bestwebsoft.com/donate/
4
  Tags: facebook buttons, share, like, add share button, social buttons, facebook, facebook button icon, follow, follow button, like button, share button, facebook plugin
5
  Requires at least: 3.8
6
- Tested up to: 4.7
7
- Stable tag: 2.52
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -31,8 +31,8 @@ http://www.youtube.com/watch?v=hGNQs-rF8b8
31
  * Button count
32
  * Button
33
  * Select the button position:
34
- * Before the content
35
- * After the content
36
  * Before and after
37
  * Custom position (using shortcode)
38
  * Show/hide faces option
@@ -43,6 +43,7 @@ http://www.youtube.com/watch?v=hGNQs-rF8b8
43
  * Compatible with latest WordPress version
44
  * Incredibly simple settings for fast setup without modifying code
45
  * Detailed step-by-step documentation and videos
 
46
 
47
  > **Pro Features**
48
  >
@@ -154,6 +155,9 @@ Please make sure that the problem hasn't been discussed yet on our forum (<http:
154
 
155
  == Changelog ==
156
 
 
 
 
157
  = V2.52 - 14.11.2016 =
158
  * Update : Compatibility with Pagination plugin was added.
159
  * Pro : Tree of site pages was updated.
@@ -365,6 +369,9 @@ Please make sure that the problem hasn't been discussed yet on our forum (<http:
365
 
366
  == Upgrade Notice ==
367
 
 
 
 
368
  = V2.52 =
369
  * Functionality improved.
370
 
3
  Donate link: http://bestwebsoft.com/donate/
4
  Tags: facebook buttons, share, like, add share button, social buttons, facebook, facebook button icon, follow, follow button, like button, share button, facebook plugin
5
  Requires at least: 3.8
6
+ Tested up to: 4.7.2
7
+ Stable tag: 2.53
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
31
  * Button count
32
  * Button
33
  * Select the button position:
34
+ * Before content
35
+ * After content
36
  * Before and after
37
  * Custom position (using shortcode)
38
  * Show/hide faces option
43
  * Compatible with latest WordPress version
44
  * Incredibly simple settings for fast setup without modifying code
45
  * Detailed step-by-step documentation and videos
46
+ * Multilingual and RTL ready
47
 
48
  > **Pro Features**
49
  >
155
 
156
  == Changelog ==
157
 
158
+ = V2.53 - 31.01.2017 =
159
+ * Update : The plugin settings page has been updated.
160
+
161
  = V2.52 - 14.11.2016 =
162
  * Update : Compatibility with Pagination plugin was added.
163
  * Pro : Tree of site pages was updated.
369
 
370
  == Upgrade Notice ==
371
 
372
+ = V2.53 =
373
+ * Usability improved.
374
+
375
  = V2.52 =
376
  * Functionality improved.
377
 
screenshot-3.png CHANGED
Binary file