Facebook Button by BestWebSoft - Version 2.38

Version Description

  • 23.04.2015 =
  • Update : Button styles are updated.
  • New : The Finnish language file is added to the plugin.
Download this release

Release Info

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

Code changes from version 2.37 to 2.38

Files changed (39) hide show
  1. bws_menu/bws_functions.php +139 -104
  2. bws_menu/bws_menu.php +19 -3
  3. bws_menu/css/general_style.css +16 -6
  4. bws_menu/css/general_style_wp_before_3.8.css +16 -6
  5. bws_menu/icons/social-buttons-pack.png +0 -0
  6. bws_menu/icons/zendesk-help-center.png +0 -0
  7. bws_menu/js/bws_tooltip.js +79 -0
  8. bws_menu/languages/bestwebsoft-de_DE.mo +0 -0
  9. bws_menu/languages/bestwebsoft-de_DE.po +189 -124
  10. bws_menu/languages/bestwebsoft-fr_FR.mo +0 -0
  11. bws_menu/languages/bestwebsoft-fr_FR.po +187 -122
  12. bws_menu/languages/bestwebsoft-it_IT.mo +0 -0
  13. bws_menu/languages/bestwebsoft-it_IT.po +191 -128
  14. bws_menu/languages/bestwebsoft-ja.mo +0 -0
  15. bws_menu/languages/bestwebsoft-ja.po +187 -125
  16. bws_menu/languages/bestwebsoft-pt_BR.mo +0 -0
  17. bws_menu/languages/bestwebsoft-pt_BR.po +188 -123
  18. bws_menu/languages/bestwebsoft-ru_RU.mo +0 -0
  19. bws_menu/languages/bestwebsoft-ru_RU.po +296 -193
  20. bws_menu/languages/bestwebsoft-sr_RS.mo +0 -0
  21. bws_menu/languages/bestwebsoft-sr_RS.po +187 -122
  22. bws_menu/languages/bestwebsoft-sv_SE.mo +0 -0
  23. bws_menu/languages/bestwebsoft-sv_SE.po +188 -125
  24. bws_menu/languages/bestwebsoft-uk.mo +0 -0
  25. bws_menu/languages/bestwebsoft-uk.po +191 -125
  26. css/style.css +5 -4
  27. facebook-button-plugin.php +64 -50
  28. images/banner.png +0 -0
  29. languages/facebook-fi_FI.mo +0 -0
  30. languages/facebook-fi_FI.po +241 -0
  31. languages/facebook-fr_FR.mo +0 -0
  32. languages/facebook-fr_FR.po +59 -59
  33. languages/facebook-ru_RU.mo +0 -0
  34. languages/facebook-ru_RU.po +0 -0
  35. languages/facebook-tr_TR.mo +0 -0
  36. languages/facebook-tr_TR.po +0 -0
  37. languages/facebook-uk.mo +0 -0
  38. languages/facebook-uk.po +3 -3
  39. readme.txt +10 -2
bws_menu/bws_functions.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  * General functions for BestWebSoft plugins
4
- * Version: 1.0.6
5
  */
6
  if ( ! function_exists ( 'bws_add_general_menu' ) ) {
7
  function bws_add_general_menu( $base ) {
@@ -38,11 +38,13 @@ if ( ! function_exists ( 'bws_add_general_menu' ) ) {
38
  require_once( dirname( __FILE__ ) . '/bws_menu.php' );
39
  } else if ( ! isset( $bstwbsftwppdtplgns_added_menu ) ) {
40
  $all_plugins = get_plugins();
41
- $plugin_with_newer_menu = $base;
42
  foreach ( $bstwbsftwppdtplgns_options['bws_menu']['version'] as $key => $value ) {
43
  if ( array_key_exists( $key, $all_plugins ) ) {
44
  if ( $bws_menu_version < $value && is_plugin_active( $base ) ) {
45
- $plugin_with_newer_menu = $key;
 
 
 
46
  }
47
  } else {
48
  unset( $bstwbsftwppdtplgns_options['bws_menu']['version'][ $key ] );
@@ -52,6 +54,8 @@ if ( ! function_exists ( 'bws_add_general_menu' ) ) {
52
  update_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
53
  }
54
  }
 
 
55
  $plugin_with_newer_menu = explode( '/', $plugin_with_newer_menu );
56
  $wp_content_dir = defined( 'WP_CONTENT_DIR' ) ? basename( WP_CONTENT_DIR ) : 'wp-content';
57
 
@@ -79,11 +83,14 @@ if ( ! function_exists ( 'bws_wp_version_check' ) ) {
79
  deactivate_plugins( $plugin_basename );
80
  $admin_url = ( function_exists( 'get_admin_url' ) ) ? get_admin_url( null, 'plugins.php' ) : esc_url( '/wp-admin/plugins.php' );
81
  wp_die(
82
- printf(
83
- "<strong>" . $plugin_info['Name'] . "</strong> %1$s <strong>WordPress " . $require_wp . "</strong> %2$s <br /><br />%3$s <a href='" . $admin_url . "'>%4$s</a>.",
 
84
  __( 'requires', 'bestwebsoft' ),
 
85
  __( 'or higher, that is why it has been deactivated! Please upgrade WordPress and try again.', 'bestwebsoft' ),
86
  __( 'Back to the WordPress', 'bestwebsoft' ),
 
87
  __( 'Plugins page', 'bestwebsoft' )
88
  )
89
  );
@@ -93,7 +100,7 @@ if ( ! function_exists ( 'bws_wp_version_check' ) ) {
93
  }
94
 
95
  if ( ! function_exists( 'bws_plugin_banner' ) ) {
96
- function bws_plugin_banner( $plugin_info, $this_banner_prefix, $link_slug, $link_key, $link_pn, $banner_url ) {
97
  global $wp_version, $bstwbsftwppdtplgns_cookie_add, $bstwbsftwppdtplgns_banner_array;
98
 
99
  if ( empty( $bstwbsftwppdtplgns_banner_array ) ) {
@@ -101,7 +108,11 @@ if ( ! function_exists( 'bws_plugin_banner' ) ) {
101
  require_once( dirname( __FILE__ ) . '/bws_menu.php' );
102
  bws_get_banner_array();
103
  }
104
-
 
 
 
 
105
  if ( ! function_exists( 'is_plugin_active' ) )
106
  require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
107
 
@@ -133,15 +144,15 @@ if ( ! function_exists( 'bws_plugin_banner' ) ) {
133
  <div class="updated" style="padding: 0; margin: 0; border: none; background: none;">
134
  <div class="<?php echo $this_banner_prefix; ?>_message bws_banner_on_plugin_page" style="display: none;">
135
  <img class="<?php echo $this_banner_prefix; ?>_close_icon close_icon" title="" src="<?php echo plugins_url( 'images/close_banner.png', __FILE__ ); ?>" alt=""/>
136
- <div class="button_div">
137
- <a class="button" target="_blank" href="http://bestwebsoft.com/products/<?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; ?>"><?php _e( 'Learn More', 'bestwebsoft' ); ?></a>
138
- </div>
139
  <div class="text"><?php
140
  _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 />
141
  <span><?php _e( 'Extend standard plugin functionality with new great options.', 'bestwebsoft' ); ?></span>
142
  </div>
143
- <div class="icon">
144
- <img title="" src="<?php echo $banner_url; ?>" alt="" />
145
  </div>
146
  </div>
147
  </div>
@@ -181,7 +192,7 @@ if ( ! function_exists( 'bws_go_pro_tab_check' ) ) {
181
  if ( strlen( $bws_license_key ) != 18 ) {
182
  $result['error'] = __( "Wrong license key", 'bestwebsoft' );
183
  } else {
184
- $bws_license_plugin = stripslashes( esc_html( $_POST['bws_license_plugin'] ) );
185
  if ( isset( $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] ) && $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['time'] > ( time() - (24 * 60 * 60) ) ) {
186
  $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] = $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] + 1;
187
  } else {
@@ -315,7 +326,7 @@ if ( ! function_exists( 'bws_go_pro_tab_check' ) ) {
315
  }
316
 
317
  if ( ! function_exists( 'bws_go_pro_tab' ) ) {
318
- 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 ) {
319
  global $wp_version, $bstwbsftwppdtplgns_options;
320
  $bws_license_key = ( isset( $_POST['bws_license_key'] ) ) ? stripslashes( esc_html( trim( $_POST['bws_license_key'] ) ) ) : "";
321
  if ( $pro_plugin_is_activated ) { ?>
@@ -341,12 +352,15 @@ if ( ! function_exists( 'bws_go_pro_tab' ) ) {
341
  <?php _e( '(your username is the email you specify when purchasing the product).', 'bestwebsoft' ); ?>
342
  </span>
343
  </p>
344
- <?php if ( isset( $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] ) &&
 
 
345
  '5' < $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] &&
346
  $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['time'] > ( time() - ( 24 * 60 * 60 ) ) ) { ?>
347
  <p>
348
  <input disabled="disabled" type="text" name="bws_license_key" value="<?php echo $bws_license_key; ?>" />
349
  <input disabled="disabled" type="submit" class="button-primary" value="<?php _e( 'Activate', 'bestwebsoft' ); ?>" />
 
350
  </p>
351
  <p><?php _e( "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually.", 'bestwebsoft' ); ?></p>
352
  <?php } else { ?>
@@ -355,16 +369,65 @@ if ( ! function_exists( 'bws_go_pro_tab' ) ) {
355
  <input type="hidden" name="bws_license_plugin" value="<?php echo $bws_license_plugin; ?>" />
356
  <input type="hidden" name="bws_license_submit" value="submit" />
357
  <input type="submit" class="button-primary" value="<?php _e( 'Activate', 'bestwebsoft' ); ?>" />
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
358
  <?php wp_nonce_field( $plugin_basename, 'bws_license_nonce_name' ); ?>
359
  </p>
360
  <?php } ?>
361
  </form>
 
 
 
 
 
 
 
 
 
 
 
362
  <?php }
363
  }
364
  }
365
 
366
  if ( ! function_exists( 'bws_check_pro_license' ) ) {
367
- function bws_check_pro_license( $plugin_basename ) {
368
  global $wp_version, $bstwbsftwppdtplgns_options;
369
  $result = array();
370
 
@@ -395,19 +458,33 @@ if ( ! function_exists( 'bws_check_pro_license' ) ) {
395
  if ( is_array( $response ) && !empty( $response ) ) {
396
  foreach ( $response as $key => $value ) {
397
  if ( "wrong_license_key" == $value->package ) {
398
- $result['error'] = __( 'Wrong license key', 'bestwebsoft' );
399
  } else if ( "wrong_domain" == $value->package ) {
400
- $result['error'] = __( 'This license key is bind to another site', 'bestwebsoft' );
401
  } else if ( "time_out" == $value->package ) {
402
  $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' );
403
  } elseif ( "you_are_banned" == $value->package ) {
404
  $result['error'] = __( "Unfortunately, you have exceeded the number of available tries.", 'bestwebsoft' );
 
 
405
  }
406
  if ( empty( $result['message'] ) && empty( $result['error'] ) ) {
407
- if ( isset( $value->time_out ) && '' != $value->time_out )
408
- $result['message'] = __( 'The license key is valid. Your license will expire on', 'bestwebsoft' ) . ' ' . $value->time_out;
409
  else
410
  $result['message'] = __( 'The license key is valid.', 'bestwebsoft' );
 
 
 
 
 
 
 
 
 
 
 
 
411
  }
412
  if ( empty( $result['error'] ) ) {
413
  if ( $bstwbsftwppdtplgns_options[ $plugin_basename ] != $license_key ) {
@@ -456,7 +533,7 @@ if ( ! function_exists ( 'bws_check_pro_license_form' ) ) {
456
  }
457
 
458
  if ( ! function_exists ( 'bws_plugin_update_row' ) ) {
459
- function bws_plugin_update_row( $plugin_key ) {
460
  global $bstwbsftwppdtplgns_options;
461
  $wp_list_table = _get_list_table( 'WP_Plugins_List_Table' );
462
  if ( isset( $bstwbsftwppdtplgns_options['wrong_license_key'][ $plugin_key ] ) ) {
@@ -468,7 +545,27 @@ if ( ! function_exists ( 'bws_plugin_update_row' ) ) {
468
  } elseif ( isset( $bstwbsftwppdtplgns_options['time_out'][ $plugin_key ] ) && strtotime( $bstwbsftwppdtplgns_options['time_out'][ $plugin_key ] ) < strtotime( date("m/d/Y") ) ) {
469
  echo '<tr class="plugin-update-tr">
470
  <td colspan="' . $wp_list_table->get_column_count() . '" class="plugin-update colspanchange">
471
- <div class="update-message" style="color: #8C0000;">' . __( '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' ) . '</div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
472
  </td>
473
  </tr>';
474
  }
@@ -502,10 +599,10 @@ if ( ! function_exists ( 'bws_plugin_banner_timeout' ) ) {
502
  <div class="updated" style="padding: 0; margin: 0; border: none; background: none;">
503
  <div class="<?php echo $plugin_prefix; ?>_message bws_banner_on_plugin_page" style="display:none;">
504
  <img class="<?php echo $plugin_prefix; ?>_close_icon close_icon" title="" src="<?php echo plugins_url( 'images/close_banner.png', __FILE__ ); ?>" alt=""/>
505
- <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>
506
  <div class="icon">
507
  <img title="" src="<?php echo $banner_url; ?>" alt="" />
508
  </div>
 
509
  </div>
510
  </div>
511
  <?php }
@@ -519,13 +616,13 @@ if ( ! function_exists ( 'bws_plugin_init' ) ) {
519
  }
520
  }
521
 
522
- if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) ) {
523
- function bws_admin_enqueue_scripts() {
524
  global $wp_version;
525
  if ( $wp_version < 3.8 )
526
- wp_enqueue_style( 'bws-admin-stylesheet', plugins_url( 'css/general_style_wp_before_3.8.css', __FILE__ ) );
527
  else
528
- wp_enqueue_style( 'bws-admin-stylesheet', plugins_url( 'css/general_style.css', __FILE__ ) );
529
 
530
  if ( isset( $_GET['page'] ) && $_GET['page'] == "bws_plugins" ) {
531
  wp_enqueue_style( 'bws_menu_style', plugins_url( 'css/style.css', __FILE__ ) );
@@ -555,14 +652,14 @@ if ( ! function_exists ( 'bws_admin_head' ) ) {
555
  /**
556
  * Tooltip block
557
  */
558
- if ( ! function_exists( 'bws_add_tooltip_admin' ) ) {
559
- function bws_add_tooltip_admin( $tooltip_args = array() ) {
560
- new BWS_add_admin_tooltip( $tooltip_args );
561
  }
562
  }
563
 
564
- if ( ! class_exists( 'BWS_add_admin_tooltip' ) ) {
565
- class BWS_add_admin_tooltip {
566
  private $tooltip_args;
567
 
568
  public function __construct( $tooltip_args ) {
@@ -610,7 +707,7 @@ if ( ! class_exists( 'BWS_add_admin_tooltip' ) ) {
610
  }
611
  /* Check entered data */
612
  if ( false === $tooltip_args['tooltip_id'] || false === $tooltip_args['css_selector'] || ( false === $tooltip_args['actions']['click'] && false === $tooltip_args['actions']['onload'] ) ) {
613
- /* if not enough data to output a tooltip */
614
  return;
615
  } else {
616
  /* check position */
@@ -651,79 +748,17 @@ if ( ! class_exists( 'BWS_add_admin_tooltip' ) ) {
651
  * Display tooltip
652
  */
653
  public function add_scripts() {
 
 
 
 
 
654
  $tooltip_args = $this->tooltip_args; ?>
655
  <script type="text/javascript">
656
  (function($) {
657
- var pointer_options = <?php echo json_encode( $tooltip_args ); ?>;
658
- pointer_buttons = pointer_options['buttons'];
659
- /* extend pointer options - add close button */
660
- pointer_options = $.extend(pointer_options, {
661
- buttons: function(event, t) {
662
- var button;
663
- /* check and add dismiss-type buttons */
664
- for( var but in pointer_buttons ) {
665
- if ( typeof pointer_buttons[ but ]['type'] != 'undefined' && pointer_buttons[ but ]['type'] == 'dismiss' && typeof pointer_buttons[ but ]['text'] != 'undefined' && pointer_buttons[ but ]['text'] != '' ) {
666
- button += '<a style="margin:0px 5px 2px;" class="button-secondary">' + pointer_buttons[ but ]['text'] + '</a>';
667
- }
668
- }
669
- button = jQuery( button );
670
- button.bind('click.pointer', function () {
671
- t.element.pointer('close');
672
- });
673
- return button;
674
- },
675
- /* add ajax dismiss functionality */
676
- close : $.proxy(function () {
677
- if ( pointer_options['actions']['onload'] == true ) {
678
- $.post( ajaxurl, this );
679
- }
680
- }, {
681
- pointer: pointer_options['tooltip_id'],
682
- action: 'dismiss-wp-pointer'
683
- })
684
- });
685
- /* function to display pointer */
686
- function displayPointer( cssSelector ) {
687
- cssSelector.pointer(pointer_options).pointer({
688
- pointerClass: 'wp-pointer ' + pointer_options["tooltip_id"],
689
- content: pointer_options['content'],
690
- position:
691
- {
692
- edge: pointer_options['position']['edge'],
693
- align: pointer_options['position']['align'],
694
- },
695
- }).pointer('open');
696
- /* display buttons that are not type of dismiss */
697
- for ( var but in pointer_buttons ) {
698
- if ( typeof pointer_buttons[ but ]['type'] != 'undefined' && pointer_buttons[ but ]['type'] != 'dismiss' && typeof pointer_buttons[ but ]['text'] != 'undefined' && pointer_buttons[ but ]['text'] != '' ) {
699
- $( '.' + pointer_options['tooltip_id'] + ' .button-secondary').first().before( '<a class="button-primary" style="margin-right: 5px;" ' +
700
- ( ( pointer_buttons[ but ]['type'] == 'link' && typeof pointer_buttons[ but ]['link'] != 'undefined' && pointer_buttons[ but ]['link'] != '') ? 'target="_blank" href="' + pointer_buttons[ but ]['link'] + '"' : '' )
701
- + '>' + pointer_buttons[ but ]['text'] + '</a>' );
702
- };
703
- }
704
- /* adjust position of pointer */
705
- topPos = parseInt( $( "." + pointer_options["tooltip_id"] ).css("top") ) + parseInt( pointer_options['position']['pos-top'] );
706
- leftPos = parseInt( $( "." + pointer_options["tooltip_id"] ).css("left") ) + parseInt( pointer_options['position']['pos-left'] );
707
- if ( pointer_options['position']['align'] == 'left' ) {
708
- leftPos += cssSelector.outerWidth()/2;
709
- };
710
- $( "." + pointer_options["tooltip_id"] ).css({ "top": topPos + "px", "left": leftPos + "px" });
711
- /* adjust z-index if need */
712
- pointerZindex = parseInt( $( "." + pointer_options["tooltip_id"] ).css("z-index") );
713
- if ( pointerZindex != pointer_options['position']['zindex'] ) {
714
- $( "." + pointer_options["tooltip_id"] ).css({ "z-index": pointer_options['position']['zindex'] });
715
- }
716
- }
717
- /* display pointer for the first time */
718
- if ( pointer_options['actions']['onload'] ) {
719
- displayPointer( $( pointer_options['css_selector'] ) );
720
- }
721
- /* display pointer when clicked on selector */
722
- if ( pointer_options['actions']['click'] ) {
723
- $( pointer_options['css_selector'] ).click( function () {
724
- displayPointer( $( this ) );
725
- });
726
- }
727
  })(jQuery);
728
  </script>
729
  <?php }
@@ -731,5 +766,5 @@ if ( ! class_exists( 'BWS_add_admin_tooltip' ) ) {
731
  }
732
 
733
  add_action( 'admin_init', 'bws_plugin_init' );
734
- add_action( 'admin_enqueue_scripts', 'bws_admin_enqueue_scripts' );
735
  add_action( 'admin_head', 'bws_admin_head' );
1
  <?php
2
  /*
3
  * General functions for BestWebSoft plugins
4
+ * Version: 1.0.8
5
  */
6
  if ( ! function_exists ( 'bws_add_general_menu' ) ) {
7
  function bws_add_general_menu( $base ) {
38
  require_once( dirname( __FILE__ ) . '/bws_menu.php' );
39
  } else if ( ! isset( $bstwbsftwppdtplgns_added_menu ) ) {
40
  $all_plugins = get_plugins();
 
41
  foreach ( $bstwbsftwppdtplgns_options['bws_menu']['version'] as $key => $value ) {
42
  if ( array_key_exists( $key, $all_plugins ) ) {
43
  if ( $bws_menu_version < $value && is_plugin_active( $base ) ) {
44
+ if ( ! isset( $plugin_with_newer_menu ) )
45
+ $plugin_with_newer_menu = $key;
46
+ elseif ( $bstwbsftwppdtplgns_options['bws_menu']['version'][ $plugin_with_newer_menu ] < $bstwbsftwppdtplgns_options['bws_menu']['version'][ $key ] )
47
+ $plugin_with_newer_menu = $key;
48
  }
49
  } else {
50
  unset( $bstwbsftwppdtplgns_options['bws_menu']['version'][ $key ] );
54
  update_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
55
  }
56
  }
57
+ if ( ! isset( $plugin_with_newer_menu ) )
58
+ $plugin_with_newer_menu = $base;
59
  $plugin_with_newer_menu = explode( '/', $plugin_with_newer_menu );
60
  $wp_content_dir = defined( 'WP_CONTENT_DIR' ) ? basename( WP_CONTENT_DIR ) : 'wp-content';
61
 
83
  deactivate_plugins( $plugin_basename );
84
  $admin_url = ( function_exists( 'get_admin_url' ) ) ? get_admin_url( null, 'plugins.php' ) : esc_url( '/wp-admin/plugins.php' );
85
  wp_die(
86
+ sprintf(
87
+ "<strong>%s</strong> %s <strong>WordPress %s</strong> %s <br /><br />%s <a href='%s'>%s</a>.",
88
+ $plugin_info['Name'],
89
  __( 'requires', 'bestwebsoft' ),
90
+ $require_wp,
91
  __( 'or higher, that is why it has been deactivated! Please upgrade WordPress and try again.', 'bestwebsoft' ),
92
  __( 'Back to the WordPress', 'bestwebsoft' ),
93
+ $admin_url,
94
  __( 'Plugins page', 'bestwebsoft' )
95
  )
96
  );
100
  }
101
 
102
  if ( ! function_exists( 'bws_plugin_banner' ) ) {
103
+ function bws_plugin_banner( $plugin_info, $this_banner_prefix, $link_slug, $link_key, $link_pn, $banner_url_or_slug ) {
104
  global $wp_version, $bstwbsftwppdtplgns_cookie_add, $bstwbsftwppdtplgns_banner_array;
105
 
106
  if ( empty( $bstwbsftwppdtplgns_banner_array ) ) {
108
  require_once( dirname( __FILE__ ) . '/bws_menu.php' );
109
  bws_get_banner_array();
110
  }
111
+
112
+ if ( false == strrpos( $banner_url_or_slug, '/' ) ) {
113
+ $banner_url_or_slug = 'http://ps.w.org/' . $banner_url_or_slug . '/assets/icon-128x128.png';
114
+ }
115
+
116
  if ( ! function_exists( 'is_plugin_active' ) )
117
  require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
118
 
144
  <div class="updated" style="padding: 0; margin: 0; border: none; background: none;">
145
  <div class="<?php echo $this_banner_prefix; ?>_message bws_banner_on_plugin_page" style="display: none;">
146
  <img class="<?php echo $this_banner_prefix; ?>_close_icon close_icon" title="" src="<?php echo plugins_url( 'images/close_banner.png', __FILE__ ); ?>" alt=""/>
147
+ <div class="icon">
148
+ <img title="" src="<?php echo $banner_url_or_slug; ?>" alt="" />
149
+ </div>
150
  <div class="text"><?php
151
  _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 />
152
  <span><?php _e( 'Extend standard plugin functionality with new great options.', 'bestwebsoft' ); ?></span>
153
  </div>
154
+ <div class="button_div">
155
+ <a class="button" target="_blank" href="http://bestwebsoft.com/products/<?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; ?>"><?php _e( 'Learn More', 'bestwebsoft' ); ?></a>
156
  </div>
157
  </div>
158
  </div>
192
  if ( strlen( $bws_license_key ) != 18 ) {
193
  $result['error'] = __( "Wrong license key", 'bestwebsoft' );
194
  } else {
195
+ $bws_license_plugin = stripslashes( esc_html( $_POST['bws_license_plugin'] ) );
196
  if ( isset( $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] ) && $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['time'] > ( time() - (24 * 60 * 60) ) ) {
197
  $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] = $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] + 1;
198
  } else {
326
  }
327
 
328
  if ( ! function_exists( 'bws_go_pro_tab' ) ) {
329
+ 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 ) {
330
  global $wp_version, $bstwbsftwppdtplgns_options;
331
  $bws_license_key = ( isset( $_POST['bws_license_key'] ) ) ? stripslashes( esc_html( trim( $_POST['bws_license_key'] ) ) ) : "";
332
  if ( $pro_plugin_is_activated ) { ?>
352
  <?php _e( '(your username is the email you specify when purchasing the product).', 'bestwebsoft' ); ?>
353
  </span>
354
  </p>
355
+ <?php if ( $trial_days_number !== false )
356
+ $trial_days_number = __( 'or', 'bestwebsoft' ) . ' <a href="http://bestwebsoft.com/products/' . $link_slug . '/trial/" target="_blank">' . sprintf( __( 'Start Your Free %s-Day Trial Now', 'bestwebsoft' ), $trial_days_number ) . '</a>';
357
+ if ( isset( $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] ) &&
358
  '5' < $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] &&
359
  $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['time'] > ( time() - ( 24 * 60 * 60 ) ) ) { ?>
360
  <p>
361
  <input disabled="disabled" type="text" name="bws_license_key" value="<?php echo $bws_license_key; ?>" />
362
  <input disabled="disabled" type="submit" class="button-primary" value="<?php _e( 'Activate', 'bestwebsoft' ); ?>" />
363
+ <?php if ( $trial_days_number !== false ) echo $trial_days_number; ?>
364
  </p>
365
  <p><?php _e( "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually.", 'bestwebsoft' ); ?></p>
366
  <?php } else { ?>
369
  <input type="hidden" name="bws_license_plugin" value="<?php echo $bws_license_plugin; ?>" />
370
  <input type="hidden" name="bws_license_submit" value="submit" />
371
  <input type="submit" class="button-primary" value="<?php _e( 'Activate', 'bestwebsoft' ); ?>" />
372
+ <?php if ( $trial_days_number !== false ) echo $trial_days_number;
373
+ wp_nonce_field( $plugin_basename, 'bws_license_nonce_name' ); ?>
374
+ </p>
375
+ <?php } ?>
376
+ </form>
377
+ <?php }
378
+ }
379
+ }
380
+
381
+ if ( ! function_exists( 'bws_go_pro_from_trial_tab' ) ) {
382
+ function bws_go_pro_from_trial_tab( $plugin_info, $plugin_basename, $page, $link_slug, $link_key, $link_pn, $trial_license_is_set = true ) {
383
+ global $wp_version, $bstwbsftwppdtplgns_options;
384
+ $bws_license_key = ( isset( $_POST['bws_license_key'] ) ) ? stripslashes( esc_html( trim( $_POST['bws_license_key'] ) ) ) : "";
385
+ if ( $trial_license_is_set ) { ?>
386
+ <form method="post" action="admin.php?page=<?php echo $page; ?>&amp;action=go_pro">
387
+ <p>
388
+ <?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/' . $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>' ) . ' ';
389
+ _e( 'After that you can activate it by entering your license key.', 'bestwebsoft' ); ?><br />
390
+ <span class="bws_info">
391
+ <?php _e( 'You can find your license key on your personal page Client area, by clicking on the link', 'bestwebsoft' ); ?>
392
+ <a href="http://bestwebsoft.com/wp-login.php">http://bestwebsoft.com/wp-login.php</a>
393
+ <?php _e( '(your username is the email you specify when purchasing the product).', 'bestwebsoft' ); ?>
394
+ </span>
395
+ </p>
396
+ <?php if ( isset( $bstwbsftwppdtplgns_options['go_pro'][ $plugin_basename ]['count'] ) &&
397
+ '5' < $bstwbsftwppdtplgns_options['go_pro'][ $plugin_basename ]['count'] &&
398
+ $bstwbsftwppdtplgns_options['go_pro'][ $plugin_basename ]['time'] > ( time() - ( 24 * 60 * 60 ) ) ) { ?>
399
+ <p>
400
+ <input disabled="disabled" type="text" name="bws_license_key" value="" />
401
+ <input disabled="disabled" type="submit" class="button-primary" value="<?php _e( 'Activate', 'bestwebsoft' ); ?>" />
402
+ </p>
403
+ <p><?php _e( "Unfortunately, you have exceeded the number of available tries per day.", 'bestwebsoft' ); ?></p>
404
+ <?php } else { ?>
405
+ <p>
406
+ <input type="text" name="bws_license_key" value="" />
407
+ <input type="hidden" name="bws_license_plugin" value="<?php echo $plugin_basename; ?>" />
408
+ <input type="hidden" name="bws_license_submit" value="submit" />
409
+ <input type="submit" class="button-primary" value="<?php _e( 'Activate', 'bestwebsoft' ); ?>" />
410
  <?php wp_nonce_field( $plugin_basename, 'bws_license_nonce_name' ); ?>
411
  </p>
412
  <?php } ?>
413
  </form>
414
+ <?php } else { ?>
415
+ <script type="text/javascript">
416
+ window.setTimeout( function() {
417
+ window.location.href = 'admin.php?page=<?php echo $page; ?>';
418
+ }, 5000 );
419
+ </script>
420
+ <p><?php _e( "Congratulations! The PRO license of the plugin is successfully activated.", 'bestwebsoft' ); ?></p>
421
+ <p>
422
+ <?php _e( "Please, go to", 'bestwebsoft' ); ?> <a href="admin.php?page=<?php echo $page; ?>"><?php _e( 'the setting page', 'bestwebsoft' ); ?></a>
423
+ (<?php _e( "You will be redirected automatically in 5 seconds.", 'bestwebsoft' ); ?>)
424
+ </p>
425
  <?php }
426
  }
427
  }
428
 
429
  if ( ! function_exists( 'bws_check_pro_license' ) ) {
430
+ function bws_check_pro_license( $plugin_basename, $trial_plugin = false ) {
431
  global $wp_version, $bstwbsftwppdtplgns_options;
432
  $result = array();
433
 
458
  if ( is_array( $response ) && !empty( $response ) ) {
459
  foreach ( $response as $key => $value ) {
460
  if ( "wrong_license_key" == $value->package ) {
461
+ $result['error'] = __( 'Wrong license key.', 'bestwebsoft' );
462
  } else if ( "wrong_domain" == $value->package ) {
463
+ $result['error'] = __( 'This license key is bind to another site.', 'bestwebsoft' );
464
  } else if ( "time_out" == $value->package ) {
465
  $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' );
466
  } elseif ( "you_are_banned" == $value->package ) {
467
  $result['error'] = __( "Unfortunately, you have exceeded the number of available tries.", 'bestwebsoft' );
468
+ } elseif ( "duplicate_domen_for_trial" == $value->package ) {
469
+ $result['error'] = __( "Unfortunately, the PRO Trial licence was already installed to this domain. The PRO Trial license can be installed only once.", 'bestwebsoft' );
470
  }
471
  if ( empty( $result['message'] ) && empty( $result['error'] ) ) {
472
+ if ( isset( $value->trial ) )
473
+ $result['message'] = __( 'The PRO Trial license key is valid.', 'bestwebsoft' );
474
  else
475
  $result['message'] = __( 'The license key is valid.', 'bestwebsoft' );
476
+
477
+ if ( isset( $value->time_out ) && $value->time_out != '' )
478
+ $result['message'] .= ' ' . __( 'Your license will expire on', 'bestwebsoft' ) . ' ' . $value->time_out . '.';
479
+
480
+ if ( isset( $value->trial ) && $trial_plugin != false )
481
+ $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/' . $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>' );
482
+
483
+ if ( isset( $value->trial ) ) {
484
+ $bstwbsftwppdtplgns_options['trial'][ $plugin_basename ] = 1;
485
+ } else {
486
+ unset( $bstwbsftwppdtplgns_options['trial'][ $plugin_basename ] );
487
+ }
488
  }
489
  if ( empty( $result['error'] ) ) {
490
  if ( $bstwbsftwppdtplgns_options[ $plugin_basename ] != $license_key ) {
533
  }
534
 
535
  if ( ! function_exists ( 'bws_plugin_update_row' ) ) {
536
+ function bws_plugin_update_row( $plugin_key, $link_slug = false, $free_plugin_name = false ) {
537
  global $bstwbsftwppdtplgns_options;
538
  $wp_list_table = _get_list_table( 'WP_Plugins_List_Table' );
539
  if ( isset( $bstwbsftwppdtplgns_options['wrong_license_key'][ $plugin_key ] ) ) {
545
  } elseif ( isset( $bstwbsftwppdtplgns_options['time_out'][ $plugin_key ] ) && strtotime( $bstwbsftwppdtplgns_options['time_out'][ $plugin_key ] ) < strtotime( date("m/d/Y") ) ) {
546
  echo '<tr class="plugin-update-tr">
547
  <td colspan="' . $wp_list_table->get_column_count() . '" class="plugin-update colspanchange">
548
+ <div class="update-message" style="color: #8C0000;">';
549
+ if ( isset( $bstwbsftwppdtplgns_options['trial'][ $plugin_key ] ) && $link_slug != false ) {
550
+ 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/' . $link_slug .'/">http://bestwebsoft.com/products/' . $link_slug . '/</a>';
551
+ } else {
552
+ 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>';
553
+ }
554
+ echo '</div>
555
+ </td>
556
+ </tr>';
557
+ } elseif ( isset( $bstwbsftwppdtplgns_options['trial'][ $plugin_key ] ) ) {
558
+ echo '<tr class="plugin-update-tr">
559
+ <td colspan="' . $wp_list_table->get_column_count() . '" class="plugin-update colspanchange">
560
+ <div class="update-message" style="color: #8C0000;">';
561
+ if ( $free_plugin_name != false ) {
562
+ echo sprintf( __( 'Notice: You are using the PRO Trial license of %s plugin.', 'bestwebsoft' ), $free_plugin_name );
563
+ } else {
564
+ _e( 'Notice: You are using the PRO Trial license of plugin.', 'bestwebsoft' );
565
+ }
566
+ if ( isset( $bstwbsftwppdtplgns_options['time_out'][ $plugin_key ] ) )
567
+ echo ' ' . __( "The PRO Trial license will expire on", 'bestwebsoft' ) . ' ' . $bstwbsftwppdtplgns_options['time_out'][ $plugin_key ] . '.';
568
+ echo '</div>
569
  </td>
570
  </tr>';
571
  }
599
  <div class="updated" style="padding: 0; margin: 0; border: none; background: none;">
600
  <div class="<?php echo $plugin_prefix; ?>_message bws_banner_on_plugin_page" style="display:none;">
601
  <img class="<?php echo $plugin_prefix; ?>_close_icon close_icon" title="" src="<?php echo plugins_url( 'images/close_banner.png', __FILE__ ); ?>" alt=""/>
 
602
  <div class="icon">
603
  <img title="" src="<?php echo $banner_url; ?>" alt="" />
604
  </div>
605
+ <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>
606
  </div>
607
  </div>
608
  <?php }
616
  }
617
  }
618
 
619
+ if ( ! function_exists ( 'bws_admin_add_scripts' ) ) {
620
+ function bws_admin_add_scripts() {
621
  global $wp_version;
622
  if ( $wp_version < 3.8 )
623
+ wp_enqueue_style( 'bws-admin-style', plugins_url( 'css/general_style_wp_before_3.8.css', __FILE__ ) );
624
  else
625
+ wp_enqueue_style( 'bws-admin-style', plugins_url( 'css/general_style.css', __FILE__ ) );
626
 
627
  if ( isset( $_GET['page'] ) && $_GET['page'] == "bws_plugins" ) {
628
  wp_enqueue_style( 'bws_menu_style', plugins_url( 'css/style.css', __FILE__ ) );
652
  /**
653
  * Tooltip block
654
  */
655
+ if ( ! function_exists( 'bws_add_tooltip_in_admin' ) ) {
656
+ function bws_add_tooltip_in_admin( $tooltip_args = array() ) {
657
+ new BWS_admin_tooltip( $tooltip_args );
658
  }
659
  }
660
 
661
+ if ( ! class_exists( 'BWS_admin_tooltip' ) ) {
662
+ class BWS_admin_tooltip {
663
  private $tooltip_args;
664
 
665
  public function __construct( $tooltip_args ) {
707
  }
708
  /* Check entered data */
709
  if ( false === $tooltip_args['tooltip_id'] || false === $tooltip_args['css_selector'] || ( false === $tooltip_args['actions']['click'] && false === $tooltip_args['actions']['onload'] ) ) {
710
+ /* if not enough data to output a tooltip or both actions (click, onload) are false */
711
  return;
712
  } else {
713
  /* check position */
748
  * Display tooltip
749
  */
750
  public function add_scripts() {
751
+ global $bstwbsftwppdtplgns_tooltip_script_add;
752
+ if ( ! isset( $bstwbsftwppdtplgns_tooltip_script_add ) ) {
753
+ echo '<script type="text/javascript" src="' . plugins_url( 'js/bws_tooltip.js', __FILE__ ) . '"></script>';
754
+ $bstwbsftwppdtplgns_tooltip_script_add = true;
755
+ }
756
  $tooltip_args = $this->tooltip_args; ?>
757
  <script type="text/javascript">
758
  (function($) {
759
+ $(document).ready( function() {
760
+ $.bwsTooltip( <?php echo json_encode( $tooltip_args ); ?> );
761
+ })
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
762
  })(jQuery);
763
  </script>
764
  <?php }
766
  }
767
 
768
  add_action( 'admin_init', 'bws_plugin_init' );
769
+ add_action( 'admin_enqueue_scripts', 'bws_admin_add_scripts' );
770
  add_action( 'admin_head', 'bws_admin_head' );
bws_menu/bws_menu.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  * Function for displaying BestWebSoft menu
4
- * Version: 1.5.5
5
  */
6
 
7
  if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) )
@@ -401,6 +401,22 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
401
  'pro_version' => 'realty-pro/realty-pro.php',
402
  'purchase' => 'http://bestwebsoft.com/products/realty/buy/?k=c7791f0a72acfb36f564a614dbccb474&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
403
  'pro_settings' => 'admin.php?page=realty_pro_settings'
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
404
  )
405
  );
406
 
@@ -947,10 +963,10 @@ if ( ! function_exists( 'bws_get_banner_array' ) ) {
947
  array( 'gglplsn_hide_banner_on_plugin_page', 'google-one/google-plus-one.php', '1.1.4' ),
948
  array( 'gglstmp_hide_banner_on_plugin_page', 'google-sitemap-plugin/google-sitemap-plugin.php', '2.8.4' ),
949
  array( 'cntctfrmpr_for_ctfrmtdb_hide_banner_on_plugin_page', 'contact-form-pro/contact_form_pro.php', '1.14' ),
950
- array( 'cntctfrm_for_ctfrmtdb_hide_banner_on_plugin_page', 'contact-form-plugin/contact_form.php', '3.62' ),
951
  array( 'cntctfrm_hide_banner_on_plugin_page', 'contact-form-plugin/contact_form.php', '3.47' ),
952
  array( 'cptch_hide_banner_on_plugin_page', 'captcha/captcha.php', '3.8.4' ),
953
- array( 'gllr_hide_banner_on_plugin_page', 'gallery-plugin/gallery-plugin.php', '3.9.1' )
 
954
  );
955
  }
956
  }
1
  <?php
2
  /*
3
  * Function for displaying BestWebSoft menu
4
+ * Version: 1.5.9
5
  */
6
 
7
  if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) )
401
  'pro_version' => 'realty-pro/realty-pro.php',
402
  'purchase' => 'http://bestwebsoft.com/products/realty/buy/?k=c7791f0a72acfb36f564a614dbccb474&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
403
  'pro_settings' => 'admin.php?page=realty_pro_settings'
404
+ ),
405
+ 'zendesk-help-center/zendesk-help-center.php' => array(
406
+ 'name' => 'Zendesk Help Center Backup',
407
+ 'description' => 'This plugin allows to backup Zendesk Help Center.',
408
+ 'link' => 'http://bestwebsoft.com/products/zendesk-help-center/?k=2a5fd2f4b2f4bde46f2ca44b8d15846d&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
409
+ 'download' => 'http://bestwebsoft.com/products/zendesk-help-center/download/?k=2a5fd2f4b2f4bde46f2ca44b8d15846d&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
410
+ 'wp_install' => $admin_url . 'plugin-install.php?tab=search&type=term&s=Zendesk+Help+Center+Backup+BestWebSoft&plugin-search-input=Search+Plugins',
411
+ 'settings' => 'admin.php?page=zendesk_hc.php&tab=settings'
412
+ ),
413
+ 'social-buttons-pack/social-buttons-pack.php' => array(
414
+ 'name' => 'Social Buttons Pack',
415
+ 'description' => 'Add Social buttons to your WordPress website.',
416
+ 'link' => 'http://bestwebsoft.com/products/social-buttons-pack/?k=b6440fad9f54274429e536b0c61b42da&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
417
+ 'download' => 'http://bestwebsoft.com/products/social-buttons-pack/download/?k=b6440fad9f54274429e536b0c61b42da&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
418
+ 'wp_install' => $admin_url . 'plugin-install.php?tab=search&type=term&s=Social+Buttons+Pack+BestWebSoft&plugin-search-input=Search+Plugins',
419
+ 'settings' => 'admin.php?page=social-buttons.php'
420
  )
421
  );
422
 
963
  array( 'gglplsn_hide_banner_on_plugin_page', 'google-one/google-plus-one.php', '1.1.4' ),
964
  array( 'gglstmp_hide_banner_on_plugin_page', 'google-sitemap-plugin/google-sitemap-plugin.php', '2.8.4' ),
965
  array( 'cntctfrmpr_for_ctfrmtdb_hide_banner_on_plugin_page', 'contact-form-pro/contact_form_pro.php', '1.14' ),
 
966
  array( 'cntctfrm_hide_banner_on_plugin_page', 'contact-form-plugin/contact_form.php', '3.47' ),
967
  array( 'cptch_hide_banner_on_plugin_page', 'captcha/captcha.php', '3.8.4' ),
968
+ array( 'gllr_hide_banner_on_plugin_page', 'gallery-plugin/gallery-plugin.php', '3.9.1' ),
969
+ array( 'cntctfrm_for_ctfrmtdb_hide_banner_on_plugin_page', 'contact-form-plugin/contact_form.php', '3.62' ),
970
  );
971
  }
972
  }
bws_menu/css/general_style.css CHANGED
@@ -211,11 +211,11 @@ a.bws_plugin_pro_version {
211
  font-size: 12px;
212
  opacity: 0.7;
213
  }
214
- .bws_banner_on_plugin_page .button {
215
- float: left;
216
  border: none;
217
  font-size: 14px;
218
- margin: 18px 0 18px 16px;
219
  padding: 12px 29px;
220
  color: #FFF;
221
  text-shadow: none;
@@ -236,9 +236,15 @@ a.bws_plugin_pro_version {
236
  background: #222;
237
  color: #FFF;
238
  }
239
- .bws_banner_on_plugin_page .icon {
240
- float: right;
241
- margin: 12px 8px 8px 0;
 
 
 
 
 
 
242
  }
243
  .bws_banner_on_plugin_page .close_icon {
244
  float: right;
@@ -255,4 +261,8 @@ a.bws_plugin_pro_version {
255
  text-align: center;
256
  max-width: 100%;
257
  }
 
 
 
 
258
  }
211
  font-size: 12px;
212
  opacity: 0.7;
213
  }
214
+ div.bws_banner_on_plugin_page .button {
215
+ float: right;
216
  border: none;
217
  font-size: 14px;
218
+ margin: 18px 16px;
219
  padding: 12px 29px;
220
  color: #FFF;
221
  text-shadow: none;
236
  background: #222;
237
  color: #FFF;
238
  }
239
+ div.bws_banner_on_plugin_page .icon {
240
+ float: left;
241
+ margin: 12px 8px 8px 12px;
242
+ }
243
+ .bws_banner_on_plugin_page .icon img {
244
+ max-width: 60px;
245
+ }
246
+ .bws_banner_on_plugin_page .text + .icon {
247
+ display: none;
248
  }
249
  .bws_banner_on_plugin_page .close_icon {
250
  float: right;
261
  text-align: center;
262
  max-width: 100%;
263
  }
264
+ .bws_banner_on_plugin_page .icon {
265
+ position: relative;
266
+ left: 8px;
267
+ }
268
  }
bws_menu/css/general_style_wp_before_3.8.css CHANGED
@@ -216,11 +216,11 @@ a.bws_plugin_pro_version {
216
  font-size: 12px;
217
  opacity: 0.7;
218
  }
219
- .bws_banner_on_plugin_page .button {
220
- float: left;
221
  border: none;
222
  font-size: 14px;
223
- margin: 18px 0 18px 16px;
224
  padding: 14px 29px;
225
  color: #FFF;
226
  text-shadow: none;
@@ -243,9 +243,15 @@ a.bws_plugin_pro_version {
243
  background: #222;
244
  color: #FFF;
245
  }
246
- .bws_banner_on_plugin_page .icon {
247
- float: right;
248
- margin: 12px 8px 8px 0;
 
 
 
 
 
 
249
  }
250
  .bws_banner_on_plugin_page .close_icon {
251
  float: right;
@@ -261,4 +267,8 @@ a.bws_plugin_pro_version {
261
  float: none;
262
  text-align: center;
263
  }
 
 
 
 
264
  }
216
  font-size: 12px;
217
  opacity: 0.7;
218
  }
219
+ div.bws_banner_on_plugin_page .button {
220
+ float: right;
221
  border: none;
222
  font-size: 14px;
223
+ margin: 18px 16px;
224
  padding: 14px 29px;
225
  color: #FFF;
226
  text-shadow: none;
243
  background: #222;
244
  color: #FFF;
245
  }
246
+ div.bws_banner_on_plugin_page .icon {
247
+ float: left;
248
+ margin: 12px 8px 8px 12px;
249
+ }
250
+ .bws_banner_on_plugin_page .icon img {
251
+ max-width: 60px;
252
+ }
253
+ .bws_banner_on_plugin_page .text + .icon {
254
+ display: none;
255
  }
256
  .bws_banner_on_plugin_page .close_icon {
257
  float: right;
267
  float: none;
268
  text-align: center;
269
  }
270
+ .bws_banner_on_plugin_page .icon {
271
+ position: relative;
272
+ left: 8px;
273
+ }
274
  }
bws_menu/icons/social-buttons-pack.png ADDED
Binary file
bws_menu/icons/zendesk-help-center.png ADDED
Binary file
bws_menu/js/bws_tooltip.js ADDED
@@ -0,0 +1,79 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /**
2
+ * BWS tooltip function
3
+ *
4
+ */
5
+ (function($) {
6
+ $(document).ready( function() {
7
+ jQuery.bwsTooltip = function( pointer_options ) {
8
+ var pointer_buttons = pointer_options['buttons'];
9
+ /* extend pointer options - add close button */
10
+ pointer_options = $.extend(pointer_options, {
11
+ buttons: function(event, t) {
12
+ var button;
13
+ /* check and add dismiss-type buttons */
14
+ for( var but in pointer_buttons ) {
15
+ if ( typeof pointer_buttons[ but ]['type'] != 'undefined' && pointer_buttons[ but ]['type'] == 'dismiss' && typeof pointer_buttons[ but ]['text'] != 'undefined' && pointer_buttons[ but ]['text'] != '' ) {
16
+ button += '<a style="margin:0px 5px 2px;" class="button-secondary">' + pointer_buttons[ but ]['text'] + '</a>';
17
+ }
18
+ }
19
+ button = jQuery( button );
20
+ button.bind('click.pointer', function () {
21
+ t.element.pointer('close');
22
+ });
23
+ return button;
24
+ },
25
+ /* add ajax dismiss functionality */
26
+ close : $.proxy(function () {
27
+ if ( pointer_options['actions']['onload'] == true ) {
28
+ $.post( ajaxurl, this );
29
+ }
30
+ }, {
31
+ pointer: pointer_options['tooltip_id'],
32
+ action: 'dismiss-wp-pointer'
33
+ })
34
+ });
35
+ /* function to display pointer */
36
+ function displayPointer( cssSelector ) {
37
+ cssSelector.pointer(pointer_options).pointer({
38
+ pointerClass: 'wp-pointer ' + pointer_options["tooltip_id"],
39
+ content: pointer_options['content'],
40
+ position:
41
+ {
42
+ edge: pointer_options['position']['edge'],
43
+ align: pointer_options['position']['align'],
44
+ },
45
+ }).pointer('open');
46
+ /* display buttons that are not type of dismiss */
47
+ for ( var but in pointer_buttons ) {
48
+ if ( typeof pointer_buttons[ but ]['type'] != 'undefined' && pointer_buttons[ but ]['type'] != 'dismiss' && typeof pointer_buttons[ but ]['text'] != 'undefined' && pointer_buttons[ but ]['text'] != '' ) {
49
+ $( '.' + pointer_options['tooltip_id'] + ' .button-secondary').first().before( '<a class="button-primary" style="margin-right: 5px;" ' +
50
+ ( ( pointer_buttons[ but ]['type'] == 'link' && typeof pointer_buttons[ but ]['link'] != 'undefined' && pointer_buttons[ but ]['link'] != '') ? 'target="_blank" href="' + pointer_buttons[ but ]['link'] + '"' : '' )
51
+ + '>' + pointer_buttons[ but ]['text'] + '</a>' );
52
+ };
53
+ }
54
+ /* adjust position of pointer */
55
+ topPos = parseInt( $( "." + pointer_options["tooltip_id"] ).css("top") ) + parseInt( pointer_options['position']['pos-top'] );
56
+ leftPos = parseInt( $( "." + pointer_options["tooltip_id"] ).css("left") ) + parseInt( pointer_options['position']['pos-left'] );
57
+ if ( pointer_options['position']['align'] == 'left' ) {
58
+ leftPos += cssSelector.outerWidth()/2;
59
+ };
60
+ $( "." + pointer_options["tooltip_id"] ).css({ "top": topPos + "px", "left": leftPos + "px" });
61
+ /* adjust z-index if need */
62
+ pointerZindex = parseInt( $( "." + pointer_options["tooltip_id"] ).css("z-index") );
63
+ if ( pointerZindex != pointer_options['position']['zindex'] ) {
64
+ $( "." + pointer_options["tooltip_id"] ).css({ "z-index": pointer_options['position']['zindex'] });
65
+ }
66
+ }
67
+ /* display pointer for the first time */
68
+ if ( pointer_options['actions']['onload'] ) {
69
+ displayPointer( $( pointer_options['css_selector'] ) );
70
+ }
71
+ /* display pointer when clicked on selector */
72
+ if ( pointer_options['actions']['click'] ) {
73
+ $( pointer_options['css_selector'] ).click( function () {
74
+ displayPointer( $( this ) );
75
+ });
76
+ }
77
+ };
78
+ })
79
+ })(jQuery);
bws_menu/languages/bestwebsoft-de_DE.mo CHANGED
Binary file
bws_menu/languages/bestwebsoft-de_DE.po CHANGED
@@ -2,10 +2,11 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-03-05 13:11+0300\n"
6
- "PO-Revision-Date: 2015-03-05 13:12+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Lothar Schiborr <lothar.schiborr@web.de>\n"
 
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
@@ -15,568 +16,632 @@ msgstr ""
15
  "X-Poedit-KeywordsList: __;_e\n"
16
  "X-Poedit-Basepath: ..\n"
17
  "X-Textdomain-Support: yes\n"
18
- "Language: de_DE\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
- #: bws_functions.php:84
22
  msgid "requires"
23
  msgstr ""
24
 
25
- #: bws_functions.php:85
26
  msgid ""
27
  "or higher, that is why it has been deactivated! Please upgrade WordPress and "
28
  "try again."
29
  msgstr ""
30
 
31
- #: bws_functions.php:86
32
  msgid "Back to the WordPress"
33
  msgstr ""
34
 
35
  # @ captcha
36
- #: bws_functions.php:87
37
  #, fuzzy
38
  msgid "Plugins page"
39
  msgstr "BWS Plugins"
40
 
41
- # @ captcha
42
- #: bws_functions.php:134
43
- #, fuzzy
44
- msgid "Learn More"
45
- msgstr "Lesen Sie mehr"
46
-
47
- #: bws_functions.php:137
48
  msgid "It’s time to upgrade your"
49
  msgstr ""
50
 
51
- #: bws_functions.php:137
52
  msgid "to"
53
  msgstr ""
54
 
55
  # @ captcha
56
- #: bws_functions.php:137
57
  #, fuzzy
58
  msgid "version!"
59
  msgstr "PHP Version"
60
 
61
- #: bws_functions.php:138
62
  msgid "Extend standard plugin functionality with new great options."
63
  msgstr ""
64
 
65
- #: bws_functions.php:158
 
 
 
 
 
 
66
  msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
67
  msgstr ""
68
 
69
  # @ captcha
70
- #: bws_functions.php:159
71
  #, fuzzy
72
  msgid "Rate the plugin"
73
  msgstr "Aktivierte Plugins"
74
 
75
  # @ captcha
76
- #: bws_functions.php:162
77
  #, fuzzy
78
  msgid "If there is something wrong about it, please contact us"
79
  msgstr "Wenn Sie irgendwelche Fragen haben, kontaktieren Sie uns bitte über"
80
 
81
- #: bws_functions.php:179 bws_functions.php:215 bws_functions.php:395
82
  msgid "Wrong license key"
83
  msgstr ""
84
 
85
- #: bws_functions.php:209 bws_functions.php:389 bws_functions.php:426
86
  msgid ""
87
  "Something went wrong. Please try again later. If the error appears again, "
88
  "please contact us"
89
  msgstr ""
90
 
91
- #: bws_functions.php:209 bws_functions.php:389 bws_functions.php:426
92
  msgid "We are sorry for inconvenience."
93
  msgstr ""
94
 
95
- #: bws_functions.php:217 bws_functions.php:397
96
  msgid "This license key is bind to another site"
97
  msgstr ""
98
 
99
- #: bws_functions.php:219 bws_functions.php:348
100
  msgid ""
101
  "Unfortunately, you have exceeded the number of available tries per day. "
102
  "Please, upload the plugin manually."
103
  msgstr ""
104
 
105
- #: bws_functions.php:221
106
  msgid ""
107
  "Unfortunately, Your license has expired. To continue getting top-priority "
108
  "support and plugin updates you should extend it in your"
109
  msgstr ""
110
 
111
- #: bws_functions.php:223
112
  msgid ""
113
  "Unfortunately, the PRO licence was already installed to this domain. The PRO "
114
  "Trial license can be installed only once."
115
  msgstr ""
116
 
117
- #: bws_functions.php:234 bws_functions.php:256 bws_functions.php:278
118
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
119
  msgstr ""
120
 
121
- #: bws_functions.php:246
122
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
123
  msgstr ""
124
 
125
- #: bws_functions.php:252
126
  msgid ""
127
  "Your server does not support either ZipArchive or Phar. Please, upload the "
128
  "plugin manually"
129
  msgstr ""
130
 
131
- #: bws_functions.php:259
132
  msgid "UploadDir is not writable. Please, upload the plugin manually"
133
  msgstr ""
134
 
135
- #: bws_functions.php:282
136
  msgid ""
137
  "Something went wrong. Try again later or upload the plugin manually. We are "
138
  "sorry for inconvenience."
139
  msgstr ""
140
 
141
- #: bws_functions.php:307
142
  msgid "Please, enter Your license key"
143
  msgstr ""
144
 
145
- #: bws_functions.php:324
146
  msgid ""
147
  "Congratulations! The PRO version of the plugin is successfully download and "
148
  "activated."
149
  msgstr ""
150
 
151
- #: bws_functions.php:326
152
  msgid "Please, go to"
153
  msgstr ""
154
 
155
- #: bws_functions.php:326
156
  msgid "the setting page"
157
  msgstr ""
158
 
159
- #: bws_functions.php:327
160
  msgid "You will be redirected automatically in 5 seconds."
161
  msgstr ""
162
 
163
- #: bws_functions.php:332
164
  msgid "You can download and activate"
165
  msgstr ""
166
 
167
- #: bws_functions.php:334
168
  msgid "version of this plugin by entering Your license key."
169
  msgstr ""
170
 
171
- #: bws_functions.php:336
172
  msgid ""
173
  "You can find your license key on your personal page Client area, by clicking "
174
  "on the link"
175
  msgstr ""
176
 
177
- #: bws_functions.php:338
178
  msgid "(your username is the email you specify when purchasing the product)."
179
  msgstr ""
180
 
 
 
 
 
 
 
 
 
 
181
  # @ captcha
182
- #: bws_functions.php:346 bws_functions.php:354 bws_menu.php:613
183
- #: bws_menu.php:670
184
  #, fuzzy
185
  msgid "Activate"
186
  msgstr "Aktivierte Plugins"
187
 
 
 
 
 
 
 
 
 
 
 
188
  #: bws_functions.php:399
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
189
  msgid ""
190
  "This license key is valid, but Your license has expired. If you want to "
191
  "update our plugin in future, you should extend the license."
192
  msgstr ""
193
 
194
- #: bws_functions.php:401
195
  msgid "Unfortunately, you have exceeded the number of available tries."
196
  msgstr ""
197
 
198
- #: bws_functions.php:405
199
- msgid "The license key is valid. Your license will expire on"
 
 
 
 
 
 
200
  msgstr ""
201
 
202
- #: bws_functions.php:407
203
  msgid "The license key is valid."
204
  msgstr ""
205
 
206
- #: bws_functions.php:431
 
 
 
 
207
  msgid "Please, enter your license key"
208
  msgstr ""
209
 
210
- #: bws_functions.php:444
211
  msgid ""
212
  "If needed you can check if the license key is correct or reenter it in the "
213
  "field below. You can find your license key on your personal page - Client "
214
  "area - on our website"
215
  msgstr ""
216
 
217
- #: bws_functions.php:444
218
  msgid ""
219
  "(your username is the email you specify when purchasing the product). If "
220
  "necessary, please submit \"Lost your password?\" request."
221
  msgstr ""
222
 
223
- #: bws_functions.php:448
224
  msgid "Check license key"
225
  msgstr ""
226
 
227
- #: bws_functions.php:462
228
  msgid ""
229
  "WARNING: We have noticed illegal use of our plugin by you. We strongly "
230
  "recommend you to solve the problem within 24 hours, otherwise the plugin "
231
  "will be deactivated. Please go to your personal"
232
  msgstr ""
233
 
234
- #: bws_functions.php:462
235
  msgid ""
236
  "(your username is the email you specify when purchasing the product), where "
237
  "you can make the necessary changes."
238
  msgstr ""
239
 
240
- #: bws_functions.php:468
 
 
 
 
 
 
241
  msgid ""
242
  "Your license has expired. To continue getting top-priority support and "
243
  "plugin updates you should extend it."
244
  msgstr ""
245
 
246
  # @ captcha
247
- #: bws_functions.php:468 bws_functions.php:502 bws_menu.php:589
248
- #: bws_menu.php:611 bws_menu.php:638 bws_menu.php:668 bws_menu.php:714
249
  #, fuzzy
250
  msgid "Learn more"
251
  msgstr "Lesen Sie mehr"
252
 
253
- #: bws_functions.php:502
 
 
 
 
 
 
 
 
 
 
 
 
 
254
  msgid "You license for"
255
  msgstr ""
256
 
257
- #: bws_functions.php:502
258
  msgid "expires on"
259
  msgstr ""
260
 
261
- #: bws_functions.php:502
262
  msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
263
  msgstr ""
264
 
265
- #: bws_functions.php:580
266
  msgid "Close"
267
  msgstr ""
268
 
269
  # @ captcha
270
- #: bws_menu.php:426
271
  msgid "Not set"
272
  msgstr "Nicht festgelegt"
273
 
274
  # @ captcha
275
- #: bws_menu.php:428 bws_menu.php:429
276
  msgid "On"
277
  msgstr "Ein"
278
 
279
  # @ captcha
280
- #: bws_menu.php:428 bws_menu.php:429
281
  msgid "Off"
282
  msgstr "Ausgeschaltet"
283
 
284
  # @ captcha
285
- #: bws_menu.php:430 bws_menu.php:431 bws_menu.php:432 bws_menu.php:433
286
- #: bws_menu.php:434 bws_menu.php:446
287
  msgid "N/A"
288
  msgstr "keine Angaben"
289
 
290
  # @ captcha
291
- #: bws_menu.php:434
292
  msgid " Mb"
293
  msgstr " Mb"
294
 
295
  # @ captcha
296
- #: bws_menu.php:435 bws_menu.php:436 bws_menu.php:437 bws_menu.php:442
297
  msgid "Yes"
298
  msgstr "Ja"
299
 
300
  # @ captcha
301
- #: bws_menu.php:435 bws_menu.php:436 bws_menu.php:437 bws_menu.php:444
302
  msgid "No"
303
  msgstr "Nein"
304
 
305
  # @ captcha
306
- #: bws_menu.php:454
307
  msgid "Operating System"
308
  msgstr "Betriebs-System"
309
 
310
  # @ captcha
311
- #: bws_menu.php:455
312
  msgid "Server"
313
  msgstr "Server"
314
 
315
  # @ captcha
316
- #: bws_menu.php:456
317
  msgid "Memory usage"
318
  msgstr "Speichernutzung"
319
 
320
  # @ captcha
321
- #: bws_menu.php:457
322
  msgid "MYSQL Version"
323
  msgstr "MYSQL Version"
324
 
325
  # @ captcha
326
- #: bws_menu.php:458
327
  msgid "SQL Mode"
328
  msgstr "SQL Modus"
329
 
330
  # @ captcha
331
- #: bws_menu.php:459
332
  msgid "PHP Version"
333
  msgstr "PHP Version"
334
 
335
  # @ captcha
336
- #: bws_menu.php:460
337
  msgid "PHP Safe Mode"
338
  msgstr "PHP Gesicherter Modus"
339
 
340
  # @ captcha
341
- #: bws_menu.php:461
342
  msgid "PHP Allow URL fopen"
343
  msgstr "PHP Erlaubet URL zu öffnen (fopen)"
344
 
345
  # @ captcha
346
- #: bws_menu.php:462
347
  msgid "PHP Memory Limit"
348
  msgstr "PHP Speicher-Grenze"
349
 
350
  # @ captcha
351
- #: bws_menu.php:463
352
  msgid "PHP Max Upload Size"
353
  msgstr "PHP Maximale Upload Größe"
354
 
355
  # @ captcha
356
- #: bws_menu.php:464
357
  msgid "PHP Max Post Size"
358
  msgstr "PHP Maximale Beitrags-Größe"
359
 
360
  # @ captcha
361
- #: bws_menu.php:465
362
  msgid "PHP Max Script Execute Time"
363
  msgstr "PHP Maximale Script Ausführungszeit"
364
 
365
  # @ captcha
366
- #: bws_menu.php:466
367
  msgid "PHP Exif support"
368
  msgstr "PHP Exif Support"
369
 
370
  # @ captcha
371
- #: bws_menu.php:467
372
  msgid "PHP IPTC support"
373
  msgstr "PHP IPTC Support"
374
 
375
  # @ captcha
376
- #: bws_menu.php:468
377
  msgid "PHP XML support"
378
  msgstr "PHP XML Support"
379
 
380
  # @ captcha
381
- #: bws_menu.php:469
382
  msgid "Site URL"
383
  msgstr "Site URL"
384
 
385
  # @ captcha
386
- #: bws_menu.php:470
387
  msgid "Home URL"
388
  msgstr "Home URL"
389
 
390
  # @ captcha
391
- #: bws_menu.php:473
392
  msgid "WordPress Version"
393
  msgstr "WordPress Version"
394
 
395
  # @ captcha
396
- #: bws_menu.php:474
397
  msgid "WordPress DB Version"
398
  msgstr "WordPress DB Version"
399
 
400
  # @ captcha
401
- #: bws_menu.php:475
402
  msgid "Multisite"
403
  msgstr "Multisite"
404
 
405
  # @ captcha
406
- #: bws_menu.php:476
407
  msgid "Active Theme"
408
  msgstr "Actives Theme"
409
 
410
  # @ captcha
411
- #: bws_menu.php:491
412
  msgid "Please enter a valid email address."
413
  msgstr "Bitte geben Sie eine gültige E-Mail-Adresse ein."
414
 
415
  # @ captcha
416
- #: bws_menu.php:495
417
  msgid "Email with system info is sent to "
418
  msgstr "E-Mail-mit System Informationen wird gesendet an "
419
 
420
  # @ captcha
421
- #: bws_menu.php:499
422
  msgid "Thank you for contacting us."
423
  msgstr "Vielen Dank für Ihre Kontaktaufnahme."
424
 
425
  # @ captcha
426
- #: bws_menu.php:532
427
  msgid "Sorry, email message could not be delivered."
428
  msgstr "Sorry, E-Mail konnte nicht zugestellt werden."
429
 
430
- #: bws_menu.php:540
431
  msgid "Need help?"
432
  msgstr ""
433
 
434
- #: bws_menu.php:541
435
  msgid "Client area"
436
  msgstr ""
437
 
438
  # @ captcha
439
- #: bws_menu.php:542 bws_menu.php:853
440
  msgid "System status"
441
  msgstr "System Status"
442
 
443
  # @ captcha
444
- #: bws_menu.php:547
445
  #, fuzzy
446
  msgid "Plugins"
447
  msgstr "BWS Plugins"
448
 
449
- #: bws_menu.php:549
450
  msgid "Themes"
451
  msgstr ""
452
 
453
- #: bws_menu.php:554
454
  msgid "All"
455
  msgstr ""
456
 
457
  # @ default
458
- #: bws_menu.php:555
459
  #, fuzzy
460
  msgid "Installed"
461
  msgstr "Installiere %s"
462
 
463
  # @ captcha
464
- #: bws_menu.php:556
465
  #, fuzzy
466
  msgid "Recommended"
467
  msgstr "Empfohlene Plugins"
468
 
469
  # @ captcha
470
- #: bws_menu.php:560
471
  msgid "Installed plugins"
472
  msgstr "Installierte Plugins"
473
 
474
  # @ captcha
475
- #: bws_menu.php:592 bws_menu.php:641
476
  msgid "Settings"
477
  msgstr "Einstellungen"
478
 
479
  # @ captcha
480
- #: bws_menu.php:613 bws_menu.php:670
481
  #, fuzzy
482
  msgid "Activate this plugin"
483
  msgstr "Aktivierte Plugins"
484
 
485
- #: bws_menu.php:628 bws_menu.php:658 bws_menu.php:704
486
  msgid "Go"
487
  msgstr ""
488
 
489
- #: bws_menu.php:632 bws_menu.php:662 bws_menu.php:708
490
  msgid "DONATE"
491
  msgstr ""
492
 
493
  # @ captcha
494
- #: bws_menu.php:678
495
  msgid "Recommended plugins"
496
  msgstr "Empfohlene Plugins"
497
 
498
  # @ default
499
- #: bws_menu.php:716
500
  #, fuzzy
501
  msgid "Install now"
502
  msgstr "Installiere %s"
503
 
504
- #: bws_menu.php:737
505
  msgid "Try again"
506
  msgstr ""
507
 
508
- #: bws_menu.php:755
509
  #, php-format
510
  msgid "Preview &#8220;%s&#8221;"
511
  msgstr ""
512
 
513
  # @ default
514
- #: bws_menu.php:786
515
  #, php-format
516
  msgid "Install %s"
517
  msgstr "Installiere %s"
518
 
519
  # @ default
520
- #: bws_menu.php:786
521
  #, fuzzy
522
  msgid "Install Now"
523
  msgstr "Installiere %s"
524
 
525
- #: bws_menu.php:789
526
  #, php-format
527
  msgid "Update to version %s"
528
  msgstr ""
529
 
530
- #: bws_menu.php:789
531
  msgid "Update"
532
  msgstr ""
533
 
534
- #: bws_menu.php:796
535
  #, php-format
536
  msgid "Preview %s"
537
  msgstr ""
538
 
539
- #: bws_menu.php:796
540
  msgid "Preview"
541
  msgstr ""
542
 
543
- #: bws_menu.php:802 bws_menu.php:834
544
  #, php-format
545
  msgid "By %s"
546
  msgstr ""
547
 
548
- #: bws_menu.php:808
549
  msgid "Details"
550
  msgstr ""
551
 
552
  # @ default
553
- #: bws_menu.php:840
554
  #, fuzzy
555
  msgid "Already Installed"
556
  msgstr "Installiere %s"
557
 
558
  # @ captcha
559
- #: bws_menu.php:856
560
  msgid "Environment"
561
  msgstr "Umgebungsvariable"
562
 
563
  # @ captcha
564
- #: bws_menu.php:867
565
  msgid "Active Plugins"
566
  msgstr "Aktivierte Plugins"
567
 
568
  # @ captcha
569
- #: bws_menu.php:880
570
  msgid "Inactive Plugins"
571
  msgstr "Inactive Plugins"
572
 
573
  # @ captcha
574
- #: bws_menu.php:896
575
  msgid "Send to support"
576
  msgstr "Sende zuzm Support"
577
 
578
  # @ captcha
579
- #: bws_menu.php:903
580
  msgid "Send to custom email &#187;"
581
  msgstr "Senden Sie eine benutzerdefinierte E-Mail zu &#187;"
582
 
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-04-20 14:47+0300\n"
6
+ "PO-Revision-Date: 2015-04-20 14:47+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Lothar Schiborr <lothar.schiborr@web.de>\n"
9
+ "Language: de_DE\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
16
  "X-Poedit-KeywordsList: __;_e\n"
17
  "X-Poedit-Basepath: ..\n"
18
  "X-Textdomain-Support: yes\n"
 
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
+ #: bws_functions.php:85
22
  msgid "requires"
23
  msgstr ""
24
 
25
+ #: bws_functions.php:87
26
  msgid ""
27
  "or higher, that is why it has been deactivated! Please upgrade WordPress and "
28
  "try again."
29
  msgstr ""
30
 
31
+ #: bws_functions.php:88
32
  msgid "Back to the WordPress"
33
  msgstr ""
34
 
35
  # @ captcha
36
+ #: bws_functions.php:90
37
  #, fuzzy
38
  msgid "Plugins page"
39
  msgstr "BWS Plugins"
40
 
41
+ #: bws_functions.php:147
 
 
 
 
 
 
42
  msgid "It’s time to upgrade your"
43
  msgstr ""
44
 
45
+ #: bws_functions.php:147
46
  msgid "to"
47
  msgstr ""
48
 
49
  # @ captcha
50
+ #: bws_functions.php:147
51
  #, fuzzy
52
  msgid "version!"
53
  msgstr "PHP Version"
54
 
55
+ #: bws_functions.php:148
56
  msgid "Extend standard plugin functionality with new great options."
57
  msgstr ""
58
 
59
+ # @ captcha
60
+ #: bws_functions.php:151
61
+ #, fuzzy
62
+ msgid "Learn More"
63
+ msgstr "Lesen Sie mehr"
64
+
65
+ #: bws_functions.php:168
66
  msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
67
  msgstr ""
68
 
69
  # @ captcha
70
+ #: bws_functions.php:169
71
  #, fuzzy
72
  msgid "Rate the plugin"
73
  msgstr "Aktivierte Plugins"
74
 
75
  # @ captcha
76
+ #: bws_functions.php:172
77
  #, fuzzy
78
  msgid "If there is something wrong about it, please contact us"
79
  msgstr "Wenn Sie irgendwelche Fragen haben, kontaktieren Sie uns bitte über"
80
 
81
+ #: bws_functions.php:189 bws_functions.php:225
82
  msgid "Wrong license key"
83
  msgstr ""
84
 
85
+ #: bws_functions.php:219 bws_functions.php:451 bws_functions.php:502
86
  msgid ""
87
  "Something went wrong. Please try again later. If the error appears again, "
88
  "please contact us"
89
  msgstr ""
90
 
91
+ #: bws_functions.php:219 bws_functions.php:451 bws_functions.php:502
92
  msgid "We are sorry for inconvenience."
93
  msgstr ""
94
 
95
+ #: bws_functions.php:227
96
  msgid "This license key is bind to another site"
97
  msgstr ""
98
 
99
+ #: bws_functions.php:229 bws_functions.php:361
100
  msgid ""
101
  "Unfortunately, you have exceeded the number of available tries per day. "
102
  "Please, upload the plugin manually."
103
  msgstr ""
104
 
105
+ #: bws_functions.php:231
106
  msgid ""
107
  "Unfortunately, Your license has expired. To continue getting top-priority "
108
  "support and plugin updates you should extend it in your"
109
  msgstr ""
110
 
111
+ #: bws_functions.php:233
112
  msgid ""
113
  "Unfortunately, the PRO licence was already installed to this domain. The PRO "
114
  "Trial license can be installed only once."
115
  msgstr ""
116
 
117
+ #: bws_functions.php:244 bws_functions.php:266 bws_functions.php:288
118
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
119
  msgstr ""
120
 
121
+ #: bws_functions.php:256
122
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
123
  msgstr ""
124
 
125
+ #: bws_functions.php:262
126
  msgid ""
127
  "Your server does not support either ZipArchive or Phar. Please, upload the "
128
  "plugin manually"
129
  msgstr ""
130
 
131
+ #: bws_functions.php:269
132
  msgid "UploadDir is not writable. Please, upload the plugin manually"
133
  msgstr ""
134
 
135
+ #: bws_functions.php:292
136
  msgid ""
137
  "Something went wrong. Try again later or upload the plugin manually. We are "
138
  "sorry for inconvenience."
139
  msgstr ""
140
 
141
+ #: bws_functions.php:317
142
  msgid "Please, enter Your license key"
143
  msgstr ""
144
 
145
+ #: bws_functions.php:334
146
  msgid ""
147
  "Congratulations! The PRO version of the plugin is successfully download and "
148
  "activated."
149
  msgstr ""
150
 
151
+ #: bws_functions.php:336 bws_functions.php:418
152
  msgid "Please, go to"
153
  msgstr ""
154
 
155
+ #: bws_functions.php:336 bws_functions.php:418
156
  msgid "the setting page"
157
  msgstr ""
158
 
159
+ #: bws_functions.php:337 bws_functions.php:419
160
  msgid "You will be redirected automatically in 5 seconds."
161
  msgstr ""
162
 
163
+ #: bws_functions.php:342
164
  msgid "You can download and activate"
165
  msgstr ""
166
 
167
+ #: bws_functions.php:344
168
  msgid "version of this plugin by entering Your license key."
169
  msgstr ""
170
 
171
+ #: bws_functions.php:346 bws_functions.php:387
172
  msgid ""
173
  "You can find your license key on your personal page Client area, by clicking "
174
  "on the link"
175
  msgstr ""
176
 
177
+ #: bws_functions.php:348 bws_functions.php:389
178
  msgid "(your username is the email you specify when purchasing the product)."
179
  msgstr ""
180
 
181
+ #: bws_functions.php:352
182
+ msgid "or"
183
+ msgstr ""
184
+
185
+ #: bws_functions.php:352
186
+ #, php-format
187
+ msgid "Start Your Free %s-Day Trial Now"
188
+ msgstr ""
189
+
190
  # @ captcha
191
+ #: bws_functions.php:358 bws_functions.php:367 bws_functions.php:397
192
+ #: bws_functions.php:405 bws_menu.php:635 bws_menu.php:692
193
  #, fuzzy
194
  msgid "Activate"
195
  msgstr "Aktivierte Plugins"
196
 
197
+ #: bws_functions.php:384 bws_functions.php:477
198
+ #, php-format
199
+ msgid ""
200
+ "In order to continue using the plugin it is necessary to buy a %s license."
201
+ msgstr ""
202
+
203
+ #: bws_functions.php:385
204
+ msgid "After that you can activate it by entering your license key."
205
+ msgstr ""
206
+
207
  #: bws_functions.php:399
208
+ msgid "Unfortunately, you have exceeded the number of available tries per day."
209
+ msgstr ""
210
+
211
+ #: bws_functions.php:416
212
+ msgid ""
213
+ "Congratulations! The PRO license of the plugin is successfully activated."
214
+ msgstr ""
215
+
216
+ #: bws_functions.php:457
217
+ msgid "Wrong license key."
218
+ msgstr ""
219
+
220
+ #: bws_functions.php:459
221
+ msgid "This license key is bind to another site."
222
+ msgstr ""
223
+
224
+ #: bws_functions.php:461
225
  msgid ""
226
  "This license key is valid, but Your license has expired. If you want to "
227
  "update our plugin in future, you should extend the license."
228
  msgstr ""
229
 
230
+ #: bws_functions.php:463
231
  msgid "Unfortunately, you have exceeded the number of available tries."
232
  msgstr ""
233
 
234
+ #: bws_functions.php:465
235
+ msgid ""
236
+ "Unfortunately, the PRO Trial licence was already installed to this domain. "
237
+ "The PRO Trial license can be installed only once."
238
+ msgstr ""
239
+
240
+ #: bws_functions.php:469
241
+ msgid "The PRO Trial license key is valid."
242
  msgstr ""
243
 
244
+ #: bws_functions.php:471
245
  msgid "The license key is valid."
246
  msgstr ""
247
 
248
+ #: bws_functions.php:474
249
+ msgid "Your license will expire on"
250
+ msgstr ""
251
+
252
+ #: bws_functions.php:507
253
  msgid "Please, enter your license key"
254
  msgstr ""
255
 
256
+ #: bws_functions.php:520
257
  msgid ""
258
  "If needed you can check if the license key is correct or reenter it in the "
259
  "field below. You can find your license key on your personal page - Client "
260
  "area - on our website"
261
  msgstr ""
262
 
263
+ #: bws_functions.php:520
264
  msgid ""
265
  "(your username is the email you specify when purchasing the product). If "
266
  "necessary, please submit \"Lost your password?\" request."
267
  msgstr ""
268
 
269
+ #: bws_functions.php:524
270
  msgid "Check license key"
271
  msgstr ""
272
 
273
+ #: bws_functions.php:538
274
  msgid ""
275
  "WARNING: We have noticed illegal use of our plugin by you. We strongly "
276
  "recommend you to solve the problem within 24 hours, otherwise the plugin "
277
  "will be deactivated. Please go to your personal"
278
  msgstr ""
279
 
280
+ #: bws_functions.php:538
281
  msgid ""
282
  "(your username is the email you specify when purchasing the product), where "
283
  "you can make the necessary changes."
284
  msgstr ""
285
 
286
+ #: bws_functions.php:546
287
+ msgid ""
288
+ "Notice: Your PRO Trial license has expired. To continue using the plugin you "
289
+ "should buy a PRO license"
290
+ msgstr ""
291
+
292
+ #: bws_functions.php:548
293
  msgid ""
294
  "Your license has expired. To continue getting top-priority support and "
295
  "plugin updates you should extend it."
296
  msgstr ""
297
 
298
  # @ captcha
299
+ #: bws_functions.php:548 bws_functions.php:601 bws_menu.php:611
300
+ #: bws_menu.php:633 bws_menu.php:660 bws_menu.php:690 bws_menu.php:736
301
  #, fuzzy
302
  msgid "Learn more"
303
  msgstr "Lesen Sie mehr"
304
 
305
+ #: bws_functions.php:558
306
+ #, php-format
307
+ msgid "Notice: You are using the PRO Trial license of %s plugin."
308
+ msgstr ""
309
+
310
+ #: bws_functions.php:560
311
+ msgid "Notice: You are using the PRO Trial license of plugin."
312
+ msgstr ""
313
+
314
+ #: bws_functions.php:563
315
+ msgid "The PRO Trial license will expire on"
316
+ msgstr ""
317
+
318
+ #: bws_functions.php:601
319
  msgid "You license for"
320
  msgstr ""
321
 
322
+ #: bws_functions.php:601
323
  msgid "expires on"
324
  msgstr ""
325
 
326
+ #: bws_functions.php:601
327
  msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
328
  msgstr ""
329
 
330
+ #: bws_functions.php:676
331
  msgid "Close"
332
  msgstr ""
333
 
334
  # @ captcha
335
+ #: bws_menu.php:448
336
  msgid "Not set"
337
  msgstr "Nicht festgelegt"
338
 
339
  # @ captcha
340
+ #: bws_menu.php:450 bws_menu.php:451
341
  msgid "On"
342
  msgstr "Ein"
343
 
344
  # @ captcha
345
+ #: bws_menu.php:450 bws_menu.php:451
346
  msgid "Off"
347
  msgstr "Ausgeschaltet"
348
 
349
  # @ captcha
350
+ #: bws_menu.php:452 bws_menu.php:453 bws_menu.php:454 bws_menu.php:455
351
+ #: bws_menu.php:456 bws_menu.php:468
352
  msgid "N/A"
353
  msgstr "keine Angaben"
354
 
355
  # @ captcha
356
+ #: bws_menu.php:456
357
  msgid " Mb"
358
  msgstr " Mb"
359
 
360
  # @ captcha
361
+ #: bws_menu.php:457 bws_menu.php:458 bws_menu.php:459 bws_menu.php:464
362
  msgid "Yes"
363
  msgstr "Ja"
364
 
365
  # @ captcha
366
+ #: bws_menu.php:457 bws_menu.php:458 bws_menu.php:459 bws_menu.php:466
367
  msgid "No"
368
  msgstr "Nein"
369
 
370
  # @ captcha
371
+ #: bws_menu.php:476
372
  msgid "Operating System"
373
  msgstr "Betriebs-System"
374
 
375
  # @ captcha
376
+ #: bws_menu.php:477
377
  msgid "Server"
378
  msgstr "Server"
379
 
380
  # @ captcha
381
+ #: bws_menu.php:478
382
  msgid "Memory usage"
383
  msgstr "Speichernutzung"
384
 
385
  # @ captcha
386
+ #: bws_menu.php:479
387
  msgid "MYSQL Version"
388
  msgstr "MYSQL Version"
389
 
390
  # @ captcha
391
+ #: bws_menu.php:480
392
  msgid "SQL Mode"
393
  msgstr "SQL Modus"
394
 
395
  # @ captcha
396
+ #: bws_menu.php:481
397
  msgid "PHP Version"
398
  msgstr "PHP Version"
399
 
400
  # @ captcha
401
+ #: bws_menu.php:482
402
  msgid "PHP Safe Mode"
403
  msgstr "PHP Gesicherter Modus"
404
 
405
  # @ captcha
406
+ #: bws_menu.php:483
407
  msgid "PHP Allow URL fopen"
408
  msgstr "PHP Erlaubet URL zu öffnen (fopen)"
409
 
410
  # @ captcha
411
+ #: bws_menu.php:484
412
  msgid "PHP Memory Limit"
413
  msgstr "PHP Speicher-Grenze"
414
 
415
  # @ captcha
416
+ #: bws_menu.php:485
417
  msgid "PHP Max Upload Size"
418
  msgstr "PHP Maximale Upload Größe"
419
 
420
  # @ captcha
421
+ #: bws_menu.php:486
422
  msgid "PHP Max Post Size"
423
  msgstr "PHP Maximale Beitrags-Größe"
424
 
425
  # @ captcha
426
+ #: bws_menu.php:487
427
  msgid "PHP Max Script Execute Time"
428
  msgstr "PHP Maximale Script Ausführungszeit"
429
 
430
  # @ captcha
431
+ #: bws_menu.php:488
432
  msgid "PHP Exif support"
433
  msgstr "PHP Exif Support"
434
 
435
  # @ captcha
436
+ #: bws_menu.php:489
437
  msgid "PHP IPTC support"
438
  msgstr "PHP IPTC Support"
439
 
440
  # @ captcha
441
+ #: bws_menu.php:490
442
  msgid "PHP XML support"
443
  msgstr "PHP XML Support"
444
 
445
  # @ captcha
446
+ #: bws_menu.php:491
447
  msgid "Site URL"
448
  msgstr "Site URL"
449
 
450
  # @ captcha
451
+ #: bws_menu.php:492
452
  msgid "Home URL"
453
  msgstr "Home URL"
454
 
455
  # @ captcha
456
+ #: bws_menu.php:495
457
  msgid "WordPress Version"
458
  msgstr "WordPress Version"
459
 
460
  # @ captcha
461
+ #: bws_menu.php:496
462
  msgid "WordPress DB Version"
463
  msgstr "WordPress DB Version"
464
 
465
  # @ captcha
466
+ #: bws_menu.php:497
467
  msgid "Multisite"
468
  msgstr "Multisite"
469
 
470
  # @ captcha
471
+ #: bws_menu.php:498
472
  msgid "Active Theme"
473
  msgstr "Actives Theme"
474
 
475
  # @ captcha
476
+ #: bws_menu.php:513
477
  msgid "Please enter a valid email address."
478
  msgstr "Bitte geben Sie eine gültige E-Mail-Adresse ein."
479
 
480
  # @ captcha
481
+ #: bws_menu.php:517
482
  msgid "Email with system info is sent to "
483
  msgstr "E-Mail-mit System Informationen wird gesendet an "
484
 
485
  # @ captcha
486
+ #: bws_menu.php:521
487
  msgid "Thank you for contacting us."
488
  msgstr "Vielen Dank für Ihre Kontaktaufnahme."
489
 
490
  # @ captcha
491
+ #: bws_menu.php:554
492
  msgid "Sorry, email message could not be delivered."
493
  msgstr "Sorry, E-Mail konnte nicht zugestellt werden."
494
 
495
+ #: bws_menu.php:562
496
  msgid "Need help?"
497
  msgstr ""
498
 
499
+ #: bws_menu.php:563
500
  msgid "Client area"
501
  msgstr ""
502
 
503
  # @ captcha
504
+ #: bws_menu.php:564 bws_menu.php:875
505
  msgid "System status"
506
  msgstr "System Status"
507
 
508
  # @ captcha
509
+ #: bws_menu.php:569
510
  #, fuzzy
511
  msgid "Plugins"
512
  msgstr "BWS Plugins"
513
 
514
+ #: bws_menu.php:571
515
  msgid "Themes"
516
  msgstr ""
517
 
518
+ #: bws_menu.php:576
519
  msgid "All"
520
  msgstr ""
521
 
522
  # @ default
523
+ #: bws_menu.php:577
524
  #, fuzzy
525
  msgid "Installed"
526
  msgstr "Installiere %s"
527
 
528
  # @ captcha
529
+ #: bws_menu.php:578
530
  #, fuzzy
531
  msgid "Recommended"
532
  msgstr "Empfohlene Plugins"
533
 
534
  # @ captcha
535
+ #: bws_menu.php:582
536
  msgid "Installed plugins"
537
  msgstr "Installierte Plugins"
538
 
539
  # @ captcha
540
+ #: bws_menu.php:614 bws_menu.php:663
541
  msgid "Settings"
542
  msgstr "Einstellungen"
543
 
544
  # @ captcha
545
+ #: bws_menu.php:635 bws_menu.php:692
546
  #, fuzzy
547
  msgid "Activate this plugin"
548
  msgstr "Aktivierte Plugins"
549
 
550
+ #: bws_menu.php:650 bws_menu.php:680 bws_menu.php:726
551
  msgid "Go"
552
  msgstr ""
553
 
554
+ #: bws_menu.php:654 bws_menu.php:684 bws_menu.php:730
555
  msgid "DONATE"
556
  msgstr ""
557
 
558
  # @ captcha
559
+ #: bws_menu.php:700
560
  msgid "Recommended plugins"
561
  msgstr "Empfohlene Plugins"
562
 
563
  # @ default
564
+ #: bws_menu.php:738
565
  #, fuzzy
566
  msgid "Install now"
567
  msgstr "Installiere %s"
568
 
569
+ #: bws_menu.php:759
570
  msgid "Try again"
571
  msgstr ""
572
 
573
+ #: bws_menu.php:777
574
  #, php-format
575
  msgid "Preview &#8220;%s&#8221;"
576
  msgstr ""
577
 
578
  # @ default
579
+ #: bws_menu.php:808
580
  #, php-format
581
  msgid "Install %s"
582
  msgstr "Installiere %s"
583
 
584
  # @ default
585
+ #: bws_menu.php:808
586
  #, fuzzy
587
  msgid "Install Now"
588
  msgstr "Installiere %s"
589
 
590
+ #: bws_menu.php:811
591
  #, php-format
592
  msgid "Update to version %s"
593
  msgstr ""
594
 
595
+ #: bws_menu.php:811
596
  msgid "Update"
597
  msgstr ""
598
 
599
+ #: bws_menu.php:818
600
  #, php-format
601
  msgid "Preview %s"
602
  msgstr ""
603
 
604
+ #: bws_menu.php:818
605
  msgid "Preview"
606
  msgstr ""
607
 
608
+ #: bws_menu.php:824 bws_menu.php:856
609
  #, php-format
610
  msgid "By %s"
611
  msgstr ""
612
 
613
+ #: bws_menu.php:830
614
  msgid "Details"
615
  msgstr ""
616
 
617
  # @ default
618
+ #: bws_menu.php:862
619
  #, fuzzy
620
  msgid "Already Installed"
621
  msgstr "Installiere %s"
622
 
623
  # @ captcha
624
+ #: bws_menu.php:878
625
  msgid "Environment"
626
  msgstr "Umgebungsvariable"
627
 
628
  # @ captcha
629
+ #: bws_menu.php:889
630
  msgid "Active Plugins"
631
  msgstr "Aktivierte Plugins"
632
 
633
  # @ captcha
634
+ #: bws_menu.php:902
635
  msgid "Inactive Plugins"
636
  msgstr "Inactive Plugins"
637
 
638
  # @ captcha
639
+ #: bws_menu.php:918
640
  msgid "Send to support"
641
  msgstr "Sende zuzm Support"
642
 
643
  # @ captcha
644
+ #: bws_menu.php:925
645
  msgid "Send to custom email &#187;"
646
  msgstr "Senden Sie eine benutzerdefinierte E-Mail zu &#187;"
647
 
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: 2015-03-05 13:12+0300\n"
6
- "PO-Revision-Date: 2015-03-05 13:12+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Luc Capronnier <lcapronnier@yahoo.com>\n"
9
  "Language: fr_FR\n"
@@ -17,504 +17,569 @@ msgstr ""
17
  "X-Generator: Poedit 1.5.4\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: bws_functions.php:84
21
  #, fuzzy
22
  msgid "requires"
23
  msgstr "Champ obligatoire"
24
 
25
- #: bws_functions.php:85
26
  msgid ""
27
  "or higher, that is why it has been deactivated! Please upgrade WordPress and "
28
  "try again."
29
  msgstr ""
30
 
31
- #: bws_functions.php:86
32
  msgid "Back to the WordPress"
33
  msgstr ""
34
 
35
- #: bws_functions.php:87
36
  #, fuzzy
37
  msgid "Plugins page"
38
  msgstr "Externsions"
39
 
40
- #: bws_functions.php:134
41
- #, fuzzy
42
- msgid "Learn More"
43
- msgstr "En savoir plus"
44
-
45
- #: bws_functions.php:137
46
  msgid "It’s time to upgrade your"
47
  msgstr ""
48
 
49
- #: bws_functions.php:137
50
  msgid "to"
51
  msgstr ""
52
 
53
- #: bws_functions.php:137
54
  #, fuzzy
55
  msgid "version!"
56
  msgstr "PHP Version"
57
 
58
- #: bws_functions.php:138
59
  msgid "Extend standard plugin functionality with new great options."
60
  msgstr ""
61
 
62
- #: bws_functions.php:158
 
 
 
 
 
63
  msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
64
  msgstr ""
65
 
66
- #: bws_functions.php:159
67
  #, fuzzy
68
  msgid "Rate the plugin"
69
  msgstr "Activer cette extension"
70
 
71
- #: bws_functions.php:162
72
  #, fuzzy
73
  msgid "If there is something wrong about it, please contact us"
74
  msgstr "Si vous avez des questions, merci de contacter via "
75
 
76
- #: bws_functions.php:179 bws_functions.php:215 bws_functions.php:395
77
  msgid "Wrong license key"
78
  msgstr ""
79
 
80
- #: bws_functions.php:209 bws_functions.php:389 bws_functions.php:426
81
  msgid ""
82
  "Something went wrong. Please try again later. If the error appears again, "
83
  "please contact us"
84
  msgstr ""
85
 
86
- #: bws_functions.php:209 bws_functions.php:389 bws_functions.php:426
87
  msgid "We are sorry for inconvenience."
88
  msgstr ""
89
 
90
- #: bws_functions.php:217 bws_functions.php:397
91
  msgid "This license key is bind to another site"
92
  msgstr ""
93
 
94
- #: bws_functions.php:219 bws_functions.php:348
95
  msgid ""
96
  "Unfortunately, you have exceeded the number of available tries per day. "
97
  "Please, upload the plugin manually."
98
  msgstr ""
99
 
100
- #: bws_functions.php:221
101
  msgid ""
102
  "Unfortunately, Your license has expired. To continue getting top-priority "
103
  "support and plugin updates you should extend it in your"
104
  msgstr ""
105
 
106
- #: bws_functions.php:223
107
  msgid ""
108
  "Unfortunately, the PRO licence was already installed to this domain. The PRO "
109
  "Trial license can be installed only once."
110
  msgstr ""
111
 
112
- #: bws_functions.php:234 bws_functions.php:256 bws_functions.php:278
113
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
114
  msgstr ""
115
 
116
- #: bws_functions.php:246
117
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
118
  msgstr ""
119
 
120
- #: bws_functions.php:252
121
  msgid ""
122
  "Your server does not support either ZipArchive or Phar. Please, upload the "
123
  "plugin manually"
124
  msgstr ""
125
 
126
- #: bws_functions.php:259
127
  msgid "UploadDir is not writable. Please, upload the plugin manually"
128
  msgstr ""
129
 
130
- #: bws_functions.php:282
131
  msgid ""
132
  "Something went wrong. Try again later or upload the plugin manually. We are "
133
  "sorry for inconvenience."
134
  msgstr ""
135
 
136
- #: bws_functions.php:307
137
  #, fuzzy
138
  msgid "Please, enter Your license key"
139
  msgstr "Merci de saisir votre message..."
140
 
141
- #: bws_functions.php:324
142
  msgid ""
143
  "Congratulations! The PRO version of the plugin is successfully download and "
144
  "activated."
145
  msgstr ""
146
 
147
- #: bws_functions.php:326
148
  msgid "Please, go to"
149
  msgstr ""
150
 
151
- #: bws_functions.php:326
152
  #, fuzzy
153
  msgid "the setting page"
154
  msgstr "Options supplémentaires"
155
 
156
- #: bws_functions.php:327
157
  msgid "You will be redirected automatically in 5 seconds."
158
  msgstr ""
159
 
160
- #: bws_functions.php:332
161
  msgid "You can download and activate"
162
  msgstr ""
163
 
164
- #: bws_functions.php:334
165
  msgid "version of this plugin by entering Your license key."
166
  msgstr ""
167
 
168
- #: bws_functions.php:336
169
  msgid ""
170
  "You can find your license key on your personal page Client area, by clicking "
171
  "on the link"
172
  msgstr ""
173
 
174
- #: bws_functions.php:338
175
  msgid "(your username is the email you specify when purchasing the product)."
176
  msgstr ""
177
 
178
- #: bws_functions.php:346 bws_functions.php:354 bws_menu.php:613
179
- #: bws_menu.php:670
 
 
 
 
 
 
 
 
 
180
  msgid "Activate"
181
  msgstr "Activé"
182
 
 
 
 
 
 
 
 
 
 
 
183
  #: bws_functions.php:399
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
184
  msgid ""
185
  "This license key is valid, but Your license has expired. If you want to "
186
  "update our plugin in future, you should extend the license."
187
  msgstr ""
188
 
189
- #: bws_functions.php:401
190
  msgid "Unfortunately, you have exceeded the number of available tries."
191
  msgstr ""
192
 
193
- #: bws_functions.php:405
194
- msgid "The license key is valid. Your license will expire on"
 
 
 
 
 
 
195
  msgstr ""
196
 
197
- #: bws_functions.php:407
198
  msgid "The license key is valid."
199
  msgstr ""
200
 
201
- #: bws_functions.php:431
 
 
 
 
202
  #, fuzzy
203
  msgid "Please, enter your license key"
204
  msgstr "Merci de saisir votre message..."
205
 
206
- #: bws_functions.php:444
207
  msgid ""
208
  "If needed you can check if the license key is correct or reenter it in the "
209
  "field below. You can find your license key on your personal page - Client "
210
  "area - on our website"
211
  msgstr ""
212
 
213
- #: bws_functions.php:444
214
  msgid ""
215
  "(your username is the email you specify when purchasing the product). If "
216
  "necessary, please submit \"Lost your password?\" request."
217
  msgstr ""
218
 
219
- #: bws_functions.php:448
220
  msgid "Check license key"
221
  msgstr ""
222
 
223
- #: bws_functions.php:462
224
  msgid ""
225
  "WARNING: We have noticed illegal use of our plugin by you. We strongly "
226
  "recommend you to solve the problem within 24 hours, otherwise the plugin "
227
  "will be deactivated. Please go to your personal"
228
  msgstr ""
229
 
230
- #: bws_functions.php:462
231
  msgid ""
232
  "(your username is the email you specify when purchasing the product), where "
233
  "you can make the necessary changes."
234
  msgstr ""
235
 
236
- #: bws_functions.php:468
 
 
 
 
 
 
237
  msgid ""
238
  "Your license has expired. To continue getting top-priority support and "
239
  "plugin updates you should extend it."
240
  msgstr ""
241
 
242
- #: bws_functions.php:468 bws_functions.php:502 bws_menu.php:589
243
- #: bws_menu.php:611 bws_menu.php:638 bws_menu.php:668 bws_menu.php:714
244
  msgid "Learn more"
245
  msgstr "En savoir plus"
246
 
247
- #: bws_functions.php:502
 
 
 
 
 
 
 
 
 
 
 
 
 
248
  msgid "You license for"
249
  msgstr ""
250
 
251
- #: bws_functions.php:502
252
  msgid "expires on"
253
  msgstr ""
254
 
255
- #: bws_functions.php:502
256
  msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
257
  msgstr ""
258
 
259
- #: bws_functions.php:580
260
  msgid "Close"
261
  msgstr ""
262
 
263
- #: bws_menu.php:426
264
  msgid "Not set"
265
  msgstr "Not set"
266
 
267
- #: bws_menu.php:428 bws_menu.php:429
268
  msgid "On"
269
  msgstr "On"
270
 
271
- #: bws_menu.php:428 bws_menu.php:429
272
  msgid "Off"
273
  msgstr "Off"
274
 
275
- #: bws_menu.php:430 bws_menu.php:431 bws_menu.php:432 bws_menu.php:433
276
- #: bws_menu.php:434 bws_menu.php:446
277
  msgid "N/A"
278
  msgstr "N/A"
279
 
280
- #: bws_menu.php:434
281
  msgid " Mb"
282
  msgstr " Mb"
283
 
284
- #: bws_menu.php:435 bws_menu.php:436 bws_menu.php:437 bws_menu.php:442
285
  msgid "Yes"
286
  msgstr "Yes"
287
 
288
- #: bws_menu.php:435 bws_menu.php:436 bws_menu.php:437 bws_menu.php:444
289
  msgid "No"
290
  msgstr "No"
291
 
292
- #: bws_menu.php:454
293
  msgid "Operating System"
294
  msgstr "Operating System"
295
 
296
- #: bws_menu.php:455
297
  msgid "Server"
298
  msgstr "Server"
299
 
300
- #: bws_menu.php:456
301
  msgid "Memory usage"
302
  msgstr "Memory usage"
303
 
304
- #: bws_menu.php:457
305
  msgid "MYSQL Version"
306
  msgstr "MYSQL Version"
307
 
308
- #: bws_menu.php:458
309
  msgid "SQL Mode"
310
  msgstr "SQL Mode"
311
 
312
- #: bws_menu.php:459
313
  msgid "PHP Version"
314
  msgstr "PHP Version"
315
 
316
- #: bws_menu.php:460
317
  msgid "PHP Safe Mode"
318
  msgstr "PHP Safe Mode"
319
 
320
- #: bws_menu.php:461
321
  msgid "PHP Allow URL fopen"
322
  msgstr "PHP Allow URL fopen"
323
 
324
- #: bws_menu.php:462
325
  msgid "PHP Memory Limit"
326
  msgstr "PHP Memory Limit"
327
 
328
- #: bws_menu.php:463
329
  msgid "PHP Max Upload Size"
330
  msgstr "PHP Max Upload Size"
331
 
332
- #: bws_menu.php:464
333
  msgid "PHP Max Post Size"
334
  msgstr "PHP Max Post Size"
335
 
336
- #: bws_menu.php:465
337
  msgid "PHP Max Script Execute Time"
338
  msgstr "PHP Max Script Execute Time"
339
 
340
- #: bws_menu.php:466
341
  msgid "PHP Exif support"
342
  msgstr "PHP Exif support"
343
 
344
- #: bws_menu.php:467
345
  msgid "PHP IPTC support"
346
  msgstr "PHP IPTC support"
347
 
348
- #: bws_menu.php:468
349
  msgid "PHP XML support"
350
  msgstr "PHP XML support"
351
 
352
- #: bws_menu.php:469
353
  msgid "Site URL"
354
  msgstr "Site URL"
355
 
356
- #: bws_menu.php:470
357
  msgid "Home URL"
358
  msgstr "Home URL"
359
 
360
- #: bws_menu.php:473
361
  msgid "WordPress Version"
362
  msgstr "WordPress Version"
363
 
364
- #: bws_menu.php:474
365
  msgid "WordPress DB Version"
366
  msgstr "WordPress DB Version"
367
 
368
- #: bws_menu.php:475
369
  msgid "Multisite"
370
  msgstr "Multisite"
371
 
372
- #: bws_menu.php:476
373
  msgid "Active Theme"
374
  msgstr "Active Theme"
375
 
376
- #: bws_menu.php:491
377
  msgid "Please enter a valid email address."
378
  msgstr "Merci de saisir une adresse e-mail valide."
379
 
380
- #: bws_menu.php:495
381
  msgid "Email with system info is sent to "
382
  msgstr "Le courriel avec les informations système est envoyé à"
383
 
384
- #: bws_menu.php:499
385
  msgid "Thank you for contacting us."
386
  msgstr "Merci de nous avoir contacté."
387
 
388
- #: bws_menu.php:532
389
  msgid "Sorry, email message could not be delivered."
390
  msgstr "Désolé, votre e-mail n'a pas pu être envoyé."
391
 
392
- #: bws_menu.php:540
393
  msgid "Need help?"
394
  msgstr "Besoin d'aide ?"
395
 
396
- #: bws_menu.php:541
397
  msgid "Client area"
398
  msgstr "Espace client"
399
 
400
- #: bws_menu.php:542 bws_menu.php:853
401
  msgid "System status"
402
  msgstr "System status"
403
 
404
- #: bws_menu.php:547
405
  msgid "Plugins"
406
  msgstr "Externsions"
407
 
408
- #: bws_menu.php:549
409
  msgid "Themes"
410
  msgstr "Thèmes"
411
 
412
- #: bws_menu.php:554
413
  msgid "All"
414
  msgstr "Tous"
415
 
416
- #: bws_menu.php:555
417
  msgid "Installed"
418
  msgstr "Installé"
419
 
420
- #: bws_menu.php:556
421
  msgid "Recommended"
422
  msgstr "Recommandé"
423
 
424
- #: bws_menu.php:560
425
  msgid "Installed plugins"
426
  msgstr "Plugin installé"
427
 
428
- #: bws_menu.php:592 bws_menu.php:641
429
  msgid "Settings"
430
  msgstr "Réglages"
431
 
432
- #: bws_menu.php:613 bws_menu.php:670
433
  msgid "Activate this plugin"
434
  msgstr "Activer cette extension"
435
 
436
- #: bws_menu.php:628 bws_menu.php:658 bws_menu.php:704
437
  msgid "Go"
438
  msgstr "Passez"
439
 
440
- #: bws_menu.php:632 bws_menu.php:662 bws_menu.php:708
441
  msgid "DONATE"
442
  msgstr "Faire un don"
443
 
444
- #: bws_menu.php:678
445
  msgid "Recommended plugins"
446
  msgstr "Plugin recommandé"
447
 
448
- #: bws_menu.php:716
449
  msgid "Install now"
450
  msgstr "Installer maintenant"
451
 
452
- #: bws_menu.php:737
453
  msgid "Try again"
454
  msgstr "Essayer de nouveau"
455
 
456
- #: bws_menu.php:755
457
  #, php-format
458
  msgid "Preview &#8220;%s&#8221;"
459
  msgstr "Pré-visualiser &#8220;%s&#8221;"
460
 
461
- #: bws_menu.php:786
462
  #, php-format
463
  msgid "Install %s"
464
  msgstr "%s installé"
465
 
466
- #: bws_menu.php:786
467
  msgid "Install Now"
468
  msgstr "Installa Ora"
469
 
470
- #: bws_menu.php:789
471
  #, php-format
472
  msgid "Update to version %s"
473
  msgstr "Mettre à jour pour la version %s"
474
 
475
- #: bws_menu.php:789
476
  msgid "Update"
477
  msgstr "Mettre à jour"
478
 
479
- #: bws_menu.php:796
480
  #, php-format
481
  msgid "Preview %s"
482
  msgstr "Pré-visualiser %s"
483
 
484
- #: bws_menu.php:796
485
  msgid "Preview"
486
  msgstr "Pré-visualiser"
487
 
488
- #: bws_menu.php:802 bws_menu.php:834
489
  #, php-format
490
  msgid "By %s"
491
  msgstr "Par %s"
492
 
493
- #: bws_menu.php:808
494
  msgid "Details"
495
  msgstr "Détails"
496
 
497
- #: bws_menu.php:840
498
  msgid "Already Installed"
499
  msgstr "Déjà installé"
500
 
501
- #: bws_menu.php:856
502
  msgid "Environment"
503
  msgstr "Environment"
504
 
505
- #: bws_menu.php:867
506
  msgid "Active Plugins"
507
  msgstr "Plugin actifs"
508
 
509
- #: bws_menu.php:880
510
  msgid "Inactive Plugins"
511
  msgstr "Plugin inactifs"
512
 
513
- #: bws_menu.php:896
514
  msgid "Send to support"
515
  msgstr "Envoyé au support"
516
 
517
- #: bws_menu.php:903
518
  msgid "Send to custom email &#187;"
519
  msgstr "Envoyer un e-mail spécifique &#187;"
520
 
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-04-20 14:47+0300\n"
6
+ "PO-Revision-Date: 2015-04-20 14:47+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.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:85
21
  #, fuzzy
22
  msgid "requires"
23
  msgstr "Champ obligatoire"
24
 
25
+ #: bws_functions.php:87
26
  msgid ""
27
  "or higher, that is why it has been deactivated! Please upgrade WordPress and "
28
  "try again."
29
  msgstr ""
30
 
31
+ #: bws_functions.php:88
32
  msgid "Back to the WordPress"
33
  msgstr ""
34
 
35
+ #: bws_functions.php:90
36
  #, fuzzy
37
  msgid "Plugins page"
38
  msgstr "Externsions"
39
 
40
+ #: bws_functions.php:147
 
 
 
 
 
41
  msgid "It’s time to upgrade your"
42
  msgstr ""
43
 
44
+ #: bws_functions.php:147
45
  msgid "to"
46
  msgstr ""
47
 
48
+ #: bws_functions.php:147
49
  #, fuzzy
50
  msgid "version!"
51
  msgstr "PHP Version"
52
 
53
+ #: bws_functions.php:148
54
  msgid "Extend standard plugin functionality with new great options."
55
  msgstr ""
56
 
57
+ #: bws_functions.php:151
58
+ #, fuzzy
59
+ msgid "Learn More"
60
+ msgstr "En savoir plus"
61
+
62
+ #: bws_functions.php:168
63
  msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
64
  msgstr ""
65
 
66
+ #: bws_functions.php:169
67
  #, fuzzy
68
  msgid "Rate the plugin"
69
  msgstr "Activer cette extension"
70
 
71
+ #: bws_functions.php:172
72
  #, fuzzy
73
  msgid "If there is something wrong about it, please contact us"
74
  msgstr "Si vous avez des questions, merci de contacter via "
75
 
76
+ #: bws_functions.php:189 bws_functions.php:225
77
  msgid "Wrong license key"
78
  msgstr ""
79
 
80
+ #: bws_functions.php:219 bws_functions.php:451 bws_functions.php:502
81
  msgid ""
82
  "Something went wrong. Please try again later. If the error appears again, "
83
  "please contact us"
84
  msgstr ""
85
 
86
+ #: bws_functions.php:219 bws_functions.php:451 bws_functions.php:502
87
  msgid "We are sorry for inconvenience."
88
  msgstr ""
89
 
90
+ #: bws_functions.php:227
91
  msgid "This license key is bind to another site"
92
  msgstr ""
93
 
94
+ #: bws_functions.php:229 bws_functions.php:361
95
  msgid ""
96
  "Unfortunately, you have exceeded the number of available tries per day. "
97
  "Please, upload the plugin manually."
98
  msgstr ""
99
 
100
+ #: bws_functions.php:231
101
  msgid ""
102
  "Unfortunately, Your license has expired. To continue getting top-priority "
103
  "support and plugin updates you should extend it in your"
104
  msgstr ""
105
 
106
+ #: bws_functions.php:233
107
  msgid ""
108
  "Unfortunately, the PRO licence was already installed to this domain. The PRO "
109
  "Trial license can be installed only once."
110
  msgstr ""
111
 
112
+ #: bws_functions.php:244 bws_functions.php:266 bws_functions.php:288
113
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
114
  msgstr ""
115
 
116
+ #: bws_functions.php:256
117
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
118
  msgstr ""
119
 
120
+ #: bws_functions.php:262
121
  msgid ""
122
  "Your server does not support either ZipArchive or Phar. Please, upload the "
123
  "plugin manually"
124
  msgstr ""
125
 
126
+ #: bws_functions.php:269
127
  msgid "UploadDir is not writable. Please, upload the plugin manually"
128
  msgstr ""
129
 
130
+ #: bws_functions.php:292
131
  msgid ""
132
  "Something went wrong. Try again later or upload the plugin manually. We are "
133
  "sorry for inconvenience."
134
  msgstr ""
135
 
136
+ #: bws_functions.php:317
137
  #, fuzzy
138
  msgid "Please, enter Your license key"
139
  msgstr "Merci de saisir votre message..."
140
 
141
+ #: bws_functions.php:334
142
  msgid ""
143
  "Congratulations! The PRO version of the plugin is successfully download and "
144
  "activated."
145
  msgstr ""
146
 
147
+ #: bws_functions.php:336 bws_functions.php:418
148
  msgid "Please, go to"
149
  msgstr ""
150
 
151
+ #: bws_functions.php:336 bws_functions.php:418
152
  #, fuzzy
153
  msgid "the setting page"
154
  msgstr "Options supplémentaires"
155
 
156
+ #: bws_functions.php:337 bws_functions.php:419
157
  msgid "You will be redirected automatically in 5 seconds."
158
  msgstr ""
159
 
160
+ #: bws_functions.php:342
161
  msgid "You can download and activate"
162
  msgstr ""
163
 
164
+ #: bws_functions.php:344
165
  msgid "version of this plugin by entering Your license key."
166
  msgstr ""
167
 
168
+ #: bws_functions.php:346 bws_functions.php:387
169
  msgid ""
170
  "You can find your license key on your personal page Client area, by clicking "
171
  "on the link"
172
  msgstr ""
173
 
174
+ #: bws_functions.php:348 bws_functions.php:389
175
  msgid "(your username is the email you specify when purchasing the product)."
176
  msgstr ""
177
 
178
+ #: bws_functions.php:352
179
+ msgid "or"
180
+ msgstr ""
181
+
182
+ #: bws_functions.php:352
183
+ #, php-format
184
+ msgid "Start Your Free %s-Day Trial Now"
185
+ msgstr ""
186
+
187
+ #: bws_functions.php:358 bws_functions.php:367 bws_functions.php:397
188
+ #: bws_functions.php:405 bws_menu.php:635 bws_menu.php:692
189
  msgid "Activate"
190
  msgstr "Activé"
191
 
192
+ #: bws_functions.php:384 bws_functions.php:477
193
+ #, php-format
194
+ msgid ""
195
+ "In order to continue using the plugin it is necessary to buy a %s license."
196
+ msgstr ""
197
+
198
+ #: bws_functions.php:385
199
+ msgid "After that you can activate it by entering your license key."
200
+ msgstr ""
201
+
202
  #: bws_functions.php:399
203
+ msgid "Unfortunately, you have exceeded the number of available tries per day."
204
+ msgstr ""
205
+
206
+ #: bws_functions.php:416
207
+ msgid ""
208
+ "Congratulations! The PRO license of the plugin is successfully activated."
209
+ msgstr ""
210
+
211
+ #: bws_functions.php:457
212
+ msgid "Wrong license key."
213
+ msgstr ""
214
+
215
+ #: bws_functions.php:459
216
+ msgid "This license key is bind to another site."
217
+ msgstr ""
218
+
219
+ #: bws_functions.php:461
220
  msgid ""
221
  "This license key is valid, but Your license has expired. If you want to "
222
  "update our plugin in future, you should extend the license."
223
  msgstr ""
224
 
225
+ #: bws_functions.php:463
226
  msgid "Unfortunately, you have exceeded the number of available tries."
227
  msgstr ""
228
 
229
+ #: bws_functions.php:465
230
+ msgid ""
231
+ "Unfortunately, the PRO Trial licence was already installed to this domain. "
232
+ "The PRO Trial license can be installed only once."
233
+ msgstr ""
234
+
235
+ #: bws_functions.php:469
236
+ msgid "The PRO Trial license key is valid."
237
  msgstr ""
238
 
239
+ #: bws_functions.php:471
240
  msgid "The license key is valid."
241
  msgstr ""
242
 
243
+ #: bws_functions.php:474
244
+ msgid "Your license will expire on"
245
+ msgstr ""
246
+
247
+ #: bws_functions.php:507
248
  #, fuzzy
249
  msgid "Please, enter your license key"
250
  msgstr "Merci de saisir votre message..."
251
 
252
+ #: bws_functions.php:520
253
  msgid ""
254
  "If needed you can check if the license key is correct or reenter it in the "
255
  "field below. You can find your license key on your personal page - Client "
256
  "area - on our website"
257
  msgstr ""
258
 
259
+ #: bws_functions.php:520
260
  msgid ""
261
  "(your username is the email you specify when purchasing the product). If "
262
  "necessary, please submit \"Lost your password?\" request."
263
  msgstr ""
264
 
265
+ #: bws_functions.php:524
266
  msgid "Check license key"
267
  msgstr ""
268
 
269
+ #: bws_functions.php:538
270
  msgid ""
271
  "WARNING: We have noticed illegal use of our plugin by you. We strongly "
272
  "recommend you to solve the problem within 24 hours, otherwise the plugin "
273
  "will be deactivated. Please go to your personal"
274
  msgstr ""
275
 
276
+ #: bws_functions.php:538
277
  msgid ""
278
  "(your username is the email you specify when purchasing the product), where "
279
  "you can make the necessary changes."
280
  msgstr ""
281
 
282
+ #: bws_functions.php:546
283
+ msgid ""
284
+ "Notice: Your PRO Trial license has expired. To continue using the plugin you "
285
+ "should buy a PRO license"
286
+ msgstr ""
287
+
288
+ #: bws_functions.php:548
289
  msgid ""
290
  "Your license has expired. To continue getting top-priority support and "
291
  "plugin updates you should extend it."
292
  msgstr ""
293
 
294
+ #: bws_functions.php:548 bws_functions.php:601 bws_menu.php:611
295
+ #: bws_menu.php:633 bws_menu.php:660 bws_menu.php:690 bws_menu.php:736
296
  msgid "Learn more"
297
  msgstr "En savoir plus"
298
 
299
+ #: bws_functions.php:558
300
+ #, php-format
301
+ msgid "Notice: You are using the PRO Trial license of %s plugin."
302
+ msgstr ""
303
+
304
+ #: bws_functions.php:560
305
+ msgid "Notice: You are using the PRO Trial license of plugin."
306
+ msgstr ""
307
+
308
+ #: bws_functions.php:563
309
+ msgid "The PRO Trial license will expire on"
310
+ msgstr ""
311
+
312
+ #: bws_functions.php:601
313
  msgid "You license for"
314
  msgstr ""
315
 
316
+ #: bws_functions.php:601
317
  msgid "expires on"
318
  msgstr ""
319
 
320
+ #: bws_functions.php:601
321
  msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
322
  msgstr ""
323
 
324
+ #: bws_functions.php:676
325
  msgid "Close"
326
  msgstr ""
327
 
328
+ #: bws_menu.php:448
329
  msgid "Not set"
330
  msgstr "Not set"
331
 
332
+ #: bws_menu.php:450 bws_menu.php:451
333
  msgid "On"
334
  msgstr "On"
335
 
336
+ #: bws_menu.php:450 bws_menu.php:451
337
  msgid "Off"
338
  msgstr "Off"
339
 
340
+ #: bws_menu.php:452 bws_menu.php:453 bws_menu.php:454 bws_menu.php:455
341
+ #: bws_menu.php:456 bws_menu.php:468
342
  msgid "N/A"
343
  msgstr "N/A"
344
 
345
+ #: bws_menu.php:456
346
  msgid " Mb"
347
  msgstr " Mb"
348
 
349
+ #: bws_menu.php:457 bws_menu.php:458 bws_menu.php:459 bws_menu.php:464
350
  msgid "Yes"
351
  msgstr "Yes"
352
 
353
+ #: bws_menu.php:457 bws_menu.php:458 bws_menu.php:459 bws_menu.php:466
354
  msgid "No"
355
  msgstr "No"
356
 
357
+ #: bws_menu.php:476
358
  msgid "Operating System"
359
  msgstr "Operating System"
360
 
361
+ #: bws_menu.php:477
362
  msgid "Server"
363
  msgstr "Server"
364
 
365
+ #: bws_menu.php:478
366
  msgid "Memory usage"
367
  msgstr "Memory usage"
368
 
369
+ #: bws_menu.php:479
370
  msgid "MYSQL Version"
371
  msgstr "MYSQL Version"
372
 
373
+ #: bws_menu.php:480
374
  msgid "SQL Mode"
375
  msgstr "SQL Mode"
376
 
377
+ #: bws_menu.php:481
378
  msgid "PHP Version"
379
  msgstr "PHP Version"
380
 
381
+ #: bws_menu.php:482
382
  msgid "PHP Safe Mode"
383
  msgstr "PHP Safe Mode"
384
 
385
+ #: bws_menu.php:483
386
  msgid "PHP Allow URL fopen"
387
  msgstr "PHP Allow URL fopen"
388
 
389
+ #: bws_menu.php:484
390
  msgid "PHP Memory Limit"
391
  msgstr "PHP Memory Limit"
392
 
393
+ #: bws_menu.php:485
394
  msgid "PHP Max Upload Size"
395
  msgstr "PHP Max Upload Size"
396
 
397
+ #: bws_menu.php:486
398
  msgid "PHP Max Post Size"
399
  msgstr "PHP Max Post Size"
400
 
401
+ #: bws_menu.php:487
402
  msgid "PHP Max Script Execute Time"
403
  msgstr "PHP Max Script Execute Time"
404
 
405
+ #: bws_menu.php:488
406
  msgid "PHP Exif support"
407
  msgstr "PHP Exif support"
408
 
409
+ #: bws_menu.php:489
410
  msgid "PHP IPTC support"
411
  msgstr "PHP IPTC support"
412
 
413
+ #: bws_menu.php:490
414
  msgid "PHP XML support"
415
  msgstr "PHP XML support"
416
 
417
+ #: bws_menu.php:491
418
  msgid "Site URL"
419
  msgstr "Site URL"
420
 
421
+ #: bws_menu.php:492
422
  msgid "Home URL"
423
  msgstr "Home URL"
424
 
425
+ #: bws_menu.php:495
426
  msgid "WordPress Version"
427
  msgstr "WordPress Version"
428
 
429
+ #: bws_menu.php:496
430
  msgid "WordPress DB Version"
431
  msgstr "WordPress DB Version"
432
 
433
+ #: bws_menu.php:497
434
  msgid "Multisite"
435
  msgstr "Multisite"
436
 
437
+ #: bws_menu.php:498
438
  msgid "Active Theme"
439
  msgstr "Active Theme"
440
 
441
+ #: bws_menu.php:513
442
  msgid "Please enter a valid email address."
443
  msgstr "Merci de saisir une adresse e-mail valide."
444
 
445
+ #: bws_menu.php:517
446
  msgid "Email with system info is sent to "
447
  msgstr "Le courriel avec les informations système est envoyé à"
448
 
449
+ #: bws_menu.php:521
450
  msgid "Thank you for contacting us."
451
  msgstr "Merci de nous avoir contacté."
452
 
453
+ #: bws_menu.php:554
454
  msgid "Sorry, email message could not be delivered."
455
  msgstr "Désolé, votre e-mail n'a pas pu être envoyé."
456
 
457
+ #: bws_menu.php:562
458
  msgid "Need help?"
459
  msgstr "Besoin d'aide ?"
460
 
461
+ #: bws_menu.php:563
462
  msgid "Client area"
463
  msgstr "Espace client"
464
 
465
+ #: bws_menu.php:564 bws_menu.php:875
466
  msgid "System status"
467
  msgstr "System status"
468
 
469
+ #: bws_menu.php:569
470
  msgid "Plugins"
471
  msgstr "Externsions"
472
 
473
+ #: bws_menu.php:571
474
  msgid "Themes"
475
  msgstr "Thèmes"
476
 
477
+ #: bws_menu.php:576
478
  msgid "All"
479
  msgstr "Tous"
480
 
481
+ #: bws_menu.php:577
482
  msgid "Installed"
483
  msgstr "Installé"
484
 
485
+ #: bws_menu.php:578
486
  msgid "Recommended"
487
  msgstr "Recommandé"
488
 
489
+ #: bws_menu.php:582
490
  msgid "Installed plugins"
491
  msgstr "Plugin installé"
492
 
493
+ #: bws_menu.php:614 bws_menu.php:663
494
  msgid "Settings"
495
  msgstr "Réglages"
496
 
497
+ #: bws_menu.php:635 bws_menu.php:692
498
  msgid "Activate this plugin"
499
  msgstr "Activer cette extension"
500
 
501
+ #: bws_menu.php:650 bws_menu.php:680 bws_menu.php:726
502
  msgid "Go"
503
  msgstr "Passez"
504
 
505
+ #: bws_menu.php:654 bws_menu.php:684 bws_menu.php:730
506
  msgid "DONATE"
507
  msgstr "Faire un don"
508
 
509
+ #: bws_menu.php:700
510
  msgid "Recommended plugins"
511
  msgstr "Plugin recommandé"
512
 
513
+ #: bws_menu.php:738
514
  msgid "Install now"
515
  msgstr "Installer maintenant"
516
 
517
+ #: bws_menu.php:759
518
  msgid "Try again"
519
  msgstr "Essayer de nouveau"
520
 
521
+ #: bws_menu.php:777
522
  #, php-format
523
  msgid "Preview &#8220;%s&#8221;"
524
  msgstr "Pré-visualiser &#8220;%s&#8221;"
525
 
526
+ #: bws_menu.php:808
527
  #, php-format
528
  msgid "Install %s"
529
  msgstr "%s installé"
530
 
531
+ #: bws_menu.php:808
532
  msgid "Install Now"
533
  msgstr "Installa Ora"
534
 
535
+ #: bws_menu.php:811
536
  #, php-format
537
  msgid "Update to version %s"
538
  msgstr "Mettre à jour pour la version %s"
539
 
540
+ #: bws_menu.php:811
541
  msgid "Update"
542
  msgstr "Mettre à jour"
543
 
544
+ #: bws_menu.php:818
545
  #, php-format
546
  msgid "Preview %s"
547
  msgstr "Pré-visualiser %s"
548
 
549
+ #: bws_menu.php:818
550
  msgid "Preview"
551
  msgstr "Pré-visualiser"
552
 
553
+ #: bws_menu.php:824 bws_menu.php:856
554
  #, php-format
555
  msgid "By %s"
556
  msgstr "Par %s"
557
 
558
+ #: bws_menu.php:830
559
  msgid "Details"
560
  msgstr "Détails"
561
 
562
+ #: bws_menu.php:862
563
  msgid "Already Installed"
564
  msgstr "Déjà installé"
565
 
566
+ #: bws_menu.php:878
567
  msgid "Environment"
568
  msgstr "Environment"
569
 
570
+ #: bws_menu.php:889
571
  msgid "Active Plugins"
572
  msgstr "Plugin actifs"
573
 
574
+ #: bws_menu.php:902
575
  msgid "Inactive Plugins"
576
  msgstr "Plugin inactifs"
577
 
578
+ #: bws_menu.php:918
579
  msgid "Send to support"
580
  msgstr "Envoyé au support"
581
 
582
+ #: bws_menu.php:925
583
  msgid "Send to custom email &#187;"
584
  msgstr "Envoyer un e-mail spécifique &#187;"
585
 
bws_menu/languages/bestwebsoft-it_IT.mo CHANGED
Binary file
bws_menu/languages/bestwebsoft-it_IT.po CHANGED
@@ -2,10 +2,11 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-03-05 13:12+0300\n"
6
- "PO-Revision-Date: 2015-03-05 13:13+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Marco <marco@blackstudio.it>\n"
 
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
@@ -15,571 +16,637 @@ msgstr ""
15
  "X-Poedit-KeywordsList: __;_e\n"
16
  "X-Poedit-Basepath: ..\n"
17
  "X-Textdomain-Support: yes\n"
18
- "Language: it_IT\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
- #: bws_functions.php:84
22
  msgid "requires"
23
  msgstr ""
24
 
25
- #: bws_functions.php:85
26
  msgid ""
27
  "or higher, that is why it has been deactivated! Please upgrade WordPress and "
28
  "try again."
29
  msgstr ""
30
 
31
- #: bws_functions.php:86
32
  msgid "Back to the WordPress"
33
  msgstr ""
34
 
35
  # @ bestwebsoft
36
- #: bws_functions.php:87
37
  #, fuzzy
38
  msgid "Plugins page"
39
  msgstr "Plugin Pro"
40
 
41
- # @ bestwebsoft
42
- #: bws_functions.php:134
43
- #, fuzzy
44
- msgid "Learn More"
45
- msgstr "Leggi tutto"
46
-
47
- #: bws_functions.php:137
48
  msgid "It’s time to upgrade your"
49
  msgstr ""
50
 
51
  # @ captcha
52
- #: bws_functions.php:137
53
  #, fuzzy
54
  msgid "to"
55
  msgstr "due"
56
 
57
  # @ bestwebsoft
58
- #: bws_functions.php:137
59
  #, fuzzy
60
  msgid "version!"
61
  msgstr "Versione PHP"
62
 
63
- #: bws_functions.php:138
64
  msgid "Extend standard plugin functionality with new great options."
65
  msgstr ""
66
 
67
- #: bws_functions.php:158
 
 
 
 
 
 
68
  msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
69
  msgstr ""
70
 
71
  # @ bestwebsoft
72
- #: bws_functions.php:159
73
  #, fuzzy
74
  msgid "Rate the plugin"
75
  msgstr "Plugin attivi"
76
 
77
  # @ bestwebsoft
78
- #: bws_functions.php:162
79
  #, fuzzy
80
  msgid "If there is something wrong about it, please contact us"
81
  msgstr "Se hai domande, contattaci tramite"
82
 
83
- #: bws_functions.php:179 bws_functions.php:215 bws_functions.php:395
84
  msgid "Wrong license key"
85
  msgstr ""
86
 
87
- #: bws_functions.php:209 bws_functions.php:389 bws_functions.php:426
88
  msgid ""
89
  "Something went wrong. Please try again later. If the error appears again, "
90
  "please contact us"
91
  msgstr ""
92
 
93
- #: bws_functions.php:209 bws_functions.php:389 bws_functions.php:426
94
  msgid "We are sorry for inconvenience."
95
  msgstr ""
96
 
97
- #: bws_functions.php:217 bws_functions.php:397
98
  msgid "This license key is bind to another site"
99
  msgstr ""
100
 
101
- #: bws_functions.php:219 bws_functions.php:348
102
  msgid ""
103
  "Unfortunately, you have exceeded the number of available tries per day. "
104
  "Please, upload the plugin manually."
105
  msgstr ""
106
 
107
- #: bws_functions.php:221
108
  msgid ""
109
  "Unfortunately, Your license has expired. To continue getting top-priority "
110
  "support and plugin updates you should extend it in your"
111
  msgstr ""
112
 
113
- #: bws_functions.php:223
114
  msgid ""
115
  "Unfortunately, the PRO licence was already installed to this domain. The PRO "
116
  "Trial license can be installed only once."
117
  msgstr ""
118
 
119
- #: bws_functions.php:234 bws_functions.php:256 bws_functions.php:278
120
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
121
  msgstr ""
122
 
123
- #: bws_functions.php:246
124
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
125
  msgstr ""
126
 
127
- #: bws_functions.php:252
128
  msgid ""
129
  "Your server does not support either ZipArchive or Phar. Please, upload the "
130
  "plugin manually"
131
  msgstr ""
132
 
133
- #: bws_functions.php:259
134
  msgid "UploadDir is not writable. Please, upload the plugin manually"
135
  msgstr ""
136
 
137
- #: bws_functions.php:282
138
  msgid ""
139
  "Something went wrong. Try again later or upload the plugin manually. We are "
140
  "sorry for inconvenience."
141
  msgstr ""
142
 
143
- #: bws_functions.php:307
144
  msgid "Please, enter Your license key"
145
  msgstr ""
146
 
147
- #: bws_functions.php:324
148
  msgid ""
149
  "Congratulations! The PRO version of the plugin is successfully download and "
150
  "activated."
151
  msgstr ""
152
 
153
- #: bws_functions.php:326
154
  msgid "Please, go to"
155
  msgstr ""
156
 
157
- #: bws_functions.php:326
158
  msgid "the setting page"
159
  msgstr ""
160
 
161
- #: bws_functions.php:327
162
  msgid "You will be redirected automatically in 5 seconds."
163
  msgstr ""
164
 
165
- #: bws_functions.php:332
166
  msgid "You can download and activate"
167
  msgstr ""
168
 
169
- #: bws_functions.php:334
170
  msgid "version of this plugin by entering Your license key."
171
  msgstr ""
172
 
173
- #: bws_functions.php:336
174
  msgid ""
175
  "You can find your license key on your personal page Client area, by clicking "
176
  "on the link"
177
  msgstr ""
178
 
179
- #: bws_functions.php:338
180
  msgid "(your username is the email you specify when purchasing the product)."
181
  msgstr ""
182
 
 
 
 
 
 
 
 
 
 
 
 
183
  # @ bestwebsoft
184
- #: bws_functions.php:346 bws_functions.php:354 bws_menu.php:613
185
- #: bws_menu.php:670
186
  #, fuzzy
187
  msgid "Activate"
188
  msgstr "Plugin attivi"
189
 
 
 
 
 
 
 
 
 
 
 
190
  #: bws_functions.php:399
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
191
  msgid ""
192
  "This license key is valid, but Your license has expired. If you want to "
193
  "update our plugin in future, you should extend the license."
194
  msgstr ""
195
 
196
- #: bws_functions.php:401
197
  msgid "Unfortunately, you have exceeded the number of available tries."
198
  msgstr ""
199
 
200
- #: bws_functions.php:405
201
- msgid "The license key is valid. Your license will expire on"
 
 
202
  msgstr ""
203
 
204
- #: bws_functions.php:407
 
 
 
 
205
  msgid "The license key is valid."
206
  msgstr ""
207
 
208
- #: bws_functions.php:431
 
 
 
 
209
  msgid "Please, enter your license key"
210
  msgstr ""
211
 
212
- #: bws_functions.php:444
213
  msgid ""
214
  "If needed you can check if the license key is correct or reenter it in the "
215
  "field below. You can find your license key on your personal page - Client "
216
  "area - on our website"
217
  msgstr ""
218
 
219
- #: bws_functions.php:444
220
  msgid ""
221
  "(your username is the email you specify when purchasing the product). If "
222
  "necessary, please submit \"Lost your password?\" request."
223
  msgstr ""
224
 
225
- #: bws_functions.php:448
226
  msgid "Check license key"
227
  msgstr ""
228
 
229
- #: bws_functions.php:462
230
  msgid ""
231
  "WARNING: We have noticed illegal use of our plugin by you. We strongly "
232
  "recommend you to solve the problem within 24 hours, otherwise the plugin "
233
  "will be deactivated. Please go to your personal"
234
  msgstr ""
235
 
236
- #: bws_functions.php:462
237
  msgid ""
238
  "(your username is the email you specify when purchasing the product), where "
239
  "you can make the necessary changes."
240
  msgstr ""
241
 
242
- #: bws_functions.php:468
 
 
 
 
 
 
243
  msgid ""
244
  "Your license has expired. To continue getting top-priority support and "
245
  "plugin updates you should extend it."
246
  msgstr ""
247
 
248
  # @ bestwebsoft
249
- #: bws_functions.php:468 bws_functions.php:502 bws_menu.php:589
250
- #: bws_menu.php:611 bws_menu.php:638 bws_menu.php:668 bws_menu.php:714
251
  #, fuzzy
252
  msgid "Learn more"
253
  msgstr "Leggi tutto"
254
 
255
- #: bws_functions.php:502
 
 
 
 
 
 
 
 
 
 
 
 
 
256
  msgid "You license for"
257
  msgstr ""
258
 
259
- #: bws_functions.php:502
260
  msgid "expires on"
261
  msgstr ""
262
 
263
- #: bws_functions.php:502
264
  msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
265
  msgstr ""
266
 
267
- #: bws_functions.php:580
268
  msgid "Close"
269
  msgstr ""
270
 
271
  # @ bestwebsoft
272
- #: bws_menu.php:426
273
  msgid "Not set"
274
  msgstr "Non impostato"
275
 
276
  # @ bestwebsoft
277
- #: bws_menu.php:428 bws_menu.php:429
278
  msgid "On"
279
  msgstr "Abilitato"
280
 
281
  # @ bestwebsoft
282
- #: bws_menu.php:428 bws_menu.php:429
283
  msgid "Off"
284
  msgstr "Disabilitato"
285
 
286
  # @ bestwebsoft
287
- #: bws_menu.php:430 bws_menu.php:431 bws_menu.php:432 bws_menu.php:433
288
- #: bws_menu.php:434 bws_menu.php:446
289
  msgid "N/A"
290
  msgstr "Non disponibile"
291
 
292
  # @ bestwebsoft
293
- #: bws_menu.php:434
294
  msgid " Mb"
295
  msgstr "Mb"
296
 
297
  # @ bestwebsoft
298
- #: bws_menu.php:435 bws_menu.php:436 bws_menu.php:437 bws_menu.php:442
299
  msgid "Yes"
300
  msgstr "Sì"
301
 
302
  # @ bestwebsoft
303
- #: bws_menu.php:435 bws_menu.php:436 bws_menu.php:437 bws_menu.php:444
304
  msgid "No"
305
  msgstr "No"
306
 
307
  # @ bestwebsoft
308
- #: bws_menu.php:454
309
  msgid "Operating System"
310
  msgstr "Sistema operativo"
311
 
312
  # @ bestwebsoft
313
- #: bws_menu.php:455
314
  msgid "Server"
315
  msgstr "Server"
316
 
317
  # @ bestwebsoft
318
- #: bws_menu.php:456
319
  msgid "Memory usage"
320
  msgstr "Utilizzo memoria"
321
 
322
  # @ bestwebsoft
323
- #: bws_menu.php:457
324
  msgid "MYSQL Version"
325
  msgstr "Versione MYSQL"
326
 
327
  # @ bestwebsoft
328
- #: bws_menu.php:458
329
  msgid "SQL Mode"
330
  msgstr "Modalità SQL"
331
 
332
  # @ bestwebsoft
333
- #: bws_menu.php:459
334
  msgid "PHP Version"
335
  msgstr "Versione PHP"
336
 
337
  # @ bestwebsoft
338
- #: bws_menu.php:460
339
  msgid "PHP Safe Mode"
340
  msgstr "Safe Mode PHP"
341
 
342
  # @ bestwebsoft
343
- #: bws_menu.php:461
344
  msgid "PHP Allow URL fopen"
345
  msgstr "Consenti URL fopen PHP"
346
 
347
  # @ bestwebsoft
348
- #: bws_menu.php:462
349
  msgid "PHP Memory Limit"
350
  msgstr "Limite di memoria PHP"
351
 
352
  # @ bestwebsoft
353
- #: bws_menu.php:463
354
  msgid "PHP Max Upload Size"
355
  msgstr "Dimensione upload massima PHP"
356
 
357
  # @ bestwebsoft
358
- #: bws_menu.php:464
359
  msgid "PHP Max Post Size"
360
  msgstr "Dimensione massima Post PHP"
361
 
362
  # @ bestwebsoft
363
- #: bws_menu.php:465
364
  msgid "PHP Max Script Execute Time"
365
  msgstr "Tempo massimo di esecuzione PHP"
366
 
367
  # @ bestwebsoft
368
- #: bws_menu.php:466
369
  msgid "PHP Exif support"
370
  msgstr "Supporto Exif PHP"
371
 
372
  # @ bestwebsoft
373
- #: bws_menu.php:467
374
  msgid "PHP IPTC support"
375
  msgstr "Supporto IPTC PHP"
376
 
377
  # @ bestwebsoft
378
- #: bws_menu.php:468
379
  msgid "PHP XML support"
380
  msgstr "Supporto XML PHP"
381
 
382
  # @ bestwebsoft
383
- #: bws_menu.php:469
384
  msgid "Site URL"
385
  msgstr "URL sito"
386
 
387
  # @ bestwebsoft
388
- #: bws_menu.php:470
389
  msgid "Home URL"
390
  msgstr "URL home"
391
 
392
  # @ bestwebsoft
393
- #: bws_menu.php:473
394
  msgid "WordPress Version"
395
  msgstr "Versione WordPress"
396
 
397
  # @ bestwebsoft
398
- #: bws_menu.php:474
399
  msgid "WordPress DB Version"
400
  msgstr "Versione DB WordPress"
401
 
402
  # @ bestwebsoft
403
- #: bws_menu.php:475
404
  msgid "Multisite"
405
  msgstr "Multisito"
406
 
407
  # @ bestwebsoft
408
- #: bws_menu.php:476
409
  msgid "Active Theme"
410
  msgstr "Tema attivo"
411
 
412
  # @ bestwebsoft
413
- #: bws_menu.php:491
414
  msgid "Please enter a valid email address."
415
  msgstr "Per favore inserisci un indirizzo e-mail valido."
416
 
417
  # @ bestwebsoft
418
- #: bws_menu.php:495
419
  msgid "Email with system info is sent to "
420
  msgstr "Email con informazioni di sistema spedita a "
421
 
422
  # @ bestwebsoft
423
- #: bws_menu.php:499
424
  msgid "Thank you for contacting us."
425
  msgstr "Grazie per averci contattato."
426
 
427
  # @ bestwebsoft
428
- #: bws_menu.php:532
429
  msgid "Sorry, email message could not be delivered."
430
  msgstr "Spiacenti, il messaggio email non può essere inviato."
431
 
432
- #: bws_menu.php:540
433
  msgid "Need help?"
434
  msgstr ""
435
 
436
- #: bws_menu.php:541
437
  msgid "Client area"
438
  msgstr ""
439
 
440
  # @ bestwebsoft
441
- #: bws_menu.php:542 bws_menu.php:853
442
  msgid "System status"
443
  msgstr "Stato sistema"
444
 
445
  # @ bestwebsoft
446
- #: bws_menu.php:547
447
  #, fuzzy
448
  msgid "Plugins"
449
  msgstr "Plugin Pro"
450
 
451
- #: bws_menu.php:549
452
  msgid "Themes"
453
  msgstr ""
454
 
455
- #: bws_menu.php:554
456
  msgid "All"
457
  msgstr ""
458
 
459
  # @ default
460
- #: bws_menu.php:555
461
  #, fuzzy
462
  msgid "Installed"
463
  msgstr "Installa %s"
464
 
465
  # @ bestwebsoft
466
- #: bws_menu.php:556
467
  #, fuzzy
468
  msgid "Recommended"
469
  msgstr "Plugin raccomandati"
470
 
471
  # @ bestwebsoft
472
- #: bws_menu.php:560
473
  msgid "Installed plugins"
474
  msgstr "Plugin installati"
475
 
476
  # @ bestwebsoft
477
  # @ captcha
478
- #: bws_menu.php:592 bws_menu.php:641
479
  msgid "Settings"
480
  msgstr "Impostazioni"
481
 
482
  # @ bestwebsoft
483
- #: bws_menu.php:613 bws_menu.php:670
484
  #, fuzzy
485
  msgid "Activate this plugin"
486
  msgstr "Plugin attivi"
487
 
488
- #: bws_menu.php:628 bws_menu.php:658 bws_menu.php:704
489
  msgid "Go"
490
  msgstr ""
491
 
492
- #: bws_menu.php:632 bws_menu.php:662 bws_menu.php:708
493
  msgid "DONATE"
494
  msgstr ""
495
 
496
  # @ bestwebsoft
497
- #: bws_menu.php:678
498
  msgid "Recommended plugins"
499
  msgstr "Plugin raccomandati"
500
 
501
  # @ default
502
- #: bws_menu.php:716
503
  #, fuzzy
504
  msgid "Install now"
505
  msgstr "Installa %s"
506
 
507
- #: bws_menu.php:737
508
  msgid "Try again"
509
  msgstr ""
510
 
511
- #: bws_menu.php:755
512
  #, php-format
513
  msgid "Preview &#8220;%s&#8221;"
514
  msgstr ""
515
 
516
  # @ default
517
- #: bws_menu.php:786
518
  #, php-format
519
  msgid "Install %s"
520
  msgstr "Installa %s"
521
 
522
  # @ default
523
- #: bws_menu.php:786
524
  #, fuzzy
525
  msgid "Install Now"
526
  msgstr "Installa %s"
527
 
528
- #: bws_menu.php:789
529
  #, php-format
530
  msgid "Update to version %s"
531
  msgstr ""
532
 
533
- #: bws_menu.php:789
534
  msgid "Update"
535
  msgstr ""
536
 
537
- #: bws_menu.php:796
538
  #, php-format
539
  msgid "Preview %s"
540
  msgstr ""
541
 
542
- #: bws_menu.php:796
543
  msgid "Preview"
544
  msgstr ""
545
 
546
- #: bws_menu.php:802 bws_menu.php:834
547
  #, php-format
548
  msgid "By %s"
549
  msgstr ""
550
 
551
- #: bws_menu.php:808
552
  msgid "Details"
553
  msgstr ""
554
 
555
  # @ default
556
- #: bws_menu.php:840
557
  #, fuzzy
558
  msgid "Already Installed"
559
  msgstr "Installa %s"
560
 
561
  # @ bestwebsoft
562
- #: bws_menu.php:856
563
  msgid "Environment"
564
  msgstr "Ambiente"
565
 
566
  # @ bestwebsoft
567
- #: bws_menu.php:867
568
  msgid "Active Plugins"
569
  msgstr "Plugin attivi"
570
 
571
  # @ bestwebsoft
572
- #: bws_menu.php:880
573
  msgid "Inactive Plugins"
574
  msgstr "Plugin inattivi"
575
 
576
  # @ bestwebsoft
577
- #: bws_menu.php:896
578
  msgid "Send to support"
579
  msgstr "Invia al supporto"
580
 
581
  # @ bestwebsoft
582
- #: bws_menu.php:903
583
  msgid "Send to custom email &#187;"
584
  msgstr "Invia a una email personalizzata &#187;"
585
 
@@ -816,10 +883,6 @@ msgstr "Invia a una email personalizzata &#187;"
816
  #~ msgid "three"
817
  #~ msgstr "tre"
818
 
819
- # @ captcha
820
- #~ msgid "four"
821
- #~ msgstr "quattro"
822
-
823
  # @ captcha
824
  #~ msgid "five"
825
  #~ msgstr "cinque"
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-04-20 14:47+0300\n"
6
+ "PO-Revision-Date: 2015-04-20 14:47+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Marco <marco@blackstudio.it>\n"
9
+ "Language: it_IT\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
16
  "X-Poedit-KeywordsList: __;_e\n"
17
  "X-Poedit-Basepath: ..\n"
18
  "X-Textdomain-Support: yes\n"
 
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
+ #: bws_functions.php:85
22
  msgid "requires"
23
  msgstr ""
24
 
25
+ #: bws_functions.php:87
26
  msgid ""
27
  "or higher, that is why it has been deactivated! Please upgrade WordPress and "
28
  "try again."
29
  msgstr ""
30
 
31
+ #: bws_functions.php:88
32
  msgid "Back to the WordPress"
33
  msgstr ""
34
 
35
  # @ bestwebsoft
36
+ #: bws_functions.php:90
37
  #, fuzzy
38
  msgid "Plugins page"
39
  msgstr "Plugin Pro"
40
 
41
+ #: bws_functions.php:147
 
 
 
 
 
 
42
  msgid "It’s time to upgrade your"
43
  msgstr ""
44
 
45
  # @ captcha
46
+ #: bws_functions.php:147
47
  #, fuzzy
48
  msgid "to"
49
  msgstr "due"
50
 
51
  # @ bestwebsoft
52
+ #: bws_functions.php:147
53
  #, fuzzy
54
  msgid "version!"
55
  msgstr "Versione PHP"
56
 
57
+ #: bws_functions.php:148
58
  msgid "Extend standard plugin functionality with new great options."
59
  msgstr ""
60
 
61
+ # @ bestwebsoft
62
+ #: bws_functions.php:151
63
+ #, fuzzy
64
+ msgid "Learn More"
65
+ msgstr "Leggi tutto"
66
+
67
+ #: bws_functions.php:168
68
  msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
69
  msgstr ""
70
 
71
  # @ bestwebsoft
72
+ #: bws_functions.php:169
73
  #, fuzzy
74
  msgid "Rate the plugin"
75
  msgstr "Plugin attivi"
76
 
77
  # @ bestwebsoft
78
+ #: bws_functions.php:172
79
  #, fuzzy
80
  msgid "If there is something wrong about it, please contact us"
81
  msgstr "Se hai domande, contattaci tramite"
82
 
83
+ #: bws_functions.php:189 bws_functions.php:225
84
  msgid "Wrong license key"
85
  msgstr ""
86
 
87
+ #: bws_functions.php:219 bws_functions.php:451 bws_functions.php:502
88
  msgid ""
89
  "Something went wrong. Please try again later. If the error appears again, "
90
  "please contact us"
91
  msgstr ""
92
 
93
+ #: bws_functions.php:219 bws_functions.php:451 bws_functions.php:502
94
  msgid "We are sorry for inconvenience."
95
  msgstr ""
96
 
97
+ #: bws_functions.php:227
98
  msgid "This license key is bind to another site"
99
  msgstr ""
100
 
101
+ #: bws_functions.php:229 bws_functions.php:361
102
  msgid ""
103
  "Unfortunately, you have exceeded the number of available tries per day. "
104
  "Please, upload the plugin manually."
105
  msgstr ""
106
 
107
+ #: bws_functions.php:231
108
  msgid ""
109
  "Unfortunately, Your license has expired. To continue getting top-priority "
110
  "support and plugin updates you should extend it in your"
111
  msgstr ""
112
 
113
+ #: bws_functions.php:233
114
  msgid ""
115
  "Unfortunately, the PRO licence was already installed to this domain. The PRO "
116
  "Trial license can be installed only once."
117
  msgstr ""
118
 
119
+ #: bws_functions.php:244 bws_functions.php:266 bws_functions.php:288
120
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
121
  msgstr ""
122
 
123
+ #: bws_functions.php:256
124
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
125
  msgstr ""
126
 
127
+ #: bws_functions.php:262
128
  msgid ""
129
  "Your server does not support either ZipArchive or Phar. Please, upload the "
130
  "plugin manually"
131
  msgstr ""
132
 
133
+ #: bws_functions.php:269
134
  msgid "UploadDir is not writable. Please, upload the plugin manually"
135
  msgstr ""
136
 
137
+ #: bws_functions.php:292
138
  msgid ""
139
  "Something went wrong. Try again later or upload the plugin manually. We are "
140
  "sorry for inconvenience."
141
  msgstr ""
142
 
143
+ #: bws_functions.php:317
144
  msgid "Please, enter Your license key"
145
  msgstr ""
146
 
147
+ #: bws_functions.php:334
148
  msgid ""
149
  "Congratulations! The PRO version of the plugin is successfully download and "
150
  "activated."
151
  msgstr ""
152
 
153
+ #: bws_functions.php:336 bws_functions.php:418
154
  msgid "Please, go to"
155
  msgstr ""
156
 
157
+ #: bws_functions.php:336 bws_functions.php:418
158
  msgid "the setting page"
159
  msgstr ""
160
 
161
+ #: bws_functions.php:337 bws_functions.php:419
162
  msgid "You will be redirected automatically in 5 seconds."
163
  msgstr ""
164
 
165
+ #: bws_functions.php:342
166
  msgid "You can download and activate"
167
  msgstr ""
168
 
169
+ #: bws_functions.php:344
170
  msgid "version of this plugin by entering Your license key."
171
  msgstr ""
172
 
173
+ #: bws_functions.php:346 bws_functions.php:387
174
  msgid ""
175
  "You can find your license key on your personal page Client area, by clicking "
176
  "on the link"
177
  msgstr ""
178
 
179
+ #: bws_functions.php:348 bws_functions.php:389
180
  msgid "(your username is the email you specify when purchasing the product)."
181
  msgstr ""
182
 
183
+ # @ captcha
184
+ #: bws_functions.php:352
185
+ #, fuzzy
186
+ msgid "or"
187
+ msgstr "quattro"
188
+
189
+ #: bws_functions.php:352
190
+ #, php-format
191
+ msgid "Start Your Free %s-Day Trial Now"
192
+ msgstr ""
193
+
194
  # @ bestwebsoft
195
+ #: bws_functions.php:358 bws_functions.php:367 bws_functions.php:397
196
+ #: bws_functions.php:405 bws_menu.php:635 bws_menu.php:692
197
  #, fuzzy
198
  msgid "Activate"
199
  msgstr "Plugin attivi"
200
 
201
+ #: bws_functions.php:384 bws_functions.php:477
202
+ #, php-format
203
+ msgid ""
204
+ "In order to continue using the plugin it is necessary to buy a %s license."
205
+ msgstr ""
206
+
207
+ #: bws_functions.php:385
208
+ msgid "After that you can activate it by entering your license key."
209
+ msgstr ""
210
+
211
  #: bws_functions.php:399
212
+ msgid "Unfortunately, you have exceeded the number of available tries per day."
213
+ msgstr ""
214
+
215
+ #: bws_functions.php:416
216
+ msgid ""
217
+ "Congratulations! The PRO license of the plugin is successfully activated."
218
+ msgstr ""
219
+
220
+ #: bws_functions.php:457
221
+ msgid "Wrong license key."
222
+ msgstr ""
223
+
224
+ #: bws_functions.php:459
225
+ msgid "This license key is bind to another site."
226
+ msgstr ""
227
+
228
+ #: bws_functions.php:461
229
  msgid ""
230
  "This license key is valid, but Your license has expired. If you want to "
231
  "update our plugin in future, you should extend the license."
232
  msgstr ""
233
 
234
+ #: bws_functions.php:463
235
  msgid "Unfortunately, you have exceeded the number of available tries."
236
  msgstr ""
237
 
238
+ #: bws_functions.php:465
239
+ msgid ""
240
+ "Unfortunately, the PRO Trial licence was already installed to this domain. "
241
+ "The PRO Trial license can be installed only once."
242
  msgstr ""
243
 
244
+ #: bws_functions.php:469
245
+ msgid "The PRO Trial license key is valid."
246
+ msgstr ""
247
+
248
+ #: bws_functions.php:471
249
  msgid "The license key is valid."
250
  msgstr ""
251
 
252
+ #: bws_functions.php:474
253
+ msgid "Your license will expire on"
254
+ msgstr ""
255
+
256
+ #: bws_functions.php:507
257
  msgid "Please, enter your license key"
258
  msgstr ""
259
 
260
+ #: bws_functions.php:520
261
  msgid ""
262
  "If needed you can check if the license key is correct or reenter it in the "
263
  "field below. You can find your license key on your personal page - Client "
264
  "area - on our website"
265
  msgstr ""
266
 
267
+ #: bws_functions.php:520
268
  msgid ""
269
  "(your username is the email you specify when purchasing the product). If "
270
  "necessary, please submit \"Lost your password?\" request."
271
  msgstr ""
272
 
273
+ #: bws_functions.php:524
274
  msgid "Check license key"
275
  msgstr ""
276
 
277
+ #: bws_functions.php:538
278
  msgid ""
279
  "WARNING: We have noticed illegal use of our plugin by you. We strongly "
280
  "recommend you to solve the problem within 24 hours, otherwise the plugin "
281
  "will be deactivated. Please go to your personal"
282
  msgstr ""
283
 
284
+ #: bws_functions.php:538
285
  msgid ""
286
  "(your username is the email you specify when purchasing the product), where "
287
  "you can make the necessary changes."
288
  msgstr ""
289
 
290
+ #: bws_functions.php:546
291
+ msgid ""
292
+ "Notice: Your PRO Trial license has expired. To continue using the plugin you "
293
+ "should buy a PRO license"
294
+ msgstr ""
295
+
296
+ #: bws_functions.php:548
297
  msgid ""
298
  "Your license has expired. To continue getting top-priority support and "
299
  "plugin updates you should extend it."
300
  msgstr ""
301
 
302
  # @ bestwebsoft
303
+ #: bws_functions.php:548 bws_functions.php:601 bws_menu.php:611
304
+ #: bws_menu.php:633 bws_menu.php:660 bws_menu.php:690 bws_menu.php:736
305
  #, fuzzy
306
  msgid "Learn more"
307
  msgstr "Leggi tutto"
308
 
309
+ #: bws_functions.php:558
310
+ #, php-format
311
+ msgid "Notice: You are using the PRO Trial license of %s plugin."
312
+ msgstr ""
313
+
314
+ #: bws_functions.php:560
315
+ msgid "Notice: You are using the PRO Trial license of plugin."
316
+ msgstr ""
317
+
318
+ #: bws_functions.php:563
319
+ msgid "The PRO Trial license will expire on"
320
+ msgstr ""
321
+
322
+ #: bws_functions.php:601
323
  msgid "You license for"
324
  msgstr ""
325
 
326
+ #: bws_functions.php:601
327
  msgid "expires on"
328
  msgstr ""
329
 
330
+ #: bws_functions.php:601
331
  msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
332
  msgstr ""
333
 
334
+ #: bws_functions.php:676
335
  msgid "Close"
336
  msgstr ""
337
 
338
  # @ bestwebsoft
339
+ #: bws_menu.php:448
340
  msgid "Not set"
341
  msgstr "Non impostato"
342
 
343
  # @ bestwebsoft
344
+ #: bws_menu.php:450 bws_menu.php:451
345
  msgid "On"
346
  msgstr "Abilitato"
347
 
348
  # @ bestwebsoft
349
+ #: bws_menu.php:450 bws_menu.php:451
350
  msgid "Off"
351
  msgstr "Disabilitato"
352
 
353
  # @ bestwebsoft
354
+ #: bws_menu.php:452 bws_menu.php:453 bws_menu.php:454 bws_menu.php:455
355
+ #: bws_menu.php:456 bws_menu.php:468
356
  msgid "N/A"
357
  msgstr "Non disponibile"
358
 
359
  # @ bestwebsoft
360
+ #: bws_menu.php:456
361
  msgid " Mb"
362
  msgstr "Mb"
363
 
364
  # @ bestwebsoft
365
+ #: bws_menu.php:457 bws_menu.php:458 bws_menu.php:459 bws_menu.php:464
366
  msgid "Yes"
367
  msgstr "Sì"
368
 
369
  # @ bestwebsoft
370
+ #: bws_menu.php:457 bws_menu.php:458 bws_menu.php:459 bws_menu.php:466
371
  msgid "No"
372
  msgstr "No"
373
 
374
  # @ bestwebsoft
375
+ #: bws_menu.php:476
376
  msgid "Operating System"
377
  msgstr "Sistema operativo"
378
 
379
  # @ bestwebsoft
380
+ #: bws_menu.php:477
381
  msgid "Server"
382
  msgstr "Server"
383
 
384
  # @ bestwebsoft
385
+ #: bws_menu.php:478
386
  msgid "Memory usage"
387
  msgstr "Utilizzo memoria"
388
 
389
  # @ bestwebsoft
390
+ #: bws_menu.php:479
391
  msgid "MYSQL Version"
392
  msgstr "Versione MYSQL"
393
 
394
  # @ bestwebsoft
395
+ #: bws_menu.php:480
396
  msgid "SQL Mode"
397
  msgstr "Modalità SQL"
398
 
399
  # @ bestwebsoft
400
+ #: bws_menu.php:481
401
  msgid "PHP Version"
402
  msgstr "Versione PHP"
403
 
404
  # @ bestwebsoft
405
+ #: bws_menu.php:482
406
  msgid "PHP Safe Mode"
407
  msgstr "Safe Mode PHP"
408
 
409
  # @ bestwebsoft
410
+ #: bws_menu.php:483
411
  msgid "PHP Allow URL fopen"
412
  msgstr "Consenti URL fopen PHP"
413
 
414
  # @ bestwebsoft
415
+ #: bws_menu.php:484
416
  msgid "PHP Memory Limit"
417
  msgstr "Limite di memoria PHP"
418
 
419
  # @ bestwebsoft
420
+ #: bws_menu.php:485
421
  msgid "PHP Max Upload Size"
422
  msgstr "Dimensione upload massima PHP"
423
 
424
  # @ bestwebsoft
425
+ #: bws_menu.php:486
426
  msgid "PHP Max Post Size"
427
  msgstr "Dimensione massima Post PHP"
428
 
429
  # @ bestwebsoft
430
+ #: bws_menu.php:487
431
  msgid "PHP Max Script Execute Time"
432
  msgstr "Tempo massimo di esecuzione PHP"
433
 
434
  # @ bestwebsoft
435
+ #: bws_menu.php:488
436
  msgid "PHP Exif support"
437
  msgstr "Supporto Exif PHP"
438
 
439
  # @ bestwebsoft
440
+ #: bws_menu.php:489
441
  msgid "PHP IPTC support"
442
  msgstr "Supporto IPTC PHP"
443
 
444
  # @ bestwebsoft
445
+ #: bws_menu.php:490
446
  msgid "PHP XML support"
447
  msgstr "Supporto XML PHP"
448
 
449
  # @ bestwebsoft
450
+ #: bws_menu.php:491
451
  msgid "Site URL"
452
  msgstr "URL sito"
453
 
454
  # @ bestwebsoft
455
+ #: bws_menu.php:492
456
  msgid "Home URL"
457
  msgstr "URL home"
458
 
459
  # @ bestwebsoft
460
+ #: bws_menu.php:495
461
  msgid "WordPress Version"
462
  msgstr "Versione WordPress"
463
 
464
  # @ bestwebsoft
465
+ #: bws_menu.php:496
466
  msgid "WordPress DB Version"
467
  msgstr "Versione DB WordPress"
468
 
469
  # @ bestwebsoft
470
+ #: bws_menu.php:497
471
  msgid "Multisite"
472
  msgstr "Multisito"
473
 
474
  # @ bestwebsoft
475
+ #: bws_menu.php:498
476
  msgid "Active Theme"
477
  msgstr "Tema attivo"
478
 
479
  # @ bestwebsoft
480
+ #: bws_menu.php:513
481
  msgid "Please enter a valid email address."
482
  msgstr "Per favore inserisci un indirizzo e-mail valido."
483
 
484
  # @ bestwebsoft
485
+ #: bws_menu.php:517
486
  msgid "Email with system info is sent to "
487
  msgstr "Email con informazioni di sistema spedita a "
488
 
489
  # @ bestwebsoft
490
+ #: bws_menu.php:521
491
  msgid "Thank you for contacting us."
492
  msgstr "Grazie per averci contattato."
493
 
494
  # @ bestwebsoft
495
+ #: bws_menu.php:554
496
  msgid "Sorry, email message could not be delivered."
497
  msgstr "Spiacenti, il messaggio email non può essere inviato."
498
 
499
+ #: bws_menu.php:562
500
  msgid "Need help?"
501
  msgstr ""
502
 
503
+ #: bws_menu.php:563
504
  msgid "Client area"
505
  msgstr ""
506
 
507
  # @ bestwebsoft
508
+ #: bws_menu.php:564 bws_menu.php:875
509
  msgid "System status"
510
  msgstr "Stato sistema"
511
 
512
  # @ bestwebsoft
513
+ #: bws_menu.php:569
514
  #, fuzzy
515
  msgid "Plugins"
516
  msgstr "Plugin Pro"
517
 
518
+ #: bws_menu.php:571
519
  msgid "Themes"
520
  msgstr ""
521
 
522
+ #: bws_menu.php:576
523
  msgid "All"
524
  msgstr ""
525
 
526
  # @ default
527
+ #: bws_menu.php:577
528
  #, fuzzy
529
  msgid "Installed"
530
  msgstr "Installa %s"
531
 
532
  # @ bestwebsoft
533
+ #: bws_menu.php:578
534
  #, fuzzy
535
  msgid "Recommended"
536
  msgstr "Plugin raccomandati"
537
 
538
  # @ bestwebsoft
539
+ #: bws_menu.php:582
540
  msgid "Installed plugins"
541
  msgstr "Plugin installati"
542
 
543
  # @ bestwebsoft
544
  # @ captcha
545
+ #: bws_menu.php:614 bws_menu.php:663
546
  msgid "Settings"
547
  msgstr "Impostazioni"
548
 
549
  # @ bestwebsoft
550
+ #: bws_menu.php:635 bws_menu.php:692
551
  #, fuzzy
552
  msgid "Activate this plugin"
553
  msgstr "Plugin attivi"
554
 
555
+ #: bws_menu.php:650 bws_menu.php:680 bws_menu.php:726
556
  msgid "Go"
557
  msgstr ""
558
 
559
+ #: bws_menu.php:654 bws_menu.php:684 bws_menu.php:730
560
  msgid "DONATE"
561
  msgstr ""
562
 
563
  # @ bestwebsoft
564
+ #: bws_menu.php:700
565
  msgid "Recommended plugins"
566
  msgstr "Plugin raccomandati"
567
 
568
  # @ default
569
+ #: bws_menu.php:738
570
  #, fuzzy
571
  msgid "Install now"
572
  msgstr "Installa %s"
573
 
574
+ #: bws_menu.php:759
575
  msgid "Try again"
576
  msgstr ""
577
 
578
+ #: bws_menu.php:777
579
  #, php-format
580
  msgid "Preview &#8220;%s&#8221;"
581
  msgstr ""
582
 
583
  # @ default
584
+ #: bws_menu.php:808
585
  #, php-format
586
  msgid "Install %s"
587
  msgstr "Installa %s"
588
 
589
  # @ default
590
+ #: bws_menu.php:808
591
  #, fuzzy
592
  msgid "Install Now"
593
  msgstr "Installa %s"
594
 
595
+ #: bws_menu.php:811
596
  #, php-format
597
  msgid "Update to version %s"
598
  msgstr ""
599
 
600
+ #: bws_menu.php:811
601
  msgid "Update"
602
  msgstr ""
603
 
604
+ #: bws_menu.php:818
605
  #, php-format
606
  msgid "Preview %s"
607
  msgstr ""
608
 
609
+ #: bws_menu.php:818
610
  msgid "Preview"
611
  msgstr ""
612
 
613
+ #: bws_menu.php:824 bws_menu.php:856
614
  #, php-format
615
  msgid "By %s"
616
  msgstr ""
617
 
618
+ #: bws_menu.php:830
619
  msgid "Details"
620
  msgstr ""
621
 
622
  # @ default
623
+ #: bws_menu.php:862
624
  #, fuzzy
625
  msgid "Already Installed"
626
  msgstr "Installa %s"
627
 
628
  # @ bestwebsoft
629
+ #: bws_menu.php:878
630
  msgid "Environment"
631
  msgstr "Ambiente"
632
 
633
  # @ bestwebsoft
634
+ #: bws_menu.php:889
635
  msgid "Active Plugins"
636
  msgstr "Plugin attivi"
637
 
638
  # @ bestwebsoft
639
+ #: bws_menu.php:902
640
  msgid "Inactive Plugins"
641
  msgstr "Plugin inattivi"
642
 
643
  # @ bestwebsoft
644
+ #: bws_menu.php:918
645
  msgid "Send to support"
646
  msgstr "Invia al supporto"
647
 
648
  # @ bestwebsoft
649
+ #: bws_menu.php:925
650
  msgid "Send to custom email &#187;"
651
  msgstr "Invia a una email personalizzata &#187;"
652
 
883
  #~ msgid "three"
884
  #~ msgstr "tre"
885
 
 
 
 
 
886
  # @ captcha
887
  #~ msgid "five"
888
  #~ msgstr "cinque"
bws_menu/languages/bestwebsoft-ja.mo CHANGED
Binary file
bws_menu/languages/bestwebsoft-ja.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: 2015-03-05 13:13+0300\n"
6
- "PO-Revision-Date: 2015-03-05 13:14+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: foken <foken@gmx.com>\n"
9
  "Language: ja_JP\n"
@@ -16,512 +16,577 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: bws_functions.php:84
20
  #, fuzzy
21
  msgid "requires"
22
  msgstr "必須フィールド"
23
 
24
- #: bws_functions.php:85
25
  msgid ""
26
  "or higher, that is why it has been deactivated! Please upgrade WordPress and "
27
  "try again."
28
  msgstr ""
29
 
30
- #: bws_functions.php:86
31
  msgid "Back to the WordPress"
32
  msgstr ""
33
 
34
- #: bws_functions.php:87
35
  #, fuzzy
36
  msgid "Plugins page"
37
  msgstr "Pro Plugins"
38
 
39
- #: bws_functions.php:134
40
- #, fuzzy
41
- msgid "Learn More"
42
- msgstr "もっと読む"
43
-
44
- #: bws_functions.php:137
45
  msgid "It’s time to upgrade your"
46
  msgstr ""
47
 
48
- #: bws_functions.php:137
49
  msgid "to"
50
  msgstr ""
51
 
52
- #: bws_functions.php:137
53
  #, fuzzy
54
  msgid "version!"
55
  msgstr "PHP バージョン"
56
 
57
- #: bws_functions.php:138
58
  msgid "Extend standard plugin functionality with new great options."
59
  msgstr ""
60
 
61
- #: bws_functions.php:158
 
 
 
 
 
62
  msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
63
  msgstr ""
64
 
65
- #: bws_functions.php:159
66
  #, fuzzy
67
  msgid "Rate the plugin"
68
  msgstr "有効なプラグイン"
69
 
70
- #: bws_functions.php:162
71
  #, fuzzy
72
  msgid "If there is something wrong about it, please contact us"
73
  msgstr "もそご質問がある場合は、以下の方法でご連絡下さい:"
74
 
75
- #: bws_functions.php:179 bws_functions.php:215 bws_functions.php:395
76
  msgid "Wrong license key"
77
  msgstr ""
78
 
79
- #: bws_functions.php:209 bws_functions.php:389 bws_functions.php:426
80
  msgid ""
81
  "Something went wrong. Please try again later. If the error appears again, "
82
  "please contact us"
83
  msgstr ""
84
 
85
- #: bws_functions.php:209 bws_functions.php:389 bws_functions.php:426
86
  msgid "We are sorry for inconvenience."
87
  msgstr ""
88
 
89
- #: bws_functions.php:217 bws_functions.php:397
90
  msgid "This license key is bind to another site"
91
  msgstr ""
92
 
93
- #: bws_functions.php:219 bws_functions.php:348
94
  msgid ""
95
  "Unfortunately, you have exceeded the number of available tries per day. "
96
  "Please, upload the plugin manually."
97
  msgstr ""
98
 
99
- #: bws_functions.php:221
100
  msgid ""
101
  "Unfortunately, Your license has expired. To continue getting top-priority "
102
  "support and plugin updates you should extend it in your"
103
  msgstr ""
104
 
105
- #: bws_functions.php:223
106
  msgid ""
107
  "Unfortunately, the PRO licence was already installed to this domain. The PRO "
108
  "Trial license can be installed only once."
109
  msgstr ""
110
 
111
- #: bws_functions.php:234 bws_functions.php:256 bws_functions.php:278
112
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
113
  msgstr ""
114
 
115
- #: bws_functions.php:246
116
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
117
  msgstr ""
118
 
119
- #: bws_functions.php:252
120
  msgid ""
121
  "Your server does not support either ZipArchive or Phar. Please, upload the "
122
  "plugin manually"
123
  msgstr ""
124
 
125
- #: bws_functions.php:259
126
  msgid "UploadDir is not writable. Please, upload the plugin manually"
127
  msgstr ""
128
 
129
- #: bws_functions.php:282
130
  msgid ""
131
  "Something went wrong. Try again later or upload the plugin manually. We are "
132
  "sorry for inconvenience."
133
  msgstr ""
134
 
135
- #: bws_functions.php:307
136
  #, fuzzy
137
  msgid "Please, enter Your license key"
138
  msgstr "メッセージを入力して下さい..."
139
 
140
- #: bws_functions.php:324
141
  msgid ""
142
  "Congratulations! The PRO version of the plugin is successfully download and "
143
  "activated."
144
  msgstr ""
145
 
146
- #: bws_functions.php:326
147
  msgid "Please, go to"
148
  msgstr ""
149
 
150
- #: bws_functions.php:326
151
  #, fuzzy
152
  msgid "the setting page"
153
  msgstr "追加設定"
154
 
155
- #: bws_functions.php:327
156
  msgid "You will be redirected automatically in 5 seconds."
157
  msgstr ""
158
 
159
- #: bws_functions.php:332
160
  msgid "You can download and activate"
161
  msgstr ""
162
 
163
- #: bws_functions.php:334
164
  msgid "version of this plugin by entering Your license key."
165
  msgstr ""
166
 
167
- #: bws_functions.php:336
168
  msgid ""
169
  "You can find your license key on your personal page Client area, by clicking "
170
  "on the link"
171
  msgstr ""
172
 
173
- #: bws_functions.php:338
174
  msgid "(your username is the email you specify when purchasing the product)."
175
  msgstr ""
176
 
177
- #: bws_functions.php:346 bws_functions.php:354 bws_menu.php:613
178
- #: bws_menu.php:670
 
 
 
 
 
 
 
 
 
179
  #, fuzzy
180
  msgid "Activate"
181
  msgstr "有効なcaptcha"
182
 
 
 
 
 
 
 
 
 
 
 
183
  #: bws_functions.php:399
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
184
  msgid ""
185
  "This license key is valid, but Your license has expired. If you want to "
186
  "update our plugin in future, you should extend the license."
187
  msgstr ""
188
 
189
- #: bws_functions.php:401
190
  msgid "Unfortunately, you have exceeded the number of available tries."
191
  msgstr ""
192
 
193
- #: bws_functions.php:405
194
- msgid "The license key is valid. Your license will expire on"
 
 
 
 
 
 
195
  msgstr ""
196
 
197
- #: bws_functions.php:407
198
  msgid "The license key is valid."
199
  msgstr ""
200
 
201
- #: bws_functions.php:431
 
 
 
 
202
  #, fuzzy
203
  msgid "Please, enter your license key"
204
  msgstr "メッセージを入力して下さい..."
205
 
206
- #: bws_functions.php:444
207
  msgid ""
208
  "If needed you can check if the license key is correct or reenter it in the "
209
  "field below. You can find your license key on your personal page - Client "
210
  "area - on our website"
211
  msgstr ""
212
 
213
- #: bws_functions.php:444
214
  msgid ""
215
  "(your username is the email you specify when purchasing the product). If "
216
  "necessary, please submit \"Lost your password?\" request."
217
  msgstr ""
218
 
219
- #: bws_functions.php:448
220
  msgid "Check license key"
221
  msgstr ""
222
 
223
- #: bws_functions.php:462
224
  msgid ""
225
  "WARNING: We have noticed illegal use of our plugin by you. We strongly "
226
  "recommend you to solve the problem within 24 hours, otherwise the plugin "
227
  "will be deactivated. Please go to your personal"
228
  msgstr ""
229
 
230
- #: bws_functions.php:462
231
  msgid ""
232
  "(your username is the email you specify when purchasing the product), where "
233
  "you can make the necessary changes."
234
  msgstr ""
235
 
236
- #: bws_functions.php:468
 
 
 
 
 
 
237
  msgid ""
238
  "Your license has expired. To continue getting top-priority support and "
239
  "plugin updates you should extend it."
240
  msgstr ""
241
 
242
- #: bws_functions.php:468 bws_functions.php:502 bws_menu.php:589
243
- #: bws_menu.php:611 bws_menu.php:638 bws_menu.php:668 bws_menu.php:714
244
  #, fuzzy
245
  msgid "Learn more"
246
  msgstr "もっと読む"
247
 
248
- #: bws_functions.php:502
 
 
 
 
 
 
 
 
 
 
 
 
 
249
  msgid "You license for"
250
  msgstr ""
251
 
252
- #: bws_functions.php:502
253
  msgid "expires on"
254
  msgstr ""
255
 
256
- #: bws_functions.php:502
257
  msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
258
  msgstr ""
259
 
260
- #: bws_functions.php:580
261
  msgid "Close"
262
  msgstr ""
263
 
264
- #: bws_menu.php:426
265
  msgid "Not set"
266
  msgstr "未設定"
267
 
268
- #: bws_menu.php:428 bws_menu.php:429
269
  msgid "On"
270
  msgstr "On"
271
 
272
- #: bws_menu.php:428 bws_menu.php:429
273
  msgid "Off"
274
  msgstr "Off"
275
 
276
- #: bws_menu.php:430 bws_menu.php:431 bws_menu.php:432 bws_menu.php:433
277
- #: bws_menu.php:434 bws_menu.php:446
278
  msgid "N/A"
279
  msgstr "該当なし"
280
 
281
- #: bws_menu.php:434
282
  msgid " Mb"
283
  msgstr " Mb"
284
 
285
- #: bws_menu.php:435 bws_menu.php:436 bws_menu.php:437 bws_menu.php:442
286
  msgid "Yes"
287
  msgstr "はい"
288
 
289
- #: bws_menu.php:435 bws_menu.php:436 bws_menu.php:437 bws_menu.php:444
290
  msgid "No"
291
  msgstr "いいえ"
292
 
293
- #: bws_menu.php:454
294
  msgid "Operating System"
295
  msgstr "オペレーション・システム"
296
 
297
- #: bws_menu.php:455
298
  msgid "Server"
299
  msgstr "サーバ"
300
 
301
- #: bws_menu.php:456
302
  msgid "Memory usage"
303
  msgstr "メモリー使用"
304
 
305
- #: bws_menu.php:457
306
  msgid "MYSQL Version"
307
  msgstr "MYSQL バージョン"
308
 
309
- #: bws_menu.php:458
310
  msgid "SQL Mode"
311
  msgstr "SQLモード"
312
 
313
- #: bws_menu.php:459
314
  msgid "PHP Version"
315
  msgstr "PHP バージョン"
316
 
317
- #: bws_menu.php:460
318
  msgid "PHP Safe Mode"
319
  msgstr "PHP Safe Mode"
320
 
321
- #: bws_menu.php:461
322
  msgid "PHP Allow URL fopen"
323
  msgstr "PHP Allow URL fopen"
324
 
325
- #: bws_menu.php:462
326
  msgid "PHP Memory Limit"
327
  msgstr "PHP Memory Limit"
328
 
329
- #: bws_menu.php:463
330
  msgid "PHP Max Upload Size"
331
  msgstr "PHP Max Upload Size"
332
 
333
- #: bws_menu.php:464
334
  msgid "PHP Max Post Size"
335
  msgstr "PHP Max Post Size"
336
 
337
- #: bws_menu.php:465
338
  msgid "PHP Max Script Execute Time"
339
  msgstr "PHP Max Script Execute Time"
340
 
341
- #: bws_menu.php:466
342
  msgid "PHP Exif support"
343
  msgstr "PHP Exif サポート"
344
 
345
- #: bws_menu.php:467
346
  msgid "PHP IPTC support"
347
  msgstr "PHP IPTC サポート"
348
 
349
- #: bws_menu.php:468
350
  msgid "PHP XML support"
351
  msgstr "PHP XML サポート"
352
 
353
- #: bws_menu.php:469
354
  msgid "Site URL"
355
  msgstr "サイトURL"
356
 
357
- #: bws_menu.php:470
358
  msgid "Home URL"
359
  msgstr "ホームURL"
360
 
361
- #: bws_menu.php:473
362
  msgid "WordPress Version"
363
  msgstr "WordPress バージョン"
364
 
365
- #: bws_menu.php:474
366
  msgid "WordPress DB Version"
367
  msgstr "WordPress データベース バージョン"
368
 
369
- #: bws_menu.php:475
370
  msgid "Multisite"
371
  msgstr "複数サイト"
372
 
373
- #: bws_menu.php:476
374
  msgid "Active Theme"
375
  msgstr "有効なテーマ"
376
 
377
- #: bws_menu.php:491
378
  msgid "Please enter a valid email address."
379
  msgstr "正確なEメール・アドレスを入力して下さい。"
380
 
381
- #: bws_menu.php:495
382
  msgid "Email with system info is sent to "
383
  msgstr "システム情報をメールで送信:"
384
 
385
- #: bws_menu.php:499
386
  msgid "Thank you for contacting us."
387
  msgstr "ご連絡ありがとうございます"
388
 
389
- #: bws_menu.php:532
390
  msgid "Sorry, email message could not be delivered."
391
  msgstr "申し訳ございませんが、貴方のemailは配信できませんでした。"
392
 
393
- #: bws_menu.php:540
394
  msgid "Need help?"
395
  msgstr ""
396
 
397
- #: bws_menu.php:541
398
  msgid "Client area"
399
  msgstr ""
400
 
401
- #: bws_menu.php:542 bws_menu.php:853
402
  msgid "System status"
403
  msgstr "システム状況"
404
 
405
- #: bws_menu.php:547
406
  #, fuzzy
407
  msgid "Plugins"
408
  msgstr "Pro Plugins"
409
 
410
- #: bws_menu.php:549
411
  msgid "Themes"
412
  msgstr ""
413
 
414
- #: bws_menu.php:554
415
  msgid "All"
416
  msgstr ""
417
 
418
- #: bws_menu.php:555
419
  #, fuzzy
420
  msgid "Installed"
421
  msgstr "%s 導入"
422
 
423
- #: bws_menu.php:556
424
  #, fuzzy
425
  msgid "Recommended"
426
  msgstr "推奨プラグイン"
427
 
428
- #: bws_menu.php:560
429
  msgid "Installed plugins"
430
  msgstr "導入済みプラグイン"
431
 
432
- #: bws_menu.php:592 bws_menu.php:641
433
  msgid "Settings"
434
  msgstr "設定"
435
 
436
- #: bws_menu.php:613 bws_menu.php:670
437
  #, fuzzy
438
  msgid "Activate this plugin"
439
  msgstr "有効なプラグイン"
440
 
441
- #: bws_menu.php:628 bws_menu.php:658 bws_menu.php:704
442
  msgid "Go"
443
  msgstr ""
444
 
445
- #: bws_menu.php:632 bws_menu.php:662 bws_menu.php:708
446
  msgid "DONATE"
447
  msgstr ""
448
 
449
- #: bws_menu.php:678
450
  msgid "Recommended plugins"
451
  msgstr "推奨プラグイン"
452
 
453
- #: bws_menu.php:716
454
  #, fuzzy
455
  msgid "Install now"
456
  msgstr "Installa Ora"
457
 
458
- #: bws_menu.php:737
459
  msgid "Try again"
460
  msgstr ""
461
 
462
- #: bws_menu.php:755
463
  #, php-format
464
  msgid "Preview &#8220;%s&#8221;"
465
  msgstr ""
466
 
467
- #: bws_menu.php:786
468
  #, php-format
469
  msgid "Install %s"
470
  msgstr "%s 導入"
471
 
472
- #: bws_menu.php:786
473
  msgid "Install Now"
474
  msgstr "Installa Ora"
475
 
476
- #: bws_menu.php:789
477
  #, php-format
478
  msgid "Update to version %s"
479
  msgstr ""
480
 
481
- #: bws_menu.php:789
482
  msgid "Update"
483
  msgstr ""
484
 
485
- #: bws_menu.php:796
486
  #, php-format
487
  msgid "Preview %s"
488
  msgstr ""
489
 
490
- #: bws_menu.php:796
491
  msgid "Preview"
492
  msgstr ""
493
 
494
- #: bws_menu.php:802 bws_menu.php:834
495
  #, php-format
496
  msgid "By %s"
497
  msgstr ""
498
 
499
- #: bws_menu.php:808
500
  msgid "Details"
501
  msgstr ""
502
 
503
- #: bws_menu.php:840
504
  #, fuzzy
505
  msgid "Already Installed"
506
  msgstr "%s 導入"
507
 
508
- #: bws_menu.php:856
509
  msgid "Environment"
510
  msgstr "環境"
511
 
512
- #: bws_menu.php:867
513
  msgid "Active Plugins"
514
  msgstr "有効なプラグイン"
515
 
516
- #: bws_menu.php:880
517
  msgid "Inactive Plugins"
518
  msgstr "無効なプラグイン"
519
 
520
- #: bws_menu.php:896
521
  msgid "Send to support"
522
  msgstr "サポートに送信"
523
 
524
- #: bws_menu.php:903
525
  msgid "Send to custom email &#187;"
526
  msgstr "カスタムEメールに送信&#187;"
527
 
@@ -664,9 +729,6 @@ msgstr "カスタムEメールに送信&#187;"
664
  #~ "コンタクトフォームをあなたのサイトに追加したい場合は、このショートカットを"
665
  #~ "投稿、ページ又はウェジットにコピーして貼り付けるだけです:"
666
 
667
- #~ msgid "or"
668
- #~ msgstr "又は"
669
-
670
  #~ msgid ""
671
  #~ "If have any problems with the standard shortcode [contact_form], you "
672
  #~ "should use the shortcode"
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-04-20 14:47+0300\n"
6
+ "PO-Revision-Date: 2015-04-20 14:47+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: foken <foken@gmx.com>\n"
9
  "Language: ja_JP\n"
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: bws_functions.php:85
20
  #, fuzzy
21
  msgid "requires"
22
  msgstr "必須フィールド"
23
 
24
+ #: bws_functions.php:87
25
  msgid ""
26
  "or higher, that is why it has been deactivated! Please upgrade WordPress and "
27
  "try again."
28
  msgstr ""
29
 
30
+ #: bws_functions.php:88
31
  msgid "Back to the WordPress"
32
  msgstr ""
33
 
34
+ #: bws_functions.php:90
35
  #, fuzzy
36
  msgid "Plugins page"
37
  msgstr "Pro Plugins"
38
 
39
+ #: bws_functions.php:147
 
 
 
 
 
40
  msgid "It’s time to upgrade your"
41
  msgstr ""
42
 
43
+ #: bws_functions.php:147
44
  msgid "to"
45
  msgstr ""
46
 
47
+ #: bws_functions.php:147
48
  #, fuzzy
49
  msgid "version!"
50
  msgstr "PHP バージョン"
51
 
52
+ #: bws_functions.php:148
53
  msgid "Extend standard plugin functionality with new great options."
54
  msgstr ""
55
 
56
+ #: bws_functions.php:151
57
+ #, fuzzy
58
+ msgid "Learn More"
59
+ msgstr "もっと読む"
60
+
61
+ #: bws_functions.php:168
62
  msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
63
  msgstr ""
64
 
65
+ #: bws_functions.php:169
66
  #, fuzzy
67
  msgid "Rate the plugin"
68
  msgstr "有効なプラグイン"
69
 
70
+ #: bws_functions.php:172
71
  #, fuzzy
72
  msgid "If there is something wrong about it, please contact us"
73
  msgstr "もそご質問がある場合は、以下の方法でご連絡下さい:"
74
 
75
+ #: bws_functions.php:189 bws_functions.php:225
76
  msgid "Wrong license key"
77
  msgstr ""
78
 
79
+ #: bws_functions.php:219 bws_functions.php:451 bws_functions.php:502
80
  msgid ""
81
  "Something went wrong. Please try again later. If the error appears again, "
82
  "please contact us"
83
  msgstr ""
84
 
85
+ #: bws_functions.php:219 bws_functions.php:451 bws_functions.php:502
86
  msgid "We are sorry for inconvenience."
87
  msgstr ""
88
 
89
+ #: bws_functions.php:227
90
  msgid "This license key is bind to another site"
91
  msgstr ""
92
 
93
+ #: bws_functions.php:229 bws_functions.php:361
94
  msgid ""
95
  "Unfortunately, you have exceeded the number of available tries per day. "
96
  "Please, upload the plugin manually."
97
  msgstr ""
98
 
99
+ #: bws_functions.php:231
100
  msgid ""
101
  "Unfortunately, Your license has expired. To continue getting top-priority "
102
  "support and plugin updates you should extend it in your"
103
  msgstr ""
104
 
105
+ #: bws_functions.php:233
106
  msgid ""
107
  "Unfortunately, the PRO licence was already installed to this domain. The PRO "
108
  "Trial license can be installed only once."
109
  msgstr ""
110
 
111
+ #: bws_functions.php:244 bws_functions.php:266 bws_functions.php:288
112
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
113
  msgstr ""
114
 
115
+ #: bws_functions.php:256
116
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
117
  msgstr ""
118
 
119
+ #: bws_functions.php:262
120
  msgid ""
121
  "Your server does not support either ZipArchive or Phar. Please, upload the "
122
  "plugin manually"
123
  msgstr ""
124
 
125
+ #: bws_functions.php:269
126
  msgid "UploadDir is not writable. Please, upload the plugin manually"
127
  msgstr ""
128
 
129
+ #: bws_functions.php:292
130
  msgid ""
131
  "Something went wrong. Try again later or upload the plugin manually. We are "
132
  "sorry for inconvenience."
133
  msgstr ""
134
 
135
+ #: bws_functions.php:317
136
  #, fuzzy
137
  msgid "Please, enter Your license key"
138
  msgstr "メッセージを入力して下さい..."
139
 
140
+ #: bws_functions.php:334
141
  msgid ""
142
  "Congratulations! The PRO version of the plugin is successfully download and "
143
  "activated."
144
  msgstr ""
145
 
146
+ #: bws_functions.php:336 bws_functions.php:418
147
  msgid "Please, go to"
148
  msgstr ""
149
 
150
+ #: bws_functions.php:336 bws_functions.php:418
151
  #, fuzzy
152
  msgid "the setting page"
153
  msgstr "追加設定"
154
 
155
+ #: bws_functions.php:337 bws_functions.php:419
156
  msgid "You will be redirected automatically in 5 seconds."
157
  msgstr ""
158
 
159
+ #: bws_functions.php:342
160
  msgid "You can download and activate"
161
  msgstr ""
162
 
163
+ #: bws_functions.php:344
164
  msgid "version of this plugin by entering Your license key."
165
  msgstr ""
166
 
167
+ #: bws_functions.php:346 bws_functions.php:387
168
  msgid ""
169
  "You can find your license key on your personal page Client area, by clicking "
170
  "on the link"
171
  msgstr ""
172
 
173
+ #: bws_functions.php:348 bws_functions.php:389
174
  msgid "(your username is the email you specify when purchasing the product)."
175
  msgstr ""
176
 
177
+ #: bws_functions.php:352
178
+ msgid "or"
179
+ msgstr "又は"
180
+
181
+ #: bws_functions.php:352
182
+ #, php-format
183
+ msgid "Start Your Free %s-Day Trial Now"
184
+ msgstr ""
185
+
186
+ #: bws_functions.php:358 bws_functions.php:367 bws_functions.php:397
187
+ #: bws_functions.php:405 bws_menu.php:635 bws_menu.php:692
188
  #, fuzzy
189
  msgid "Activate"
190
  msgstr "有効なcaptcha"
191
 
192
+ #: bws_functions.php:384 bws_functions.php:477
193
+ #, php-format
194
+ msgid ""
195
+ "In order to continue using the plugin it is necessary to buy a %s license."
196
+ msgstr ""
197
+
198
+ #: bws_functions.php:385
199
+ msgid "After that you can activate it by entering your license key."
200
+ msgstr ""
201
+
202
  #: bws_functions.php:399
203
+ msgid "Unfortunately, you have exceeded the number of available tries per day."
204
+ msgstr ""
205
+
206
+ #: bws_functions.php:416
207
+ msgid ""
208
+ "Congratulations! The PRO license of the plugin is successfully activated."
209
+ msgstr ""
210
+
211
+ #: bws_functions.php:457
212
+ msgid "Wrong license key."
213
+ msgstr ""
214
+
215
+ #: bws_functions.php:459
216
+ msgid "This license key is bind to another site."
217
+ msgstr ""
218
+
219
+ #: bws_functions.php:461
220
  msgid ""
221
  "This license key is valid, but Your license has expired. If you want to "
222
  "update our plugin in future, you should extend the license."
223
  msgstr ""
224
 
225
+ #: bws_functions.php:463
226
  msgid "Unfortunately, you have exceeded the number of available tries."
227
  msgstr ""
228
 
229
+ #: bws_functions.php:465
230
+ msgid ""
231
+ "Unfortunately, the PRO Trial licence was already installed to this domain. "
232
+ "The PRO Trial license can be installed only once."
233
+ msgstr ""
234
+
235
+ #: bws_functions.php:469
236
+ msgid "The PRO Trial license key is valid."
237
  msgstr ""
238
 
239
+ #: bws_functions.php:471
240
  msgid "The license key is valid."
241
  msgstr ""
242
 
243
+ #: bws_functions.php:474
244
+ msgid "Your license will expire on"
245
+ msgstr ""
246
+
247
+ #: bws_functions.php:507
248
  #, fuzzy
249
  msgid "Please, enter your license key"
250
  msgstr "メッセージを入力して下さい..."
251
 
252
+ #: bws_functions.php:520
253
  msgid ""
254
  "If needed you can check if the license key is correct or reenter it in the "
255
  "field below. You can find your license key on your personal page - Client "
256
  "area - on our website"
257
  msgstr ""
258
 
259
+ #: bws_functions.php:520
260
  msgid ""
261
  "(your username is the email you specify when purchasing the product). If "
262
  "necessary, please submit \"Lost your password?\" request."
263
  msgstr ""
264
 
265
+ #: bws_functions.php:524
266
  msgid "Check license key"
267
  msgstr ""
268
 
269
+ #: bws_functions.php:538
270
  msgid ""
271
  "WARNING: We have noticed illegal use of our plugin by you. We strongly "
272
  "recommend you to solve the problem within 24 hours, otherwise the plugin "
273
  "will be deactivated. Please go to your personal"
274
  msgstr ""
275
 
276
+ #: bws_functions.php:538
277
  msgid ""
278
  "(your username is the email you specify when purchasing the product), where "
279
  "you can make the necessary changes."
280
  msgstr ""
281
 
282
+ #: bws_functions.php:546
283
+ msgid ""
284
+ "Notice: Your PRO Trial license has expired. To continue using the plugin you "
285
+ "should buy a PRO license"
286
+ msgstr ""
287
+
288
+ #: bws_functions.php:548
289
  msgid ""
290
  "Your license has expired. To continue getting top-priority support and "
291
  "plugin updates you should extend it."
292
  msgstr ""
293
 
294
+ #: bws_functions.php:548 bws_functions.php:601 bws_menu.php:611
295
+ #: bws_menu.php:633 bws_menu.php:660 bws_menu.php:690 bws_menu.php:736
296
  #, fuzzy
297
  msgid "Learn more"
298
  msgstr "もっと読む"
299
 
300
+ #: bws_functions.php:558
301
+ #, php-format
302
+ msgid "Notice: You are using the PRO Trial license of %s plugin."
303
+ msgstr ""
304
+
305
+ #: bws_functions.php:560
306
+ msgid "Notice: You are using the PRO Trial license of plugin."
307
+ msgstr ""
308
+
309
+ #: bws_functions.php:563
310
+ msgid "The PRO Trial license will expire on"
311
+ msgstr ""
312
+
313
+ #: bws_functions.php:601
314
  msgid "You license for"
315
  msgstr ""
316
 
317
+ #: bws_functions.php:601
318
  msgid "expires on"
319
  msgstr ""
320
 
321
+ #: bws_functions.php:601
322
  msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
323
  msgstr ""
324
 
325
+ #: bws_functions.php:676
326
  msgid "Close"
327
  msgstr ""
328
 
329
+ #: bws_menu.php:448
330
  msgid "Not set"
331
  msgstr "未設定"
332
 
333
+ #: bws_menu.php:450 bws_menu.php:451
334
  msgid "On"
335
  msgstr "On"
336
 
337
+ #: bws_menu.php:450 bws_menu.php:451
338
  msgid "Off"
339
  msgstr "Off"
340
 
341
+ #: bws_menu.php:452 bws_menu.php:453 bws_menu.php:454 bws_menu.php:455
342
+ #: bws_menu.php:456 bws_menu.php:468
343
  msgid "N/A"
344
  msgstr "該当なし"
345
 
346
+ #: bws_menu.php:456
347
  msgid " Mb"
348
  msgstr " Mb"
349
 
350
+ #: bws_menu.php:457 bws_menu.php:458 bws_menu.php:459 bws_menu.php:464
351
  msgid "Yes"
352
  msgstr "はい"
353
 
354
+ #: bws_menu.php:457 bws_menu.php:458 bws_menu.php:459 bws_menu.php:466
355
  msgid "No"
356
  msgstr "いいえ"
357
 
358
+ #: bws_menu.php:476
359
  msgid "Operating System"
360
  msgstr "オペレーション・システム"
361
 
362
+ #: bws_menu.php:477
363
  msgid "Server"
364
  msgstr "サーバ"
365
 
366
+ #: bws_menu.php:478
367
  msgid "Memory usage"
368
  msgstr "メモリー使用"
369
 
370
+ #: bws_menu.php:479
371
  msgid "MYSQL Version"
372
  msgstr "MYSQL バージョン"
373
 
374
+ #: bws_menu.php:480
375
  msgid "SQL Mode"
376
  msgstr "SQLモード"
377
 
378
+ #: bws_menu.php:481
379
  msgid "PHP Version"
380
  msgstr "PHP バージョン"
381
 
382
+ #: bws_menu.php:482
383
  msgid "PHP Safe Mode"
384
  msgstr "PHP Safe Mode"
385
 
386
+ #: bws_menu.php:483
387
  msgid "PHP Allow URL fopen"
388
  msgstr "PHP Allow URL fopen"
389
 
390
+ #: bws_menu.php:484
391
  msgid "PHP Memory Limit"
392
  msgstr "PHP Memory Limit"
393
 
394
+ #: bws_menu.php:485
395
  msgid "PHP Max Upload Size"
396
  msgstr "PHP Max Upload Size"
397
 
398
+ #: bws_menu.php:486
399
  msgid "PHP Max Post Size"
400
  msgstr "PHP Max Post Size"
401
 
402
+ #: bws_menu.php:487
403
  msgid "PHP Max Script Execute Time"
404
  msgstr "PHP Max Script Execute Time"
405
 
406
+ #: bws_menu.php:488
407
  msgid "PHP Exif support"
408
  msgstr "PHP Exif サポート"
409
 
410
+ #: bws_menu.php:489
411
  msgid "PHP IPTC support"
412
  msgstr "PHP IPTC サポート"
413
 
414
+ #: bws_menu.php:490
415
  msgid "PHP XML support"
416
  msgstr "PHP XML サポート"
417
 
418
+ #: bws_menu.php:491
419
  msgid "Site URL"
420
  msgstr "サイトURL"
421
 
422
+ #: bws_menu.php:492
423
  msgid "Home URL"
424
  msgstr "ホームURL"
425
 
426
+ #: bws_menu.php:495
427
  msgid "WordPress Version"
428
  msgstr "WordPress バージョン"
429
 
430
+ #: bws_menu.php:496
431
  msgid "WordPress DB Version"
432
  msgstr "WordPress データベース バージョン"
433
 
434
+ #: bws_menu.php:497
435
  msgid "Multisite"
436
  msgstr "複数サイト"
437
 
438
+ #: bws_menu.php:498
439
  msgid "Active Theme"
440
  msgstr "有効なテーマ"
441
 
442
+ #: bws_menu.php:513
443
  msgid "Please enter a valid email address."
444
  msgstr "正確なEメール・アドレスを入力して下さい。"
445
 
446
+ #: bws_menu.php:517
447
  msgid "Email with system info is sent to "
448
  msgstr "システム情報をメールで送信:"
449
 
450
+ #: bws_menu.php:521
451
  msgid "Thank you for contacting us."
452
  msgstr "ご連絡ありがとうございます"
453
 
454
+ #: bws_menu.php:554
455
  msgid "Sorry, email message could not be delivered."
456
  msgstr "申し訳ございませんが、貴方のemailは配信できませんでした。"
457
 
458
+ #: bws_menu.php:562
459
  msgid "Need help?"
460
  msgstr ""
461
 
462
+ #: bws_menu.php:563
463
  msgid "Client area"
464
  msgstr ""
465
 
466
+ #: bws_menu.php:564 bws_menu.php:875
467
  msgid "System status"
468
  msgstr "システム状況"
469
 
470
+ #: bws_menu.php:569
471
  #, fuzzy
472
  msgid "Plugins"
473
  msgstr "Pro Plugins"
474
 
475
+ #: bws_menu.php:571
476
  msgid "Themes"
477
  msgstr ""
478
 
479
+ #: bws_menu.php:576
480
  msgid "All"
481
  msgstr ""
482
 
483
+ #: bws_menu.php:577
484
  #, fuzzy
485
  msgid "Installed"
486
  msgstr "%s 導入"
487
 
488
+ #: bws_menu.php:578
489
  #, fuzzy
490
  msgid "Recommended"
491
  msgstr "推奨プラグイン"
492
 
493
+ #: bws_menu.php:582
494
  msgid "Installed plugins"
495
  msgstr "導入済みプラグイン"
496
 
497
+ #: bws_menu.php:614 bws_menu.php:663
498
  msgid "Settings"
499
  msgstr "設定"
500
 
501
+ #: bws_menu.php:635 bws_menu.php:692
502
  #, fuzzy
503
  msgid "Activate this plugin"
504
  msgstr "有効なプラグイン"
505
 
506
+ #: bws_menu.php:650 bws_menu.php:680 bws_menu.php:726
507
  msgid "Go"
508
  msgstr ""
509
 
510
+ #: bws_menu.php:654 bws_menu.php:684 bws_menu.php:730
511
  msgid "DONATE"
512
  msgstr ""
513
 
514
+ #: bws_menu.php:700
515
  msgid "Recommended plugins"
516
  msgstr "推奨プラグイン"
517
 
518
+ #: bws_menu.php:738
519
  #, fuzzy
520
  msgid "Install now"
521
  msgstr "Installa Ora"
522
 
523
+ #: bws_menu.php:759
524
  msgid "Try again"
525
  msgstr ""
526
 
527
+ #: bws_menu.php:777
528
  #, php-format
529
  msgid "Preview &#8220;%s&#8221;"
530
  msgstr ""
531
 
532
+ #: bws_menu.php:808
533
  #, php-format
534
  msgid "Install %s"
535
  msgstr "%s 導入"
536
 
537
+ #: bws_menu.php:808
538
  msgid "Install Now"
539
  msgstr "Installa Ora"
540
 
541
+ #: bws_menu.php:811
542
  #, php-format
543
  msgid "Update to version %s"
544
  msgstr ""
545
 
546
+ #: bws_menu.php:811
547
  msgid "Update"
548
  msgstr ""
549
 
550
+ #: bws_menu.php:818
551
  #, php-format
552
  msgid "Preview %s"
553
  msgstr ""
554
 
555
+ #: bws_menu.php:818
556
  msgid "Preview"
557
  msgstr ""
558
 
559
+ #: bws_menu.php:824 bws_menu.php:856
560
  #, php-format
561
  msgid "By %s"
562
  msgstr ""
563
 
564
+ #: bws_menu.php:830
565
  msgid "Details"
566
  msgstr ""
567
 
568
+ #: bws_menu.php:862
569
  #, fuzzy
570
  msgid "Already Installed"
571
  msgstr "%s 導入"
572
 
573
+ #: bws_menu.php:878
574
  msgid "Environment"
575
  msgstr "環境"
576
 
577
+ #: bws_menu.php:889
578
  msgid "Active Plugins"
579
  msgstr "有効なプラグイン"
580
 
581
+ #: bws_menu.php:902
582
  msgid "Inactive Plugins"
583
  msgstr "無効なプラグイン"
584
 
585
+ #: bws_menu.php:918
586
  msgid "Send to support"
587
  msgstr "サポートに送信"
588
 
589
+ #: bws_menu.php:925
590
  msgid "Send to custom email &#187;"
591
  msgstr "カスタムEメールに送信&#187;"
592
 
729
  #~ "コンタクトフォームをあなたのサイトに追加したい場合は、このショートカットを"
730
  #~ "投稿、ページ又はウェジットにコピーして貼り付けるだけです:"
731
 
 
 
 
732
  #~ msgid ""
733
  #~ "If have any problems with the standard shortcode [contact_form], you "
734
  #~ "should use the shortcode"
bws_menu/languages/bestwebsoft-pt_BR.mo CHANGED
Binary file
bws_menu/languages/bestwebsoft-pt_BR.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: 2015-03-05 13:14+0300\n"
6
- "PO-Revision-Date: 2015-03-05 13:14+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Dionizio Bonfim Bach | DJIO <wordpress@djio.com.br>\n"
9
  "Language: pt_BR\n"
@@ -18,565 +18,630 @@ msgstr ""
18
  "X-Textdomain-Support: yes\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
- #: bws_functions.php:84
22
  msgid "requires"
23
  msgstr ""
24
 
25
- #: bws_functions.php:85
26
  msgid ""
27
  "or higher, that is why it has been deactivated! Please upgrade WordPress and "
28
  "try again."
29
  msgstr ""
30
 
31
- #: bws_functions.php:86
32
  msgid "Back to the WordPress"
33
  msgstr ""
34
 
35
  # @ captcha
36
- #: bws_functions.php:87
37
  #, fuzzy
38
  msgid "Plugins page"
39
  msgstr "Plugins Pro"
40
 
41
- # @ captcha
42
- #: bws_functions.php:134
43
- #, fuzzy
44
- msgid "Learn More"
45
- msgstr "Leia Mais"
46
-
47
- #: bws_functions.php:137
48
  msgid "It’s time to upgrade your"
49
  msgstr ""
50
 
51
- #: bws_functions.php:137
52
  msgid "to"
53
  msgstr ""
54
 
55
  # @ captcha
56
- #: bws_functions.php:137
57
  #, fuzzy
58
  msgid "version!"
59
  msgstr "Versão do PHP"
60
 
61
- #: bws_functions.php:138
62
  msgid "Extend standard plugin functionality with new great options."
63
  msgstr ""
64
 
65
- #: bws_functions.php:158
 
 
 
 
 
 
66
  msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
67
  msgstr ""
68
 
69
  # @ captcha
70
- #: bws_functions.php:159
71
  #, fuzzy
72
  msgid "Rate the plugin"
73
  msgstr "Plugins ativados"
74
 
75
  # @ captcha
76
- #: bws_functions.php:162
77
  #, fuzzy
78
  msgid "If there is something wrong about it, please contact us"
79
  msgstr "Se você tiver quaisquer perguntas, por favor entre em contato via"
80
 
81
- #: bws_functions.php:179 bws_functions.php:215 bws_functions.php:395
82
  msgid "Wrong license key"
83
  msgstr ""
84
 
85
- #: bws_functions.php:209 bws_functions.php:389 bws_functions.php:426
86
  msgid ""
87
  "Something went wrong. Please try again later. If the error appears again, "
88
  "please contact us"
89
  msgstr ""
90
 
91
- #: bws_functions.php:209 bws_functions.php:389 bws_functions.php:426
92
  msgid "We are sorry for inconvenience."
93
  msgstr ""
94
 
95
- #: bws_functions.php:217 bws_functions.php:397
96
  msgid "This license key is bind to another site"
97
  msgstr ""
98
 
99
- #: bws_functions.php:219 bws_functions.php:348
100
  msgid ""
101
  "Unfortunately, you have exceeded the number of available tries per day. "
102
  "Please, upload the plugin manually."
103
  msgstr ""
104
 
105
- #: bws_functions.php:221
106
  msgid ""
107
  "Unfortunately, Your license has expired. To continue getting top-priority "
108
  "support and plugin updates you should extend it in your"
109
  msgstr ""
110
 
111
- #: bws_functions.php:223
112
  msgid ""
113
  "Unfortunately, the PRO licence was already installed to this domain. The PRO "
114
  "Trial license can be installed only once."
115
  msgstr ""
116
 
117
- #: bws_functions.php:234 bws_functions.php:256 bws_functions.php:278
118
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
119
  msgstr ""
120
 
121
- #: bws_functions.php:246
122
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
123
  msgstr ""
124
 
125
- #: bws_functions.php:252
126
  msgid ""
127
  "Your server does not support either ZipArchive or Phar. Please, upload the "
128
  "plugin manually"
129
  msgstr ""
130
 
131
- #: bws_functions.php:259
132
  msgid "UploadDir is not writable. Please, upload the plugin manually"
133
  msgstr ""
134
 
135
- #: bws_functions.php:282
136
  msgid ""
137
  "Something went wrong. Try again later or upload the plugin manually. We are "
138
  "sorry for inconvenience."
139
  msgstr ""
140
 
141
- #: bws_functions.php:307
142
  msgid "Please, enter Your license key"
143
  msgstr ""
144
 
145
- #: bws_functions.php:324
146
  msgid ""
147
  "Congratulations! The PRO version of the plugin is successfully download and "
148
  "activated."
149
  msgstr ""
150
 
151
- #: bws_functions.php:326
152
  msgid "Please, go to"
153
  msgstr ""
154
 
155
- #: bws_functions.php:326
156
  msgid "the setting page"
157
  msgstr ""
158
 
159
- #: bws_functions.php:327
160
  msgid "You will be redirected automatically in 5 seconds."
161
  msgstr ""
162
 
163
- #: bws_functions.php:332
164
  msgid "You can download and activate"
165
  msgstr ""
166
 
167
- #: bws_functions.php:334
168
  msgid "version of this plugin by entering Your license key."
169
  msgstr ""
170
 
171
- #: bws_functions.php:336
172
  msgid ""
173
  "You can find your license key on your personal page Client area, by clicking "
174
  "on the link"
175
  msgstr ""
176
 
177
- #: bws_functions.php:338
178
  msgid "(your username is the email you specify when purchasing the product)."
179
  msgstr ""
180
 
 
 
 
 
 
 
 
 
 
181
  # @ captcha
182
- #: bws_functions.php:346 bws_functions.php:354 bws_menu.php:613
183
- #: bws_menu.php:670
184
  #, fuzzy
185
  msgid "Activate"
186
  msgstr "Plugins ativados"
187
 
 
 
 
 
 
 
 
 
 
 
188
  #: bws_functions.php:399
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
189
  msgid ""
190
  "This license key is valid, but Your license has expired. If you want to "
191
  "update our plugin in future, you should extend the license."
192
  msgstr ""
193
 
194
- #: bws_functions.php:401
195
  msgid "Unfortunately, you have exceeded the number of available tries."
196
  msgstr ""
197
 
198
- #: bws_functions.php:405
199
- msgid "The license key is valid. Your license will expire on"
 
 
 
 
 
 
200
  msgstr ""
201
 
202
- #: bws_functions.php:407
203
  msgid "The license key is valid."
204
  msgstr ""
205
 
206
- #: bws_functions.php:431
 
 
 
 
207
  msgid "Please, enter your license key"
208
  msgstr ""
209
 
210
- #: bws_functions.php:444
211
  msgid ""
212
  "If needed you can check if the license key is correct or reenter it in the "
213
  "field below. You can find your license key on your personal page - Client "
214
  "area - on our website"
215
  msgstr ""
216
 
217
- #: bws_functions.php:444
218
  msgid ""
219
  "(your username is the email you specify when purchasing the product). If "
220
  "necessary, please submit \"Lost your password?\" request."
221
  msgstr ""
222
 
223
- #: bws_functions.php:448
224
  msgid "Check license key"
225
  msgstr ""
226
 
227
- #: bws_functions.php:462
228
  msgid ""
229
  "WARNING: We have noticed illegal use of our plugin by you. We strongly "
230
  "recommend you to solve the problem within 24 hours, otherwise the plugin "
231
  "will be deactivated. Please go to your personal"
232
  msgstr ""
233
 
234
- #: bws_functions.php:462
235
  msgid ""
236
  "(your username is the email you specify when purchasing the product), where "
237
  "you can make the necessary changes."
238
  msgstr ""
239
 
240
- #: bws_functions.php:468
 
 
 
 
 
 
241
  msgid ""
242
  "Your license has expired. To continue getting top-priority support and "
243
  "plugin updates you should extend it."
244
  msgstr ""
245
 
246
  # @ captcha
247
- #: bws_functions.php:468 bws_functions.php:502 bws_menu.php:589
248
- #: bws_menu.php:611 bws_menu.php:638 bws_menu.php:668 bws_menu.php:714
249
  #, fuzzy
250
  msgid "Learn more"
251
  msgstr "Leia Mais"
252
 
253
- #: bws_functions.php:502
 
 
 
 
 
 
 
 
 
 
 
 
 
254
  msgid "You license for"
255
  msgstr ""
256
 
257
- #: bws_functions.php:502
258
  msgid "expires on"
259
  msgstr ""
260
 
261
- #: bws_functions.php:502
262
  msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
263
  msgstr ""
264
 
265
- #: bws_functions.php:580
266
  msgid "Close"
267
  msgstr ""
268
 
269
  # @ captcha
270
- #: bws_menu.php:426
271
  msgid "Not set"
272
  msgstr "Não definido"
273
 
274
  # @ captcha
275
- #: bws_menu.php:428 bws_menu.php:429
276
  msgid "On"
277
  msgstr "Ligado"
278
 
279
  # @ captcha
280
- #: bws_menu.php:428 bws_menu.php:429
281
  msgid "Off"
282
  msgstr "Desligado"
283
 
284
  # @ captcha
285
- #: bws_menu.php:430 bws_menu.php:431 bws_menu.php:432 bws_menu.php:433
286
- #: bws_menu.php:434 bws_menu.php:446
287
  msgid "N/A"
288
  msgstr "N/D"
289
 
290
  # @ captcha
291
- #: bws_menu.php:434
292
  msgid " Mb"
293
  msgstr " Mb"
294
 
295
  # @ captcha
296
- #: bws_menu.php:435 bws_menu.php:436 bws_menu.php:437 bws_menu.php:442
297
  msgid "Yes"
298
  msgstr "Sim"
299
 
300
  # @ captcha
301
- #: bws_menu.php:435 bws_menu.php:436 bws_menu.php:437 bws_menu.php:444
302
  msgid "No"
303
  msgstr "Não"
304
 
305
  # @ captcha
306
- #: bws_menu.php:454
307
  msgid "Operating System"
308
  msgstr "Sistema Operacional"
309
 
310
  # @ captcha
311
- #: bws_menu.php:455
312
  msgid "Server"
313
  msgstr "Servidor"
314
 
315
  # @ captcha
316
- #: bws_menu.php:456
317
  msgid "Memory usage"
318
  msgstr "Uso de memória"
319
 
320
  # @ captcha
321
- #: bws_menu.php:457
322
  msgid "MYSQL Version"
323
  msgstr "Versão do MySQL"
324
 
325
  # @ captcha
326
- #: bws_menu.php:458
327
  msgid "SQL Mode"
328
  msgstr "Modo SQL"
329
 
330
  # @ captcha
331
- #: bws_menu.php:459
332
  msgid "PHP Version"
333
  msgstr "Versão do PHP"
334
 
335
  # @ captcha
336
- #: bws_menu.php:460
337
  msgid "PHP Safe Mode"
338
  msgstr "Modo de Segurança do PHP"
339
 
340
  # @ captcha
341
- #: bws_menu.php:461
342
  msgid "PHP Allow URL fopen"
343
  msgstr "Permissão de fopen de URL do PHP"
344
 
345
  # @ captcha
346
- #: bws_menu.php:462
347
  msgid "PHP Memory Limit"
348
  msgstr "Limite de Memória do PHP"
349
 
350
  # @ captcha
351
- #: bws_menu.php:463
352
  msgid "PHP Max Upload Size"
353
  msgstr "Tamanho Máximo de Upload no PHP"
354
 
355
  # @ captcha
356
- #: bws_menu.php:464
357
  msgid "PHP Max Post Size"
358
  msgstr "Tamanho Máximo de Envio do PHP"
359
 
360
  # @ captcha
361
- #: bws_menu.php:465
362
  msgid "PHP Max Script Execute Time"
363
  msgstr "Tempo de Execução Máximo do PHP"
364
 
365
  # @ captcha
366
- #: bws_menu.php:466
367
  msgid "PHP Exif support"
368
  msgstr "Suporte a Exif no PHP"
369
 
370
  # @ captcha
371
- #: bws_menu.php:467
372
  msgid "PHP IPTC support"
373
  msgstr "Suporte da IPTC no PHP"
374
 
375
  # @ captcha
376
- #: bws_menu.php:468
377
  msgid "PHP XML support"
378
  msgstr "Suporte a XML no PHP"
379
 
380
  # @ captcha
381
- #: bws_menu.php:469
382
  msgid "Site URL"
383
  msgstr "URL do Site"
384
 
385
  # @ captcha
386
- #: bws_menu.php:470
387
  msgid "Home URL"
388
  msgstr "URL da Página Inicial"
389
 
390
  # @ captcha
391
- #: bws_menu.php:473
392
  msgid "WordPress Version"
393
  msgstr "Versão do WordPress"
394
 
395
  # @ captcha
396
- #: bws_menu.php:474
397
  msgid "WordPress DB Version"
398
  msgstr "Versão do DB do WordPress"
399
 
400
  # @ captcha
401
- #: bws_menu.php:475
402
  msgid "Multisite"
403
  msgstr "Multisite"
404
 
405
  # @ captcha
406
- #: bws_menu.php:476
407
  msgid "Active Theme"
408
  msgstr "Tema Ativo"
409
 
410
  # @ captcha
411
- #: bws_menu.php:491
412
  msgid "Please enter a valid email address."
413
  msgstr "Por favor, informe um endereço de email válido."
414
 
415
  # @ captcha
416
- #: bws_menu.php:495
417
  msgid "Email with system info is sent to "
418
  msgstr "Email com informações do sistema é enviado para "
419
 
420
  # @ captcha
421
- #: bws_menu.php:499
422
  msgid "Thank you for contacting us."
423
  msgstr "Obrigado por nos contatar."
424
 
425
  # @ captcha
426
- #: bws_menu.php:532
427
  msgid "Sorry, email message could not be delivered."
428
  msgstr "Desculpe, a mensagem de email não pôde ser enviada."
429
 
430
- #: bws_menu.php:540
431
  msgid "Need help?"
432
  msgstr ""
433
 
434
- #: bws_menu.php:541
435
  msgid "Client area"
436
  msgstr ""
437
 
438
  # @ captcha
439
- #: bws_menu.php:542 bws_menu.php:853
440
  msgid "System status"
441
  msgstr "Status do sistema"
442
 
443
  # @ captcha
444
- #: bws_menu.php:547
445
  #, fuzzy
446
  msgid "Plugins"
447
  msgstr "Plugins Pro"
448
 
449
- #: bws_menu.php:549
450
  msgid "Themes"
451
  msgstr ""
452
 
453
- #: bws_menu.php:554
454
  msgid "All"
455
  msgstr ""
456
 
457
  # @ default
458
- #: bws_menu.php:555
459
  #, fuzzy
460
  msgid "Installed"
461
  msgstr "Instalar %s"
462
 
463
  # @ captcha
464
- #: bws_menu.php:556
465
  #, fuzzy
466
  msgid "Recommended"
467
  msgstr "Plugins Recomendados"
468
 
469
  # @ captcha
470
- #: bws_menu.php:560
471
  msgid "Installed plugins"
472
  msgstr "Plugins Instalados"
473
 
474
  # @ captcha
475
- #: bws_menu.php:592 bws_menu.php:641
476
  msgid "Settings"
477
  msgstr "Configurações"
478
 
479
  # @ captcha
480
- #: bws_menu.php:613 bws_menu.php:670
481
  #, fuzzy
482
  msgid "Activate this plugin"
483
  msgstr "Plugins ativados"
484
 
485
- #: bws_menu.php:628 bws_menu.php:658 bws_menu.php:704
486
  msgid "Go"
487
  msgstr ""
488
 
489
- #: bws_menu.php:632 bws_menu.php:662 bws_menu.php:708
490
  msgid "DONATE"
491
  msgstr ""
492
 
493
  # @ captcha
494
- #: bws_menu.php:678
495
  msgid "Recommended plugins"
496
  msgstr "Plugins Recomendados"
497
 
498
  # @ default
499
- #: bws_menu.php:716
500
  #, fuzzy
501
  msgid "Install now"
502
  msgstr "Instalar %s"
503
 
504
- #: bws_menu.php:737
505
  msgid "Try again"
506
  msgstr ""
507
 
508
- #: bws_menu.php:755
509
  #, php-format
510
  msgid "Preview &#8220;%s&#8221;"
511
  msgstr ""
512
 
513
  # @ default
514
- #: bws_menu.php:786
515
  #, php-format
516
  msgid "Install %s"
517
  msgstr "Instalar %s"
518
 
519
  # @ default
520
- #: bws_menu.php:786
521
  #, fuzzy
522
  msgid "Install Now"
523
  msgstr "Instalar %s"
524
 
525
- #: bws_menu.php:789
526
  #, php-format
527
  msgid "Update to version %s"
528
  msgstr ""
529
 
530
- #: bws_menu.php:789
531
  msgid "Update"
532
  msgstr ""
533
 
534
- #: bws_menu.php:796
535
  #, php-format
536
  msgid "Preview %s"
537
  msgstr ""
538
 
539
- #: bws_menu.php:796
540
  msgid "Preview"
541
  msgstr ""
542
 
543
- #: bws_menu.php:802 bws_menu.php:834
544
  #, php-format
545
  msgid "By %s"
546
  msgstr ""
547
 
548
- #: bws_menu.php:808
549
  msgid "Details"
550
  msgstr ""
551
 
552
  # @ default
553
- #: bws_menu.php:840
554
  #, fuzzy
555
  msgid "Already Installed"
556
  msgstr "Instalar %s"
557
 
558
  # @ captcha
559
- #: bws_menu.php:856
560
  msgid "Environment"
561
  msgstr "Ambiente"
562
 
563
  # @ captcha
564
- #: bws_menu.php:867
565
  msgid "Active Plugins"
566
  msgstr "Plugins Ativos"
567
 
568
  # @ captcha
569
- #: bws_menu.php:880
570
  msgid "Inactive Plugins"
571
  msgstr "Plugins Inativos"
572
 
573
  # @ captcha
574
- #: bws_menu.php:896
575
  msgid "Send to support"
576
  msgstr "Enviar para o suporte"
577
 
578
  # @ captcha
579
- #: bws_menu.php:903
580
  msgid "Send to custom email &#187;"
581
  msgstr "Enviar para email personalizado &#187;"
582
 
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-04-20 14:47+0300\n"
6
+ "PO-Revision-Date: 2015-04-20 14:47+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Dionizio Bonfim Bach | DJIO <wordpress@djio.com.br>\n"
9
  "Language: pt_BR\n"
18
  "X-Textdomain-Support: yes\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
+ #: bws_functions.php:85
22
  msgid "requires"
23
  msgstr ""
24
 
25
+ #: bws_functions.php:87
26
  msgid ""
27
  "or higher, that is why it has been deactivated! Please upgrade WordPress and "
28
  "try again."
29
  msgstr ""
30
 
31
+ #: bws_functions.php:88
32
  msgid "Back to the WordPress"
33
  msgstr ""
34
 
35
  # @ captcha
36
+ #: bws_functions.php:90
37
  #, fuzzy
38
  msgid "Plugins page"
39
  msgstr "Plugins Pro"
40
 
41
+ #: bws_functions.php:147
 
 
 
 
 
 
42
  msgid "It’s time to upgrade your"
43
  msgstr ""
44
 
45
+ #: bws_functions.php:147
46
  msgid "to"
47
  msgstr ""
48
 
49
  # @ captcha
50
+ #: bws_functions.php:147
51
  #, fuzzy
52
  msgid "version!"
53
  msgstr "Versão do PHP"
54
 
55
+ #: bws_functions.php:148
56
  msgid "Extend standard plugin functionality with new great options."
57
  msgstr ""
58
 
59
+ # @ captcha
60
+ #: bws_functions.php:151
61
+ #, fuzzy
62
+ msgid "Learn More"
63
+ msgstr "Leia Mais"
64
+
65
+ #: bws_functions.php:168
66
  msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
67
  msgstr ""
68
 
69
  # @ captcha
70
+ #: bws_functions.php:169
71
  #, fuzzy
72
  msgid "Rate the plugin"
73
  msgstr "Plugins ativados"
74
 
75
  # @ captcha
76
+ #: bws_functions.php:172
77
  #, fuzzy
78
  msgid "If there is something wrong about it, please contact us"
79
  msgstr "Se você tiver quaisquer perguntas, por favor entre em contato via"
80
 
81
+ #: bws_functions.php:189 bws_functions.php:225
82
  msgid "Wrong license key"
83
  msgstr ""
84
 
85
+ #: bws_functions.php:219 bws_functions.php:451 bws_functions.php:502
86
  msgid ""
87
  "Something went wrong. Please try again later. If the error appears again, "
88
  "please contact us"
89
  msgstr ""
90
 
91
+ #: bws_functions.php:219 bws_functions.php:451 bws_functions.php:502
92
  msgid "We are sorry for inconvenience."
93
  msgstr ""
94
 
95
+ #: bws_functions.php:227
96
  msgid "This license key is bind to another site"
97
  msgstr ""
98
 
99
+ #: bws_functions.php:229 bws_functions.php:361
100
  msgid ""
101
  "Unfortunately, you have exceeded the number of available tries per day. "
102
  "Please, upload the plugin manually."
103
  msgstr ""
104
 
105
+ #: bws_functions.php:231
106
  msgid ""
107
  "Unfortunately, Your license has expired. To continue getting top-priority "
108
  "support and plugin updates you should extend it in your"
109
  msgstr ""
110
 
111
+ #: bws_functions.php:233
112
  msgid ""
113
  "Unfortunately, the PRO licence was already installed to this domain. The PRO "
114
  "Trial license can be installed only once."
115
  msgstr ""
116
 
117
+ #: bws_functions.php:244 bws_functions.php:266 bws_functions.php:288
118
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
119
  msgstr ""
120
 
121
+ #: bws_functions.php:256
122
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
123
  msgstr ""
124
 
125
+ #: bws_functions.php:262
126
  msgid ""
127
  "Your server does not support either ZipArchive or Phar. Please, upload the "
128
  "plugin manually"
129
  msgstr ""
130
 
131
+ #: bws_functions.php:269
132
  msgid "UploadDir is not writable. Please, upload the plugin manually"
133
  msgstr ""
134
 
135
+ #: bws_functions.php:292
136
  msgid ""
137
  "Something went wrong. Try again later or upload the plugin manually. We are "
138
  "sorry for inconvenience."
139
  msgstr ""
140
 
141
+ #: bws_functions.php:317
142
  msgid "Please, enter Your license key"
143
  msgstr ""
144
 
145
+ #: bws_functions.php:334
146
  msgid ""
147
  "Congratulations! The PRO version of the plugin is successfully download and "
148
  "activated."
149
  msgstr ""
150
 
151
+ #: bws_functions.php:336 bws_functions.php:418
152
  msgid "Please, go to"
153
  msgstr ""
154
 
155
+ #: bws_functions.php:336 bws_functions.php:418
156
  msgid "the setting page"
157
  msgstr ""
158
 
159
+ #: bws_functions.php:337 bws_functions.php:419
160
  msgid "You will be redirected automatically in 5 seconds."
161
  msgstr ""
162
 
163
+ #: bws_functions.php:342
164
  msgid "You can download and activate"
165
  msgstr ""
166
 
167
+ #: bws_functions.php:344
168
  msgid "version of this plugin by entering Your license key."
169
  msgstr ""
170
 
171
+ #: bws_functions.php:346 bws_functions.php:387
172
  msgid ""
173
  "You can find your license key on your personal page Client area, by clicking "
174
  "on the link"
175
  msgstr ""
176
 
177
+ #: bws_functions.php:348 bws_functions.php:389
178
  msgid "(your username is the email you specify when purchasing the product)."
179
  msgstr ""
180
 
181
+ #: bws_functions.php:352
182
+ msgid "or"
183
+ msgstr ""
184
+
185
+ #: bws_functions.php:352
186
+ #, php-format
187
+ msgid "Start Your Free %s-Day Trial Now"
188
+ msgstr ""
189
+
190
  # @ captcha
191
+ #: bws_functions.php:358 bws_functions.php:367 bws_functions.php:397
192
+ #: bws_functions.php:405 bws_menu.php:635 bws_menu.php:692
193
  #, fuzzy
194
  msgid "Activate"
195
  msgstr "Plugins ativados"
196
 
197
+ #: bws_functions.php:384 bws_functions.php:477
198
+ #, php-format
199
+ msgid ""
200
+ "In order to continue using the plugin it is necessary to buy a %s license."
201
+ msgstr ""
202
+
203
+ #: bws_functions.php:385
204
+ msgid "After that you can activate it by entering your license key."
205
+ msgstr ""
206
+
207
  #: bws_functions.php:399
208
+ msgid "Unfortunately, you have exceeded the number of available tries per day."
209
+ msgstr ""
210
+
211
+ #: bws_functions.php:416
212
+ msgid ""
213
+ "Congratulations! The PRO license of the plugin is successfully activated."
214
+ msgstr ""
215
+
216
+ #: bws_functions.php:457
217
+ msgid "Wrong license key."
218
+ msgstr ""
219
+
220
+ #: bws_functions.php:459
221
+ msgid "This license key is bind to another site."
222
+ msgstr ""
223
+
224
+ #: bws_functions.php:461
225
  msgid ""
226
  "This license key is valid, but Your license has expired. If you want to "
227
  "update our plugin in future, you should extend the license."
228
  msgstr ""
229
 
230
+ #: bws_functions.php:463
231
  msgid "Unfortunately, you have exceeded the number of available tries."
232
  msgstr ""
233
 
234
+ #: bws_functions.php:465
235
+ msgid ""
236
+ "Unfortunately, the PRO Trial licence was already installed to this domain. "
237
+ "The PRO Trial license can be installed only once."
238
+ msgstr ""
239
+
240
+ #: bws_functions.php:469
241
+ msgid "The PRO Trial license key is valid."
242
  msgstr ""
243
 
244
+ #: bws_functions.php:471
245
  msgid "The license key is valid."
246
  msgstr ""
247
 
248
+ #: bws_functions.php:474
249
+ msgid "Your license will expire on"
250
+ msgstr ""
251
+
252
+ #: bws_functions.php:507
253
  msgid "Please, enter your license key"
254
  msgstr ""
255
 
256
+ #: bws_functions.php:520
257
  msgid ""
258
  "If needed you can check if the license key is correct or reenter it in the "
259
  "field below. You can find your license key on your personal page - Client "
260
  "area - on our website"
261
  msgstr ""
262
 
263
+ #: bws_functions.php:520
264
  msgid ""
265
  "(your username is the email you specify when purchasing the product). If "
266
  "necessary, please submit \"Lost your password?\" request."
267
  msgstr ""
268
 
269
+ #: bws_functions.php:524
270
  msgid "Check license key"
271
  msgstr ""
272
 
273
+ #: bws_functions.php:538
274
  msgid ""
275
  "WARNING: We have noticed illegal use of our plugin by you. We strongly "
276
  "recommend you to solve the problem within 24 hours, otherwise the plugin "
277
  "will be deactivated. Please go to your personal"
278
  msgstr ""
279
 
280
+ #: bws_functions.php:538
281
  msgid ""
282
  "(your username is the email you specify when purchasing the product), where "
283
  "you can make the necessary changes."
284
  msgstr ""
285
 
286
+ #: bws_functions.php:546
287
+ msgid ""
288
+ "Notice: Your PRO Trial license has expired. To continue using the plugin you "
289
+ "should buy a PRO license"
290
+ msgstr ""
291
+
292
+ #: bws_functions.php:548
293
  msgid ""
294
  "Your license has expired. To continue getting top-priority support and "
295
  "plugin updates you should extend it."
296
  msgstr ""
297
 
298
  # @ captcha
299
+ #: bws_functions.php:548 bws_functions.php:601 bws_menu.php:611
300
+ #: bws_menu.php:633 bws_menu.php:660 bws_menu.php:690 bws_menu.php:736
301
  #, fuzzy
302
  msgid "Learn more"
303
  msgstr "Leia Mais"
304
 
305
+ #: bws_functions.php:558
306
+ #, php-format
307
+ msgid "Notice: You are using the PRO Trial license of %s plugin."
308
+ msgstr ""
309
+
310
+ #: bws_functions.php:560
311
+ msgid "Notice: You are using the PRO Trial license of plugin."
312
+ msgstr ""
313
+
314
+ #: bws_functions.php:563
315
+ msgid "The PRO Trial license will expire on"
316
+ msgstr ""
317
+
318
+ #: bws_functions.php:601
319
  msgid "You license for"
320
  msgstr ""
321
 
322
+ #: bws_functions.php:601
323
  msgid "expires on"
324
  msgstr ""
325
 
326
+ #: bws_functions.php:601
327
  msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
328
  msgstr ""
329
 
330
+ #: bws_functions.php:676
331
  msgid "Close"
332
  msgstr ""
333
 
334
  # @ captcha
335
+ #: bws_menu.php:448
336
  msgid "Not set"
337
  msgstr "Não definido"
338
 
339
  # @ captcha
340
+ #: bws_menu.php:450 bws_menu.php:451
341
  msgid "On"
342
  msgstr "Ligado"
343
 
344
  # @ captcha
345
+ #: bws_menu.php:450 bws_menu.php:451
346
  msgid "Off"
347
  msgstr "Desligado"
348
 
349
  # @ captcha
350
+ #: bws_menu.php:452 bws_menu.php:453 bws_menu.php:454 bws_menu.php:455
351
+ #: bws_menu.php:456 bws_menu.php:468
352
  msgid "N/A"
353
  msgstr "N/D"
354
 
355
  # @ captcha
356
+ #: bws_menu.php:456
357
  msgid " Mb"
358
  msgstr " Mb"
359
 
360
  # @ captcha
361
+ #: bws_menu.php:457 bws_menu.php:458 bws_menu.php:459 bws_menu.php:464
362
  msgid "Yes"
363
  msgstr "Sim"
364
 
365
  # @ captcha
366
+ #: bws_menu.php:457 bws_menu.php:458 bws_menu.php:459 bws_menu.php:466
367
  msgid "No"
368
  msgstr "Não"
369
 
370
  # @ captcha
371
+ #: bws_menu.php:476
372
  msgid "Operating System"
373
  msgstr "Sistema Operacional"
374
 
375
  # @ captcha
376
+ #: bws_menu.php:477
377
  msgid "Server"
378
  msgstr "Servidor"
379
 
380
  # @ captcha
381
+ #: bws_menu.php:478
382
  msgid "Memory usage"
383
  msgstr "Uso de memória"
384
 
385
  # @ captcha
386
+ #: bws_menu.php:479
387
  msgid "MYSQL Version"
388
  msgstr "Versão do MySQL"
389
 
390
  # @ captcha
391
+ #: bws_menu.php:480
392
  msgid "SQL Mode"
393
  msgstr "Modo SQL"
394
 
395
  # @ captcha
396
+ #: bws_menu.php:481
397
  msgid "PHP Version"
398
  msgstr "Versão do PHP"
399
 
400
  # @ captcha
401
+ #: bws_menu.php:482
402
  msgid "PHP Safe Mode"
403
  msgstr "Modo de Segurança do PHP"
404
 
405
  # @ captcha
406
+ #: bws_menu.php:483
407
  msgid "PHP Allow URL fopen"
408
  msgstr "Permissão de fopen de URL do PHP"
409
 
410
  # @ captcha
411
+ #: bws_menu.php:484
412
  msgid "PHP Memory Limit"
413
  msgstr "Limite de Memória do PHP"
414
 
415
  # @ captcha
416
+ #: bws_menu.php:485
417
  msgid "PHP Max Upload Size"
418
  msgstr "Tamanho Máximo de Upload no PHP"
419
 
420
  # @ captcha
421
+ #: bws_menu.php:486
422
  msgid "PHP Max Post Size"
423
  msgstr "Tamanho Máximo de Envio do PHP"
424
 
425
  # @ captcha
426
+ #: bws_menu.php:487
427
  msgid "PHP Max Script Execute Time"
428
  msgstr "Tempo de Execução Máximo do PHP"
429
 
430
  # @ captcha
431
+ #: bws_menu.php:488
432
  msgid "PHP Exif support"
433
  msgstr "Suporte a Exif no PHP"
434
 
435
  # @ captcha
436
+ #: bws_menu.php:489
437
  msgid "PHP IPTC support"
438
  msgstr "Suporte da IPTC no PHP"
439
 
440
  # @ captcha
441
+ #: bws_menu.php:490
442
  msgid "PHP XML support"
443
  msgstr "Suporte a XML no PHP"
444
 
445
  # @ captcha
446
+ #: bws_menu.php:491
447
  msgid "Site URL"
448
  msgstr "URL do Site"
449
 
450
  # @ captcha
451
+ #: bws_menu.php:492
452
  msgid "Home URL"
453
  msgstr "URL da Página Inicial"
454
 
455
  # @ captcha
456
+ #: bws_menu.php:495
457
  msgid "WordPress Version"
458
  msgstr "Versão do WordPress"
459
 
460
  # @ captcha
461
+ #: bws_menu.php:496
462
  msgid "WordPress DB Version"
463
  msgstr "Versão do DB do WordPress"
464
 
465
  # @ captcha
466
+ #: bws_menu.php:497
467
  msgid "Multisite"
468
  msgstr "Multisite"
469
 
470
  # @ captcha
471
+ #: bws_menu.php:498
472
  msgid "Active Theme"
473
  msgstr "Tema Ativo"
474
 
475
  # @ captcha
476
+ #: bws_menu.php:513
477
  msgid "Please enter a valid email address."
478
  msgstr "Por favor, informe um endereço de email válido."
479
 
480
  # @ captcha
481
+ #: bws_menu.php:517
482
  msgid "Email with system info is sent to "
483
  msgstr "Email com informações do sistema é enviado para "
484
 
485
  # @ captcha
486
+ #: bws_menu.php:521
487
  msgid "Thank you for contacting us."
488
  msgstr "Obrigado por nos contatar."
489
 
490
  # @ captcha
491
+ #: bws_menu.php:554
492
  msgid "Sorry, email message could not be delivered."
493
  msgstr "Desculpe, a mensagem de email não pôde ser enviada."
494
 
495
+ #: bws_menu.php:562
496
  msgid "Need help?"
497
  msgstr ""
498
 
499
+ #: bws_menu.php:563
500
  msgid "Client area"
501
  msgstr ""
502
 
503
  # @ captcha
504
+ #: bws_menu.php:564 bws_menu.php:875
505
  msgid "System status"
506
  msgstr "Status do sistema"
507
 
508
  # @ captcha
509
+ #: bws_menu.php:569
510
  #, fuzzy
511
  msgid "Plugins"
512
  msgstr "Plugins Pro"
513
 
514
+ #: bws_menu.php:571
515
  msgid "Themes"
516
  msgstr ""
517
 
518
+ #: bws_menu.php:576
519
  msgid "All"
520
  msgstr ""
521
 
522
  # @ default
523
+ #: bws_menu.php:577
524
  #, fuzzy
525
  msgid "Installed"
526
  msgstr "Instalar %s"
527
 
528
  # @ captcha
529
+ #: bws_menu.php:578
530
  #, fuzzy
531
  msgid "Recommended"
532
  msgstr "Plugins Recomendados"
533
 
534
  # @ captcha
535
+ #: bws_menu.php:582
536
  msgid "Installed plugins"
537
  msgstr "Plugins Instalados"
538
 
539
  # @ captcha
540
+ #: bws_menu.php:614 bws_menu.php:663
541
  msgid "Settings"
542
  msgstr "Configurações"
543
 
544
  # @ captcha
545
+ #: bws_menu.php:635 bws_menu.php:692
546
  #, fuzzy
547
  msgid "Activate this plugin"
548
  msgstr "Plugins ativados"
549
 
550
+ #: bws_menu.php:650 bws_menu.php:680 bws_menu.php:726
551
  msgid "Go"
552
  msgstr ""
553
 
554
+ #: bws_menu.php:654 bws_menu.php:684 bws_menu.php:730
555
  msgid "DONATE"
556
  msgstr ""
557
 
558
  # @ captcha
559
+ #: bws_menu.php:700
560
  msgid "Recommended plugins"
561
  msgstr "Plugins Recomendados"
562
 
563
  # @ default
564
+ #: bws_menu.php:738
565
  #, fuzzy
566
  msgid "Install now"
567
  msgstr "Instalar %s"
568
 
569
+ #: bws_menu.php:759
570
  msgid "Try again"
571
  msgstr ""
572
 
573
+ #: bws_menu.php:777
574
  #, php-format
575
  msgid "Preview &#8220;%s&#8221;"
576
  msgstr ""
577
 
578
  # @ default
579
+ #: bws_menu.php:808
580
  #, php-format
581
  msgid "Install %s"
582
  msgstr "Instalar %s"
583
 
584
  # @ default
585
+ #: bws_menu.php:808
586
  #, fuzzy
587
  msgid "Install Now"
588
  msgstr "Instalar %s"
589
 
590
+ #: bws_menu.php:811
591
  #, php-format
592
  msgid "Update to version %s"
593
  msgstr ""
594
 
595
+ #: bws_menu.php:811
596
  msgid "Update"
597
  msgstr ""
598
 
599
+ #: bws_menu.php:818
600
  #, php-format
601
  msgid "Preview %s"
602
  msgstr ""
603
 
604
+ #: bws_menu.php:818
605
  msgid "Preview"
606
  msgstr ""
607
 
608
+ #: bws_menu.php:824 bws_menu.php:856
609
  #, php-format
610
  msgid "By %s"
611
  msgstr ""
612
 
613
+ #: bws_menu.php:830
614
  msgid "Details"
615
  msgstr ""
616
 
617
  # @ default
618
+ #: bws_menu.php:862
619
  #, fuzzy
620
  msgid "Already Installed"
621
  msgstr "Instalar %s"
622
 
623
  # @ captcha
624
+ #: bws_menu.php:878
625
  msgid "Environment"
626
  msgstr "Ambiente"
627
 
628
  # @ captcha
629
+ #: bws_menu.php:889
630
  msgid "Active Plugins"
631
  msgstr "Plugins Ativos"
632
 
633
  # @ captcha
634
+ #: bws_menu.php:902
635
  msgid "Inactive Plugins"
636
  msgstr "Plugins Inativos"
637
 
638
  # @ captcha
639
+ #: bws_menu.php:918
640
  msgid "Send to support"
641
  msgstr "Enviar para o suporte"
642
 
643
  # @ captcha
644
+ #: bws_menu.php:925
645
  msgid "Send to custom email &#187;"
646
  msgstr "Enviar para email personalizado &#187;"
647
 
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: 2015-03-05 13:14+0300\n"
6
- "PO-Revision-Date: 2015-03-20 11:07+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,500 +16,603 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: bws_functions.php:84
20
  msgid "requires"
21
  msgstr "требует"
22
 
23
- #: bws_functions.php:85
24
- msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
25
- msgstr "или выше, поэтому он был деактивирован! Пожалуйста, обновите WordPress и попробуйте еще раз."
 
 
 
 
26
 
27
- #: bws_functions.php:86
28
  msgid "Back to the WordPress"
29
  msgstr "Вернуться к WordPress на"
30
 
31
- #: bws_functions.php:87
32
  msgid "Plugins page"
33
  msgstr "Страницу плагинов"
34
 
35
- #: bws_functions.php:134
36
  msgid "Learn More"
37
  msgstr "Подробнее"
38
 
39
- #: bws_functions.php:137
40
  msgid "It’s time to upgrade your"
41
  msgstr "Настало время обновить Ваш"
42
 
43
- #: bws_functions.php:137
44
  msgid "to"
45
  msgstr "до"
46
 
47
- #: bws_functions.php:137
48
  msgid "version!"
49
  msgstr "версии!"
50
 
51
- #: bws_functions.php:138
52
  msgid "Extend standard plugin functionality with new great options."
53
  msgstr "Расширяет возможности стандартного функционала плагина."
54
 
55
- #: bws_functions.php:158
56
  msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
57
- msgstr "Если вам понравился плагин, пожалуйста, поставьте нам 5 звезд на WordPress"
 
58
 
59
- #: bws_functions.php:159
60
  msgid "Rate the plugin"
61
  msgstr "Оценить плагин"
62
 
63
- #: bws_functions.php:162
64
  msgid "If there is something wrong about it, please contact us"
65
  msgstr "Если у вас есть какие-то вопросы, обращайтесь"
66
 
67
- #: bws_functions.php:179
68
- #: bws_functions.php:215
69
- #: bws_functions.php:395
70
  msgid "Wrong license key"
71
  msgstr "Неправильный лицензионный ключ"
72
 
73
- #: bws_functions.php:209
74
- #: bws_functions.php:389
75
- #: bws_functions.php:426
76
- msgid "Something went wrong. Please try again later. If the error appears again, please contact us"
77
- msgstr "Что-то пошло не так. Повторите попытку позже. Если ошибка появится снова, пожалуйста, свяжитесь с нами"
 
 
78
 
79
- #: bws_functions.php:209
80
- #: bws_functions.php:389
81
- #: bws_functions.php:426
82
  msgid "We are sorry for inconvenience."
83
  msgstr "Приносим извинения за неудобства."
84
 
85
- #: bws_functions.php:217
86
- #: bws_functions.php:397
87
  msgid "This license key is bind to another site"
88
  msgstr "Этот лицензионный ключ привязан к другому сайту"
89
 
90
- #: bws_functions.php:219
91
- #: bws_functions.php:348
92
- msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
93
- msgstr "К сожалению, вы превысили количество доступных попыток в день. Пожалуйста, загрузите плагин вручную."
 
 
 
94
 
95
- #: bws_functions.php:221
96
- msgid "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates you should extend it in your"
97
- msgstr "К сожалению, время использования вашей лицензии истекло. Для получения обновлений приоритетного саппорта вам нужно продлить лицензию перейдя на вашей"
 
 
 
 
 
98
 
99
- #: bws_functions.php:223
100
- msgid "Unfortunately, the PRO licence was already installed to this domain. The PRO Trial license can be installed only once."
101
- msgstr "К сожалению, PRO лицензия уже была установлена на этом доменен. PRO Trial лицензия может быть установлена только один раз."
 
 
 
 
102
 
103
- #: bws_functions.php:234
104
- #: bws_functions.php:256
105
- #: bws_functions.php:278
106
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
107
- msgstr "Не удалось загрузить архив плагина. Пожалуйста, загрузите плагин вручную"
 
108
 
109
- #: bws_functions.php:246
110
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
111
  msgstr "Не удалось открыть архив ZIP. Пожалуйста, загрузите плагин вручную"
112
 
113
- #: bws_functions.php:252
114
- msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
115
- msgstr "Ваш сервер не поддерживает ни библиотеку ZipArchive, ни библиотеку Phar. Пожалуйста, загрузите плагин вручную"
 
 
 
 
116
 
117
- #: bws_functions.php:259
118
  msgid "UploadDir is not writable. Please, upload the plugin manually"
119
- msgstr "Папка загрузки не доступна для записи. Пожалуйста, загрузите плагин вручную"
 
120
 
121
- #: bws_functions.php:282
122
- msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvenience."
123
- msgstr "Что-то пошло не так. Повторите попытку позже или загрузите плагин вручную. Приносим извинения за неудобства."
 
 
 
 
124
 
125
- #: bws_functions.php:307
126
  msgid "Please, enter Your license key"
127
  msgstr "Пожалуйста, введите ваш лицензионный ключ"
128
 
129
- #: bws_functions.php:324
130
- msgid "Congratulations! The PRO version of the plugin is successfully download and activated."
 
 
131
  msgstr "Поздравляем! PRO версия плагина была успешно загружена и активирована."
132
 
133
- #: bws_functions.php:326
134
  msgid "Please, go to"
135
  msgstr "Пожалуйста, перейдите на"
136
 
137
- #: bws_functions.php:326
138
  msgid "the setting page"
139
  msgstr "страницу настроек"
140
 
141
- #: bws_functions.php:327
142
  msgid "You will be redirected automatically in 5 seconds."
143
  msgstr "Вы будете перенаправлены автоматически через 5 секунд."
144
 
145
- #: bws_functions.php:332
146
  msgid "You can download and activate"
147
  msgstr "Вы можете скачать и активировать"
148
 
149
- #: bws_functions.php:334
150
  msgid "version of this plugin by entering Your license key."
151
  msgstr "версию этого плагина, введя ваш лицензионный ключ."
152
 
153
- #: bws_functions.php:336
154
- msgid "You can find your license key on your personal page Client area, by clicking on the link"
155
- msgstr "Вы можете найти ваш лицензионный ключ на вашей личной странице Client area, нажав на ссылку"
 
 
 
 
156
 
157
- #: bws_functions.php:338
158
  msgid "(your username is the email you specify when purchasing the product)."
159
- msgstr "(ваше имя пользователя - это электронный адрес, указанный при покупке продукта)."
 
 
 
 
 
 
 
 
 
 
 
160
 
161
- #: bws_functions.php:346
162
- #: bws_functions.php:354
163
- #: bws_menu.php:613
164
- #: bws_menu.php:670
165
  msgid "Activate"
166
  msgstr "Активировать"
167
 
168
- #: bws_functions.php:399
169
- msgid "This license key is valid, but Your license has expired. If you want to update our plugin in future, you should extend the license."
170
- msgstr "Лицензионный ключ принят, но срок действия лицензии истек. Если вы хотите обновлять плагин в будущем, вы должны продлить лицензию."
 
 
 
 
 
 
 
 
 
 
 
171
 
172
- #: bws_functions.php:401
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
173
  msgid "Unfortunately, you have exceeded the number of available tries."
174
  msgstr "К сожалению, вы превысили количество доступных попыток."
175
 
176
- #: bws_functions.php:405
177
- msgid "The license key is valid. Your license will expire on"
178
- msgstr "Лицензионный ключ принят. Ваша лицензия истечет"
 
 
 
 
179
 
180
- #: bws_functions.php:407
 
 
 
 
181
  msgid "The license key is valid."
182
  msgstr "Лицензионный ключ принят."
183
 
184
- #: bws_functions.php:431
 
 
 
 
185
  msgid "Please, enter your license key"
186
  msgstr "Пожалуйста, введите Ваш лицензионный ключ"
187
 
188
- #: bws_functions.php:444
189
- msgid "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"
190
- msgstr "При необходимости вы можете проверить валидность лицензионного ключа или повторно ввести его в поле ниже. Вы можете найти ваш лицензионный ключ на своей личной странице - Client area - на нашем сайте"
 
 
 
 
 
 
191
 
192
- #: bws_functions.php:444
193
- msgid "(your username is the email you specify when purchasing the product). If necessary, please submit \"Lost your password?\" request."
194
- msgstr "(ваш пользователь это емейл, который вы указывали при покупке продукта). При необходимости нажмите \"Lost your password?\"."
 
 
 
 
195
 
196
- #: bws_functions.php:448
197
  msgid "Check license key"
198
  msgstr "Проверка лицензионного ключа"
199
 
200
- #: bws_functions.php:462
201
- msgid "WARNING: We have noticed illegal use of our plugin by you. We strongly recommend you to solve the problem within 24 hours, otherwise the plugin will be deactivated. Please go to your personal"
202
- msgstr "ВНИМАНИЕ: Было замечено незаконное использования вами нашего плагина. Мы настоятельно рекомендуем Вам, решить данную проблему в течение 24 часов, в противном случае плагин будет деативирован. Пожалуйста, перейдите на вашу личную"
203
-
204
- #: bws_functions.php:462
205
- msgid "(your username is the email you specify when purchasing the product), where you can make the necessary changes."
206
- msgstr "(ваш пользователь это емейл, который вы указывали при покупке продукта), где вы можете сделать необходимые изменения."
207
-
208
- #: bws_functions.php:468
209
- msgid "Your license has expired. To continue getting top-priority support and plugin updates you should extend it."
210
- msgstr "Время использования вашей лицензии истекло. Если вы хотите обновлять ваш плагин в дальшем и иметь приоритетную тех.поддержку, то вам нужно продлить лицензию."
211
-
212
- #: bws_functions.php:468
213
- #: bws_functions.php:502
214
- #: bws_menu.php:589
215
- #: bws_menu.php:611
216
- #: bws_menu.php:638
217
- #: bws_menu.php:668
218
- #: bws_menu.php:714
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
219
  msgid "Learn more"
220
  msgstr "Подробнее"
221
 
222
- #: bws_functions.php:502
 
 
 
 
 
 
 
 
 
 
 
 
 
223
  msgid "You license for"
224
  msgstr "Ваш лицензионный ключ для"
225
 
226
- #: bws_functions.php:502
227
  msgid "expires on"
228
  msgstr "истекает"
229
 
230
- #: bws_functions.php:502
231
  msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
232
  msgstr "и вы не будете получать приоритетную тех.поддержку или обновления."
233
 
234
- #: bws_functions.php:580
235
  msgid "Close"
236
  msgstr "Закрыть"
237
 
238
- #: bws_menu.php:426
239
  msgid "Not set"
240
  msgstr "Не задан"
241
 
242
- #: bws_menu.php:428
243
- #: bws_menu.php:429
244
  msgid "On"
245
  msgstr "Вкл"
246
 
247
- #: bws_menu.php:428
248
- #: bws_menu.php:429
249
  msgid "Off"
250
  msgstr "Выкл"
251
 
252
- #: bws_menu.php:430
253
- #: bws_menu.php:431
254
- #: bws_menu.php:432
255
- #: bws_menu.php:433
256
- #: bws_menu.php:434
257
- #: bws_menu.php:446
258
  msgid "N/A"
259
  msgstr "Неизвестно"
260
 
261
- #: bws_menu.php:434
262
  msgid " Mb"
263
  msgstr "Mb"
264
 
265
- #: bws_menu.php:435
266
- #: bws_menu.php:436
267
- #: bws_menu.php:437
268
- #: bws_menu.php:442
269
  msgid "Yes"
270
  msgstr "Да"
271
 
272
- #: bws_menu.php:435
273
- #: bws_menu.php:436
274
- #: bws_menu.php:437
275
- #: bws_menu.php:444
276
  msgid "No"
277
  msgstr "Нет"
278
 
279
- #: bws_menu.php:454
280
  msgid "Operating System"
281
  msgstr "Операционная система"
282
 
283
- #: bws_menu.php:455
284
  msgid "Server"
285
  msgstr "Тип сервера"
286
 
287
- #: bws_menu.php:456
288
  msgid "Memory usage"
289
  msgstr "Памяти использовано"
290
 
291
- #: bws_menu.php:457
292
  msgid "MYSQL Version"
293
  msgstr "Версия MYSQL"
294
 
295
- #: bws_menu.php:458
296
  msgid "SQL Mode"
297
  msgstr "Режим SQL"
298
 
299
- #: bws_menu.php:459
300
  msgid "PHP Version"
301
  msgstr "Версия PHP"
302
 
303
- #: bws_menu.php:460
304
  msgid "PHP Safe Mode"
305
  msgstr "PHP Safe Mode"
306
 
307
- #: bws_menu.php:461
308
  msgid "PHP Allow URL fopen"
309
  msgstr "PHP Allow URL fopen"
310
 
311
- #: bws_menu.php:462
312
  msgid "PHP Memory Limit"
313
  msgstr "Лимит памяти"
314
 
315
- #: bws_menu.php:463
316
  msgid "PHP Max Upload Size"
317
  msgstr "Макс. размер загружаемого файла"
318
 
319
- #: bws_menu.php:464
320
  msgid "PHP Max Post Size"
321
  msgstr "Макс. размер записи"
322
 
323
- #: bws_menu.php:465
324
  msgid "PHP Max Script Execute Time"
325
  msgstr "Макс. время выполнения сценария"
326
 
327
- #: bws_menu.php:466
328
  msgid "PHP Exif support"
329
  msgstr "Поддержка PHP Exif"
330
 
331
- #: bws_menu.php:467
332
  msgid "PHP IPTC support"
333
  msgstr "Поддержка PHP IPTC"
334
 
335
- #: bws_menu.php:468
336
  msgid "PHP XML support"
337
  msgstr "Поддержка PHP XML"
338
 
339
- #: bws_menu.php:469
340
  msgid "Site URL"
341
  msgstr "Адрес сайта"
342
 
343
- #: bws_menu.php:470
344
  msgid "Home URL"
345
  msgstr "Основной адрес сайта"
346
 
347
- #: bws_menu.php:473
348
  msgid "WordPress Version"
349
  msgstr "Версия WordPress"
350
 
351
- #: bws_menu.php:474
352
  msgid "WordPress DB Version"
353
  msgstr "Версия базы данных WordPress"
354
 
355
- #: bws_menu.php:475
356
  msgid "Multisite"
357
  msgstr "Мультиблог"
358
 
359
- #: bws_menu.php:476
360
  msgid "Active Theme"
361
  msgstr "Текущая тема"
362
 
363
- #: bws_menu.php:491
364
  msgid "Please enter a valid email address."
365
  msgstr "Пожалуйста, введите валидный емайл."
366
 
367
- #: bws_menu.php:495
368
  msgid "Email with system info is sent to "
369
  msgstr "E-mail с системной информацией отправлен на"
370
 
371
- #: bws_menu.php:499
372
  msgid "Thank you for contacting us."
373
  msgstr "Спасибо что связались с нами."
374
 
375
- #: bws_menu.php:532
376
  msgid "Sorry, email message could not be delivered."
377
  msgstr "Извините, ваш email не может быть отправлен."
378
 
379
- #: bws_menu.php:540
380
  msgid "Need help?"
381
  msgstr "Нужна помощь?"
382
 
383
- #: bws_menu.php:541
384
  msgid "Client area"
385
  msgstr "Client area"
386
 
387
- #: bws_menu.php:542
388
- #: bws_menu.php:853
389
  msgid "System status"
390
  msgstr "Системная информация"
391
 
392
- #: bws_menu.php:547
393
  msgid "Plugins"
394
  msgstr "Плагины"
395
 
396
- #: bws_menu.php:549
397
  msgid "Themes"
398
  msgstr "Темы"
399
 
400
- #: bws_menu.php:554
401
  msgid "All"
402
  msgstr "Все"
403
 
404
- #: bws_menu.php:555
405
  msgid "Installed"
406
  msgstr "Установленные"
407
 
408
- #: bws_menu.php:556
409
  msgid "Recommended"
410
  msgstr "Рекомендованные"
411
 
412
- #: bws_menu.php:560
413
  msgid "Installed plugins"
414
  msgstr "Установленные плагины"
415
 
416
- #: bws_menu.php:592
417
- #: bws_menu.php:641
418
  msgid "Settings"
419
  msgstr "Настройки"
420
 
421
- #: bws_menu.php:613
422
- #: bws_menu.php:670
423
  msgid "Activate this plugin"
424
  msgstr "Активировать плагин"
425
 
426
- #: bws_menu.php:628
427
- #: bws_menu.php:658
428
- #: bws_menu.php:704
429
  msgid "Go"
430
  msgstr "Перейти на"
431
 
432
- #: bws_menu.php:632
433
- #: bws_menu.php:662
434
- #: bws_menu.php:708
435
  msgid "DONATE"
436
  msgstr "Пожертвовать"
437
 
438
- #: bws_menu.php:678
439
  msgid "Recommended plugins"
440
  msgstr "Рекомендованные к установке плагины"
441
 
442
- #: bws_menu.php:716
443
  msgid "Install now"
444
  msgstr "Установить"
445
 
446
- #: bws_menu.php:737
447
  msgid "Try again"
448
  msgstr "Попробовать снова"
449
 
450
- #: bws_menu.php:755
451
  #, php-format
452
  msgid "Preview &#8220;%s&#8221;"
453
  msgstr "Просмотр &#8220;%s&#8221;"
454
 
455
- #: bws_menu.php:786
456
  #, php-format
457
  msgid "Install %s"
458
  msgstr "Установлено %s"
459
 
460
- #: bws_menu.php:786
461
  msgid "Install Now"
462
  msgstr "Установить"
463
 
464
- #: bws_menu.php:789
465
  #, php-format
466
  msgid "Update to version %s"
467
  msgstr "Обновить до версии %s"
468
 
469
- #: bws_menu.php:789
470
  msgid "Update"
471
  msgstr "Обновить"
472
 
473
- #: bws_menu.php:796
474
  #, php-format
475
  msgid "Preview %s"
476
  msgstr "Просмотр %s"
477
 
478
- #: bws_menu.php:796
479
  msgid "Preview"
480
  msgstr "Просмотр"
481
 
482
- #: bws_menu.php:802
483
- #: bws_menu.php:834
484
  #, php-format
485
  msgid "By %s"
486
  msgstr "%s"
487
 
488
- #: bws_menu.php:808
489
  msgid "Details"
490
  msgstr "Детали"
491
 
492
- #: bws_menu.php:840
493
  msgid "Already Installed"
494
  msgstr "Уже установлена"
495
 
496
- #: bws_menu.php:856
497
  msgid "Environment"
498
  msgstr "Системная среда"
499
 
500
- #: bws_menu.php:867
501
  msgid "Active Plugins"
502
  msgstr "Активированные плагины"
503
 
504
- #: bws_menu.php:880
505
  msgid "Inactive Plugins"
506
  msgstr "Неактивированные плагины"
507
 
508
- #: bws_menu.php:896
509
  msgid "Send to support"
510
  msgstr "Отправить в тех. поддержку"
511
 
512
- #: bws_menu.php:903
513
  msgid "Send to custom email &#187;"
514
  msgstr "Отправить на емейл &#187;"
515
 
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-04-20 12:40+0300\n"
6
+ "PO-Revision-Date: 2015-04-20 13:36+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:85
20
  msgid "requires"
21
  msgstr "требует"
22
 
23
+ #: bws_functions.php:87
24
+ msgid ""
25
+ "or higher, that is why it has been deactivated! Please upgrade WordPress and "
26
+ "try again."
27
+ msgstr ""
28
+ "или выше, поэтому он был деактивирован! Пожалуйста, обновите WordPress и "
29
+ "попробуйте еще раз."
30
 
31
+ #: bws_functions.php:88
32
  msgid "Back to the WordPress"
33
  msgstr "Вернуться к WordPress на"
34
 
35
+ #: bws_functions.php:90
36
  msgid "Plugins page"
37
  msgstr "Страницу плагинов"
38
 
39
+ #: bws_functions.php:140
40
  msgid "Learn More"
41
  msgstr "Подробнее"
42
 
43
+ #: bws_functions.php:143
44
  msgid "It’s time to upgrade your"
45
  msgstr "Настало время обновить Ваш"
46
 
47
+ #: bws_functions.php:143
48
  msgid "to"
49
  msgstr "до"
50
 
51
+ #: bws_functions.php:143
52
  msgid "version!"
53
  msgstr "версии!"
54
 
55
+ #: bws_functions.php:144
56
  msgid "Extend standard plugin functionality with new great options."
57
  msgstr "Расширяет возможности стандартного функционала плагина."
58
 
59
+ #: bws_functions.php:164
60
  msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
61
+ msgstr ""
62
+ "Если вам понравился плагин, пожалуйста, поставьте нам 5 звезд на WordPress"
63
 
64
+ #: bws_functions.php:165
65
  msgid "Rate the plugin"
66
  msgstr "Оценить плагин"
67
 
68
+ #: bws_functions.php:168
69
  msgid "If there is something wrong about it, please contact us"
70
  msgstr "Если у вас есть какие-то вопросы, обращайтесь"
71
 
72
+ #: bws_functions.php:185 bws_functions.php:221
 
 
73
  msgid "Wrong license key"
74
  msgstr "Неправильный лицензионный ключ"
75
 
76
+ #: bws_functions.php:215 bws_functions.php:447 bws_functions.php:498
77
+ msgid ""
78
+ "Something went wrong. Please try again later. If the error appears again, "
79
+ "please contact us"
80
+ msgstr ""
81
+ "Что-то пошло не так. Повторите попытку позже. Если ошибка появится снова, "
82
+ "пожалуйста, свяжитесь с нами"
83
 
84
+ #: bws_functions.php:215 bws_functions.php:447 bws_functions.php:498
 
 
85
  msgid "We are sorry for inconvenience."
86
  msgstr "Приносим извинения за неудобства."
87
 
88
+ #: bws_functions.php:223
 
89
  msgid "This license key is bind to another site"
90
  msgstr "Этот лицензионный ключ привязан к другому сайту"
91
 
92
+ #: bws_functions.php:225 bws_functions.php:357
93
+ msgid ""
94
+ "Unfortunately, you have exceeded the number of available tries per day. "
95
+ "Please, upload the plugin manually."
96
+ msgstr ""
97
+ "К сожалению, вы превысили количество доступных попыток в день. Пожалуйста, "
98
+ "загрузите плагин вручную."
99
 
100
+ #: bws_functions.php:227
101
+ msgid ""
102
+ "Unfortunately, Your license has expired. To continue getting top-priority "
103
+ "support and plugin updates you should extend it in your"
104
+ msgstr ""
105
+ "К сожалению, время использования вашей лицензии истекло. Для получения "
106
+ "обновлений приоритетного саппорта вам нужно продлить лицензию перейдя на "
107
+ "вашей"
108
 
109
+ #: bws_functions.php:229
110
+ msgid ""
111
+ "Unfortunately, the PRO licence was already installed to this domain. The PRO "
112
+ "Trial license can be installed only once."
113
+ msgstr ""
114
+ "К сожалению, PRO лицензия уже была установлена на этом доменен. PRO Trial "
115
+ "лицензия может быть установлена только один раз."
116
 
117
+ #: bws_functions.php:240 bws_functions.php:262 bws_functions.php:284
 
 
118
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
119
+ msgstr ""
120
+ "Не удалось загрузить архив плагина. Пожалуйста, загрузите плагин вручную"
121
 
122
+ #: bws_functions.php:252
123
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
124
  msgstr "Не удалось открыть архив ZIP. Пожалуйста, загрузите плагин вручную"
125
 
126
+ #: bws_functions.php:258
127
+ msgid ""
128
+ "Your server does not support either ZipArchive or Phar. Please, upload the "
129
+ "plugin manually"
130
+ msgstr ""
131
+ "Ваш сервер не поддерживает ни библиотеку ZipArchive, ни библиотеку Phar. "
132
+ "Пожалуйста, загрузите плагин вручную"
133
 
134
+ #: bws_functions.php:265
135
  msgid "UploadDir is not writable. Please, upload the plugin manually"
136
+ msgstr ""
137
+ "Папка загрузки не доступна для записи. Пожалуйста, загрузите плагин вручную"
138
 
139
+ #: bws_functions.php:288
140
+ msgid ""
141
+ "Something went wrong. Try again later or upload the plugin manually. We are "
142
+ "sorry for inconvenience."
143
+ msgstr ""
144
+ "Что-то пошло не так. Повторите попытку позже или загрузите плагин вручную. "
145
+ "Приносим извинения за неудобства."
146
 
147
+ #: bws_functions.php:313
148
  msgid "Please, enter Your license key"
149
  msgstr "Пожалуйста, введите ваш лицензионный ключ"
150
 
151
+ #: bws_functions.php:330
152
+ msgid ""
153
+ "Congratulations! The PRO version of the plugin is successfully download and "
154
+ "activated."
155
  msgstr "Поздравляем! PRO версия плагина была успешно загружена и активирована."
156
 
157
+ #: bws_functions.php:332 bws_functions.php:414
158
  msgid "Please, go to"
159
  msgstr "Пожалуйста, перейдите на"
160
 
161
+ #: bws_functions.php:332 bws_functions.php:414
162
  msgid "the setting page"
163
  msgstr "страницу настроек"
164
 
165
+ #: bws_functions.php:333 bws_functions.php:415
166
  msgid "You will be redirected automatically in 5 seconds."
167
  msgstr "Вы будете перенаправлены автоматически через 5 секунд."
168
 
169
+ #: bws_functions.php:338
170
  msgid "You can download and activate"
171
  msgstr "Вы можете скачать и активировать"
172
 
173
+ #: bws_functions.php:340
174
  msgid "version of this plugin by entering Your license key."
175
  msgstr "версию этого плагина, введя ваш лицензионный ключ."
176
 
177
+ #: bws_functions.php:342 bws_functions.php:383
178
+ msgid ""
179
+ "You can find your license key on your personal page Client area, by clicking "
180
+ "on the link"
181
+ msgstr ""
182
+ "Вы можете найти ваш лицензионный ключ на вашей личной странице Client area, "
183
+ "нажав на ссылку"
184
 
185
+ #: bws_functions.php:344 bws_functions.php:385
186
  msgid "(your username is the email you specify when purchasing the product)."
187
+ msgstr ""
188
+ "(ваше имя пользователя - это электронный адрес, указанный при покупке "
189
+ "продукта)."
190
+
191
+ #: bws_functions.php:348
192
+ msgid "or"
193
+ msgstr "или"
194
+
195
+ #: bws_functions.php:348
196
+ #, php-format
197
+ msgid "Start Your Free %s-Day Trial Now"
198
+ msgstr "Попробуйте %s-дневную триал версию бесплатно"
199
 
200
+ #: bws_functions.php:354 bws_functions.php:363 bws_functions.php:393
201
+ #: bws_functions.php:401 bws_menu.php:635 bws_menu.php:692
 
 
202
  msgid "Activate"
203
  msgstr "Активировать"
204
 
205
+ #: bws_functions.php:380 bws_functions.php:473
206
+ #, php-format
207
+ msgid ""
208
+ "In order to continue using the plugin it is necessary to buy a %s license."
209
+ msgstr ""
210
+ "Чтобы продолжить пользоваться плагином, необходимо приобрести %s лицензию."
211
+
212
+ #: bws_functions.php:381
213
+ msgid "After that you can activate it by entering your license key."
214
+ msgstr "После этого вы сможете активировать его введя лицензионный ключ."
215
+
216
+ #: bws_functions.php:395
217
+ msgid "Unfortunately, you have exceeded the number of available tries per day."
218
+ msgstr "К сожалению, вы превысили количество доступных попыток."
219
 
220
+ #: bws_functions.php:412
221
+ msgid ""
222
+ "Congratulations! The PRO license of the plugin is successfully activated."
223
+ msgstr "Поздравляем! PRO версия плагина была успешно активирована."
224
+
225
+ #: bws_functions.php:453
226
+ msgid "Wrong license key."
227
+ msgstr "Неправильный лицензионный ключ."
228
+
229
+ #: bws_functions.php:455
230
+ msgid "This license key is bind to another site."
231
+ msgstr "Этот лицензионный ключ привязан к другому сайту."
232
+
233
+ #: bws_functions.php:457
234
+ msgid ""
235
+ "This license key is valid, but Your license has expired. If you want to "
236
+ "update our plugin in future, you should extend the license."
237
+ msgstr ""
238
+ "Лицензионный ключ принят, но срок действия лицензии истек. Если вы хотите "
239
+ "обновлять плагин в будущем, вы должны продлить лицензию."
240
+
241
+ #: bws_functions.php:459
242
  msgid "Unfortunately, you have exceeded the number of available tries."
243
  msgstr "К сожалению, вы превысили количество доступных попыток."
244
 
245
+ #: bws_functions.php:461
246
+ msgid ""
247
+ "Unfortunately, the PRO Trial licence was already installed to this domain. "
248
+ "The PRO Trial license can be installed only once."
249
+ msgstr ""
250
+ "К сожалению, триал PRO версия плагина уже устанавливалась на этот домен. "
251
+ "Триал PRO версию можно устанавливать лишь один раз."
252
 
253
+ #: bws_functions.php:465
254
+ msgid "The PRO Trial license key is valid."
255
+ msgstr "Ключ триала PRO версии верен."
256
+
257
+ #: bws_functions.php:467
258
  msgid "The license key is valid."
259
  msgstr "Лицензионный ключ принят."
260
 
261
+ #: bws_functions.php:470
262
+ msgid "Your license will expire on"
263
+ msgstr "Ваша лицензия истечет"
264
+
265
+ #: bws_functions.php:503
266
  msgid "Please, enter your license key"
267
  msgstr "Пожалуйста, введите Ваш лицензионный ключ"
268
 
269
+ #: bws_functions.php:516
270
+ msgid ""
271
+ "If needed you can check if the license key is correct or reenter it in the "
272
+ "field below. You can find your license key on your personal page - Client "
273
+ "area - on our website"
274
+ msgstr ""
275
+ "При необходимости вы можете проверить валидность лицензионного ключа или "
276
+ "повторно ввести его в поле ниже. Вы можете найти ваш лицензионный ключ на "
277
+ "своей личной странице - Client area - на нашем сайте"
278
 
279
+ #: bws_functions.php:516
280
+ msgid ""
281
+ "(your username is the email you specify when purchasing the product). If "
282
+ "necessary, please submit \"Lost your password?\" request."
283
+ msgstr ""
284
+ "(ваш пользователь это емейл, который вы указывали при покупке продукта). При "
285
+ "необходимости нажмите \"Lost your password?\"."
286
 
287
+ #: bws_functions.php:520
288
  msgid "Check license key"
289
  msgstr "Проверка лицензионного ключа"
290
 
291
+ #: bws_functions.php:534
292
+ msgid ""
293
+ "WARNING: We have noticed illegal use of our plugin by you. We strongly "
294
+ "recommend you to solve the problem within 24 hours, otherwise the plugin "
295
+ "will be deactivated. Please go to your personal"
296
+ msgstr ""
297
+ "ВНИМАНИЕ: Было замечено незаконное использования вами нашего плагина. Мы "
298
+ "настоятельно рекомендуем Вам, решить данную проблему в течение 24 часов, в "
299
+ "противном случае плагин будет деативирован. Пожалуйста, перейдите на вашу "
300
+ "личную"
301
+
302
+ #: bws_functions.php:534
303
+ msgid ""
304
+ "(your username is the email you specify when purchasing the product), where "
305
+ "you can make the necessary changes."
306
+ msgstr ""
307
+ "(ваш пользователь это емейл, который вы указывали при покупке продукта), где "
308
+ "вы можете сделать необходимые изменения."
309
+
310
+ #: bws_functions.php:542
311
+ msgid ""
312
+ "Notice: Your PRO Trial license has expired. To continue using the plugin you "
313
+ "should buy a PRO license"
314
+ msgstr ""
315
+ "Внимание: Срок действия триал периода PRO версии истек. Чтобы продолжить "
316
+ "пользоваться плагином, пожалуйста, приобретите лицензию PRO"
317
+
318
+ #: bws_functions.php:544
319
+ msgid ""
320
+ "Your license has expired. To continue getting top-priority support and "
321
+ "plugin updates you should extend it."
322
+ msgstr ""
323
+ "Время использования вашей лицензии истекло. Если вы хотите обновлять ваш "
324
+ "плагин в дальшем и иметь приоритетную тех.поддержку, то вам нужно продлить "
325
+ "лицензию."
326
+
327
+ #: bws_functions.php:544 bws_functions.php:594 bws_menu.php:611
328
+ #: bws_menu.php:633 bws_menu.php:660 bws_menu.php:690 bws_menu.php:736
329
  msgid "Learn more"
330
  msgstr "Подробнее"
331
 
332
+ #: bws_functions.php:554
333
+ #, php-format
334
+ msgid "Notice: You are using the PRO Trial license of %s plugin."
335
+ msgstr "Внимание: Вы используете триал PRO версию плагина %s."
336
+
337
+ #: bws_functions.php:556
338
+ msgid "Notice: You are using the PRO Trial license of plugin."
339
+ msgstr "Внимание: Вы используете триал PRO версию плагина."
340
+
341
+ #: bws_functions.php:559
342
+ msgid "The PRO Trial license will expire on"
343
+ msgstr "Триал период PRO версии плагина истекает"
344
+
345
+ #: bws_functions.php:594
346
  msgid "You license for"
347
  msgstr "Ваш лицензионный ключ для"
348
 
349
+ #: bws_functions.php:594
350
  msgid "expires on"
351
  msgstr "истекает"
352
 
353
+ #: bws_functions.php:594
354
  msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
355
  msgstr "и вы не будете получать приоритетную тех.поддержку или обновления."
356
 
357
+ #: bws_functions.php:672
358
  msgid "Close"
359
  msgstr "Закрыть"
360
 
361
+ #: bws_menu.php:448
362
  msgid "Not set"
363
  msgstr "Не задан"
364
 
365
+ #: bws_menu.php:450 bws_menu.php:451
 
366
  msgid "On"
367
  msgstr "Вкл"
368
 
369
+ #: bws_menu.php:450 bws_menu.php:451
 
370
  msgid "Off"
371
  msgstr "Выкл"
372
 
373
+ #: bws_menu.php:452 bws_menu.php:453 bws_menu.php:454 bws_menu.php:455
374
+ #: bws_menu.php:456 bws_menu.php:468
 
 
 
 
375
  msgid "N/A"
376
  msgstr "Неизвестно"
377
 
378
+ #: bws_menu.php:456
379
  msgid " Mb"
380
  msgstr "Mb"
381
 
382
+ #: bws_menu.php:457 bws_menu.php:458 bws_menu.php:459 bws_menu.php:464
 
 
 
383
  msgid "Yes"
384
  msgstr "Да"
385
 
386
+ #: bws_menu.php:457 bws_menu.php:458 bws_menu.php:459 bws_menu.php:466
 
 
 
387
  msgid "No"
388
  msgstr "Нет"
389
 
390
+ #: bws_menu.php:476
391
  msgid "Operating System"
392
  msgstr "Операционная система"
393
 
394
+ #: bws_menu.php:477
395
  msgid "Server"
396
  msgstr "Тип сервера"
397
 
398
+ #: bws_menu.php:478
399
  msgid "Memory usage"
400
  msgstr "Памяти использовано"
401
 
402
+ #: bws_menu.php:479
403
  msgid "MYSQL Version"
404
  msgstr "Версия MYSQL"
405
 
406
+ #: bws_menu.php:480
407
  msgid "SQL Mode"
408
  msgstr "Режим SQL"
409
 
410
+ #: bws_menu.php:481
411
  msgid "PHP Version"
412
  msgstr "Версия PHP"
413
 
414
+ #: bws_menu.php:482
415
  msgid "PHP Safe Mode"
416
  msgstr "PHP Safe Mode"
417
 
418
+ #: bws_menu.php:483
419
  msgid "PHP Allow URL fopen"
420
  msgstr "PHP Allow URL fopen"
421
 
422
+ #: bws_menu.php:484
423
  msgid "PHP Memory Limit"
424
  msgstr "Лимит памяти"
425
 
426
+ #: bws_menu.php:485
427
  msgid "PHP Max Upload Size"
428
  msgstr "Макс. размер загружаемого файла"
429
 
430
+ #: bws_menu.php:486
431
  msgid "PHP Max Post Size"
432
  msgstr "Макс. размер записи"
433
 
434
+ #: bws_menu.php:487
435
  msgid "PHP Max Script Execute Time"
436
  msgstr "Макс. время выполнения сценария"
437
 
438
+ #: bws_menu.php:488
439
  msgid "PHP Exif support"
440
  msgstr "Поддержка PHP Exif"
441
 
442
+ #: bws_menu.php:489
443
  msgid "PHP IPTC support"
444
  msgstr "Поддержка PHP IPTC"
445
 
446
+ #: bws_menu.php:490
447
  msgid "PHP XML support"
448
  msgstr "Поддержка PHP XML"
449
 
450
+ #: bws_menu.php:491
451
  msgid "Site URL"
452
  msgstr "Адрес сайта"
453
 
454
+ #: bws_menu.php:492
455
  msgid "Home URL"
456
  msgstr "Основной адрес сайта"
457
 
458
+ #: bws_menu.php:495
459
  msgid "WordPress Version"
460
  msgstr "Версия WordPress"
461
 
462
+ #: bws_menu.php:496
463
  msgid "WordPress DB Version"
464
  msgstr "Версия базы данных WordPress"
465
 
466
+ #: bws_menu.php:497
467
  msgid "Multisite"
468
  msgstr "Мультиблог"
469
 
470
+ #: bws_menu.php:498
471
  msgid "Active Theme"
472
  msgstr "Текущая тема"
473
 
474
+ #: bws_menu.php:513
475
  msgid "Please enter a valid email address."
476
  msgstr "Пожалуйста, введите валидный емайл."
477
 
478
+ #: bws_menu.php:517
479
  msgid "Email with system info is sent to "
480
  msgstr "E-mail с системной информацией отправлен на"
481
 
482
+ #: bws_menu.php:521
483
  msgid "Thank you for contacting us."
484
  msgstr "Спасибо что связались с нами."
485
 
486
+ #: bws_menu.php:554
487
  msgid "Sorry, email message could not be delivered."
488
  msgstr "Извините, ваш email не может быть отправлен."
489
 
490
+ #: bws_menu.php:562
491
  msgid "Need help?"
492
  msgstr "Нужна помощь?"
493
 
494
+ #: bws_menu.php:563
495
  msgid "Client area"
496
  msgstr "Client area"
497
 
498
+ #: bws_menu.php:564 bws_menu.php:875
 
499
  msgid "System status"
500
  msgstr "Системная информация"
501
 
502
+ #: bws_menu.php:569
503
  msgid "Plugins"
504
  msgstr "Плагины"
505
 
506
+ #: bws_menu.php:571
507
  msgid "Themes"
508
  msgstr "Темы"
509
 
510
+ #: bws_menu.php:576
511
  msgid "All"
512
  msgstr "Все"
513
 
514
+ #: bws_menu.php:577
515
  msgid "Installed"
516
  msgstr "Установленные"
517
 
518
+ #: bws_menu.php:578
519
  msgid "Recommended"
520
  msgstr "Рекомендованные"
521
 
522
+ #: bws_menu.php:582
523
  msgid "Installed plugins"
524
  msgstr "Установленные плагины"
525
 
526
+ #: bws_menu.php:614 bws_menu.php:663
 
527
  msgid "Settings"
528
  msgstr "Настройки"
529
 
530
+ #: bws_menu.php:635 bws_menu.php:692
 
531
  msgid "Activate this plugin"
532
  msgstr "Активировать плагин"
533
 
534
+ #: bws_menu.php:650 bws_menu.php:680 bws_menu.php:726
 
 
535
  msgid "Go"
536
  msgstr "Перейти на"
537
 
538
+ #: bws_menu.php:654 bws_menu.php:684 bws_menu.php:730
 
 
539
  msgid "DONATE"
540
  msgstr "Пожертвовать"
541
 
542
+ #: bws_menu.php:700
543
  msgid "Recommended plugins"
544
  msgstr "Рекомендованные к установке плагины"
545
 
546
+ #: bws_menu.php:738
547
  msgid "Install now"
548
  msgstr "Установить"
549
 
550
+ #: bws_menu.php:759
551
  msgid "Try again"
552
  msgstr "Попробовать снова"
553
 
554
+ #: bws_menu.php:777
555
  #, php-format
556
  msgid "Preview &#8220;%s&#8221;"
557
  msgstr "Просмотр &#8220;%s&#8221;"
558
 
559
+ #: bws_menu.php:808
560
  #, php-format
561
  msgid "Install %s"
562
  msgstr "Установлено %s"
563
 
564
+ #: bws_menu.php:808
565
  msgid "Install Now"
566
  msgstr "Установить"
567
 
568
+ #: bws_menu.php:811
569
  #, php-format
570
  msgid "Update to version %s"
571
  msgstr "Обновить до версии %s"
572
 
573
+ #: bws_menu.php:811
574
  msgid "Update"
575
  msgstr "Обновить"
576
 
577
+ #: bws_menu.php:818
578
  #, php-format
579
  msgid "Preview %s"
580
  msgstr "Просмотр %s"
581
 
582
+ #: bws_menu.php:818
583
  msgid "Preview"
584
  msgstr "Просмотр"
585
 
586
+ #: bws_menu.php:824 bws_menu.php:856
 
587
  #, php-format
588
  msgid "By %s"
589
  msgstr "%s"
590
 
591
+ #: bws_menu.php:830
592
  msgid "Details"
593
  msgstr "Детали"
594
 
595
+ #: bws_menu.php:862
596
  msgid "Already Installed"
597
  msgstr "Уже установлена"
598
 
599
+ #: bws_menu.php:878
600
  msgid "Environment"
601
  msgstr "Системная среда"
602
 
603
+ #: bws_menu.php:889
604
  msgid "Active Plugins"
605
  msgstr "Активированные плагины"
606
 
607
+ #: bws_menu.php:902
608
  msgid "Inactive Plugins"
609
  msgstr "Неактивированные плагины"
610
 
611
+ #: bws_menu.php:918
612
  msgid "Send to support"
613
  msgstr "Отправить в тех. поддержку"
614
 
615
+ #: bws_menu.php:925
616
  msgid "Send to custom email &#187;"
617
  msgstr "Отправить на емейл &#187;"
618
 
bws_menu/languages/bestwebsoft-sr_RS.mo CHANGED
Binary file
bws_menu/languages/bestwebsoft-sr_RS.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: 2015-03-05 13:14+0300\n"
6
- "PO-Revision-Date: 2015-03-05 13:15+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Andrijana Nikolic <andrijanan@webhostinggeeks.com>\n"
9
  "Language: fr_FR\n"
@@ -17,517 +17,582 @@ msgstr ""
17
  "X-Generator: Poedit 1.5.4\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: bws_functions.php:84
21
  msgid "requires"
22
  msgstr ""
23
 
24
- #: bws_functions.php:85
25
  msgid ""
26
  "or higher, that is why it has been deactivated! Please upgrade WordPress and "
27
  "try again."
28
  msgstr ""
29
 
30
- #: bws_functions.php:86
31
  msgid "Back to the WordPress"
32
  msgstr ""
33
 
34
- #: bws_functions.php:87
35
  #, fuzzy
36
  msgid "Plugins page"
37
  msgstr "Pro moduli"
38
 
39
- #: bws_functions.php:134
40
- #, fuzzy
41
- msgid "Learn More"
42
- msgstr "Pročitaj više"
43
-
44
- #: bws_functions.php:137
45
  msgid "It’s time to upgrade your"
46
  msgstr ""
47
 
48
- #: bws_functions.php:137
49
  #, fuzzy
50
  msgid "to"
51
  msgstr "vrh"
52
 
53
- #: bws_functions.php:137
54
  #, fuzzy
55
  msgid "version!"
56
  msgstr "PHP Verzija"
57
 
58
- #: bws_functions.php:138
59
  msgid "Extend standard plugin functionality with new great options."
60
  msgstr ""
61
 
62
- #: bws_functions.php:158
 
 
 
 
 
63
  msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
64
  msgstr ""
65
 
66
- #: bws_functions.php:159
67
  #, fuzzy
68
  msgid "Rate the plugin"
69
  msgstr "Aktivirani moduli"
70
 
71
- #: bws_functions.php:162
72
  #, fuzzy
73
  msgid "If there is something wrong about it, please contact us"
74
  msgstr "Ako imate pitanja molimo da nas kontaktirate preko"
75
 
76
- #: bws_functions.php:179 bws_functions.php:215 bws_functions.php:395
77
  msgid "Wrong license key"
78
  msgstr ""
79
 
80
- #: bws_functions.php:209 bws_functions.php:389 bws_functions.php:426
81
  msgid ""
82
  "Something went wrong. Please try again later. If the error appears again, "
83
  "please contact us"
84
  msgstr ""
85
 
86
- #: bws_functions.php:209 bws_functions.php:389 bws_functions.php:426
87
  msgid "We are sorry for inconvenience."
88
  msgstr ""
89
 
90
- #: bws_functions.php:217 bws_functions.php:397
91
  msgid "This license key is bind to another site"
92
  msgstr ""
93
 
94
- #: bws_functions.php:219 bws_functions.php:348
95
  msgid ""
96
  "Unfortunately, you have exceeded the number of available tries per day. "
97
  "Please, upload the plugin manually."
98
  msgstr ""
99
 
100
- #: bws_functions.php:221
101
  msgid ""
102
  "Unfortunately, Your license has expired. To continue getting top-priority "
103
  "support and plugin updates you should extend it in your"
104
  msgstr ""
105
 
106
- #: bws_functions.php:223
107
  msgid ""
108
  "Unfortunately, the PRO licence was already installed to this domain. The PRO "
109
  "Trial license can be installed only once."
110
  msgstr ""
111
 
112
- #: bws_functions.php:234 bws_functions.php:256 bws_functions.php:278
113
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
114
  msgstr ""
115
 
116
- #: bws_functions.php:246
117
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
118
  msgstr ""
119
 
120
- #: bws_functions.php:252
121
  msgid ""
122
  "Your server does not support either ZipArchive or Phar. Please, upload the "
123
  "plugin manually"
124
  msgstr ""
125
 
126
- #: bws_functions.php:259
127
  msgid "UploadDir is not writable. Please, upload the plugin manually"
128
  msgstr ""
129
 
130
- #: bws_functions.php:282
131
  msgid ""
132
  "Something went wrong. Try again later or upload the plugin manually. We are "
133
  "sorry for inconvenience."
134
  msgstr ""
135
 
136
- #: bws_functions.php:307
137
  msgid "Please, enter Your license key"
138
  msgstr ""
139
 
140
- #: bws_functions.php:324
141
  msgid ""
142
  "Congratulations! The PRO version of the plugin is successfully download and "
143
  "activated."
144
  msgstr ""
145
 
146
- #: bws_functions.php:326
147
  msgid "Please, go to"
148
  msgstr ""
149
 
150
- #: bws_functions.php:326
151
  #, fuzzy
152
  msgid "the setting page"
153
  msgstr "na stranici za podešavanje modula ("
154
 
155
- #: bws_functions.php:327
156
  msgid "You will be redirected automatically in 5 seconds."
157
  msgstr ""
158
 
159
- #: bws_functions.php:332
160
  msgid "You can download and activate"
161
  msgstr ""
162
 
163
- #: bws_functions.php:334
164
  msgid "version of this plugin by entering Your license key."
165
  msgstr ""
166
 
167
- #: bws_functions.php:336
168
  msgid ""
169
  "You can find your license key on your personal page Client area, by clicking "
170
  "on the link"
171
  msgstr ""
172
 
173
- #: bws_functions.php:338
174
  msgid "(your username is the email you specify when purchasing the product)."
175
  msgstr ""
176
 
177
- #: bws_functions.php:346 bws_functions.php:354 bws_menu.php:613
178
- #: bws_menu.php:670
 
 
 
 
 
 
 
 
 
179
  #, fuzzy
180
  msgid "Activate"
181
  msgstr "Aktivirani moduli"
182
 
 
 
 
 
 
 
 
 
 
 
183
  #: bws_functions.php:399
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
184
  msgid ""
185
  "This license key is valid, but Your license has expired. If you want to "
186
  "update our plugin in future, you should extend the license."
187
  msgstr ""
188
 
189
- #: bws_functions.php:401
190
  msgid "Unfortunately, you have exceeded the number of available tries."
191
  msgstr ""
192
 
193
- #: bws_functions.php:405
194
- msgid "The license key is valid. Your license will expire on"
 
 
 
 
 
 
195
  msgstr ""
196
 
197
- #: bws_functions.php:407
198
  msgid "The license key is valid."
199
  msgstr ""
200
 
201
- #: bws_functions.php:431
 
 
 
 
202
  msgid "Please, enter your license key"
203
  msgstr ""
204
 
205
- #: bws_functions.php:444
206
  msgid ""
207
  "If needed you can check if the license key is correct or reenter it in the "
208
  "field below. You can find your license key on your personal page - Client "
209
  "area - on our website"
210
  msgstr ""
211
 
212
- #: bws_functions.php:444
213
  msgid ""
214
  "(your username is the email you specify when purchasing the product). If "
215
  "necessary, please submit \"Lost your password?\" request."
216
  msgstr ""
217
 
218
- #: bws_functions.php:448
219
  msgid "Check license key"
220
  msgstr ""
221
 
222
- #: bws_functions.php:462
223
  msgid ""
224
  "WARNING: We have noticed illegal use of our plugin by you. We strongly "
225
  "recommend you to solve the problem within 24 hours, otherwise the plugin "
226
  "will be deactivated. Please go to your personal"
227
  msgstr ""
228
 
229
- #: bws_functions.php:462
230
  msgid ""
231
  "(your username is the email you specify when purchasing the product), where "
232
  "you can make the necessary changes."
233
  msgstr ""
234
 
235
- #: bws_functions.php:468
 
 
 
 
 
 
236
  msgid ""
237
  "Your license has expired. To continue getting top-priority support and "
238
  "plugin updates you should extend it."
239
  msgstr ""
240
 
241
- #: bws_functions.php:468 bws_functions.php:502 bws_menu.php:589
242
- #: bws_menu.php:611 bws_menu.php:638 bws_menu.php:668 bws_menu.php:714
243
  #, fuzzy
244
  msgid "Learn more"
245
  msgstr "Pročitaj više"
246
 
247
- #: bws_functions.php:502
 
 
 
 
 
 
 
 
 
 
 
 
 
248
  msgid "You license for"
249
  msgstr ""
250
 
251
- #: bws_functions.php:502
252
  msgid "expires on"
253
  msgstr ""
254
 
255
- #: bws_functions.php:502
256
  msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
257
  msgstr ""
258
 
259
- #: bws_functions.php:580
260
  msgid "Close"
261
  msgstr ""
262
 
263
- #: bws_menu.php:426
264
  msgid "Not set"
265
  msgstr "Nije podešeno"
266
 
267
- #: bws_menu.php:428 bws_menu.php:429
268
  msgid "On"
269
  msgstr "Uključeno"
270
 
271
- #: bws_menu.php:428 bws_menu.php:429
272
  msgid "Off"
273
  msgstr "Isključeno"
274
 
275
- #: bws_menu.php:430 bws_menu.php:431 bws_menu.php:432 bws_menu.php:433
276
- #: bws_menu.php:434 bws_menu.php:446
277
  msgid "N/A"
278
  msgstr "N/A"
279
 
280
- #: bws_menu.php:434
281
  msgid " Mb"
282
  msgstr " Mb"
283
 
284
- #: bws_menu.php:435 bws_menu.php:436 bws_menu.php:437 bws_menu.php:442
285
  msgid "Yes"
286
  msgstr "Da"
287
 
288
- #: bws_menu.php:435 bws_menu.php:436 bws_menu.php:437 bws_menu.php:444
289
  msgid "No"
290
  msgstr "Ne"
291
 
292
- #: bws_menu.php:454
293
  msgid "Operating System"
294
  msgstr "Operativni Sistem"
295
 
296
- #: bws_menu.php:455
297
  msgid "Server"
298
  msgstr "Server"
299
 
300
- #: bws_menu.php:456
301
  msgid "Memory usage"
302
  msgstr "Upotreba memorije"
303
 
304
- #: bws_menu.php:457
305
  msgid "MYSQL Version"
306
  msgstr "MYSQL Verzija"
307
 
308
- #: bws_menu.php:458
309
  msgid "SQL Mode"
310
  msgstr "SQL način"
311
 
312
- #: bws_menu.php:459
313
  msgid "PHP Version"
314
  msgstr "PHP Verzija"
315
 
316
- #: bws_menu.php:460
317
  msgid "PHP Safe Mode"
318
  msgstr "PHP Sigurni način"
319
 
320
- #: bws_menu.php:461
321
  msgid "PHP Allow URL fopen"
322
  msgstr "PHP Dozvoli URL fopen"
323
 
324
- #: bws_menu.php:462
325
  msgid "PHP Memory Limit"
326
  msgstr "PHP Ograničenje memorije"
327
 
328
- #: bws_menu.php:463
329
  #, fuzzy
330
  msgid "PHP Max Upload Size"
331
  msgstr "Envoi de fichier"
332
 
333
- #: bws_menu.php:464
334
  msgid "PHP Max Post Size"
335
  msgstr "PHP Max veličina za učitavanje"
336
 
337
- #: bws_menu.php:465
338
  msgid "PHP Max Script Execute Time"
339
  msgstr "PHP Max veličina posta"
340
 
341
- #: bws_menu.php:466
342
  msgid "PHP Exif support"
343
  msgstr "PHP Exif podrška"
344
 
345
- #: bws_menu.php:467
346
  msgid "PHP IPTC support"
347
  msgstr "PHP IPTC podrška"
348
 
349
- #: bws_menu.php:468
350
  msgid "PHP XML support"
351
  msgstr "PHP XML podrška"
352
 
353
- #: bws_menu.php:469
354
  #, fuzzy
355
  msgid "Site URL"
356
  msgstr "URL du lien"
357
 
358
- #: bws_menu.php:470
359
  msgid "Home URL"
360
  msgstr "URL naslovne"
361
 
362
- #: bws_menu.php:473
363
  msgid "WordPress Version"
364
  msgstr "WordPress Verzija"
365
 
366
- #: bws_menu.php:474
367
  msgid "WordPress DB Version"
368
  msgstr "WordPress DB Verzija"
369
 
370
- #: bws_menu.php:475
371
  msgid "Multisite"
372
  msgstr "Višenamenski sajt"
373
 
374
- #: bws_menu.php:476
375
  msgid "Active Theme"
376
  msgstr "Aktivna tema"
377
 
378
- #: bws_menu.php:491
379
  msgid "Please enter a valid email address."
380
  msgstr "Molimo unesite važeću mejl adresu"
381
 
382
- #: bws_menu.php:495
383
  msgid "Email with system info is sent to "
384
  msgstr "Mejl sa sistemskim informacijama je poslat na"
385
 
386
- #: bws_menu.php:499
387
  msgid "Thank you for contacting us."
388
  msgstr "Hvala što ste nas kontaktirali"
389
 
390
- #: bws_menu.php:532
391
  msgid "Sorry, email message could not be delivered."
392
  msgstr "Nažalost mejl poruka nije prosleđena"
393
 
394
- #: bws_menu.php:540
395
  msgid "Need help?"
396
  msgstr ""
397
 
398
- #: bws_menu.php:541
399
  msgid "Client area"
400
  msgstr ""
401
 
402
- #: bws_menu.php:542 bws_menu.php:853
403
  msgid "System status"
404
  msgstr "Sistemski status"
405
 
406
- #: bws_menu.php:547
407
  #, fuzzy
408
  msgid "Plugins"
409
  msgstr "Pro moduli"
410
 
411
- #: bws_menu.php:549
412
  msgid "Themes"
413
  msgstr ""
414
 
415
- #: bws_menu.php:554
416
  msgid "All"
417
  msgstr ""
418
 
419
- #: bws_menu.php:555
420
  #, fuzzy
421
  msgid "Installed"
422
  msgstr "Instalacija %s"
423
 
424
- #: bws_menu.php:556
425
  #, fuzzy
426
  msgid "Recommended"
427
  msgstr "Preporučeni moduli"
428
 
429
- #: bws_menu.php:560
430
  msgid "Installed plugins"
431
  msgstr "Instalirani moduli"
432
 
433
- #: bws_menu.php:592 bws_menu.php:641
434
  msgid "Settings"
435
  msgstr "Podešavanja"
436
 
437
- #: bws_menu.php:613 bws_menu.php:670
438
  #, fuzzy
439
  msgid "Activate this plugin"
440
  msgstr "Aktivirani moduli"
441
 
442
- #: bws_menu.php:628 bws_menu.php:658 bws_menu.php:704
443
  msgid "Go"
444
  msgstr ""
445
 
446
- #: bws_menu.php:632 bws_menu.php:662 bws_menu.php:708
447
  msgid "DONATE"
448
  msgstr ""
449
 
450
- #: bws_menu.php:678
451
  msgid "Recommended plugins"
452
  msgstr "Preporučeni moduli"
453
 
454
- #: bws_menu.php:716
455
  #, fuzzy
456
  msgid "Install now"
457
  msgstr "Instalacija %s"
458
 
459
- #: bws_menu.php:737
460
  msgid "Try again"
461
  msgstr ""
462
 
463
- #: bws_menu.php:755
464
  #, php-format
465
  msgid "Preview &#8220;%s&#8221;"
466
  msgstr ""
467
 
468
- #: bws_menu.php:786
469
  #, php-format
470
  msgid "Install %s"
471
  msgstr "Instalacija %s"
472
 
473
- #: bws_menu.php:786
474
  #, fuzzy
475
  msgid "Install Now"
476
  msgstr "Instalacija %s"
477
 
478
- #: bws_menu.php:789
479
  #, php-format
480
  msgid "Update to version %s"
481
  msgstr ""
482
 
483
- #: bws_menu.php:789
484
  #, fuzzy
485
  msgid "Update"
486
  msgstr "date"
487
 
488
- #: bws_menu.php:796
489
  #, php-format
490
  msgid "Preview %s"
491
  msgstr ""
492
 
493
- #: bws_menu.php:796
494
  msgid "Preview"
495
  msgstr ""
496
 
497
- #: bws_menu.php:802 bws_menu.php:834
498
  #, php-format
499
  msgid "By %s"
500
  msgstr ""
501
 
502
- #: bws_menu.php:808
503
  msgid "Details"
504
  msgstr ""
505
 
506
- #: bws_menu.php:840
507
  #, fuzzy
508
  msgid "Already Installed"
509
  msgstr "Instalacija %s"
510
 
511
- #: bws_menu.php:856
512
  msgid "Environment"
513
  msgstr "Okruženje"
514
 
515
- #: bws_menu.php:867
516
  #, fuzzy
517
  msgid "Active Plugins"
518
  msgstr "Extensions activées"
519
 
520
- #: bws_menu.php:880
521
  #, fuzzy
522
  msgid "Inactive Plugins"
523
  msgstr "Extensions activées"
524
 
525
- #: bws_menu.php:896
526
  #, fuzzy
527
  msgid "Send to support"
528
  msgstr "Soutien"
529
 
530
- #: bws_menu.php:903
531
  msgid "Send to custom email &#187;"
532
  msgstr "Pošalji na korisnički mejl &#187;"
533
 
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-04-20 14:47+0300\n"
6
+ "PO-Revision-Date: 2015-04-20 14:47+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Andrijana Nikolic <andrijanan@webhostinggeeks.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:85
21
  msgid "requires"
22
  msgstr ""
23
 
24
+ #: bws_functions.php:87
25
  msgid ""
26
  "or higher, that is why it has been deactivated! Please upgrade WordPress and "
27
  "try again."
28
  msgstr ""
29
 
30
+ #: bws_functions.php:88
31
  msgid "Back to the WordPress"
32
  msgstr ""
33
 
34
+ #: bws_functions.php:90
35
  #, fuzzy
36
  msgid "Plugins page"
37
  msgstr "Pro moduli"
38
 
39
+ #: bws_functions.php:147
 
 
 
 
 
40
  msgid "It’s time to upgrade your"
41
  msgstr ""
42
 
43
+ #: bws_functions.php:147
44
  #, fuzzy
45
  msgid "to"
46
  msgstr "vrh"
47
 
48
+ #: bws_functions.php:147
49
  #, fuzzy
50
  msgid "version!"
51
  msgstr "PHP Verzija"
52
 
53
+ #: bws_functions.php:148
54
  msgid "Extend standard plugin functionality with new great options."
55
  msgstr ""
56
 
57
+ #: bws_functions.php:151
58
+ #, fuzzy
59
+ msgid "Learn More"
60
+ msgstr "Pročitaj više"
61
+
62
+ #: bws_functions.php:168
63
  msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
64
  msgstr ""
65
 
66
+ #: bws_functions.php:169
67
  #, fuzzy
68
  msgid "Rate the plugin"
69
  msgstr "Aktivirani moduli"
70
 
71
+ #: bws_functions.php:172
72
  #, fuzzy
73
  msgid "If there is something wrong about it, please contact us"
74
  msgstr "Ako imate pitanja molimo da nas kontaktirate preko"
75
 
76
+ #: bws_functions.php:189 bws_functions.php:225
77
  msgid "Wrong license key"
78
  msgstr ""
79
 
80
+ #: bws_functions.php:219 bws_functions.php:451 bws_functions.php:502
81
  msgid ""
82
  "Something went wrong. Please try again later. If the error appears again, "
83
  "please contact us"
84
  msgstr ""
85
 
86
+ #: bws_functions.php:219 bws_functions.php:451 bws_functions.php:502
87
  msgid "We are sorry for inconvenience."
88
  msgstr ""
89
 
90
+ #: bws_functions.php:227
91
  msgid "This license key is bind to another site"
92
  msgstr ""
93
 
94
+ #: bws_functions.php:229 bws_functions.php:361
95
  msgid ""
96
  "Unfortunately, you have exceeded the number of available tries per day. "
97
  "Please, upload the plugin manually."
98
  msgstr ""
99
 
100
+ #: bws_functions.php:231
101
  msgid ""
102
  "Unfortunately, Your license has expired. To continue getting top-priority "
103
  "support and plugin updates you should extend it in your"
104
  msgstr ""
105
 
106
+ #: bws_functions.php:233
107
  msgid ""
108
  "Unfortunately, the PRO licence was already installed to this domain. The PRO "
109
  "Trial license can be installed only once."
110
  msgstr ""
111
 
112
+ #: bws_functions.php:244 bws_functions.php:266 bws_functions.php:288
113
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
114
  msgstr ""
115
 
116
+ #: bws_functions.php:256
117
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
118
  msgstr ""
119
 
120
+ #: bws_functions.php:262
121
  msgid ""
122
  "Your server does not support either ZipArchive or Phar. Please, upload the "
123
  "plugin manually"
124
  msgstr ""
125
 
126
+ #: bws_functions.php:269
127
  msgid "UploadDir is not writable. Please, upload the plugin manually"
128
  msgstr ""
129
 
130
+ #: bws_functions.php:292
131
  msgid ""
132
  "Something went wrong. Try again later or upload the plugin manually. We are "
133
  "sorry for inconvenience."
134
  msgstr ""
135
 
136
+ #: bws_functions.php:317
137
  msgid "Please, enter Your license key"
138
  msgstr ""
139
 
140
+ #: bws_functions.php:334
141
  msgid ""
142
  "Congratulations! The PRO version of the plugin is successfully download and "
143
  "activated."
144
  msgstr ""
145
 
146
+ #: bws_functions.php:336 bws_functions.php:418
147
  msgid "Please, go to"
148
  msgstr ""
149
 
150
+ #: bws_functions.php:336 bws_functions.php:418
151
  #, fuzzy
152
  msgid "the setting page"
153
  msgstr "na stranici za podešavanje modula ("
154
 
155
+ #: bws_functions.php:337 bws_functions.php:419
156
  msgid "You will be redirected automatically in 5 seconds."
157
  msgstr ""
158
 
159
+ #: bws_functions.php:342
160
  msgid "You can download and activate"
161
  msgstr ""
162
 
163
+ #: bws_functions.php:344
164
  msgid "version of this plugin by entering Your license key."
165
  msgstr ""
166
 
167
+ #: bws_functions.php:346 bws_functions.php:387
168
  msgid ""
169
  "You can find your license key on your personal page Client area, by clicking "
170
  "on the link"
171
  msgstr ""
172
 
173
+ #: bws_functions.php:348 bws_functions.php:389
174
  msgid "(your username is the email you specify when purchasing the product)."
175
  msgstr ""
176
 
177
+ #: bws_functions.php:352
178
+ msgid "or"
179
+ msgstr ""
180
+
181
+ #: bws_functions.php:352
182
+ #, php-format
183
+ msgid "Start Your Free %s-Day Trial Now"
184
+ msgstr ""
185
+
186
+ #: bws_functions.php:358 bws_functions.php:367 bws_functions.php:397
187
+ #: bws_functions.php:405 bws_menu.php:635 bws_menu.php:692
188
  #, fuzzy
189
  msgid "Activate"
190
  msgstr "Aktivirani moduli"
191
 
192
+ #: bws_functions.php:384 bws_functions.php:477
193
+ #, php-format
194
+ msgid ""
195
+ "In order to continue using the plugin it is necessary to buy a %s license."
196
+ msgstr ""
197
+
198
+ #: bws_functions.php:385
199
+ msgid "After that you can activate it by entering your license key."
200
+ msgstr ""
201
+
202
  #: bws_functions.php:399
203
+ msgid "Unfortunately, you have exceeded the number of available tries per day."
204
+ msgstr ""
205
+
206
+ #: bws_functions.php:416
207
+ msgid ""
208
+ "Congratulations! The PRO license of the plugin is successfully activated."
209
+ msgstr ""
210
+
211
+ #: bws_functions.php:457
212
+ msgid "Wrong license key."
213
+ msgstr ""
214
+
215
+ #: bws_functions.php:459
216
+ msgid "This license key is bind to another site."
217
+ msgstr ""
218
+
219
+ #: bws_functions.php:461
220
  msgid ""
221
  "This license key is valid, but Your license has expired. If you want to "
222
  "update our plugin in future, you should extend the license."
223
  msgstr ""
224
 
225
+ #: bws_functions.php:463
226
  msgid "Unfortunately, you have exceeded the number of available tries."
227
  msgstr ""
228
 
229
+ #: bws_functions.php:465
230
+ msgid ""
231
+ "Unfortunately, the PRO Trial licence was already installed to this domain. "
232
+ "The PRO Trial license can be installed only once."
233
+ msgstr ""
234
+
235
+ #: bws_functions.php:469
236
+ msgid "The PRO Trial license key is valid."
237
  msgstr ""
238
 
239
+ #: bws_functions.php:471
240
  msgid "The license key is valid."
241
  msgstr ""
242
 
243
+ #: bws_functions.php:474
244
+ msgid "Your license will expire on"
245
+ msgstr ""
246
+
247
+ #: bws_functions.php:507
248
  msgid "Please, enter your license key"
249
  msgstr ""
250
 
251
+ #: bws_functions.php:520
252
  msgid ""
253
  "If needed you can check if the license key is correct or reenter it in the "
254
  "field below. You can find your license key on your personal page - Client "
255
  "area - on our website"
256
  msgstr ""
257
 
258
+ #: bws_functions.php:520
259
  msgid ""
260
  "(your username is the email you specify when purchasing the product). If "
261
  "necessary, please submit \"Lost your password?\" request."
262
  msgstr ""
263
 
264
+ #: bws_functions.php:524
265
  msgid "Check license key"
266
  msgstr ""
267
 
268
+ #: bws_functions.php:538
269
  msgid ""
270
  "WARNING: We have noticed illegal use of our plugin by you. We strongly "
271
  "recommend you to solve the problem within 24 hours, otherwise the plugin "
272
  "will be deactivated. Please go to your personal"
273
  msgstr ""
274
 
275
+ #: bws_functions.php:538
276
  msgid ""
277
  "(your username is the email you specify when purchasing the product), where "
278
  "you can make the necessary changes."
279
  msgstr ""
280
 
281
+ #: bws_functions.php:546
282
+ msgid ""
283
+ "Notice: Your PRO Trial license has expired. To continue using the plugin you "
284
+ "should buy a PRO license"
285
+ msgstr ""
286
+
287
+ #: bws_functions.php:548
288
  msgid ""
289
  "Your license has expired. To continue getting top-priority support and "
290
  "plugin updates you should extend it."
291
  msgstr ""
292
 
293
+ #: bws_functions.php:548 bws_functions.php:601 bws_menu.php:611
294
+ #: bws_menu.php:633 bws_menu.php:660 bws_menu.php:690 bws_menu.php:736
295
  #, fuzzy
296
  msgid "Learn more"
297
  msgstr "Pročitaj više"
298
 
299
+ #: bws_functions.php:558
300
+ #, php-format
301
+ msgid "Notice: You are using the PRO Trial license of %s plugin."
302
+ msgstr ""
303
+
304
+ #: bws_functions.php:560
305
+ msgid "Notice: You are using the PRO Trial license of plugin."
306
+ msgstr ""
307
+
308
+ #: bws_functions.php:563
309
+ msgid "The PRO Trial license will expire on"
310
+ msgstr ""
311
+
312
+ #: bws_functions.php:601
313
  msgid "You license for"
314
  msgstr ""
315
 
316
+ #: bws_functions.php:601
317
  msgid "expires on"
318
  msgstr ""
319
 
320
+ #: bws_functions.php:601
321
  msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
322
  msgstr ""
323
 
324
+ #: bws_functions.php:676
325
  msgid "Close"
326
  msgstr ""
327
 
328
+ #: bws_menu.php:448
329
  msgid "Not set"
330
  msgstr "Nije podešeno"
331
 
332
+ #: bws_menu.php:450 bws_menu.php:451
333
  msgid "On"
334
  msgstr "Uključeno"
335
 
336
+ #: bws_menu.php:450 bws_menu.php:451
337
  msgid "Off"
338
  msgstr "Isključeno"
339
 
340
+ #: bws_menu.php:452 bws_menu.php:453 bws_menu.php:454 bws_menu.php:455
341
+ #: bws_menu.php:456 bws_menu.php:468
342
  msgid "N/A"
343
  msgstr "N/A"
344
 
345
+ #: bws_menu.php:456
346
  msgid " Mb"
347
  msgstr " Mb"
348
 
349
+ #: bws_menu.php:457 bws_menu.php:458 bws_menu.php:459 bws_menu.php:464
350
  msgid "Yes"
351
  msgstr "Da"
352
 
353
+ #: bws_menu.php:457 bws_menu.php:458 bws_menu.php:459 bws_menu.php:466
354
  msgid "No"
355
  msgstr "Ne"
356
 
357
+ #: bws_menu.php:476
358
  msgid "Operating System"
359
  msgstr "Operativni Sistem"
360
 
361
+ #: bws_menu.php:477
362
  msgid "Server"
363
  msgstr "Server"
364
 
365
+ #: bws_menu.php:478
366
  msgid "Memory usage"
367
  msgstr "Upotreba memorije"
368
 
369
+ #: bws_menu.php:479
370
  msgid "MYSQL Version"
371
  msgstr "MYSQL Verzija"
372
 
373
+ #: bws_menu.php:480
374
  msgid "SQL Mode"
375
  msgstr "SQL način"
376
 
377
+ #: bws_menu.php:481
378
  msgid "PHP Version"
379
  msgstr "PHP Verzija"
380
 
381
+ #: bws_menu.php:482
382
  msgid "PHP Safe Mode"
383
  msgstr "PHP Sigurni način"
384
 
385
+ #: bws_menu.php:483
386
  msgid "PHP Allow URL fopen"
387
  msgstr "PHP Dozvoli URL fopen"
388
 
389
+ #: bws_menu.php:484
390
  msgid "PHP Memory Limit"
391
  msgstr "PHP Ograničenje memorije"
392
 
393
+ #: bws_menu.php:485
394
  #, fuzzy
395
  msgid "PHP Max Upload Size"
396
  msgstr "Envoi de fichier"
397
 
398
+ #: bws_menu.php:486
399
  msgid "PHP Max Post Size"
400
  msgstr "PHP Max veličina za učitavanje"
401
 
402
+ #: bws_menu.php:487
403
  msgid "PHP Max Script Execute Time"
404
  msgstr "PHP Max veličina posta"
405
 
406
+ #: bws_menu.php:488
407
  msgid "PHP Exif support"
408
  msgstr "PHP Exif podrška"
409
 
410
+ #: bws_menu.php:489
411
  msgid "PHP IPTC support"
412
  msgstr "PHP IPTC podrška"
413
 
414
+ #: bws_menu.php:490
415
  msgid "PHP XML support"
416
  msgstr "PHP XML podrška"
417
 
418
+ #: bws_menu.php:491
419
  #, fuzzy
420
  msgid "Site URL"
421
  msgstr "URL du lien"
422
 
423
+ #: bws_menu.php:492
424
  msgid "Home URL"
425
  msgstr "URL naslovne"
426
 
427
+ #: bws_menu.php:495
428
  msgid "WordPress Version"
429
  msgstr "WordPress Verzija"
430
 
431
+ #: bws_menu.php:496
432
  msgid "WordPress DB Version"
433
  msgstr "WordPress DB Verzija"
434
 
435
+ #: bws_menu.php:497
436
  msgid "Multisite"
437
  msgstr "Višenamenski sajt"
438
 
439
+ #: bws_menu.php:498
440
  msgid "Active Theme"
441
  msgstr "Aktivna tema"
442
 
443
+ #: bws_menu.php:513
444
  msgid "Please enter a valid email address."
445
  msgstr "Molimo unesite važeću mejl adresu"
446
 
447
+ #: bws_menu.php:517
448
  msgid "Email with system info is sent to "
449
  msgstr "Mejl sa sistemskim informacijama je poslat na"
450
 
451
+ #: bws_menu.php:521
452
  msgid "Thank you for contacting us."
453
  msgstr "Hvala što ste nas kontaktirali"
454
 
455
+ #: bws_menu.php:554
456
  msgid "Sorry, email message could not be delivered."
457
  msgstr "Nažalost mejl poruka nije prosleđena"
458
 
459
+ #: bws_menu.php:562
460
  msgid "Need help?"
461
  msgstr ""
462
 
463
+ #: bws_menu.php:563
464
  msgid "Client area"
465
  msgstr ""
466
 
467
+ #: bws_menu.php:564 bws_menu.php:875
468
  msgid "System status"
469
  msgstr "Sistemski status"
470
 
471
+ #: bws_menu.php:569
472
  #, fuzzy
473
  msgid "Plugins"
474
  msgstr "Pro moduli"
475
 
476
+ #: bws_menu.php:571
477
  msgid "Themes"
478
  msgstr ""
479
 
480
+ #: bws_menu.php:576
481
  msgid "All"
482
  msgstr ""
483
 
484
+ #: bws_menu.php:577
485
  #, fuzzy
486
  msgid "Installed"
487
  msgstr "Instalacija %s"
488
 
489
+ #: bws_menu.php:578
490
  #, fuzzy
491
  msgid "Recommended"
492
  msgstr "Preporučeni moduli"
493
 
494
+ #: bws_menu.php:582
495
  msgid "Installed plugins"
496
  msgstr "Instalirani moduli"
497
 
498
+ #: bws_menu.php:614 bws_menu.php:663
499
  msgid "Settings"
500
  msgstr "Podešavanja"
501
 
502
+ #: bws_menu.php:635 bws_menu.php:692
503
  #, fuzzy
504
  msgid "Activate this plugin"
505
  msgstr "Aktivirani moduli"
506
 
507
+ #: bws_menu.php:650 bws_menu.php:680 bws_menu.php:726
508
  msgid "Go"
509
  msgstr ""
510
 
511
+ #: bws_menu.php:654 bws_menu.php:684 bws_menu.php:730
512
  msgid "DONATE"
513
  msgstr ""
514
 
515
+ #: bws_menu.php:700
516
  msgid "Recommended plugins"
517
  msgstr "Preporučeni moduli"
518
 
519
+ #: bws_menu.php:738
520
  #, fuzzy
521
  msgid "Install now"
522
  msgstr "Instalacija %s"
523
 
524
+ #: bws_menu.php:759
525
  msgid "Try again"
526
  msgstr ""
527
 
528
+ #: bws_menu.php:777
529
  #, php-format
530
  msgid "Preview &#8220;%s&#8221;"
531
  msgstr ""
532
 
533
+ #: bws_menu.php:808
534
  #, php-format
535
  msgid "Install %s"
536
  msgstr "Instalacija %s"
537
 
538
+ #: bws_menu.php:808
539
  #, fuzzy
540
  msgid "Install Now"
541
  msgstr "Instalacija %s"
542
 
543
+ #: bws_menu.php:811
544
  #, php-format
545
  msgid "Update to version %s"
546
  msgstr ""
547
 
548
+ #: bws_menu.php:811
549
  #, fuzzy
550
  msgid "Update"
551
  msgstr "date"
552
 
553
+ #: bws_menu.php:818
554
  #, php-format
555
  msgid "Preview %s"
556
  msgstr ""
557
 
558
+ #: bws_menu.php:818
559
  msgid "Preview"
560
  msgstr ""
561
 
562
+ #: bws_menu.php:824 bws_menu.php:856
563
  #, php-format
564
  msgid "By %s"
565
  msgstr ""
566
 
567
+ #: bws_menu.php:830
568
  msgid "Details"
569
  msgstr ""
570
 
571
+ #: bws_menu.php:862
572
  #, fuzzy
573
  msgid "Already Installed"
574
  msgstr "Instalacija %s"
575
 
576
+ #: bws_menu.php:878
577
  msgid "Environment"
578
  msgstr "Okruženje"
579
 
580
+ #: bws_menu.php:889
581
  #, fuzzy
582
  msgid "Active Plugins"
583
  msgstr "Extensions activées"
584
 
585
+ #: bws_menu.php:902
586
  #, fuzzy
587
  msgid "Inactive Plugins"
588
  msgstr "Extensions activées"
589
 
590
+ #: bws_menu.php:918
591
  #, fuzzy
592
  msgid "Send to support"
593
  msgstr "Soutien"
594
 
595
+ #: bws_menu.php:925
596
  msgid "Send to custom email &#187;"
597
  msgstr "Pošalji na korisnički mejl &#187;"
598
 
bws_menu/languages/bestwebsoft-sv_SE.mo CHANGED
Binary file
bws_menu/languages/bestwebsoft-sv_SE.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: 2015-03-05 13:15+0300\n"
6
- "PO-Revision-Date: 2015-03-05 13:15+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Christer Rönningborg, Blittan <blittan@xbmc.org>\n"
9
  "Language: sv_SE\n"
@@ -16,509 +16,575 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: bws_functions.php:84
20
  msgid "requires"
21
  msgstr ""
22
 
23
- #: bws_functions.php:85
24
  msgid ""
25
  "or higher, that is why it has been deactivated! Please upgrade WordPress and "
26
  "try again."
27
  msgstr ""
28
 
29
- #: bws_functions.php:86
30
  msgid "Back to the WordPress"
31
  msgstr ""
32
 
33
- #: bws_functions.php:87
34
  #, fuzzy
35
  msgid "Plugins page"
36
  msgstr "Betaltillägg"
37
 
38
- #: bws_functions.php:134
39
- #, fuzzy
40
- msgid "Learn More"
41
- msgstr "Läs mer"
42
-
43
- #: bws_functions.php:137
44
  msgid "It’s time to upgrade your"
45
  msgstr ""
46
 
47
- #: bws_functions.php:137
48
  #, fuzzy
49
  msgid "to"
50
  msgstr "två"
51
 
52
- #: bws_functions.php:137
53
  #, fuzzy
54
  msgid "version!"
55
  msgstr "PHP-version"
56
 
57
- #: bws_functions.php:138
58
  msgid "Extend standard plugin functionality with new great options."
59
  msgstr ""
60
 
61
- #: bws_functions.php:158
 
 
 
 
 
62
  msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
63
  msgstr ""
64
 
65
- #: bws_functions.php:159
66
  #, fuzzy
67
  msgid "Rate the plugin"
68
  msgstr "Aktiverade tillägg"
69
 
70
- #: bws_functions.php:162
71
  #, fuzzy
72
  msgid "If there is something wrong about it, please contact us"
73
  msgstr "Om du har några frågor, kontakta oss via"
74
 
75
- #: bws_functions.php:179 bws_functions.php:215 bws_functions.php:395
76
  msgid "Wrong license key"
77
  msgstr ""
78
 
79
- #: bws_functions.php:209 bws_functions.php:389 bws_functions.php:426
80
  msgid ""
81
  "Something went wrong. Please try again later. If the error appears again, "
82
  "please contact us"
83
  msgstr ""
84
 
85
- #: bws_functions.php:209 bws_functions.php:389 bws_functions.php:426
86
  msgid "We are sorry for inconvenience."
87
  msgstr ""
88
 
89
- #: bws_functions.php:217 bws_functions.php:397
90
  msgid "This license key is bind to another site"
91
  msgstr ""
92
 
93
- #: bws_functions.php:219 bws_functions.php:348
94
  msgid ""
95
  "Unfortunately, you have exceeded the number of available tries per day. "
96
  "Please, upload the plugin manually."
97
  msgstr ""
98
 
99
- #: bws_functions.php:221
100
  msgid ""
101
  "Unfortunately, Your license has expired. To continue getting top-priority "
102
  "support and plugin updates you should extend it in your"
103
  msgstr ""
104
 
105
- #: bws_functions.php:223
106
  msgid ""
107
  "Unfortunately, the PRO licence was already installed to this domain. The PRO "
108
  "Trial license can be installed only once."
109
  msgstr ""
110
 
111
- #: bws_functions.php:234 bws_functions.php:256 bws_functions.php:278
112
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
113
  msgstr ""
114
 
115
- #: bws_functions.php:246
116
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
117
  msgstr ""
118
 
119
- #: bws_functions.php:252
120
  msgid ""
121
  "Your server does not support either ZipArchive or Phar. Please, upload the "
122
  "plugin manually"
123
  msgstr ""
124
 
125
- #: bws_functions.php:259
126
  msgid "UploadDir is not writable. Please, upload the plugin manually"
127
  msgstr ""
128
 
129
- #: bws_functions.php:282
130
  msgid ""
131
  "Something went wrong. Try again later or upload the plugin manually. We are "
132
  "sorry for inconvenience."
133
  msgstr ""
134
 
135
- #: bws_functions.php:307
136
  msgid "Please, enter Your license key"
137
  msgstr ""
138
 
139
- #: bws_functions.php:324
140
  msgid ""
141
  "Congratulations! The PRO version of the plugin is successfully download and "
142
  "activated."
143
  msgstr ""
144
 
145
- #: bws_functions.php:326
146
  msgid "Please, go to"
147
  msgstr ""
148
 
149
- #: bws_functions.php:326
150
  msgid "the setting page"
151
  msgstr ""
152
 
153
- #: bws_functions.php:327
154
  msgid "You will be redirected automatically in 5 seconds."
155
  msgstr ""
156
 
157
- #: bws_functions.php:332
158
  msgid "You can download and activate"
159
  msgstr ""
160
 
161
- #: bws_functions.php:334
162
  msgid "version of this plugin by entering Your license key."
163
  msgstr ""
164
 
165
- #: bws_functions.php:336
166
  msgid ""
167
  "You can find your license key on your personal page Client area, by clicking "
168
  "on the link"
169
  msgstr ""
170
 
171
- #: bws_functions.php:338
172
  msgid "(your username is the email you specify when purchasing the product)."
173
  msgstr ""
174
 
175
- #: bws_functions.php:346 bws_functions.php:354 bws_menu.php:613
176
- #: bws_menu.php:670
 
 
 
 
 
 
 
 
 
 
177
  #, fuzzy
178
  msgid "Activate"
179
  msgstr "Aktiverade tillägg"
180
 
 
 
 
 
 
 
 
 
 
 
181
  #: bws_functions.php:399
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
182
  msgid ""
183
  "This license key is valid, but Your license has expired. If you want to "
184
  "update our plugin in future, you should extend the license."
185
  msgstr ""
186
 
187
- #: bws_functions.php:401
188
  msgid "Unfortunately, you have exceeded the number of available tries."
189
  msgstr ""
190
 
191
- #: bws_functions.php:405
192
- msgid "The license key is valid. Your license will expire on"
 
 
 
 
 
 
193
  msgstr ""
194
 
195
- #: bws_functions.php:407
196
  msgid "The license key is valid."
197
  msgstr ""
198
 
199
- #: bws_functions.php:431
 
 
 
 
200
  msgid "Please, enter your license key"
201
  msgstr ""
202
 
203
- #: bws_functions.php:444
204
  msgid ""
205
  "If needed you can check if the license key is correct or reenter it in the "
206
  "field below. You can find your license key on your personal page - Client "
207
  "area - on our website"
208
  msgstr ""
209
 
210
- #: bws_functions.php:444
211
  msgid ""
212
  "(your username is the email you specify when purchasing the product). If "
213
  "necessary, please submit \"Lost your password?\" request."
214
  msgstr ""
215
 
216
- #: bws_functions.php:448
217
  msgid "Check license key"
218
  msgstr ""
219
 
220
- #: bws_functions.php:462
221
  msgid ""
222
  "WARNING: We have noticed illegal use of our plugin by you. We strongly "
223
  "recommend you to solve the problem within 24 hours, otherwise the plugin "
224
  "will be deactivated. Please go to your personal"
225
  msgstr ""
226
 
227
- #: bws_functions.php:462
228
  msgid ""
229
  "(your username is the email you specify when purchasing the product), where "
230
  "you can make the necessary changes."
231
  msgstr ""
232
 
233
- #: bws_functions.php:468
 
 
 
 
 
 
234
  msgid ""
235
  "Your license has expired. To continue getting top-priority support and "
236
  "plugin updates you should extend it."
237
  msgstr ""
238
 
239
- #: bws_functions.php:468 bws_functions.php:502 bws_menu.php:589
240
- #: bws_menu.php:611 bws_menu.php:638 bws_menu.php:668 bws_menu.php:714
241
  #, fuzzy
242
  msgid "Learn more"
243
  msgstr "Läs mer"
244
 
245
- #: bws_functions.php:502
 
 
 
 
 
 
 
 
 
 
 
 
 
246
  msgid "You license for"
247
  msgstr ""
248
 
249
- #: bws_functions.php:502
250
  msgid "expires on"
251
  msgstr ""
252
 
253
- #: bws_functions.php:502
254
  msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
255
  msgstr ""
256
 
257
- #: bws_functions.php:580
258
  msgid "Close"
259
  msgstr ""
260
 
261
- #: bws_menu.php:426
262
  msgid "Not set"
263
  msgstr "Inte angiven"
264
 
265
- #: bws_menu.php:428 bws_menu.php:429
266
  msgid "On"
267
  msgstr "På"
268
 
269
- #: bws_menu.php:428 bws_menu.php:429
270
  msgid "Off"
271
  msgstr "Av"
272
 
273
- #: bws_menu.php:430 bws_menu.php:431 bws_menu.php:432 bws_menu.php:433
274
- #: bws_menu.php:434 bws_menu.php:446
275
  msgid "N/A"
276
  msgstr "Finns ej"
277
 
278
- #: bws_menu.php:434
279
  msgid " Mb"
280
  msgstr " Mb"
281
 
282
- #: bws_menu.php:435 bws_menu.php:436 bws_menu.php:437 bws_menu.php:442
283
  msgid "Yes"
284
  msgstr "Ja"
285
 
286
- #: bws_menu.php:435 bws_menu.php:436 bws_menu.php:437 bws_menu.php:444
287
  msgid "No"
288
  msgstr "Nej"
289
 
290
- #: bws_menu.php:454
291
  msgid "Operating System"
292
  msgstr "Operativsystem"
293
 
294
- #: bws_menu.php:455
295
  msgid "Server"
296
  msgstr "Server"
297
 
298
- #: bws_menu.php:456
299
  msgid "Memory usage"
300
  msgstr "Minnesanvändning"
301
 
302
- #: bws_menu.php:457
303
  msgid "MYSQL Version"
304
  msgstr "MySQL-version"
305
 
306
- #: bws_menu.php:458
307
  msgid "SQL Mode"
308
  msgstr "SQL-läge"
309
 
310
- #: bws_menu.php:459
311
  msgid "PHP Version"
312
  msgstr "PHP-version"
313
 
314
- #: bws_menu.php:460
315
  msgid "PHP Safe Mode"
316
  msgstr "PHP säkert läge"
317
 
318
- #: bws_menu.php:461
319
  msgid "PHP Allow URL fopen"
320
  msgstr "PHP tillåt URL fopen"
321
 
322
- #: bws_menu.php:462
323
  msgid "PHP Memory Limit"
324
  msgstr "PHP Minnesgräns"
325
 
326
- #: bws_menu.php:463
327
  msgid "PHP Max Upload Size"
328
  msgstr "PHP Max uppladdningstorlek"
329
 
330
- #: bws_menu.php:464
331
  msgid "PHP Max Post Size"
332
  msgstr "PHP Max poststorlek"
333
 
334
- #: bws_menu.php:465
335
  msgid "PHP Max Script Execute Time"
336
  msgstr "PHP Max skriptexekverinstid"
337
 
338
- #: bws_menu.php:466
339
  msgid "PHP Exif support"
340
  msgstr "PHP Exifstöd"
341
 
342
- #: bws_menu.php:467
343
  msgid "PHP IPTC support"
344
  msgstr "PHP ITPC-stöd"
345
 
346
- #: bws_menu.php:468
347
  msgid "PHP XML support"
348
  msgstr "PHP XML-stöd"
349
 
350
- #: bws_menu.php:469
351
  msgid "Site URL"
352
  msgstr "SajtURL"
353
 
354
- #: bws_menu.php:470
355
  msgid "Home URL"
356
  msgstr "HemURL"
357
 
358
- #: bws_menu.php:473
359
  msgid "WordPress Version"
360
  msgstr "WordPress-version"
361
 
362
- #: bws_menu.php:474
363
  msgid "WordPress DB Version"
364
  msgstr "WordPress-DB-version"
365
 
366
- #: bws_menu.php:475
367
  msgid "Multisite"
368
  msgstr "Multisajt"
369
 
370
- #: bws_menu.php:476
371
  msgid "Active Theme"
372
  msgstr "Aktivt tema"
373
 
374
- #: bws_menu.php:491
375
  msgid "Please enter a valid email address."
376
  msgstr "Var god ange en giltig epost-adress."
377
 
378
- #: bws_menu.php:495
379
  msgid "Email with system info is sent to "
380
  msgstr "Epost med systeminfo är skickat till"
381
 
382
- #: bws_menu.php:499
383
  msgid "Thank you for contacting us."
384
  msgstr "Tack för att du kontaktade oss."
385
 
386
- #: bws_menu.php:532
387
  msgid "Sorry, email message could not be delivered."
388
  msgstr "Ledsen, eposten kunde inte levereras."
389
 
390
- #: bws_menu.php:540
391
  msgid "Need help?"
392
  msgstr ""
393
 
394
- #: bws_menu.php:541
395
  msgid "Client area"
396
  msgstr ""
397
 
398
- #: bws_menu.php:542 bws_menu.php:853
399
  msgid "System status"
400
  msgstr "Systemstatus"
401
 
402
- #: bws_menu.php:547
403
  #, fuzzy
404
  msgid "Plugins"
405
  msgstr "Betaltillägg"
406
 
407
- #: bws_menu.php:549
408
  msgid "Themes"
409
  msgstr ""
410
 
411
- #: bws_menu.php:554
412
  msgid "All"
413
  msgstr ""
414
 
415
- #: bws_menu.php:555
416
  #, fuzzy
417
  msgid "Installed"
418
  msgstr "Installera %s"
419
 
420
- #: bws_menu.php:556
421
  #, fuzzy
422
  msgid "Recommended"
423
  msgstr "Rekommenderade tillägg"
424
 
425
- #: bws_menu.php:560
426
  msgid "Installed plugins"
427
  msgstr "Installerade tillägg"
428
 
429
- #: bws_menu.php:592 bws_menu.php:641
430
  msgid "Settings"
431
  msgstr "Inställningar"
432
 
433
- #: bws_menu.php:613 bws_menu.php:670
434
  #, fuzzy
435
  msgid "Activate this plugin"
436
  msgstr "Aktiverade tillägg"
437
 
438
- #: bws_menu.php:628 bws_menu.php:658 bws_menu.php:704
439
  msgid "Go"
440
  msgstr ""
441
 
442
- #: bws_menu.php:632 bws_menu.php:662 bws_menu.php:708
443
  msgid "DONATE"
444
  msgstr ""
445
 
446
- #: bws_menu.php:678
447
  msgid "Recommended plugins"
448
  msgstr "Rekommenderade tillägg"
449
 
450
- #: bws_menu.php:716
451
  #, fuzzy
452
  msgid "Install now"
453
  msgstr "Установить сейчас"
454
 
455
- #: bws_menu.php:737
456
  msgid "Try again"
457
  msgstr ""
458
 
459
- #: bws_menu.php:755
460
  #, php-format
461
  msgid "Preview &#8220;%s&#8221;"
462
  msgstr ""
463
 
464
- #: bws_menu.php:786
465
  #, php-format
466
  msgid "Install %s"
467
  msgstr "Installera %s"
468
 
469
- #: bws_menu.php:786
470
  msgid "Install Now"
471
  msgstr "Установить сейчас"
472
 
473
- #: bws_menu.php:789
474
  #, php-format
475
  msgid "Update to version %s"
476
  msgstr ""
477
 
478
- #: bws_menu.php:789
479
  msgid "Update"
480
  msgstr ""
481
 
482
- #: bws_menu.php:796
483
  #, php-format
484
  msgid "Preview %s"
485
  msgstr ""
486
 
487
- #: bws_menu.php:796
488
  msgid "Preview"
489
  msgstr ""
490
 
491
- #: bws_menu.php:802 bws_menu.php:834
492
  #, php-format
493
  msgid "By %s"
494
  msgstr ""
495
 
496
- #: bws_menu.php:808
497
  msgid "Details"
498
  msgstr ""
499
 
500
- #: bws_menu.php:840
501
  #, fuzzy
502
  msgid "Already Installed"
503
  msgstr "Installera %s"
504
 
505
- #: bws_menu.php:856
506
  msgid "Environment"
507
  msgstr "Miljövariabler"
508
 
509
- #: bws_menu.php:867
510
  msgid "Active Plugins"
511
  msgstr "Aktiverade tillägg"
512
 
513
- #: bws_menu.php:880
514
  msgid "Inactive Plugins"
515
  msgstr "Inaktiverade tillägg"
516
 
517
- #: bws_menu.php:896
518
  msgid "Send to support"
519
  msgstr "Skicka till support"
520
 
521
- #: bws_menu.php:903
522
  msgid "Send to custom email &#187;"
523
  msgstr "Skicka till anpassad epost &#187;"
524
 
@@ -684,9 +750,6 @@ msgstr "Skicka till anpassad epost &#187;"
684
  #~ msgid "three"
685
  #~ msgstr "tre"
686
 
687
- #~ msgid "four"
688
- #~ msgstr "fyra"
689
-
690
  #~ msgid "five"
691
  #~ msgstr "fem"
692
 
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-04-20 14:47+0300\n"
6
+ "PO-Revision-Date: 2015-04-20 14:47+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Christer Rönningborg, Blittan <blittan@xbmc.org>\n"
9
  "Language: sv_SE\n"
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: bws_functions.php:85
20
  msgid "requires"
21
  msgstr ""
22
 
23
+ #: bws_functions.php:87
24
  msgid ""
25
  "or higher, that is why it has been deactivated! Please upgrade WordPress and "
26
  "try again."
27
  msgstr ""
28
 
29
+ #: bws_functions.php:88
30
  msgid "Back to the WordPress"
31
  msgstr ""
32
 
33
+ #: bws_functions.php:90
34
  #, fuzzy
35
  msgid "Plugins page"
36
  msgstr "Betaltillägg"
37
 
38
+ #: bws_functions.php:147
 
 
 
 
 
39
  msgid "It’s time to upgrade your"
40
  msgstr ""
41
 
42
+ #: bws_functions.php:147
43
  #, fuzzy
44
  msgid "to"
45
  msgstr "två"
46
 
47
+ #: bws_functions.php:147
48
  #, fuzzy
49
  msgid "version!"
50
  msgstr "PHP-version"
51
 
52
+ #: bws_functions.php:148
53
  msgid "Extend standard plugin functionality with new great options."
54
  msgstr ""
55
 
56
+ #: bws_functions.php:151
57
+ #, fuzzy
58
+ msgid "Learn More"
59
+ msgstr "Läs mer"
60
+
61
+ #: bws_functions.php:168
62
  msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
63
  msgstr ""
64
 
65
+ #: bws_functions.php:169
66
  #, fuzzy
67
  msgid "Rate the plugin"
68
  msgstr "Aktiverade tillägg"
69
 
70
+ #: bws_functions.php:172
71
  #, fuzzy
72
  msgid "If there is something wrong about it, please contact us"
73
  msgstr "Om du har några frågor, kontakta oss via"
74
 
75
+ #: bws_functions.php:189 bws_functions.php:225
76
  msgid "Wrong license key"
77
  msgstr ""
78
 
79
+ #: bws_functions.php:219 bws_functions.php:451 bws_functions.php:502
80
  msgid ""
81
  "Something went wrong. Please try again later. If the error appears again, "
82
  "please contact us"
83
  msgstr ""
84
 
85
+ #: bws_functions.php:219 bws_functions.php:451 bws_functions.php:502
86
  msgid "We are sorry for inconvenience."
87
  msgstr ""
88
 
89
+ #: bws_functions.php:227
90
  msgid "This license key is bind to another site"
91
  msgstr ""
92
 
93
+ #: bws_functions.php:229 bws_functions.php:361
94
  msgid ""
95
  "Unfortunately, you have exceeded the number of available tries per day. "
96
  "Please, upload the plugin manually."
97
  msgstr ""
98
 
99
+ #: bws_functions.php:231
100
  msgid ""
101
  "Unfortunately, Your license has expired. To continue getting top-priority "
102
  "support and plugin updates you should extend it in your"
103
  msgstr ""
104
 
105
+ #: bws_functions.php:233
106
  msgid ""
107
  "Unfortunately, the PRO licence was already installed to this domain. The PRO "
108
  "Trial license can be installed only once."
109
  msgstr ""
110
 
111
+ #: bws_functions.php:244 bws_functions.php:266 bws_functions.php:288
112
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
113
  msgstr ""
114
 
115
+ #: bws_functions.php:256
116
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
117
  msgstr ""
118
 
119
+ #: bws_functions.php:262
120
  msgid ""
121
  "Your server does not support either ZipArchive or Phar. Please, upload the "
122
  "plugin manually"
123
  msgstr ""
124
 
125
+ #: bws_functions.php:269
126
  msgid "UploadDir is not writable. Please, upload the plugin manually"
127
  msgstr ""
128
 
129
+ #: bws_functions.php:292
130
  msgid ""
131
  "Something went wrong. Try again later or upload the plugin manually. We are "
132
  "sorry for inconvenience."
133
  msgstr ""
134
 
135
+ #: bws_functions.php:317
136
  msgid "Please, enter Your license key"
137
  msgstr ""
138
 
139
+ #: bws_functions.php:334
140
  msgid ""
141
  "Congratulations! The PRO version of the plugin is successfully download and "
142
  "activated."
143
  msgstr ""
144
 
145
+ #: bws_functions.php:336 bws_functions.php:418
146
  msgid "Please, go to"
147
  msgstr ""
148
 
149
+ #: bws_functions.php:336 bws_functions.php:418
150
  msgid "the setting page"
151
  msgstr ""
152
 
153
+ #: bws_functions.php:337 bws_functions.php:419
154
  msgid "You will be redirected automatically in 5 seconds."
155
  msgstr ""
156
 
157
+ #: bws_functions.php:342
158
  msgid "You can download and activate"
159
  msgstr ""
160
 
161
+ #: bws_functions.php:344
162
  msgid "version of this plugin by entering Your license key."
163
  msgstr ""
164
 
165
+ #: bws_functions.php:346 bws_functions.php:387
166
  msgid ""
167
  "You can find your license key on your personal page Client area, by clicking "
168
  "on the link"
169
  msgstr ""
170
 
171
+ #: bws_functions.php:348 bws_functions.php:389
172
  msgid "(your username is the email you specify when purchasing the product)."
173
  msgstr ""
174
 
175
+ #: bws_functions.php:352
176
+ #, fuzzy
177
+ msgid "or"
178
+ msgstr "fyra"
179
+
180
+ #: bws_functions.php:352
181
+ #, php-format
182
+ msgid "Start Your Free %s-Day Trial Now"
183
+ msgstr ""
184
+
185
+ #: bws_functions.php:358 bws_functions.php:367 bws_functions.php:397
186
+ #: bws_functions.php:405 bws_menu.php:635 bws_menu.php:692
187
  #, fuzzy
188
  msgid "Activate"
189
  msgstr "Aktiverade tillägg"
190
 
191
+ #: bws_functions.php:384 bws_functions.php:477
192
+ #, php-format
193
+ msgid ""
194
+ "In order to continue using the plugin it is necessary to buy a %s license."
195
+ msgstr ""
196
+
197
+ #: bws_functions.php:385
198
+ msgid "After that you can activate it by entering your license key."
199
+ msgstr ""
200
+
201
  #: bws_functions.php:399
202
+ msgid "Unfortunately, you have exceeded the number of available tries per day."
203
+ msgstr ""
204
+
205
+ #: bws_functions.php:416
206
+ msgid ""
207
+ "Congratulations! The PRO license of the plugin is successfully activated."
208
+ msgstr ""
209
+
210
+ #: bws_functions.php:457
211
+ msgid "Wrong license key."
212
+ msgstr ""
213
+
214
+ #: bws_functions.php:459
215
+ msgid "This license key is bind to another site."
216
+ msgstr ""
217
+
218
+ #: bws_functions.php:461
219
  msgid ""
220
  "This license key is valid, but Your license has expired. If you want to "
221
  "update our plugin in future, you should extend the license."
222
  msgstr ""
223
 
224
+ #: bws_functions.php:463
225
  msgid "Unfortunately, you have exceeded the number of available tries."
226
  msgstr ""
227
 
228
+ #: bws_functions.php:465
229
+ msgid ""
230
+ "Unfortunately, the PRO Trial licence was already installed to this domain. "
231
+ "The PRO Trial license can be installed only once."
232
+ msgstr ""
233
+
234
+ #: bws_functions.php:469
235
+ msgid "The PRO Trial license key is valid."
236
  msgstr ""
237
 
238
+ #: bws_functions.php:471
239
  msgid "The license key is valid."
240
  msgstr ""
241
 
242
+ #: bws_functions.php:474
243
+ msgid "Your license will expire on"
244
+ msgstr ""
245
+
246
+ #: bws_functions.php:507
247
  msgid "Please, enter your license key"
248
  msgstr ""
249
 
250
+ #: bws_functions.php:520
251
  msgid ""
252
  "If needed you can check if the license key is correct or reenter it in the "
253
  "field below. You can find your license key on your personal page - Client "
254
  "area - on our website"
255
  msgstr ""
256
 
257
+ #: bws_functions.php:520
258
  msgid ""
259
  "(your username is the email you specify when purchasing the product). If "
260
  "necessary, please submit \"Lost your password?\" request."
261
  msgstr ""
262
 
263
+ #: bws_functions.php:524
264
  msgid "Check license key"
265
  msgstr ""
266
 
267
+ #: bws_functions.php:538
268
  msgid ""
269
  "WARNING: We have noticed illegal use of our plugin by you. We strongly "
270
  "recommend you to solve the problem within 24 hours, otherwise the plugin "
271
  "will be deactivated. Please go to your personal"
272
  msgstr ""
273
 
274
+ #: bws_functions.php:538
275
  msgid ""
276
  "(your username is the email you specify when purchasing the product), where "
277
  "you can make the necessary changes."
278
  msgstr ""
279
 
280
+ #: bws_functions.php:546
281
+ msgid ""
282
+ "Notice: Your PRO Trial license has expired. To continue using the plugin you "
283
+ "should buy a PRO license"
284
+ msgstr ""
285
+
286
+ #: bws_functions.php:548
287
  msgid ""
288
  "Your license has expired. To continue getting top-priority support and "
289
  "plugin updates you should extend it."
290
  msgstr ""
291
 
292
+ #: bws_functions.php:548 bws_functions.php:601 bws_menu.php:611
293
+ #: bws_menu.php:633 bws_menu.php:660 bws_menu.php:690 bws_menu.php:736
294
  #, fuzzy
295
  msgid "Learn more"
296
  msgstr "Läs mer"
297
 
298
+ #: bws_functions.php:558
299
+ #, php-format
300
+ msgid "Notice: You are using the PRO Trial license of %s plugin."
301
+ msgstr ""
302
+
303
+ #: bws_functions.php:560
304
+ msgid "Notice: You are using the PRO Trial license of plugin."
305
+ msgstr ""
306
+
307
+ #: bws_functions.php:563
308
+ msgid "The PRO Trial license will expire on"
309
+ msgstr ""
310
+
311
+ #: bws_functions.php:601
312
  msgid "You license for"
313
  msgstr ""
314
 
315
+ #: bws_functions.php:601
316
  msgid "expires on"
317
  msgstr ""
318
 
319
+ #: bws_functions.php:601
320
  msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
321
  msgstr ""
322
 
323
+ #: bws_functions.php:676
324
  msgid "Close"
325
  msgstr ""
326
 
327
+ #: bws_menu.php:448
328
  msgid "Not set"
329
  msgstr "Inte angiven"
330
 
331
+ #: bws_menu.php:450 bws_menu.php:451
332
  msgid "On"
333
  msgstr "På"
334
 
335
+ #: bws_menu.php:450 bws_menu.php:451
336
  msgid "Off"
337
  msgstr "Av"
338
 
339
+ #: bws_menu.php:452 bws_menu.php:453 bws_menu.php:454 bws_menu.php:455
340
+ #: bws_menu.php:456 bws_menu.php:468
341
  msgid "N/A"
342
  msgstr "Finns ej"
343
 
344
+ #: bws_menu.php:456
345
  msgid " Mb"
346
  msgstr " Mb"
347
 
348
+ #: bws_menu.php:457 bws_menu.php:458 bws_menu.php:459 bws_menu.php:464
349
  msgid "Yes"
350
  msgstr "Ja"
351
 
352
+ #: bws_menu.php:457 bws_menu.php:458 bws_menu.php:459 bws_menu.php:466
353
  msgid "No"
354
  msgstr "Nej"
355
 
356
+ #: bws_menu.php:476
357
  msgid "Operating System"
358
  msgstr "Operativsystem"
359
 
360
+ #: bws_menu.php:477
361
  msgid "Server"
362
  msgstr "Server"
363
 
364
+ #: bws_menu.php:478
365
  msgid "Memory usage"
366
  msgstr "Minnesanvändning"
367
 
368
+ #: bws_menu.php:479
369
  msgid "MYSQL Version"
370
  msgstr "MySQL-version"
371
 
372
+ #: bws_menu.php:480
373
  msgid "SQL Mode"
374
  msgstr "SQL-läge"
375
 
376
+ #: bws_menu.php:481
377
  msgid "PHP Version"
378
  msgstr "PHP-version"
379
 
380
+ #: bws_menu.php:482
381
  msgid "PHP Safe Mode"
382
  msgstr "PHP säkert läge"
383
 
384
+ #: bws_menu.php:483
385
  msgid "PHP Allow URL fopen"
386
  msgstr "PHP tillåt URL fopen"
387
 
388
+ #: bws_menu.php:484
389
  msgid "PHP Memory Limit"
390
  msgstr "PHP Minnesgräns"
391
 
392
+ #: bws_menu.php:485
393
  msgid "PHP Max Upload Size"
394
  msgstr "PHP Max uppladdningstorlek"
395
 
396
+ #: bws_menu.php:486
397
  msgid "PHP Max Post Size"
398
  msgstr "PHP Max poststorlek"
399
 
400
+ #: bws_menu.php:487
401
  msgid "PHP Max Script Execute Time"
402
  msgstr "PHP Max skriptexekverinstid"
403
 
404
+ #: bws_menu.php:488
405
  msgid "PHP Exif support"
406
  msgstr "PHP Exifstöd"
407
 
408
+ #: bws_menu.php:489
409
  msgid "PHP IPTC support"
410
  msgstr "PHP ITPC-stöd"
411
 
412
+ #: bws_menu.php:490
413
  msgid "PHP XML support"
414
  msgstr "PHP XML-stöd"
415
 
416
+ #: bws_menu.php:491
417
  msgid "Site URL"
418
  msgstr "SajtURL"
419
 
420
+ #: bws_menu.php:492
421
  msgid "Home URL"
422
  msgstr "HemURL"
423
 
424
+ #: bws_menu.php:495
425
  msgid "WordPress Version"
426
  msgstr "WordPress-version"
427
 
428
+ #: bws_menu.php:496
429
  msgid "WordPress DB Version"
430
  msgstr "WordPress-DB-version"
431
 
432
+ #: bws_menu.php:497
433
  msgid "Multisite"
434
  msgstr "Multisajt"
435
 
436
+ #: bws_menu.php:498
437
  msgid "Active Theme"
438
  msgstr "Aktivt tema"
439
 
440
+ #: bws_menu.php:513
441
  msgid "Please enter a valid email address."
442
  msgstr "Var god ange en giltig epost-adress."
443
 
444
+ #: bws_menu.php:517
445
  msgid "Email with system info is sent to "
446
  msgstr "Epost med systeminfo är skickat till"
447
 
448
+ #: bws_menu.php:521
449
  msgid "Thank you for contacting us."
450
  msgstr "Tack för att du kontaktade oss."
451
 
452
+ #: bws_menu.php:554
453
  msgid "Sorry, email message could not be delivered."
454
  msgstr "Ledsen, eposten kunde inte levereras."
455
 
456
+ #: bws_menu.php:562
457
  msgid "Need help?"
458
  msgstr ""
459
 
460
+ #: bws_menu.php:563
461
  msgid "Client area"
462
  msgstr ""
463
 
464
+ #: bws_menu.php:564 bws_menu.php:875
465
  msgid "System status"
466
  msgstr "Systemstatus"
467
 
468
+ #: bws_menu.php:569
469
  #, fuzzy
470
  msgid "Plugins"
471
  msgstr "Betaltillägg"
472
 
473
+ #: bws_menu.php:571
474
  msgid "Themes"
475
  msgstr ""
476
 
477
+ #: bws_menu.php:576
478
  msgid "All"
479
  msgstr ""
480
 
481
+ #: bws_menu.php:577
482
  #, fuzzy
483
  msgid "Installed"
484
  msgstr "Installera %s"
485
 
486
+ #: bws_menu.php:578
487
  #, fuzzy
488
  msgid "Recommended"
489
  msgstr "Rekommenderade tillägg"
490
 
491
+ #: bws_menu.php:582
492
  msgid "Installed plugins"
493
  msgstr "Installerade tillägg"
494
 
495
+ #: bws_menu.php:614 bws_menu.php:663
496
  msgid "Settings"
497
  msgstr "Inställningar"
498
 
499
+ #: bws_menu.php:635 bws_menu.php:692
500
  #, fuzzy
501
  msgid "Activate this plugin"
502
  msgstr "Aktiverade tillägg"
503
 
504
+ #: bws_menu.php:650 bws_menu.php:680 bws_menu.php:726
505
  msgid "Go"
506
  msgstr ""
507
 
508
+ #: bws_menu.php:654 bws_menu.php:684 bws_menu.php:730
509
  msgid "DONATE"
510
  msgstr ""
511
 
512
+ #: bws_menu.php:700
513
  msgid "Recommended plugins"
514
  msgstr "Rekommenderade tillägg"
515
 
516
+ #: bws_menu.php:738
517
  #, fuzzy
518
  msgid "Install now"
519
  msgstr "Установить сейчас"
520
 
521
+ #: bws_menu.php:759
522
  msgid "Try again"
523
  msgstr ""
524
 
525
+ #: bws_menu.php:777
526
  #, php-format
527
  msgid "Preview &#8220;%s&#8221;"
528
  msgstr ""
529
 
530
+ #: bws_menu.php:808
531
  #, php-format
532
  msgid "Install %s"
533
  msgstr "Installera %s"
534
 
535
+ #: bws_menu.php:808
536
  msgid "Install Now"
537
  msgstr "Установить сейчас"
538
 
539
+ #: bws_menu.php:811
540
  #, php-format
541
  msgid "Update to version %s"
542
  msgstr ""
543
 
544
+ #: bws_menu.php:811
545
  msgid "Update"
546
  msgstr ""
547
 
548
+ #: bws_menu.php:818
549
  #, php-format
550
  msgid "Preview %s"
551
  msgstr ""
552
 
553
+ #: bws_menu.php:818
554
  msgid "Preview"
555
  msgstr ""
556
 
557
+ #: bws_menu.php:824 bws_menu.php:856
558
  #, php-format
559
  msgid "By %s"
560
  msgstr ""
561
 
562
+ #: bws_menu.php:830
563
  msgid "Details"
564
  msgstr ""
565
 
566
+ #: bws_menu.php:862
567
  #, fuzzy
568
  msgid "Already Installed"
569
  msgstr "Installera %s"
570
 
571
+ #: bws_menu.php:878
572
  msgid "Environment"
573
  msgstr "Miljövariabler"
574
 
575
+ #: bws_menu.php:889
576
  msgid "Active Plugins"
577
  msgstr "Aktiverade tillägg"
578
 
579
+ #: bws_menu.php:902
580
  msgid "Inactive Plugins"
581
  msgstr "Inaktiverade tillägg"
582
 
583
+ #: bws_menu.php:918
584
  msgid "Send to support"
585
  msgstr "Skicka till support"
586
 
587
+ #: bws_menu.php:925
588
  msgid "Send to custom email &#187;"
589
  msgstr "Skicka till anpassad epost &#187;"
590
 
750
  #~ msgid "three"
751
  #~ msgstr "tre"
752
 
 
 
 
753
  #~ msgid "five"
754
  #~ msgstr "fem"
755
 
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: 2015-03-05 13:15+0300\n"
6
- "PO-Revision-Date: 2015-03-05 13:16+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,11 +16,11 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: bws_functions.php:84
20
  msgid "requires"
21
  msgstr "потребує"
22
 
23
- #: bws_functions.php:85
24
  msgid ""
25
  "or higher, that is why it has been deactivated! Please upgrade WordPress and "
26
  "try again."
@@ -28,52 +28,52 @@ msgstr ""
28
  "чи вище, тому його було деактивовано! Будь ласка оновіть WordPress та "
29
  "спробуйте ще раз."
30
 
31
- #: bws_functions.php:86
32
  msgid "Back to the WordPress"
33
  msgstr "Повернутися на WordPress на"
34
 
35
- #: bws_functions.php:87
36
  msgid "Plugins page"
37
  msgstr "Сторінку Плагінів"
38
 
39
- #: bws_functions.php:134
40
- msgid "Learn More"
41
- msgstr "Дізнатись більше"
42
-
43
- #: bws_functions.php:137
44
  msgid "It’s time to upgrade your"
45
  msgstr "Настав час модернізувати Ваш"
46
 
47
- #: bws_functions.php:137
48
  msgid "to"
49
  msgstr "до"
50
 
51
- #: bws_functions.php:137
52
  msgid "version!"
53
  msgstr "версії!"
54
 
55
- #: bws_functions.php:138
56
  msgid "Extend standard plugin functionality with new great options."
57
  msgstr "Розширює можливості стандартного функціоналу плагіна."
58
 
59
- #: bws_functions.php:158
 
 
 
 
60
  msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
61
  msgstr ""
62
  "Якщо вам сподобався плагін, будь ласка, поставте нам 5 зірочок на WordPress"
63
 
64
- #: bws_functions.php:159
65
  msgid "Rate the plugin"
66
  msgstr "Оцінити плагін"
67
 
68
- #: bws_functions.php:162
69
  msgid "If there is something wrong about it, please contact us"
70
  msgstr "Якщо щось не так, будь ласка, повідомте нам"
71
 
72
- #: bws_functions.php:179 bws_functions.php:215 bws_functions.php:395
73
  msgid "Wrong license key"
74
  msgstr "Невірний ключ ліцензії"
75
 
76
- #: bws_functions.php:209 bws_functions.php:389 bws_functions.php:426
77
  msgid ""
78
  "Something went wrong. Please try again later. If the error appears again, "
79
  "please contact us"
@@ -81,15 +81,15 @@ msgstr ""
81
  "Щось не так, спробуйте пізніше. Якщо помилка повториться, будь ласка, "
82
  "повідомте нам"
83
 
84
- #: bws_functions.php:209 bws_functions.php:389 bws_functions.php:426
85
  msgid "We are sorry for inconvenience."
86
  msgstr "Просимо вибачення за незручності."
87
 
88
- #: bws_functions.php:217 bws_functions.php:397
89
  msgid "This license key is bind to another site"
90
  msgstr "Цей ліцензійний ключ прив'язано до іншого сайту"
91
 
92
- #: bws_functions.php:219 bws_functions.php:348
93
  msgid ""
94
  "Unfortunately, you have exceeded the number of available tries per day. "
95
  "Please, upload the plugin manually."
@@ -97,7 +97,7 @@ msgstr ""
97
  "На жаль, ви перевищили кількість доступних спроб на день. Будь ласка, "
98
  "завантажте плагін вручну"
99
 
100
- #: bws_functions.php:221
101
  msgid ""
102
  "Unfortunately, Your license has expired. To continue getting top-priority "
103
  "support and plugin updates you should extend it in your"
@@ -105,7 +105,7 @@ msgstr ""
105
  "На жаль, ваша ліцензія скінчилась. Для того, щоб і надалі отримувати "
106
  "першочергову техпідтримку і оновлення, будь ласка, продовжте ліцензію"
107
 
108
- #: bws_functions.php:223
109
  msgid ""
110
  "Unfortunately, the PRO licence was already installed to this domain. The PRO "
111
  "Trial license can be installed only once."
@@ -113,16 +113,16 @@ msgstr ""
113
  "На жаль, PRO ліцензія уже використовувалась на цьому домені. Тріал PRO "
114
  "версії плагіну можна використати лише один раз"
115
 
116
- #: bws_functions.php:234 bws_functions.php:256 bws_functions.php:278
117
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
118
  msgstr ""
119
  "Помилка при завантаженні zip-архіву. Будь ласка, завантажте плагін вручну"
120
 
121
- #: bws_functions.php:246
122
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
123
  msgstr "Помилка при відкритті zip-архіву. Будь ласка, завантажте плагін вручну"
124
 
125
- #: bws_functions.php:252
126
  msgid ""
127
  "Your server does not support either ZipArchive or Phar. Please, upload the "
128
  "plugin manually"
@@ -130,13 +130,13 @@ msgstr ""
130
  "Ваш сервер не підтримує формати Zip і Phar. Будь ласка, завантажте плагін "
131
  "вручну"
132
 
133
- #: bws_functions.php:259
134
  msgid "UploadDir is not writable. Please, upload the plugin manually"
135
  msgstr ""
136
  "Немає доступу до теки завантажень WordPress. Будь ласка, завантажте плагін "
137
  "вручну"
138
 
139
- #: bws_functions.php:282
140
  msgid ""
141
  "Something went wrong. Try again later or upload the plugin manually. We are "
142
  "sorry for inconvenience."
@@ -144,37 +144,37 @@ msgstr ""
144
  "Виникли певні проблеми. Спробуйте ще раз пізніше або завантажте плагін "
145
  "вручну. Просимо вібачення за незручності."
146
 
147
- #: bws_functions.php:307
148
  msgid "Please, enter Your license key"
149
  msgstr "Будь ласка, впишіть ваш ліцензійний ключ"
150
 
151
- #: bws_functions.php:324
152
  msgid ""
153
  "Congratulations! The PRO version of the plugin is successfully download and "
154
  "activated."
155
  msgstr "Вітаємо! PRO версію плагіну успішно завантажено та активовано."
156
 
157
- #: bws_functions.php:326
158
  msgid "Please, go to"
159
  msgstr "Будь ласка, перейдіть на"
160
 
161
- #: bws_functions.php:326
162
  msgid "the setting page"
163
  msgstr "сторінку установок"
164
 
165
- #: bws_functions.php:327
166
  msgid "You will be redirected automatically in 5 seconds."
167
  msgstr "Вас буде перенаправлено автоматично через 5 секунд."
168
 
169
- #: bws_functions.php:332
170
  msgid "You can download and activate"
171
  msgstr "Ви можете завантажити та активувати"
172
 
173
- #: bws_functions.php:334
174
  msgid "version of this plugin by entering Your license key."
175
  msgstr "версію цього плагіну, якщо впишете ваш ліцензійний ключ."
176
 
177
- #: bws_functions.php:336
178
  msgid ""
179
  "You can find your license key on your personal page Client area, by clicking "
180
  "on the link"
@@ -182,16 +182,52 @@ msgstr ""
182
  "Ви можете знайти ваш ліцензійний ключ на вашій персональній сторінці у "
183
  "Client area, перейшовши за посиланням"
184
 
185
- #: bws_functions.php:338
186
  msgid "(your username is the email you specify when purchasing the product)."
187
  msgstr "(ваше ім'я - це емейл, який ви вказували при купівлі плагіну)"
188
 
189
- #: bws_functions.php:346 bws_functions.php:354 bws_menu.php:613
190
- #: bws_menu.php:670
 
 
 
 
 
 
 
 
 
191
  msgid "Activate"
192
  msgstr "Активувати"
193
 
 
 
 
 
 
 
 
 
 
 
194
  #: bws_functions.php:399
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
195
  msgid ""
196
  "This license key is valid, but Your license has expired. If you want to "
197
  "update our plugin in future, you should extend the license."
@@ -199,23 +235,35 @@ msgstr ""
199
  "Даний ліцензійний ключ дійсний, але строк вашої ліцензії витік. Якщо ви "
200
  "хочете оновлювати наш плагін у майбутньому, вам слід подовжити ліцензію."
201
 
202
- #: bws_functions.php:401
203
  msgid "Unfortunately, you have exceeded the number of available tries."
204
  msgstr "На жаль, ви перевищили кількість допустимих спроб."
205
 
206
- #: bws_functions.php:405
207
- msgid "The license key is valid. Your license will expire on"
208
- msgstr "Ліцензійний ключ дійсний. Строк вашої ліцензії витікає"
 
 
 
 
209
 
210
- #: bws_functions.php:407
 
 
 
 
211
  msgid "The license key is valid."
212
  msgstr "Ліцензійний ключ дійсний."
213
 
214
- #: bws_functions.php:431
 
 
 
 
215
  msgid "Please, enter your license key"
216
  msgstr "Будь ласка, введіть ваш ліцензійний ключ"
217
 
218
- #: bws_functions.php:444
219
  msgid ""
220
  "If needed you can check if the license key is correct or reenter it in the "
221
  "field below. You can find your license key on your personal page - Client "
@@ -226,7 +274,7 @@ msgstr ""
226
  "ліцензійний ключ на вашій персональній сторінці - Client area - на нашому "
227
  "сайті."
228
 
229
- #: bws_functions.php:444
230
  msgid ""
231
  "(your username is the email you specify when purchasing the product). If "
232
  "necessary, please submit \"Lost your password?\" request."
@@ -235,11 +283,11 @@ msgstr ""
235
  "продукту). При необхідності, будь ласка, відправте запит на відновлення "
236
  "вашого паролю."
237
 
238
- #: bws_functions.php:448
239
  msgid "Check license key"
240
  msgstr "Перевірте ліцензійний ключ"
241
 
242
- #: bws_functions.php:462
243
  msgid ""
244
  "WARNING: We have noticed illegal use of our plugin by you. We strongly "
245
  "recommend you to solve the problem within 24 hours, otherwise the plugin "
@@ -249,7 +297,7 @@ msgstr ""
249
  "радимо вам вирішити цю проблему протягом доби, у противному разі плагін буде "
250
  "деактивовано. Будь ласка, зайдіть на вашу персональну сторінку"
251
 
252
- #: bws_functions.php:462
253
  msgid ""
254
  "(your username is the email you specify when purchasing the product), where "
255
  "you can make the necessary changes."
@@ -257,7 +305,15 @@ msgstr ""
257
  "(ім'я користувача - це електронна адреса, яку ви вказуєте при купівлі "
258
  "продукту), де ви можете внести потрібні зміни."
259
 
260
- #: bws_functions.php:468
 
 
 
 
 
 
 
 
261
  msgid ""
262
  "Your license has expired. To continue getting top-priority support and "
263
  "plugin updates you should extend it."
@@ -265,284 +321,297 @@ msgstr ""
265
  "Строк вашої ліцензії витік. Якщо ви хочете оновлювати наш плагін у "
266
  "майбутньому, вам слід подовжити ліцензію."
267
 
268
- #: bws_functions.php:468 bws_functions.php:502 bws_menu.php:589
269
- #: bws_menu.php:611 bws_menu.php:638 bws_menu.php:668 bws_menu.php:714
270
  msgid "Learn more"
271
  msgstr "Дізнатись більше"
272
 
273
- #: bws_functions.php:502
 
 
 
 
 
 
 
 
 
 
 
 
 
274
  msgid "You license for"
275
  msgstr "Ваша ліцензія для"
276
 
277
- #: bws_functions.php:502
278
  msgid "expires on"
279
  msgstr "витікає"
280
 
281
- #: bws_functions.php:502
282
  msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
283
  msgstr ""
284
  "та ви більше не будете оримувати першочергову технічну підтримку та "
285
  "оновлення."
286
 
287
- #: bws_functions.php:580
288
  msgid "Close"
289
  msgstr "Закрити"
290
 
291
- #: bws_menu.php:426
292
  msgid "Not set"
293
  msgstr "Не задано"
294
 
295
- #: bws_menu.php:428 bws_menu.php:429
296
  msgid "On"
297
  msgstr "Увімк."
298
 
299
- #: bws_menu.php:428 bws_menu.php:429
300
  msgid "Off"
301
  msgstr "Вимк."
302
 
303
- #: bws_menu.php:430 bws_menu.php:431 bws_menu.php:432 bws_menu.php:433
304
- #: bws_menu.php:434 bws_menu.php:446
305
  msgid "N/A"
306
  msgstr "Невідомо"
307
 
308
- #: bws_menu.php:434
309
  msgid " Mb"
310
  msgstr "Мб"
311
 
312
- #: bws_menu.php:435 bws_menu.php:436 bws_menu.php:437 bws_menu.php:442
313
  msgid "Yes"
314
  msgstr "Так"
315
 
316
- #: bws_menu.php:435 bws_menu.php:436 bws_menu.php:437 bws_menu.php:444
317
  msgid "No"
318
  msgstr "Ні"
319
 
320
- #: bws_menu.php:454
321
  msgid "Operating System"
322
  msgstr "Операційна система"
323
 
324
- #: bws_menu.php:455
325
  msgid "Server"
326
  msgstr "Тип серверу"
327
 
328
- #: bws_menu.php:456
329
  msgid "Memory usage"
330
  msgstr "Пам’яті використано"
331
 
332
- #: bws_menu.php:457
333
  msgid "MYSQL Version"
334
  msgstr "Версія MYSQL"
335
 
336
- #: bws_menu.php:458
337
  msgid "SQL Mode"
338
  msgstr "Режим SQL"
339
 
340
- #: bws_menu.php:459
341
  msgid "PHP Version"
342
  msgstr "Версія PHP"
343
 
344
- #: bws_menu.php:460
345
  msgid "PHP Safe Mode"
346
  msgstr "PHP Безпечний режим"
347
 
348
- #: bws_menu.php:461
349
  msgid "PHP Allow URL fopen"
350
  msgstr "Дозволити PHP URL fopen"
351
 
352
- #: bws_menu.php:462
353
  msgid "PHP Memory Limit"
354
  msgstr "Ліміт пам’яті"
355
 
356
- #: bws_menu.php:463
357
  msgid "PHP Max Upload Size"
358
  msgstr "Макс. розмір файлу, що завантажується"
359
 
360
- #: bws_menu.php:464
361
  msgid "PHP Max Post Size"
362
  msgstr "Макс. розмір посту"
363
 
364
- #: bws_menu.php:465
365
  msgid "PHP Max Script Execute Time"
366
  msgstr "Макс. час виконання сценарію"
367
 
368
- #: bws_menu.php:466
369
  msgid "PHP Exif support"
370
  msgstr "Підтримка PHP Exif"
371
 
372
- #: bws_menu.php:467
373
  msgid "PHP IPTC support"
374
  msgstr "Підтримка PHP IPTC"
375
 
376
- #: bws_menu.php:468
377
  msgid "PHP XML support"
378
  msgstr "Підтримка PHP XML"
379
 
380
- #: bws_menu.php:469
381
  msgid "Site URL"
382
  msgstr "Адреса сайту"
383
 
384
- #: bws_menu.php:470
385
  msgid "Home URL"
386
  msgstr "Адреса домашньої сторінки"
387
 
388
- #: bws_menu.php:473
389
  msgid "WordPress Version"
390
  msgstr "Версія WordPress"
391
 
392
- #: bws_menu.php:474
393
  msgid "WordPress DB Version"
394
  msgstr "Версія бази даних WordPress"
395
 
396
- #: bws_menu.php:475
397
  msgid "Multisite"
398
  msgstr "Мультисайт"
399
 
400
- #: bws_menu.php:476
401
  msgid "Active Theme"
402
  msgstr "Активна тема"
403
 
404
- #: bws_menu.php:491
405
  msgid "Please enter a valid email address."
406
  msgstr "Будь ласка, введіть коректний емейл."
407
 
408
- #: bws_menu.php:495
409
  msgid "Email with system info is sent to "
410
  msgstr "Емейл з системною інформацією надіслано на"
411
 
412
- #: bws_menu.php:499
413
  msgid "Thank you for contacting us."
414
  msgstr "Дякуємо, що звернулись до нас."
415
 
416
- #: bws_menu.php:532
417
  msgid "Sorry, email message could not be delivered."
418
  msgstr "Вибачте, ваше емейл не може бути доставлено"
419
 
420
- #: bws_menu.php:540
421
  msgid "Need help?"
422
  msgstr "Потрібна допомога?"
423
 
424
- #: bws_menu.php:541
425
  msgid "Client area"
426
  msgstr "Клієнтам"
427
 
428
- #: bws_menu.php:542 bws_menu.php:853
429
  msgid "System status"
430
  msgstr "Системна інформація"
431
 
432
- #: bws_menu.php:547
433
  msgid "Plugins"
434
  msgstr "Плагіни"
435
 
436
- #: bws_menu.php:549
437
  msgid "Themes"
438
  msgstr "Теми"
439
 
440
- #: bws_menu.php:554
441
  msgid "All"
442
  msgstr "Всі"
443
 
444
- #: bws_menu.php:555
445
  msgid "Installed"
446
  msgstr "Встановлені"
447
 
448
- #: bws_menu.php:556
449
  msgid "Recommended"
450
  msgstr "Рекомендовані "
451
 
452
- #: bws_menu.php:560
453
  msgid "Installed plugins"
454
  msgstr "Встановлені плагіни"
455
 
456
- #: bws_menu.php:592 bws_menu.php:641
457
  msgid "Settings"
458
  msgstr "Налаштування"
459
 
460
- #: bws_menu.php:613 bws_menu.php:670
461
  msgid "Activate this plugin"
462
  msgstr "Активувати плагін"
463
 
464
- #: bws_menu.php:628 bws_menu.php:658 bws_menu.php:704
465
  msgid "Go"
466
  msgstr "Перейти"
467
 
468
- #: bws_menu.php:632 bws_menu.php:662 bws_menu.php:708
469
  msgid "DONATE"
470
  msgstr "Підтримати нас"
471
 
472
- #: bws_menu.php:678
473
  msgid "Recommended plugins"
474
  msgstr "Рекомендовані плагіни"
475
 
476
- #: bws_menu.php:716
477
  msgid "Install now"
478
  msgstr "Встановити"
479
 
480
- #: bws_menu.php:737
481
  msgid "Try again"
482
  msgstr "Спробувати ще раз"
483
 
484
- #: bws_menu.php:755
485
  #, php-format
486
  msgid "Preview &#8220;%s&#8221;"
487
  msgstr "Попередній перегляд &#8220;%s&#8221;"
488
 
489
- #: bws_menu.php:786
490
  #, php-format
491
  msgid "Install %s"
492
  msgstr "Встановити %s"
493
 
494
- #: bws_menu.php:786
495
  msgid "Install Now"
496
  msgstr "Встановити"
497
 
498
- #: bws_menu.php:789
499
  #, php-format
500
  msgid "Update to version %s"
501
  msgstr "Оновити до версії %s"
502
 
503
- #: bws_menu.php:789
504
  msgid "Update"
505
  msgstr "Оновити"
506
 
507
- #: bws_menu.php:796
508
  #, php-format
509
  msgid "Preview %s"
510
  msgstr "Попередній перегляд %s"
511
 
512
- #: bws_menu.php:796
513
  msgid "Preview"
514
  msgstr "Попередній перегляд"
515
 
516
- #: bws_menu.php:802 bws_menu.php:834
517
  #, php-format
518
  msgid "By %s"
519
  msgstr "За %s"
520
 
521
- #: bws_menu.php:808
522
  msgid "Details"
523
  msgstr "Деталі"
524
 
525
- #: bws_menu.php:840
526
  msgid "Already Installed"
527
  msgstr "Уже встановлено %s"
528
 
529
- #: bws_menu.php:856
530
  msgid "Environment"
531
  msgstr "Системне оточення"
532
 
533
- #: bws_menu.php:867
534
  msgid "Active Plugins"
535
  msgstr "Активні плагіни"
536
 
537
- #: bws_menu.php:880
538
  msgid "Inactive Plugins"
539
  msgstr "Не активні плагіни"
540
 
541
- #: bws_menu.php:896
542
  msgid "Send to support"
543
  msgstr "Відправити службі тех. підтримки"
544
 
545
- #: bws_menu.php:903
546
  msgid "Send to custom email &#187;"
547
  msgstr "Відправити на електронну адресу &#187;"
548
 
@@ -707,9 +776,6 @@ msgstr "Відправити на електронну адресу &#187;"
707
  #~ msgid "three"
708
  #~ msgstr "три"
709
 
710
- #~ msgid "four"
711
- #~ msgstr "четыре"
712
-
713
  #~ msgid "five"
714
  #~ msgstr "пять"
715
 
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-04-20 14:47+0300\n"
6
+ "PO-Revision-Date: 2015-04-20 14:47+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:85
20
  msgid "requires"
21
  msgstr "потребує"
22
 
23
+ #: bws_functions.php:87
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:88
32
  msgid "Back to the WordPress"
33
  msgstr "Повернутися на WordPress на"
34
 
35
+ #: bws_functions.php:90
36
  msgid "Plugins page"
37
  msgstr "Сторінку Плагінів"
38
 
39
+ #: bws_functions.php:147
 
 
 
 
40
  msgid "It’s time to upgrade your"
41
  msgstr "Настав час модернізувати Ваш"
42
 
43
+ #: bws_functions.php:147
44
  msgid "to"
45
  msgstr "до"
46
 
47
+ #: bws_functions.php:147
48
  msgid "version!"
49
  msgstr "версії!"
50
 
51
+ #: bws_functions.php:148
52
  msgid "Extend standard plugin functionality with new great options."
53
  msgstr "Розширює можливості стандартного функціоналу плагіна."
54
 
55
+ #: bws_functions.php:151
56
+ msgid "Learn More"
57
+ msgstr "Дізнатись більше"
58
+
59
+ #: bws_functions.php:168
60
  msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
61
  msgstr ""
62
  "Якщо вам сподобався плагін, будь ласка, поставте нам 5 зірочок на WordPress"
63
 
64
+ #: bws_functions.php:169
65
  msgid "Rate the plugin"
66
  msgstr "Оцінити плагін"
67
 
68
+ #: bws_functions.php:172
69
  msgid "If there is something wrong about it, please contact us"
70
  msgstr "Якщо щось не так, будь ласка, повідомте нам"
71
 
72
+ #: bws_functions.php:189 bws_functions.php:225
73
  msgid "Wrong license key"
74
  msgstr "Невірний ключ ліцензії"
75
 
76
+ #: bws_functions.php:219 bws_functions.php:451 bws_functions.php:502
77
  msgid ""
78
  "Something went wrong. Please try again later. If the error appears again, "
79
  "please contact us"
81
  "Щось не так, спробуйте пізніше. Якщо помилка повториться, будь ласка, "
82
  "повідомте нам"
83
 
84
+ #: bws_functions.php:219 bws_functions.php:451 bws_functions.php:502
85
  msgid "We are sorry for inconvenience."
86
  msgstr "Просимо вибачення за незручності."
87
 
88
+ #: bws_functions.php:227
89
  msgid "This license key is bind to another site"
90
  msgstr "Цей ліцензійний ключ прив'язано до іншого сайту"
91
 
92
+ #: bws_functions.php:229 bws_functions.php:361
93
  msgid ""
94
  "Unfortunately, you have exceeded the number of available tries per day. "
95
  "Please, upload the plugin manually."
97
  "На жаль, ви перевищили кількість доступних спроб на день. Будь ласка, "
98
  "завантажте плагін вручну"
99
 
100
+ #: bws_functions.php:231
101
  msgid ""
102
  "Unfortunately, Your license has expired. To continue getting top-priority "
103
  "support and plugin updates you should extend it in your"
105
  "На жаль, ваша ліцензія скінчилась. Для того, щоб і надалі отримувати "
106
  "першочергову техпідтримку і оновлення, будь ласка, продовжте ліцензію"
107
 
108
+ #: bws_functions.php:233
109
  msgid ""
110
  "Unfortunately, the PRO licence was already installed to this domain. The PRO "
111
  "Trial license can be installed only once."
113
  "На жаль, PRO ліцензія уже використовувалась на цьому домені. Тріал PRO "
114
  "версії плагіну можна використати лише один раз"
115
 
116
+ #: bws_functions.php:244 bws_functions.php:266 bws_functions.php:288
117
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
118
  msgstr ""
119
  "Помилка при завантаженні zip-архіву. Будь ласка, завантажте плагін вручну"
120
 
121
+ #: bws_functions.php:256
122
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
123
  msgstr "Помилка при відкритті zip-архіву. Будь ласка, завантажте плагін вручну"
124
 
125
+ #: bws_functions.php:262
126
  msgid ""
127
  "Your server does not support either ZipArchive or Phar. Please, upload the "
128
  "plugin manually"
130
  "Ваш сервер не підтримує формати Zip і Phar. Будь ласка, завантажте плагін "
131
  "вручну"
132
 
133
+ #: bws_functions.php:269
134
  msgid "UploadDir is not writable. Please, upload the plugin manually"
135
  msgstr ""
136
  "Немає доступу до теки завантажень WordPress. Будь ласка, завантажте плагін "
137
  "вручну"
138
 
139
+ #: bws_functions.php:292
140
  msgid ""
141
  "Something went wrong. Try again later or upload the plugin manually. We are "
142
  "sorry for inconvenience."
144
  "Виникли певні проблеми. Спробуйте ще раз пізніше або завантажте плагін "
145
  "вручну. Просимо вібачення за незручності."
146
 
147
+ #: bws_functions.php:317
148
  msgid "Please, enter Your license key"
149
  msgstr "Будь ласка, впишіть ваш ліцензійний ключ"
150
 
151
+ #: bws_functions.php:334
152
  msgid ""
153
  "Congratulations! The PRO version of the plugin is successfully download and "
154
  "activated."
155
  msgstr "Вітаємо! PRO версію плагіну успішно завантажено та активовано."
156
 
157
+ #: bws_functions.php:336 bws_functions.php:418
158
  msgid "Please, go to"
159
  msgstr "Будь ласка, перейдіть на"
160
 
161
+ #: bws_functions.php:336 bws_functions.php:418
162
  msgid "the setting page"
163
  msgstr "сторінку установок"
164
 
165
+ #: bws_functions.php:337 bws_functions.php:419
166
  msgid "You will be redirected automatically in 5 seconds."
167
  msgstr "Вас буде перенаправлено автоматично через 5 секунд."
168
 
169
+ #: bws_functions.php:342
170
  msgid "You can download and activate"
171
  msgstr "Ви можете завантажити та активувати"
172
 
173
+ #: bws_functions.php:344
174
  msgid "version of this plugin by entering Your license key."
175
  msgstr "версію цього плагіну, якщо впишете ваш ліцензійний ключ."
176
 
177
+ #: bws_functions.php:346 bws_functions.php:387
178
  msgid ""
179
  "You can find your license key on your personal page Client area, by clicking "
180
  "on the link"
182
  "Ви можете знайти ваш ліцензійний ключ на вашій персональній сторінці у "
183
  "Client area, перейшовши за посиланням"
184
 
185
+ #: bws_functions.php:348 bws_functions.php:389
186
  msgid "(your username is the email you specify when purchasing the product)."
187
  msgstr "(ваше ім'я - це емейл, який ви вказували при купівлі плагіну)"
188
 
189
+ #: bws_functions.php:352
190
+ msgid "or"
191
+ msgstr "або"
192
+
193
+ #: bws_functions.php:352
194
+ #, php-format
195
+ msgid "Start Your Free %s-Day Trial Now"
196
+ msgstr "Спробуйте %s-денну тріал версію безкоштовно"
197
+
198
+ #: bws_functions.php:358 bws_functions.php:367 bws_functions.php:397
199
+ #: bws_functions.php:405 bws_menu.php:635 bws_menu.php:692
200
  msgid "Activate"
201
  msgstr "Активувати"
202
 
203
+ #: bws_functions.php:384 bws_functions.php:477
204
+ #, php-format
205
+ msgid ""
206
+ "In order to continue using the plugin it is necessary to buy a %s license."
207
+ msgstr "Щоб продовжити користуватись плагіном, потрібно придбати %s ліцензію."
208
+
209
+ #: bws_functions.php:385
210
+ msgid "After that you can activate it by entering your license key."
211
+ msgstr "Після цього ви зможете активувати його ввівши ліцензійний ключ."
212
+
213
  #: bws_functions.php:399
214
+ msgid "Unfortunately, you have exceeded the number of available tries per day."
215
+ msgstr "На жаль, ви перевищили кількість допустимих спроб."
216
+
217
+ #: bws_functions.php:416
218
+ msgid ""
219
+ "Congratulations! The PRO license of the plugin is successfully activated."
220
+ msgstr "Вітаємо! PRO версію плагіну успішно активовано."
221
+
222
+ #: bws_functions.php:457
223
+ msgid "Wrong license key."
224
+ msgstr "Неправильний ліцензійний ключ."
225
+
226
+ #: bws_functions.php:459
227
+ msgid "This license key is bind to another site."
228
+ msgstr "Цей ліцензійний ключ прив'язано до іншого сайту."
229
+
230
+ #: bws_functions.php:461
231
  msgid ""
232
  "This license key is valid, but Your license has expired. If you want to "
233
  "update our plugin in future, you should extend the license."
235
  "Даний ліцензійний ключ дійсний, але строк вашої ліцензії витік. Якщо ви "
236
  "хочете оновлювати наш плагін у майбутньому, вам слід подовжити ліцензію."
237
 
238
+ #: bws_functions.php:463
239
  msgid "Unfortunately, you have exceeded the number of available tries."
240
  msgstr "На жаль, ви перевищили кількість допустимих спроб."
241
 
242
+ #: bws_functions.php:465
243
+ msgid ""
244
+ "Unfortunately, the PRO Trial licence was already installed to this domain. "
245
+ "The PRO Trial license can be installed only once."
246
+ msgstr ""
247
+ "На жаль, тріал PRO версія плагіну уже встановлювалась на цей домен. Тріал "
248
+ "PRO версію можна встановлювати лише один раз."
249
 
250
+ #: bws_functions.php:469
251
+ msgid "The PRO Trial license key is valid."
252
+ msgstr "Ключ тріал PRO версії вірний."
253
+
254
+ #: bws_functions.php:471
255
  msgid "The license key is valid."
256
  msgstr "Ліцензійний ключ дійсний."
257
 
258
+ #: bws_functions.php:474
259
+ msgid "Your license will expire on"
260
+ msgstr "Ваша ліцензія закінчується"
261
+
262
+ #: bws_functions.php:507
263
  msgid "Please, enter your license key"
264
  msgstr "Будь ласка, введіть ваш ліцензійний ключ"
265
 
266
+ #: bws_functions.php:520
267
  msgid ""
268
  "If needed you can check if the license key is correct or reenter it in the "
269
  "field below. You can find your license key on your personal page - Client "
274
  "ліцензійний ключ на вашій персональній сторінці - Client area - на нашому "
275
  "сайті."
276
 
277
+ #: bws_functions.php:520
278
  msgid ""
279
  "(your username is the email you specify when purchasing the product). If "
280
  "necessary, please submit \"Lost your password?\" request."
283
  "продукту). При необхідності, будь ласка, відправте запит на відновлення "
284
  "вашого паролю."
285
 
286
+ #: bws_functions.php:524
287
  msgid "Check license key"
288
  msgstr "Перевірте ліцензійний ключ"
289
 
290
+ #: bws_functions.php:538
291
  msgid ""
292
  "WARNING: We have noticed illegal use of our plugin by you. We strongly "
293
  "recommend you to solve the problem within 24 hours, otherwise the plugin "
297
  "радимо вам вирішити цю проблему протягом доби, у противному разі плагін буде "
298
  "деактивовано. Будь ласка, зайдіть на вашу персональну сторінку"
299
 
300
+ #: bws_functions.php:538
301
  msgid ""
302
  "(your username is the email you specify when purchasing the product), where "
303
  "you can make the necessary changes."
305
  "(ім'я користувача - це електронна адреса, яку ви вказуєте при купівлі "
306
  "продукту), де ви можете внести потрібні зміни."
307
 
308
+ #: bws_functions.php:546
309
+ msgid ""
310
+ "Notice: Your PRO Trial license has expired. To continue using the plugin you "
311
+ "should buy a PRO license"
312
+ msgstr ""
313
+ "Увага: Термін дії тріал періоду PRO версії плагіну скінчився. Щоб продовжити "
314
+ "користуватись плагіном, будь ласка, придбайте ліцензію PRO"
315
+
316
+ #: bws_functions.php:548
317
  msgid ""
318
  "Your license has expired. To continue getting top-priority support and "
319
  "plugin updates you should extend it."
321
  "Строк вашої ліцензії витік. Якщо ви хочете оновлювати наш плагін у "
322
  "майбутньому, вам слід подовжити ліцензію."
323
 
324
+ #: bws_functions.php:548 bws_functions.php:601 bws_menu.php:611
325
+ #: bws_menu.php:633 bws_menu.php:660 bws_menu.php:690 bws_menu.php:736
326
  msgid "Learn more"
327
  msgstr "Дізнатись більше"
328
 
329
+ #: bws_functions.php:558
330
+ #, php-format
331
+ msgid "Notice: You are using the PRO Trial license of %s plugin."
332
+ msgstr "Увага: Ви використовуєте тріал PRO версію плагіну %s."
333
+
334
+ #: bws_functions.php:560
335
+ msgid "Notice: You are using the PRO Trial license of plugin."
336
+ msgstr "Увага: Ви використовуєте тріал PRO версію плагіну."
337
+
338
+ #: bws_functions.php:563
339
+ msgid "The PRO Trial license will expire on"
340
+ msgstr "Тріал період PRO версії плагіну закінчується"
341
+
342
+ #: bws_functions.php:601
343
  msgid "You license for"
344
  msgstr "Ваша ліцензія для"
345
 
346
+ #: bws_functions.php:601
347
  msgid "expires on"
348
  msgstr "витікає"
349
 
350
+ #: bws_functions.php:601
351
  msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
352
  msgstr ""
353
  "та ви більше не будете оримувати першочергову технічну підтримку та "
354
  "оновлення."
355
 
356
+ #: bws_functions.php:676
357
  msgid "Close"
358
  msgstr "Закрити"
359
 
360
+ #: bws_menu.php:448
361
  msgid "Not set"
362
  msgstr "Не задано"
363
 
364
+ #: bws_menu.php:450 bws_menu.php:451
365
  msgid "On"
366
  msgstr "Увімк."
367
 
368
+ #: bws_menu.php:450 bws_menu.php:451
369
  msgid "Off"
370
  msgstr "Вимк."
371
 
372
+ #: bws_menu.php:452 bws_menu.php:453 bws_menu.php:454 bws_menu.php:455
373
+ #: bws_menu.php:456 bws_menu.php:468
374
  msgid "N/A"
375
  msgstr "Невідомо"
376
 
377
+ #: bws_menu.php:456
378
  msgid " Mb"
379
  msgstr "Мб"
380
 
381
+ #: bws_menu.php:457 bws_menu.php:458 bws_menu.php:459 bws_menu.php:464
382
  msgid "Yes"
383
  msgstr "Так"
384
 
385
+ #: bws_menu.php:457 bws_menu.php:458 bws_menu.php:459 bws_menu.php:466
386
  msgid "No"
387
  msgstr "Ні"
388
 
389
+ #: bws_menu.php:476
390
  msgid "Operating System"
391
  msgstr "Операційна система"
392
 
393
+ #: bws_menu.php:477
394
  msgid "Server"
395
  msgstr "Тип серверу"
396
 
397
+ #: bws_menu.php:478
398
  msgid "Memory usage"
399
  msgstr "Пам’яті використано"
400
 
401
+ #: bws_menu.php:479
402
  msgid "MYSQL Version"
403
  msgstr "Версія MYSQL"
404
 
405
+ #: bws_menu.php:480
406
  msgid "SQL Mode"
407
  msgstr "Режим SQL"
408
 
409
+ #: bws_menu.php:481
410
  msgid "PHP Version"
411
  msgstr "Версія PHP"
412
 
413
+ #: bws_menu.php:482
414
  msgid "PHP Safe Mode"
415
  msgstr "PHP Безпечний режим"
416
 
417
+ #: bws_menu.php:483
418
  msgid "PHP Allow URL fopen"
419
  msgstr "Дозволити PHP URL fopen"
420
 
421
+ #: bws_menu.php:484
422
  msgid "PHP Memory Limit"
423
  msgstr "Ліміт пам’яті"
424
 
425
+ #: bws_menu.php:485
426
  msgid "PHP Max Upload Size"
427
  msgstr "Макс. розмір файлу, що завантажується"
428
 
429
+ #: bws_menu.php:486
430
  msgid "PHP Max Post Size"
431
  msgstr "Макс. розмір посту"
432
 
433
+ #: bws_menu.php:487
434
  msgid "PHP Max Script Execute Time"
435
  msgstr "Макс. час виконання сценарію"
436
 
437
+ #: bws_menu.php:488
438
  msgid "PHP Exif support"
439
  msgstr "Підтримка PHP Exif"
440
 
441
+ #: bws_menu.php:489
442
  msgid "PHP IPTC support"
443
  msgstr "Підтримка PHP IPTC"
444
 
445
+ #: bws_menu.php:490
446
  msgid "PHP XML support"
447
  msgstr "Підтримка PHP XML"
448
 
449
+ #: bws_menu.php:491
450
  msgid "Site URL"
451
  msgstr "Адреса сайту"
452
 
453
+ #: bws_menu.php:492
454
  msgid "Home URL"
455
  msgstr "Адреса домашньої сторінки"
456
 
457
+ #: bws_menu.php:495
458
  msgid "WordPress Version"
459
  msgstr "Версія WordPress"
460
 
461
+ #: bws_menu.php:496
462
  msgid "WordPress DB Version"
463
  msgstr "Версія бази даних WordPress"
464
 
465
+ #: bws_menu.php:497
466
  msgid "Multisite"
467
  msgstr "Мультисайт"
468
 
469
+ #: bws_menu.php:498
470
  msgid "Active Theme"
471
  msgstr "Активна тема"
472
 
473
+ #: bws_menu.php:513
474
  msgid "Please enter a valid email address."
475
  msgstr "Будь ласка, введіть коректний емейл."
476
 
477
+ #: bws_menu.php:517
478
  msgid "Email with system info is sent to "
479
  msgstr "Емейл з системною інформацією надіслано на"
480
 
481
+ #: bws_menu.php:521
482
  msgid "Thank you for contacting us."
483
  msgstr "Дякуємо, що звернулись до нас."
484
 
485
+ #: bws_menu.php:554
486
  msgid "Sorry, email message could not be delivered."
487
  msgstr "Вибачте, ваше емейл не може бути доставлено"
488
 
489
+ #: bws_menu.php:562
490
  msgid "Need help?"
491
  msgstr "Потрібна допомога?"
492
 
493
+ #: bws_menu.php:563
494
  msgid "Client area"
495
  msgstr "Клієнтам"
496
 
497
+ #: bws_menu.php:564 bws_menu.php:875
498
  msgid "System status"
499
  msgstr "Системна інформація"
500
 
501
+ #: bws_menu.php:569
502
  msgid "Plugins"
503
  msgstr "Плагіни"
504
 
505
+ #: bws_menu.php:571
506
  msgid "Themes"
507
  msgstr "Теми"
508
 
509
+ #: bws_menu.php:576
510
  msgid "All"
511
  msgstr "Всі"
512
 
513
+ #: bws_menu.php:577
514
  msgid "Installed"
515
  msgstr "Встановлені"
516
 
517
+ #: bws_menu.php:578
518
  msgid "Recommended"
519
  msgstr "Рекомендовані "
520
 
521
+ #: bws_menu.php:582
522
  msgid "Installed plugins"
523
  msgstr "Встановлені плагіни"
524
 
525
+ #: bws_menu.php:614 bws_menu.php:663
526
  msgid "Settings"
527
  msgstr "Налаштування"
528
 
529
+ #: bws_menu.php:635 bws_menu.php:692
530
  msgid "Activate this plugin"
531
  msgstr "Активувати плагін"
532
 
533
+ #: bws_menu.php:650 bws_menu.php:680 bws_menu.php:726
534
  msgid "Go"
535
  msgstr "Перейти"
536
 
537
+ #: bws_menu.php:654 bws_menu.php:684 bws_menu.php:730
538
  msgid "DONATE"
539
  msgstr "Підтримати нас"
540
 
541
+ #: bws_menu.php:700
542
  msgid "Recommended plugins"
543
  msgstr "Рекомендовані плагіни"
544
 
545
+ #: bws_menu.php:738
546
  msgid "Install now"
547
  msgstr "Встановити"
548
 
549
+ #: bws_menu.php:759
550
  msgid "Try again"
551
  msgstr "Спробувати ще раз"
552
 
553
+ #: bws_menu.php:777
554
  #, php-format
555
  msgid "Preview &#8220;%s&#8221;"
556
  msgstr "Попередній перегляд &#8220;%s&#8221;"
557
 
558
+ #: bws_menu.php:808
559
  #, php-format
560
  msgid "Install %s"
561
  msgstr "Встановити %s"
562
 
563
+ #: bws_menu.php:808
564
  msgid "Install Now"
565
  msgstr "Встановити"
566
 
567
+ #: bws_menu.php:811
568
  #, php-format
569
  msgid "Update to version %s"
570
  msgstr "Оновити до версії %s"
571
 
572
+ #: bws_menu.php:811
573
  msgid "Update"
574
  msgstr "Оновити"
575
 
576
+ #: bws_menu.php:818
577
  #, php-format
578
  msgid "Preview %s"
579
  msgstr "Попередній перегляд %s"
580
 
581
+ #: bws_menu.php:818
582
  msgid "Preview"
583
  msgstr "Попередній перегляд"
584
 
585
+ #: bws_menu.php:824 bws_menu.php:856
586
  #, php-format
587
  msgid "By %s"
588
  msgstr "За %s"
589
 
590
+ #: bws_menu.php:830
591
  msgid "Details"
592
  msgstr "Деталі"
593
 
594
+ #: bws_menu.php:862
595
  msgid "Already Installed"
596
  msgstr "Уже встановлено %s"
597
 
598
+ #: bws_menu.php:878
599
  msgid "Environment"
600
  msgstr "Системне оточення"
601
 
602
+ #: bws_menu.php:889
603
  msgid "Active Plugins"
604
  msgstr "Активні плагіни"
605
 
606
+ #: bws_menu.php:902
607
  msgid "Inactive Plugins"
608
  msgstr "Не активні плагіни"
609
 
610
+ #: bws_menu.php:918
611
  msgid "Send to support"
612
  msgstr "Відправити службі тех. підтримки"
613
 
614
+ #: bws_menu.php:925
615
  msgid "Send to custom email &#187;"
616
  msgstr "Відправити на електронну адресу &#187;"
617
 
776
  #~ msgid "three"
777
  #~ msgstr "три"
778
 
 
 
 
779
  #~ msgid "five"
780
  #~ msgstr "пять"
781
 
css/style.css CHANGED
@@ -11,15 +11,13 @@
11
  }
12
  .fcbk_share {
13
  clear: both;
14
- height: 40px;
15
  line-height: 1;
16
  }
17
  .fcbk_button {
18
- float: left;
19
  margin-right: 10px;
20
  }
21
  .fcbk_button a {
22
- height: 40px;
23
  display: block;
24
  border-bottom: 0px !important;
25
  }
@@ -27,7 +25,7 @@
27
  opacity: 0.9;
28
  }
29
  .fcbk_like {
30
- float: left;
31
  position: relative;
32
  }
33
  .fb_edge_widget_with_comment span {
@@ -36,3 +34,6 @@
36
  .fcbk_like iframe {
37
  max-width: 450px;
38
  }
 
 
 
11
  }
12
  .fcbk_share {
13
  clear: both;
 
14
  line-height: 1;
15
  }
16
  .fcbk_button {
17
+ display: inline-block;
18
  margin-right: 10px;
19
  }
20
  .fcbk_button a {
 
21
  display: block;
22
  border-bottom: 0px !important;
23
  }
25
  opacity: 0.9;
26
  }
27
  .fcbk_like {
28
+ display: inline-block;
29
  position: relative;
30
  }
31
  .fb_edge_widget_with_comment span {
34
  .fcbk_like iframe {
35
  max-width: 450px;
36
  }
37
+ .fcbk_button a img {
38
+ display: inline-block !important;
39
+ }
facebook-button-plugin.php CHANGED
@@ -1,10 +1,10 @@
1
  <?php
2
- /*
3
  Plugin Name: Facebook Button by BestWebSoft
4
  Plugin URI: http://bestwebsoft.com/products/
5
  Description: Put Facebook Button in to your post.
6
  Author: BestWebSoft
7
- Version: 2.37
8
  Author URI: http://bestwebsoft.com/
9
  License: GPLv2 or later
10
  */
@@ -25,21 +25,21 @@ License: GPLv2 or later
25
  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
26
  */
27
 
 
28
  if ( ! function_exists( 'fcbkbttn_add_pages' ) ) {
29
  function fcbkbttn_add_pages() {
30
  bws_add_general_menu( plugin_basename( __FILE__ ) );
31
  add_submenu_page( 'bws_plugins', 'Facebook Button ' . __( 'Settings', 'facebook' ), 'Facebook Button', 'manage_options', "facebook-button-plugin.php", 'fcbkbttn_settings_page' );
32
  }
33
  }
 
34
 
35
  /* Initialization */
36
  if ( ! function_exists( 'fcbkbttn_init' ) ) {
37
  function fcbkbttn_init() {
38
- global $fcbkbttn_options, $fcbkbttn_plugin_info;
39
  /* Internationalization, first(!) */
40
  load_plugin_textdomain( 'facebook', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' );
41
-
42
- require_once( dirname( __FILE__ ) . '/bws_menu/bws_functions.php' );
43
 
44
  if ( empty( $fcbkbttn_plugin_info ) ) {
45
  if ( ! function_exists( 'get_plugin_data' ) )
@@ -47,11 +47,13 @@ if ( ! function_exists( 'fcbkbttn_init' ) ) {
47
  $fcbkbttn_plugin_info = get_plugin_data( __FILE__ );
48
  }
49
 
50
- /* Function check if plugin is compatible with current WP version */
51
- bws_wp_version_check( plugin_basename( __FILE__ ), $fcbkbttn_plugin_info, "3.0" );
 
 
52
 
53
  /* Get options from the database */
54
- if ( ! is_admin() || ( isset( $_GET['page'] ) && "facebook-button-plugin.php" == $_GET['page'] ) ) {
55
  /* Get/Register and check settings for plugin */
56
  fcbkbttn_settings();
57
  }
@@ -59,6 +61,7 @@ if ( ! function_exists( 'fcbkbttn_init' ) ) {
59
  }
60
  /* End function init */
61
 
 
62
  if ( ! function_exists( 'fcbkbttn_admin_init' ) ) {
63
  function fcbkbttn_admin_init() {
64
  /* Add variable for bws_menu */
@@ -69,6 +72,7 @@ if ( ! function_exists( 'fcbkbttn_admin_init' ) ) {
69
  }
70
  }
71
  }
 
72
 
73
  if ( ! function_exists( 'fcbkbttn_settings' ) ) {
74
  function fcbkbttn_settings() {
@@ -121,12 +125,10 @@ if ( ! function_exists( 'fcbkbttn_settings' ) ) {
121
  }
122
  }
123
 
124
-
125
  /* Function formed content of the plugin's admin page. */
126
  if ( ! function_exists( 'fcbkbttn_settings_page' ) ) {
127
  function fcbkbttn_settings_page() {
128
  global $fcbkbttn_options, $wp_version, $fcbkbttn_plugin_info;
129
- $copy = false;
130
  $message = $error = "";
131
  $upload_dir = wp_upload_dir();
132
  $plugin_basename = plugin_basename( __FILE__ );
@@ -215,16 +217,18 @@ if ( ! function_exists( 'fcbkbttn_settings_page' ) ) {
215
  }
216
  }
217
  }
218
- /* GO PRO */
 
 
 
 
 
219
  if ( isset( $_GET['action'] ) && 'go_pro' == $_GET['action'] ) {
220
  $go_pro_result = bws_go_pro_tab_check( $plugin_basename );
221
  if ( ! empty( $go_pro_result['error'] ) )
222
  $error = $go_pro_result['error'];
223
- }
224
- $lang_codes = array(
225
- "af_ZA" => 'Afrikaans', "ar_AR" => 'العربية', "ay_BO" => 'Aymar aru', "az_AZ" => 'Azərbaycan dili', "be_BY" => 'Беларуская', "bg_BG" => 'Български', "bn_IN" => 'বাংলা', "bs_BA" => 'Bosanski', "ca_ES" => 'Català', "ck_US" => 'Cherokee', "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_CL" => 'Español (Chile)', "es_CO" => 'Español (Colombia)', "es_ES" => 'Español (España)', "es_LA" => 'Español', "es_MX" => 'Español (México)', "es_VE" => 'Español (Venezuela)', "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" => 'ગુજરાતી', "gx_GR" => 'Ἑλληνική ἀρχαία', "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', "li_NL" => 'Limburgs', "lt_LT" => 'Lietuvių', "lv_LV" => 'Latviešu', "mg_MG" => 'Malagasy', "mk_MK" => 'Македонски', "ml_IN" => 'മലയാളം', "mn_MN" => 'Монгол', "mr_IN" => 'मराठी', "ms_MY" => 'Bahasa Melayu', "mt_MT" => 'Malti', "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)', "qu_PE" => 'Qhichwa', "rm_CH" => 'Rumantsch', "ro_RO" => 'Română', "ru_RU" => 'Русский', "sa_IN" => 'संस्कृतम्', "se_NO" => 'Davvisámegiella', "sk_SK" => 'Slovenčina', "sl_SI" => 'Slovenščina', "so_SO" => 'Soomaaliga', "sq_AL" => 'Shqip', "sr_RS" => 'Српски', "sv_SE" => 'Svenska', "sw_KE" => 'Kiswahili', "sy_SY" => 'ܐܪܡܝܐ', "ta_IN" => 'தமிழ்', "te_IN" => 'తెలుగు', "tg_TJ" => 'тоҷикӣ', "th_TH" => 'ภาษาไทย', "tl_PH" => 'Filipino', "tl_ST" => 'tlhIngan-Hol', "tr_TR" => 'Türkçe', "tt_RU" => 'Татарча', "uk_UA" => 'Українська', "ur_PK" => 'اردو', "uz_UZ" => "O'zbek", "vi_VN" => 'Tiếng Việt', "yi_DE" => 'ייִדיש', "zh_CN" => '中文(简体)', "zh_HK" => '中文(香港)', "zh_TW" => '中文(台灣)', "zu_ZA" => 'isiZulu'
226
- );
227
- ?>
228
  <div class="wrap">
229
  <div class="icon32 icon32-bws" id="icon-options-general"></div>
230
  <h2>Facebook Button <?php _e( "Settings", 'facebook' ); ?></h2>
@@ -234,11 +238,12 @@ if ( ! function_exists( 'fcbkbttn_settings_page' ) ) {
234
  <a class="nav-tab" href="http://bestwebsoft.com/products/facebook-like-button/faq/" target="_blank" ><?php _e( 'FAQ', 'facebook' ); ?></a>
235
  <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' ); ?></a>
236
  </h2>
 
237
  <div class="updated fade" <?php if ( empty( $message ) || "" != $error ) echo "style=\"display:none\""; ?>><p><strong><?php echo $message; ?></strong></p></div>
238
- <div id="fcbkbttn_settings_notice" class="updated fade" style="display:none"><p><strong><?php _e( "Notice:", 'facebook' ); ?></strong> <?php _e( "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button.", 'facebook' ); ?></p></div>
239
  <div class="error" <?php if ( "" == $error ) echo "style=\"display:none\""; ?>><p><strong><?php echo $error; ?></strong></p></div>
240
- <?php if ( ! isset( $_GET['action'] ) ) { ?>
241
- <form name="form1" method="post" action="admin.php?page=facebook-button-plugin.php" enctype="multipart/form-data" id="fcbkbttn_settings_form">
242
  <table class="form-table">
243
  <tr valign="top">
244
  <th scope="row"><?php _e( "Your Facebook ID or username:", 'facebook' ); ?></th>
@@ -325,6 +330,7 @@ if ( ! function_exists( 'fcbkbttn_settings_page' ) ) {
325
  </td>
326
  </tr>
327
  </table>
 
328
  <div class="bws_pro_version_bloc">
329
  <div class="bws_pro_version_table_bloc">
330
  <div class="bws_table_bg"></div>
@@ -353,12 +359,14 @@ if ( ! function_exists( 'fcbkbttn_settings_page' ) ) {
353
  <div class="clear"></div>
354
  </div>
355
  </div>
 
356
  <input type="hidden" name="fcbkbttn_form_submit" value="submit" />
357
  <p class="submit">
358
  <input type="submit" class="button-primary" value="<?php _e( 'Save Changes', 'facebook' ); ?>" />
359
  </p>
360
  <?php wp_nonce_field( $plugin_basename, 'fcbkbttn_nonce_name' ); ?>
361
  </form>
 
362
  <?php bws_plugin_reviews_block( $fcbkbttn_plugin_info['Name'], 'facebook-button-plugin' );
363
  } elseif ( 'extra' == $_GET['action'] ) { ?>
364
  <div class="bws_pro_version_bloc">
@@ -410,6 +418,7 @@ if ( ! function_exists( 'fcbkbttn_settings_page' ) ) {
410
  bws_go_pro_tab( $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'] ) );
411
  } ?>
412
  </div>
 
413
  <?php }
414
  }
415
 
@@ -549,7 +558,21 @@ if ( ! function_exists( 'fcbkbttn_footer_script' ) ) {
549
  }
550
  }
551
 
552
- /* Function is using to create action links on admin page. */
 
 
 
 
 
 
 
 
 
 
 
 
 
 
553
  if ( ! function_exists( 'fcbkbttn_action_links' ) ) {
554
  function fcbkbttn_action_links( $links, $file ) {
555
  if ( ! is_network_admin() ) {
@@ -564,9 +587,9 @@ if ( ! function_exists( 'fcbkbttn_action_links' ) ) {
564
  }
565
  return $links;
566
  }
567
- } /* End function fcbkbttn_action_links */
 
568
 
569
- /* Function are using to create other links on admin page. */
570
  if ( ! function_exists ( 'fcbkbttn_links' ) ) {
571
  function fcbkbttn_links( $links, $file ) {
572
  $base = plugin_basename( __FILE__ );
@@ -581,24 +604,12 @@ if ( ! function_exists ( 'fcbkbttn_links' ) ) {
581
  }
582
  /* End function fcbkbttn_links */
583
 
584
- if ( ! function_exists( 'fcbkbttn_admin_head' ) ) {
585
- function fcbkbttn_admin_head() {
586
- global $fcbkbttn_options;
587
- if ( ! is_admin() || ( isset( $_GET['page'] ) && "facebook-button-plugin.php" == $_GET['page'] ) ) {
588
- wp_enqueue_style( 'fcbk_stylesheet', plugins_url( 'css/style.css', __FILE__ ) );
589
- wp_enqueue_script( 'fcbk_script', plugins_url( 'js/script.js', __FILE__ ), array( 'jquery' ) );
590
- if ( ( 1 == $fcbkbttn_options['like'] || 1 == $fcbkbttn_options['share'] ) && 'en_US' != $fcbkbttn_options['locale'] )
591
- wp_enqueue_script( 'fcbk_connect', '//connect.facebook.net/' . $fcbkbttn_options['locale'] . '/all.js#xfbml=1&appId=1443946719181573' );
592
- }
593
- }
594
- }
595
-
596
  if ( ! function_exists ( 'fcbkbttn_plugin_banner' ) ) {
597
  function fcbkbttn_plugin_banner() {
598
  global $hook_suffix;
599
  if ( 'plugins.php' == $hook_suffix ) {
600
  global $fcbkbttn_plugin_info;
601
- bws_plugin_banner( $fcbkbttn_plugin_info, 'fcbkbttn', 'facebook-like-button', '45862a4b3cd7a03768666310fbdb19db', '78', plugins_url( 'images/banner.png', __FILE__ ) );
602
  }
603
  }
604
  }
@@ -609,29 +620,32 @@ if ( ! function_exists( 'fcbkbttn_delete_options' ) ) {
609
  if ( ! function_exists( 'get_plugins' ) )
610
  require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
611
  $all_plugins = get_plugins();
612
- if ( ! array_key_exists( 'facebook-button-pro/facebook-button-pro.php', $all_plugins ) ) {
613
- /* delete custom images if no PRO version */
614
- $upload_dir = wp_upload_dir();
615
- $fcbkbttn_cstm_mg_folder = $upload_dir['basedir'] . '/facebook-image/';
616
- if ( is_dir( $fcbkbttn_cstm_mg_folder ) ) {
617
- $fcbkbttn_cstm_mg_files = scandir( $fcbkbttn_cstm_mg_folder );
618
- foreach ( $fcbkbttn_cstm_mg_files as $value ) {
619
- @unlink ( $fcbkbttn_cstm_mg_folder . $value );
 
 
 
 
620
  }
621
- @rmdir( $fcbkbttn_cstm_mg_folder );
622
  }
 
623
  }
624
- delete_option( 'fcbk_bttn_plgn_options' );
625
- delete_site_option( 'fcbk_bttn_plgn_options' );
626
  }
627
  }
628
 
629
  /* Calling a function add administrative menu. */
630
  add_action( 'admin_menu', 'fcbkbttn_add_pages' );
631
- /* Initialization */
632
  add_action( 'init', 'fcbkbttn_init' );
 
633
  add_action( 'admin_init', 'fcbkbttn_admin_init' );
634
- /* Adding stylesheets */
635
  add_action( 'wp_enqueue_scripts', 'fcbkbttn_admin_head' );
636
  add_action( 'admin_enqueue_scripts', 'fcbkbttn_admin_head' );
637
  /* Adding front-end stylesheets */
@@ -640,11 +654,11 @@ add_action( 'wp_footer', 'fcbkbttn_footer_script' );
640
  /* Add shortcode and plugin buttons */
641
  add_shortcode( 'fb_button', 'fcbkbttn_shortcode' );
642
  add_filter( 'the_content', 'fcbkbttn_display_button' );
643
- /* Additional links on the plugin page */
644
  add_filter( 'plugin_action_links', 'fcbkbttn_action_links', 10, 2 );
645
  add_filter( 'plugin_row_meta', 'fcbkbttn_links', 10, 2 );
646
  /* Adding banner */
647
  add_action( 'admin_notices', 'fcbkbttn_plugin_banner' );
648
  /* Plugin uninstall function */
649
  register_uninstall_hook( __FILE__, 'fcbkbttn_delete_options' );
650
- ?>
1
  <?php
2
+ /*##
3
  Plugin Name: Facebook Button by BestWebSoft
4
  Plugin URI: http://bestwebsoft.com/products/
5
  Description: Put Facebook Button in to your post.
6
  Author: BestWebSoft
7
+ Version: 2.38
8
  Author URI: http://bestwebsoft.com/
9
  License: GPLv2 or later
10
  */
25
  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
26
  */
27
 
28
+ /* Add BWS menu */
29
  if ( ! function_exists( 'fcbkbttn_add_pages' ) ) {
30
  function fcbkbttn_add_pages() {
31
  bws_add_general_menu( plugin_basename( __FILE__ ) );
32
  add_submenu_page( 'bws_plugins', 'Facebook Button ' . __( 'Settings', 'facebook' ), 'Facebook Button', 'manage_options', "facebook-button-plugin.php", 'fcbkbttn_settings_page' );
33
  }
34
  }
35
+ /* end fcbkbttn_add_pages ##*/
36
 
37
  /* Initialization */
38
  if ( ! function_exists( 'fcbkbttn_init' ) ) {
39
  function fcbkbttn_init() {
40
+ global $fcbkbttn_plugin_info;
41
  /* Internationalization, first(!) */
42
  load_plugin_textdomain( 'facebook', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' );
 
 
43
 
44
  if ( empty( $fcbkbttn_plugin_info ) ) {
45
  if ( ! function_exists( 'get_plugin_data' ) )
47
  $fcbkbttn_plugin_info = get_plugin_data( __FILE__ );
48
  }
49
 
50
+ /*## add general functions */
51
+ require_once( dirname( __FILE__ ) . '/bws_menu/bws_functions.php' );
52
+
53
+ bws_wp_version_check( plugin_basename( __FILE__ ), $fcbkbttn_plugin_info, "3.0" ); /* check compatible with current WP version ##*/
54
 
55
  /* Get options from the database */
56
+ if ( ! is_admin() || ( isset( $_GET['page'] ) && ( "facebook-button-plugin.php" == $_GET['page'] || "social-buttons.php" == $_GET['page'] ) ) ) {
57
  /* Get/Register and check settings for plugin */
58
  fcbkbttn_settings();
59
  }
61
  }
62
  /* End function init */
63
 
64
+ /*## Function for admin_init */
65
  if ( ! function_exists( 'fcbkbttn_admin_init' ) ) {
66
  function fcbkbttn_admin_init() {
67
  /* Add variable for bws_menu */
72
  }
73
  }
74
  }
75
+ /* end fcbkbttn_admin_init ##*/
76
 
77
  if ( ! function_exists( 'fcbkbttn_settings' ) ) {
78
  function fcbkbttn_settings() {
125
  }
126
  }
127
 
 
128
  /* Function formed content of the plugin's admin page. */
129
  if ( ! function_exists( 'fcbkbttn_settings_page' ) ) {
130
  function fcbkbttn_settings_page() {
131
  global $fcbkbttn_options, $wp_version, $fcbkbttn_plugin_info;
 
132
  $message = $error = "";
133
  $upload_dir = wp_upload_dir();
134
  $plugin_basename = plugin_basename( __FILE__ );
217
  }
218
  }
219
  }
220
+
221
+ $lang_codes = array(
222
+ "af_ZA" => 'Afrikaans', "ar_AR" => 'العربية', "ay_BO" => 'Aymar aru', "az_AZ" => 'Azərbaycan dili', "be_BY" => 'Беларуская', "bg_BG" => 'Български', "bn_IN" => 'বাংলা', "bs_BA" => 'Bosanski', "ca_ES" => 'Català', "ck_US" => 'Cherokee', "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_CL" => 'Español (Chile)', "es_CO" => 'Español (Colombia)', "es_ES" => 'Español (España)', "es_LA" => 'Español', "es_MX" => 'Español (México)', "es_VE" => 'Español (Venezuela)', "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" => 'ગુજરાતી', "gx_GR" => 'Ἑλληνική ἀρχαία', "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', "li_NL" => 'Limburgs', "lt_LT" => 'Lietuvių', "lv_LV" => 'Latviešu', "mg_MG" => 'Malagasy', "mk_MK" => 'Македонски', "ml_IN" => 'മലയാളം', "mn_MN" => 'Монгол', "mr_IN" => 'मराठी', "ms_MY" => 'Bahasa Melayu', "mt_MT" => 'Malti', "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)', "qu_PE" => 'Qhichwa', "rm_CH" => 'Rumantsch', "ro_RO" => 'Română', "ru_RU" => 'Русский', "sa_IN" => 'संस्कृतम्', "se_NO" => 'Davvisámegiella', "sk_SK" => 'Slovenčina', "sl_SI" => 'Slovenščina', "so_SO" => 'Soomaaliga', "sq_AL" => 'Shqip', "sr_RS" => 'Српски', "sv_SE" => 'Svenska', "sw_KE" => 'Kiswahili', "sy_SY" => 'ܐܪܡܝܐ', "ta_IN" => 'தமிழ்', "te_IN" => 'తెలుగు', "tg_TJ" => 'тоҷикӣ', "th_TH" => 'ภาษาไทย', "tl_PH" => 'Filipino', "tl_ST" => 'tlhIngan-Hol', "tr_TR" => 'Türkçe', "tt_RU" => 'Татарча', "uk_UA" => 'Українська', "ur_PK" => 'اردو', "uz_UZ" => "O'zbek", "vi_VN" => 'Tiếng Việt', "yi_DE" => 'ייִדיש', "zh_CN" => '中文(简体)', "zh_HK" => '中文(香港)', "zh_TW" => '中文(台灣)', "zu_ZA" => 'isiZulu'
223
+ );
224
+
225
+ /*## GO PRO */
226
  if ( isset( $_GET['action'] ) && 'go_pro' == $_GET['action'] ) {
227
  $go_pro_result = bws_go_pro_tab_check( $plugin_basename );
228
  if ( ! empty( $go_pro_result['error'] ) )
229
  $error = $go_pro_result['error'];
230
+ }/* end GO PRO ##*/ ?>
231
+ <!-- general -->
 
 
 
232
  <div class="wrap">
233
  <div class="icon32 icon32-bws" id="icon-options-general"></div>
234
  <h2>Facebook Button <?php _e( "Settings", 'facebook' ); ?></h2>
238
  <a class="nav-tab" href="http://bestwebsoft.com/products/facebook-like-button/faq/" target="_blank" ><?php _e( 'FAQ', 'facebook' ); ?></a>
239
  <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' ); ?></a>
240
  </h2>
241
+ <!-- end general -->
242
  <div class="updated fade" <?php if ( empty( $message ) || "" != $error ) echo "style=\"display:none\""; ?>><p><strong><?php echo $message; ?></strong></p></div>
243
+ <div id="fcbkbttn_settings_notice" class="updated fade bws_settings_form_notice" style="display:none"><p><strong><?php _e( "Notice:", 'facebook' ); ?></strong> <?php _e( "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button.", 'facebook' ); ?></p></div>
244
  <div class="error" <?php if ( "" == $error ) echo "style=\"display:none\""; ?>><p><strong><?php echo $error; ?></strong></p></div>
245
+ <?php /*## check action */ if ( ! isset( $_GET['action'] ) ) { /* check action ##*/ ?>
246
+ <form method="post" action="" enctype="multipart/form-data" id="fcbkbttn_settings_form" class="bws_settings_form">
247
  <table class="form-table">
248
  <tr valign="top">
249
  <th scope="row"><?php _e( "Your Facebook ID or username:", 'facebook' ); ?></th>
330
  </td>
331
  </tr>
332
  </table>
333
+ <!-- general -->
334
  <div class="bws_pro_version_bloc">
335
  <div class="bws_pro_version_table_bloc">
336
  <div class="bws_table_bg"></div>
359
  <div class="clear"></div>
360
  </div>
361
  </div>
362
+ <!-- end general -->
363
  <input type="hidden" name="fcbkbttn_form_submit" value="submit" />
364
  <p class="submit">
365
  <input type="submit" class="button-primary" value="<?php _e( 'Save Changes', 'facebook' ); ?>" />
366
  </p>
367
  <?php wp_nonce_field( $plugin_basename, 'fcbkbttn_nonce_name' ); ?>
368
  </form>
369
+ <!-- general -->
370
  <?php bws_plugin_reviews_block( $fcbkbttn_plugin_info['Name'], 'facebook-button-plugin' );
371
  } elseif ( 'extra' == $_GET['action'] ) { ?>
372
  <div class="bws_pro_version_bloc">
418
  bws_go_pro_tab( $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'] ) );
419
  } ?>
420
  </div>
421
+ <!-- end general -->
422
  <?php }
423
  }
424
 
558
  }
559
  }
560
 
561
+ if ( ! function_exists( 'fcbkbttn_admin_head' ) ) {
562
+ function fcbkbttn_admin_head() {
563
+ global $fcbkbttn_options;
564
+ if ( isset( $_GET['page'] ) && "facebook-button-plugin.php" == $_GET['page'] ) {
565
+ wp_enqueue_script( 'fcbk_script', plugins_url( 'js/script.js', __FILE__ ), array( 'jquery' ) );
566
+ wp_enqueue_style( 'fcbk_stylesheet', plugins_url( 'css/style.css', __FILE__ ) );
567
+ } elseif ( ! is_admin() ) {
568
+ wp_enqueue_style( 'fcbk_stylesheet', plugins_url( 'css/style.css', __FILE__ ) );
569
+ if ( ( 1 == $fcbkbttn_options['like'] || 1 == $fcbkbttn_options['share'] ) && 'en_US' != $fcbkbttn_options['locale'] )
570
+ wp_enqueue_script( 'fcbk_connect', '//connect.facebook.net/' . $fcbkbttn_options['locale'] . '/all.js#xfbml=1&appId=1443946719181573' );
571
+ }
572
+ }
573
+ }
574
+
575
+ /*## Functions creates other links on plugins page. */
576
  if ( ! function_exists( 'fcbkbttn_action_links' ) ) {
577
  function fcbkbttn_action_links( $links, $file ) {
578
  if ( ! is_network_admin() ) {
587
  }
588
  return $links;
589
  }
590
+ }
591
+ /* End function fcbkbttn_action_links */
592
 
 
593
  if ( ! function_exists ( 'fcbkbttn_links' ) ) {
594
  function fcbkbttn_links( $links, $file ) {
595
  $base = plugin_basename( __FILE__ );
604
  }
605
  /* End function fcbkbttn_links */
606
 
 
 
 
 
 
 
 
 
 
 
 
 
607
  if ( ! function_exists ( 'fcbkbttn_plugin_banner' ) ) {
608
  function fcbkbttn_plugin_banner() {
609
  global $hook_suffix;
610
  if ( 'plugins.php' == $hook_suffix ) {
611
  global $fcbkbttn_plugin_info;
612
+ bws_plugin_banner( $fcbkbttn_plugin_info, 'fcbkbttn', 'facebook-like-button', '45862a4b3cd7a03768666310fbdb19db', '78', 'http://ps.w.org/facebook-button-plugin/assets/icon-128x128.png' );
613
  }
614
  }
615
  }
620
  if ( ! function_exists( 'get_plugins' ) )
621
  require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
622
  $all_plugins = get_plugins();
623
+
624
+ if ( ! array_key_exists( 'bws-social-buttons/bws-social-buttons.php', $all_plugins ) ) {
625
+ if ( ! array_key_exists( 'facebook-button-pro/facebook-button-pro.php', $all_plugins ) ) {
626
+ /* delete custom images if no PRO version */
627
+ $upload_dir = wp_upload_dir();
628
+ $fcbkbttn_cstm_mg_folder = $upload_dir['basedir'] . '/facebook-image/';
629
+ if ( is_dir( $fcbkbttn_cstm_mg_folder ) ) {
630
+ $fcbkbttn_cstm_mg_files = scandir( $fcbkbttn_cstm_mg_folder );
631
+ foreach ( $fcbkbttn_cstm_mg_files as $value ) {
632
+ @unlink ( $fcbkbttn_cstm_mg_folder . $value );
633
+ }
634
+ @rmdir( $fcbkbttn_cstm_mg_folder );
635
  }
 
636
  }
637
+ delete_option( 'fcbk_bttn_plgn_options' );
638
  }
 
 
639
  }
640
  }
641
 
642
  /* Calling a function add administrative menu. */
643
  add_action( 'admin_menu', 'fcbkbttn_add_pages' );
644
+ /* Initialization ##*/
645
  add_action( 'init', 'fcbkbttn_init' );
646
+ /*## admin_init */
647
  add_action( 'admin_init', 'fcbkbttn_admin_init' );
648
+ /* Adding stylesheets ##*/
649
  add_action( 'wp_enqueue_scripts', 'fcbkbttn_admin_head' );
650
  add_action( 'admin_enqueue_scripts', 'fcbkbttn_admin_head' );
651
  /* Adding front-end stylesheets */
654
  /* Add shortcode and plugin buttons */
655
  add_shortcode( 'fb_button', 'fcbkbttn_shortcode' );
656
  add_filter( 'the_content', 'fcbkbttn_display_button' );
657
+ /*## Additional links on the plugin page */
658
  add_filter( 'plugin_action_links', 'fcbkbttn_action_links', 10, 2 );
659
  add_filter( 'plugin_row_meta', 'fcbkbttn_links', 10, 2 );
660
  /* Adding banner */
661
  add_action( 'admin_notices', 'fcbkbttn_plugin_banner' );
662
  /* Plugin uninstall function */
663
  register_uninstall_hook( __FILE__, 'fcbkbttn_delete_options' );
664
+ /* end ##*/
images/banner.png DELETED
Binary file
languages/facebook-fi_FI.mo ADDED
Binary file
languages/facebook-fi_FI.po ADDED
@@ -0,0 +1,241 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: facebook\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-04-23 13:28+0300\n"
6
+ "PO-Revision-Date: 2015-04-23 13:50+0300\n"
7
+ "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
+ "Language-Team: Juhani Honkanen <juhani.honkanen@dnainternet.net>\n"
9
+ "Language: fi_FI\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.7.5\n"
17
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
+ "X-Poedit-SearchPath-0: .\n"
19
+
20
+ #: facebook-button-plugin.php:32
21
+ #: facebook-button-plugin.php:234
22
+ #: facebook-button-plugin.php:236
23
+ #: facebook-button-plugin.php:584
24
+ #: facebook-button-plugin.php:598
25
+ msgid "Settings"
26
+ msgstr "Asetukset"
27
+
28
+ #: facebook-button-plugin.php:162
29
+ msgid "Settings saved"
30
+ msgstr "Asetukset tallennettu"
31
+
32
+ #: facebook-button-plugin.php:189
33
+ msgid "Error: File size > 32K"
34
+ msgstr "Virhe: Tiedoston koko > 32K"
35
+
36
+ #: facebook-button-plugin.php:192
37
+ msgid "Error: Invalid file type"
38
+ msgstr "Virhe: Väärä tiedostotyyppi"
39
+
40
+ #: facebook-button-plugin.php:198
41
+ msgid "Upload successful."
42
+ msgstr "Lataaminen onnistui"
43
+
44
+ #: facebook-button-plugin.php:208
45
+ msgid "Error: moving file failed"
46
+ msgstr "Virhe: tiedoston siirto epäonnistui"
47
+
48
+ #: facebook-button-plugin.php:211
49
+ msgid "Error: check image width or height"
50
+ msgstr "Virhe: tarkista kuvan leveys tai korkeus"
51
+
52
+ #: facebook-button-plugin.php:215
53
+ msgid "Uploading Error: check image properties"
54
+ msgstr "Virhe latauksessa: tarkista kuvan ominaisuudet"
55
+
56
+ #: facebook-button-plugin.php:237
57
+ msgid "Extra settings"
58
+ msgstr "Lisää asetuksia"
59
+
60
+ #: facebook-button-plugin.php:238
61
+ #: facebook-button-plugin.php:599
62
+ msgid "FAQ"
63
+ msgstr "FAQ"
64
+
65
+ #: facebook-button-plugin.php:239
66
+ msgid "Go PRO"
67
+ msgstr "Hanki PRO versio"
68
+
69
+ #: facebook-button-plugin.php:243
70
+ msgid "Notice:"
71
+ msgstr "Huomautus:"
72
+
73
+ #: facebook-button-plugin.php:243
74
+ msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
75
+ msgstr "Lisäosan asetukset ovat muuttuneet: Mikäli haluat säilyttää uudet asetukset muista klikata Tallenna Asetukset nappia."
76
+
77
+ #: facebook-button-plugin.php:249
78
+ msgid "Your Facebook ID or username:"
79
+ msgstr "Sinun Facebook ID:si tai käyttäjänimesi:"
80
+
81
+ #: facebook-button-plugin.php:255
82
+ msgid "Display button:"
83
+ msgstr "Näytä nappi:"
84
+
85
+ #: facebook-button-plugin.php:257
86
+ msgid "My Page"
87
+ msgstr "Minun sivuni"
88
+
89
+ #: facebook-button-plugin.php:258
90
+ msgid "Like"
91
+ msgstr "Tykkää"
92
+
93
+ #: facebook-button-plugin.php:259
94
+ msgid "Share"
95
+ msgstr "Jaa"
96
+
97
+ #: facebook-button-plugin.php:264
98
+ msgid "Choose display settings:"
99
+ msgstr "Valitse näyttö asetukset:"
100
+
101
+ #: facebook-button-plugin.php:269
102
+ msgid "Standard Facebook image"
103
+ msgstr "Standardi Facebook kuva"
104
+
105
+ #: facebook-button-plugin.php:270
106
+ msgid "Custom Facebook image"
107
+ msgstr "Mukautettu Fecabook kuva"
108
+
109
+ #: facebook-button-plugin.php:273
110
+ msgid "To use custom image you need to setup permissions to upload directory of your site"
111
+ msgstr "Käyttääksesi mukautettua, kuva pitää voida ladata hakemistoosi"
112
+
113
+ #: facebook-button-plugin.php:279
114
+ msgid "Current image:"
115
+ msgstr "Nykyinen kuva:"
116
+
117
+ #: facebook-button-plugin.php:287
118
+ msgid "Facebook image:"
119
+ msgstr "Facebook kuva:"
120
+
121
+ #: facebook-button-plugin.php:291
122
+ msgid "Image properties: max image width:100px; max image height:40px; max image size:32Kb; image types:\"jpg\", \"jpeg\", \"png\"."
123
+ msgstr "Kuvan ominaisuudet: max leveys 100px; max korkeus 40px; max koko 32Kb; kuvan tyypit:\"jpg\", \"jpeg\", \"png\"."
124
+
125
+ #: facebook-button-plugin.php:296
126
+ msgid "Facebook Button Position:"
127
+ msgstr "Facebook napin paikka:"
128
+
129
+ #: facebook-button-plugin.php:300
130
+ msgid "Before"
131
+ msgstr "Ennen"
132
+
133
+ #: facebook-button-plugin.php:301
134
+ msgid "After"
135
+ msgstr "Jälkeen"
136
+
137
+ #: facebook-button-plugin.php:302
138
+ msgid "Before and After"
139
+ msgstr "Ennen ja Jälkeen"
140
+
141
+ #: facebook-button-plugin.php:303
142
+ msgid "Shortcode"
143
+ msgstr "Lyhytkoodi"
144
+
145
+ #: facebook-button-plugin.php:305
146
+ msgid "If you would like to add a Facebook button to your website, just copy and paste this shortcode into your post or page:"
147
+ msgstr "Mikäli haluat lisätä Facebook napin sivullesi, kopioi ja liitä tämä lyhytkoodi artikkeliisi tai sivullesi:"
148
+
149
+ #: facebook-button-plugin.php:310
150
+ msgid "Facebook Button language:"
151
+ msgstr "Facebook Napin kieli:"
152
+
153
+ #: facebook-button-plugin.php:321
154
+ msgid "Change the language of Facebook Like Button"
155
+ msgstr "Vaihda Facebook napin kieli"
156
+
157
+ #: facebook-button-plugin.php:325
158
+ msgid "Html tag for Like Button:"
159
+ msgstr "HTML tagi Tykkää Napille:"
160
+
161
+ #: facebook-button-plugin.php:329
162
+ msgid "Use this tag to improve validation of your site"
163
+ msgstr "Käytä tätä tagia parantamaan sivusi näkyvyyttä"
164
+
165
+ #: facebook-button-plugin.php:339
166
+ msgid "\"Like\" for an entire site on every page:"
167
+ msgstr "\"Like\" koko sivustolle ja kaikille sivuille:"
168
+
169
+ #: facebook-button-plugin.php:341
170
+ msgid "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."
171
+ msgstr "Huomautus: \"Tykkää koko sivustosta\" tämä valinta ei tee ylimääräistä nappia. Tämä valinnan avulla käyttäjät tykkäävät koko sivustosta. Mikäli ei ole valittu, niin käyttäjä tykkää vain yhdestä sivusta klikatessaan \"Tykkää\" nappia."
172
+
173
+ #: facebook-button-plugin.php:346
174
+ #: facebook-button-plugin.php:401
175
+ msgid "If you upgrade to Pro version all your settings will be saved."
176
+ msgstr "Mikäli päivität Pro versioon, kaikki asetuksesi tallennetaan."
177
+
178
+ #: facebook-button-plugin.php:353
179
+ #: facebook-button-plugin.php:408
180
+ msgid "Unlock premium options by upgrading to a PRO version."
181
+ msgstr "Ota käyttöön premium valinnat päivittämällä PRO versioon."
182
+
183
+ #: facebook-button-plugin.php:354
184
+ #: facebook-button-plugin.php:409
185
+ msgid "Learn More"
186
+ msgstr "Lue Lisää"
187
+
188
+ #: facebook-button-plugin.php:357
189
+ #: facebook-button-plugin.php:412
190
+ msgid "Go"
191
+ msgstr "Mene"
192
+
193
+ #: facebook-button-plugin.php:365
194
+ #: facebook-button-plugin.php:396
195
+ msgid "Save Changes"
196
+ msgstr "Tallenna muutokset"
197
+
198
+ #: facebook-button-plugin.php:378
199
+ msgid "Please choose the necessary post types (or single pages) where Facebook button will be displayed:"
200
+ msgstr "Valitse haluamasi viestin tyyppi (tai yksittäiset sivut) joissa Facebook nappi näytetään:"
201
+
202
+ #: facebook-button-plugin.php:385
203
+ msgid "Show URL for pages"
204
+ msgstr "Näytä URL sivuilla"
205
+
206
+ #: facebook-button-plugin.php:391
207
+ msgid "Example of the site's pages tree"
208
+ msgstr "Esimerkki sivuston sivuhakemistosta"
209
+
210
+ #: facebook-button-plugin.php:391
211
+ msgid "Example of site pages' tree"
212
+ msgstr "Esimerkki sivun sivuhakemistosta"
213
+
214
+ #: facebook-button-plugin.php:600
215
+ msgid "Support"
216
+ msgstr "Tuki"
217
+
218
+ #~ msgid "Facebook Button Settings"
219
+ #~ msgstr "Facebook Napin asetukset"
220
+
221
+ #~ msgid "Facebook Button"
222
+ #~ msgstr "Facebook Nappi"
223
+
224
+ #~ msgid "requires"
225
+ #~ msgstr "vaadittu"
226
+
227
+ #~ msgid ""
228
+ #~ "or higher, that is why it has been deactivated! Please upgrade WordPress "
229
+ #~ "and try again."
230
+ #~ msgstr ""
231
+ #~ "tai suurempi, siksi sen aktivointi on poistettu! Ole hyvä ja päivitä "
232
+ #~ "WordPress ja yritä uudelleen."
233
+
234
+ #~ msgid "Back to the WordPress"
235
+ #~ msgstr "Takaisin Wordpressiin"
236
+
237
+ #~ msgid "Plugins page"
238
+ #~ msgstr "Lisäosat sivu"
239
+
240
+ #~ msgid "the setting page"
241
+ #~ msgstr "asetukset sivu"
languages/facebook-fr_FR.mo CHANGED
Binary file
languages/facebook-fr_FR.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: facebook\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-03-31 10:58+0300\n"
6
- "PO-Revision-Date: 2015-03-31 10:58+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: http://wptheme.fr/\n"
9
  "Language: fr\n"
@@ -17,203 +17,203 @@ msgstr ""
17
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: facebook-button-plugin.php:31
21
- #: facebook-button-plugin.php:230
22
- #: facebook-button-plugin.php:232
23
- #: facebook-button-plugin.php:561
24
- #: facebook-button-plugin.php:575
25
  msgid "Settings"
26
  msgstr "Réglages"
27
 
28
- #: facebook-button-plugin.php:160
29
  msgid "Settings saved"
30
  msgstr "Réglages sauvegardés "
31
 
32
- #: facebook-button-plugin.php:187
33
  msgid "Error: File size > 32K"
34
  msgstr "Erreur : Poids du fichier > 32K"
35
 
36
- #: facebook-button-plugin.php:190
37
  msgid "Error: Invalid file type"
38
  msgstr "Erreur : Type de fichier invalide"
39
 
40
- #: facebook-button-plugin.php:196
41
  msgid "Upload successful."
42
  msgstr ""
43
 
44
- #: facebook-button-plugin.php:206
45
  msgid "Error: moving file failed"
46
  msgstr "Erreur : le déplacement du fichier a echoué"
47
 
48
- #: facebook-button-plugin.php:209
49
  msgid "Error: check image width or height"
50
  msgstr "Erreur : Vérifiez la taille et la largeur de l'image"
51
 
52
- #: facebook-button-plugin.php:213
53
  msgid "Uploading Error: check image properties"
54
  msgstr "Erreur d'upload : vérifiez les propriétés de l'image"
55
 
56
- #: facebook-button-plugin.php:233
57
  #, fuzzy
58
  msgid "Extra settings"
59
  msgstr "Réglages"
60
 
61
- #: facebook-button-plugin.php:234
62
- #: facebook-button-plugin.php:576
63
  msgid "FAQ"
64
  msgstr "FAQ"
65
 
66
- #: facebook-button-plugin.php:235
67
  msgid "Go PRO"
68
  msgstr ""
69
 
70
- #: facebook-button-plugin.php:238
71
  msgid "Notice:"
72
  msgstr ""
73
 
74
- #: facebook-button-plugin.php:238
75
  msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
76
  msgstr ""
77
 
78
- #: facebook-button-plugin.php:244
79
  #, fuzzy
80
  msgid "Your Facebook ID or username:"
81
  msgstr "Votre identifiant Facebook"
82
 
83
- #: facebook-button-plugin.php:250
84
  msgid "Display button:"
85
  msgstr "Afficher le bouton"
86
 
87
- #: facebook-button-plugin.php:252
88
  msgid "My Page"
89
  msgstr "Ma page"
90
 
91
- #: facebook-button-plugin.php:253
92
  msgid "Like"
93
  msgstr "Like"
94
 
95
- #: facebook-button-plugin.php:254
96
  msgid "Share"
97
  msgstr ""
98
 
99
- #: facebook-button-plugin.php:259
100
  msgid "Choose display settings:"
101
  msgstr "Choisir les réglages d'affichage"
102
 
103
- #: facebook-button-plugin.php:264
104
  msgid "Standard Facebook image"
105
  msgstr "Image Facebook par défaut"
106
 
107
- #: facebook-button-plugin.php:265
108
  msgid "Custom Facebook image"
109
  msgstr "Image Facebook personnalisée"
110
 
111
- #: facebook-button-plugin.php:268
112
  msgid "To use custom image you need to setup permissions to upload directory of your site"
113
  msgstr ""
114
 
115
- #: facebook-button-plugin.php:274
116
  msgid "Current image:"
117
  msgstr "Image actuelle"
118
 
119
- #: facebook-button-plugin.php:282
120
  msgid "Facebook image:"
121
  msgstr "Image Facebook"
122
 
123
- #: facebook-button-plugin.php:286
124
  msgid "Image properties: max image width:100px; max image height:40px; max image size:32Kb; image types:\"jpg\", \"jpeg\", \"png\"."
125
  msgstr "Propriétés de l'image : largeur max:100px; hauteur max: 40px; poids max : 32kb; type d'image :\"jpg\", \"jpeg\", \"png\"."
126
 
127
- #: facebook-button-plugin.php:291
128
  msgid "Facebook Button Position:"
129
  msgstr "Position du bouton Facebook"
130
 
131
- #: facebook-button-plugin.php:295
132
  msgid "Before"
133
  msgstr "Avant"
134
 
135
- #: facebook-button-plugin.php:296
136
  msgid "After"
137
  msgstr "Après"
138
 
139
- #: facebook-button-plugin.php:297
140
  msgid "Before and After"
141
  msgstr "Avant et après"
142
 
143
- #: facebook-button-plugin.php:298
144
  msgid "Shortcode"
145
  msgstr "Shortcode"
146
 
147
- #: facebook-button-plugin.php:300
148
  msgid "If you would like to add a Facebook button to your website, just copy and paste this shortcode into your post or page:"
149
  msgstr "Si vous souhaitez ajouter un bouton Facebook sur votre site internet, copier-collez ce Shortcodedans votre page ou votre article"
150
 
151
- #: facebook-button-plugin.php:305
152
  msgid "Facebook Button language:"
153
  msgstr "Langue du bouton Facebook"
154
 
155
- #: facebook-button-plugin.php:316
156
  msgid "Change the language of Facebook Like Button"
157
  msgstr "Changer la langue du bouton Facebook"
158
 
159
- #: facebook-button-plugin.php:320
160
  msgid "Html tag for Like Button:"
161
  msgstr ""
162
 
163
- #: facebook-button-plugin.php:324
164
  msgid "Use this tag to improve validation of your site"
165
  msgstr ""
166
 
167
- #: facebook-button-plugin.php:333
168
  msgid "\"Like\" for an entire site on every page:"
169
  msgstr ""
170
 
171
- #: facebook-button-plugin.php:335
172
  msgid "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."
173
  msgstr ""
174
 
175
- #: facebook-button-plugin.php:340
176
- #: facebook-button-plugin.php:393
177
  msgid "If you upgrade to Pro version all your settings will be saved."
178
  msgstr ""
179
 
180
- #: facebook-button-plugin.php:347
181
- #: facebook-button-plugin.php:400
182
  msgid "Unlock premium options by upgrading to a PRO version."
183
  msgstr ""
184
 
185
- #: facebook-button-plugin.php:348
186
- #: facebook-button-plugin.php:401
187
  msgid "Learn More"
188
  msgstr ""
189
 
190
- #: facebook-button-plugin.php:351
191
- #: facebook-button-plugin.php:404
192
  msgid "Go"
193
  msgstr ""
194
 
195
- #: facebook-button-plugin.php:358
196
- #: facebook-button-plugin.php:388
197
  msgid "Save Changes"
198
  msgstr "Sauvegarder les changements"
199
 
200
- #: facebook-button-plugin.php:370
201
  msgid "Please choose the necessary post types (or single pages) where Facebook button will be displayed:"
202
  msgstr ""
203
 
204
- #: facebook-button-plugin.php:377
205
  msgid "Show URL for pages"
206
  msgstr ""
207
 
208
- #: facebook-button-plugin.php:383
209
  msgid "Example of the site's pages tree"
210
  msgstr ""
211
 
212
- #: facebook-button-plugin.php:383
213
  msgid "Example of site pages' tree"
214
  msgstr ""
215
 
216
- #: facebook-button-plugin.php:577
217
  msgid "Support"
218
  msgstr "Support"
219
 
2
  msgstr ""
3
  "Project-Id-Version: facebook\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-04-20 19:37+0300\n"
6
+ "PO-Revision-Date: 2015-04-20 19:37+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@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:32
21
+ #: facebook-button-plugin.php:234
22
+ #: facebook-button-plugin.php:236
23
+ #: facebook-button-plugin.php:584
24
+ #: facebook-button-plugin.php:598
25
  msgid "Settings"
26
  msgstr "Réglages"
27
 
28
+ #: facebook-button-plugin.php:162
29
  msgid "Settings saved"
30
  msgstr "Réglages sauvegardés "
31
 
32
+ #: facebook-button-plugin.php:189
33
  msgid "Error: File size > 32K"
34
  msgstr "Erreur : Poids du fichier > 32K"
35
 
36
+ #: facebook-button-plugin.php:192
37
  msgid "Error: Invalid file type"
38
  msgstr "Erreur : Type de fichier invalide"
39
 
40
+ #: facebook-button-plugin.php:198
41
  msgid "Upload successful."
42
  msgstr ""
43
 
44
+ #: facebook-button-plugin.php:208
45
  msgid "Error: moving file failed"
46
  msgstr "Erreur : le déplacement du fichier a echoué"
47
 
48
+ #: facebook-button-plugin.php:211
49
  msgid "Error: check image width or height"
50
  msgstr "Erreur : Vérifiez la taille et la largeur de l'image"
51
 
52
+ #: facebook-button-plugin.php:215
53
  msgid "Uploading Error: check image properties"
54
  msgstr "Erreur d'upload : vérifiez les propriétés de l'image"
55
 
56
+ #: facebook-button-plugin.php:237
57
  #, fuzzy
58
  msgid "Extra settings"
59
  msgstr "Réglages"
60
 
61
+ #: facebook-button-plugin.php:238
62
+ #: facebook-button-plugin.php:599
63
  msgid "FAQ"
64
  msgstr "FAQ"
65
 
66
+ #: facebook-button-plugin.php:239
67
  msgid "Go PRO"
68
  msgstr ""
69
 
70
+ #: facebook-button-plugin.php:243
71
  msgid "Notice:"
72
  msgstr ""
73
 
74
+ #: facebook-button-plugin.php:243
75
  msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
76
  msgstr ""
77
 
78
+ #: facebook-button-plugin.php:249
79
  #, fuzzy
80
  msgid "Your Facebook ID or username:"
81
  msgstr "Votre identifiant Facebook"
82
 
83
+ #: facebook-button-plugin.php:255
84
  msgid "Display button:"
85
  msgstr "Afficher le bouton"
86
 
87
+ #: facebook-button-plugin.php:257
88
  msgid "My Page"
89
  msgstr "Ma page"
90
 
91
+ #: facebook-button-plugin.php:258
92
  msgid "Like"
93
  msgstr "Like"
94
 
95
+ #: facebook-button-plugin.php:259
96
  msgid "Share"
97
  msgstr ""
98
 
99
+ #: facebook-button-plugin.php:264
100
  msgid "Choose display settings:"
101
  msgstr "Choisir les réglages d'affichage"
102
 
103
+ #: facebook-button-plugin.php:269
104
  msgid "Standard Facebook image"
105
  msgstr "Image Facebook par défaut"
106
 
107
+ #: facebook-button-plugin.php:270
108
  msgid "Custom Facebook image"
109
  msgstr "Image Facebook personnalisée"
110
 
111
+ #: facebook-button-plugin.php:273
112
  msgid "To use custom image you need to setup permissions to upload directory of your site"
113
  msgstr ""
114
 
115
+ #: facebook-button-plugin.php:279
116
  msgid "Current image:"
117
  msgstr "Image actuelle"
118
 
119
+ #: facebook-button-plugin.php:287
120
  msgid "Facebook image:"
121
  msgstr "Image Facebook"
122
 
123
+ #: facebook-button-plugin.php:291
124
  msgid "Image properties: max image width:100px; max image height:40px; max image size:32Kb; image types:\"jpg\", \"jpeg\", \"png\"."
125
  msgstr "Propriétés de l'image : largeur max:100px; hauteur max: 40px; poids max : 32kb; type d'image :\"jpg\", \"jpeg\", \"png\"."
126
 
127
+ #: facebook-button-plugin.php:296
128
  msgid "Facebook Button Position:"
129
  msgstr "Position du bouton Facebook"
130
 
131
+ #: facebook-button-plugin.php:300
132
  msgid "Before"
133
  msgstr "Avant"
134
 
135
+ #: facebook-button-plugin.php:301
136
  msgid "After"
137
  msgstr "Après"
138
 
139
+ #: facebook-button-plugin.php:302
140
  msgid "Before and After"
141
  msgstr "Avant et après"
142
 
143
+ #: facebook-button-plugin.php:303
144
  msgid "Shortcode"
145
  msgstr "Shortcode"
146
 
147
+ #: facebook-button-plugin.php:305
148
  msgid "If you would like to add a Facebook button to your website, just copy and paste this shortcode into your post or page:"
149
  msgstr "Si vous souhaitez ajouter un bouton Facebook sur votre site internet, copier-collez ce Shortcodedans votre page ou votre article"
150
 
151
+ #: facebook-button-plugin.php:310
152
  msgid "Facebook Button language:"
153
  msgstr "Langue du bouton Facebook"
154
 
155
+ #: facebook-button-plugin.php:321
156
  msgid "Change the language of Facebook Like Button"
157
  msgstr "Changer la langue du bouton Facebook"
158
 
159
+ #: facebook-button-plugin.php:325
160
  msgid "Html tag for Like Button:"
161
  msgstr ""
162
 
163
+ #: facebook-button-plugin.php:329
164
  msgid "Use this tag to improve validation of your site"
165
  msgstr ""
166
 
167
+ #: facebook-button-plugin.php:339
168
  msgid "\"Like\" for an entire site on every page:"
169
  msgstr ""
170
 
171
+ #: facebook-button-plugin.php:341
172
  msgid "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."
173
  msgstr ""
174
 
175
+ #: facebook-button-plugin.php:346
176
+ #: facebook-button-plugin.php:401
177
  msgid "If you upgrade to Pro version all your settings will be saved."
178
  msgstr ""
179
 
180
+ #: facebook-button-plugin.php:353
181
+ #: facebook-button-plugin.php:408
182
  msgid "Unlock premium options by upgrading to a PRO version."
183
  msgstr ""
184
 
185
+ #: facebook-button-plugin.php:354
186
+ #: facebook-button-plugin.php:409
187
  msgid "Learn More"
188
  msgstr ""
189
 
190
+ #: facebook-button-plugin.php:357
191
+ #: facebook-button-plugin.php:412
192
  msgid "Go"
193
  msgstr ""
194
 
195
+ #: facebook-button-plugin.php:365
196
+ #: facebook-button-plugin.php:396
197
  msgid "Save Changes"
198
  msgstr "Sauvegarder les changements"
199
 
200
+ #: facebook-button-plugin.php:378
201
  msgid "Please choose the necessary post types (or single pages) where Facebook button will be displayed:"
202
  msgstr ""
203
 
204
+ #: facebook-button-plugin.php:385
205
  msgid "Show URL for pages"
206
  msgstr ""
207
 
208
+ #: facebook-button-plugin.php:391
209
  msgid "Example of the site's pages tree"
210
  msgstr ""
211
 
212
+ #: facebook-button-plugin.php:391
213
  msgid "Example of site pages' tree"
214
  msgstr ""
215
 
216
+ #: facebook-button-plugin.php:600
217
  msgid "Support"
218
  msgstr "Support"
219
 
languages/facebook-ru_RU.mo CHANGED
File without changes
languages/facebook-ru_RU.po CHANGED
File without changes
languages/facebook-tr_TR.mo CHANGED
File without changes
languages/facebook-tr_TR.po CHANGED
File without changes
languages/facebook-uk.mo CHANGED
Binary file
languages/facebook-uk.po CHANGED
@@ -3,7 +3,7 @@ msgstr ""
3
  "Project-Id-Version: facebook\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2015-03-31 10:59+0300\n"
6
- "PO-Revision-Date: 2015-03-31 10:59+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: BestWebSoft <plugin@bestwebsoft.com>\n"
9
  "Language: ua_UA\n"
@@ -127,11 +127,11 @@ msgstr "Розташування кнопки Facebook:"
127
 
128
  #: facebook-button-plugin.php:295
129
  msgid "Before"
130
- msgstr "Перш ніж"
131
 
132
  #: facebook-button-plugin.php:296
133
  msgid "After"
134
- msgstr "Після того як"
135
 
136
  #: facebook-button-plugin.php:297
137
  msgid "Before and After"
3
  "Project-Id-Version: facebook\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2015-03-31 10:59+0300\n"
6
+ "PO-Revision-Date: 2015-04-20 19:38+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: BestWebSoft <plugin@bestwebsoft.com>\n"
9
  "Language: ua_UA\n"
127
 
128
  #: facebook-button-plugin.php:295
129
  msgid "Before"
130
+ msgstr "До"
131
 
132
  #: facebook-button-plugin.php:296
133
  msgid "After"
134
+ msgstr "Після"
135
 
136
  #: facebook-button-plugin.php:297
137
  msgid "Before and After"
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: bestwebsoft
3
  Donate link: https://www.2checkout.com/checkout/purchase?sid=1430388&quantity=1&product_id=94
4
  Tags: button, buton, batton, button image, button position, Button like, Facebook, Facebook account button, facebook button, facebook button language, Facebook button icon, Facebook button like, Facebook button share, Facebook ID, Facebook page, facebook like, facebook like button, facebook share, facebook share button, follow, Follow button, icon, Like, like button, My Page button, Share, share button, social, social button, social account
5
  Requires at least: 3.0
6
- Tested up to: 4.1.1
7
- Stable tag: 2.37
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -37,6 +37,7 @@ There is also a premium version of the plugin <a href="http://bestwebsoft.com/pr
37
 
38
  = Translation =
39
 
 
40
  * French (fr_FR) (thanks to <a href="mailto:wpthemefr@gmail.com">Murat</a>)
41
  * Indonesian (id_ID) (thanks to Nasrulhaq, www.al-badar.net)
42
  * Russian (ru_RU)
@@ -107,6 +108,10 @@ Please make sure that the problem hasn't been discussed yet on our forum (<a hre
107
 
108
  == Changelog ==
109
 
 
 
 
 
110
  = V2.37 - 31.03.2015 =
111
  * Update : We updated all functionality for wordpress 4.1.1.
112
  * Update : BWS plugins section is updated.
@@ -259,6 +264,9 @@ Please make sure that the problem hasn't been discussed yet on our forum (<a hre
259
 
260
  == Upgrade Notice ==
261
 
 
 
 
262
  = V2.37 =
263
  We updated all functionality for wordpress 4.1.1. BWS plugins section is updated.
264
 
3
  Donate link: https://www.2checkout.com/checkout/purchase?sid=1430388&quantity=1&product_id=94
4
  Tags: button, buton, batton, button image, button position, Button like, Facebook, Facebook account button, facebook button, facebook button language, Facebook button icon, Facebook button like, Facebook button share, Facebook ID, Facebook page, facebook like, facebook like button, facebook share, facebook share button, follow, Follow button, icon, Like, like button, My Page button, Share, share button, social, social button, social account
5
  Requires at least: 3.0
6
+ Tested up to: 4.2.1
7
+ Stable tag: 2.38
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
37
 
38
  = Translation =
39
 
40
+ * Finnish (fi_FI) (thanks to <a href="mailto:juhani.honkanen@dnainternet.net">Juhani Honkanen</a>)
41
  * French (fr_FR) (thanks to <a href="mailto:wpthemefr@gmail.com">Murat</a>)
42
  * Indonesian (id_ID) (thanks to Nasrulhaq, www.al-badar.net)
43
  * Russian (ru_RU)
108
 
109
  == Changelog ==
110
 
111
+ = V2.38 - 23.04.2015 =
112
+ * Update : Button styles are updated.
113
+ * New : The Finnish language file is added to the plugin.
114
+
115
  = V2.37 - 31.03.2015 =
116
  * Update : We updated all functionality for wordpress 4.1.1.
117
  * Update : BWS plugins section is updated.
264
 
265
  == Upgrade Notice ==
266
 
267
+ = V2.38 =
268
+ Button styles are updated. The Finnish language file is added to the plugin.
269
+
270
  = V2.37 =
271
  We updated all functionality for wordpress 4.1.1. BWS plugins section is updated.
272