Contact Form by BestWebSoft - Version 3.90

Version Description

  • 04.05.2015 =
  • Update : We updated all functionality for wordpress 4.2.1.
  • Update : The French language file is updated.
Download this release

Release Info

Developer bestwebsoft
Plugin Icon 128x128 Contact Form by BestWebSoft
Version 3.90
Comparing to
See all releases

Code changes from version 3.89 to 3.90

Files changed (36) hide show
  1. bws_menu/bws_functions.php +145 -111
  2. bws_menu/bws_menu.php +46 -15
  3. bws_menu/css/general_style.css +18 -6
  4. bws_menu/css/general_style_wp_before_3.8.css +18 -6
  5. bws_menu/icons/realty.png +0 -0
  6. bws_menu/icons/social-buttons-pack.png +0 -0
  7. bws_menu/icons/zendesk-help-center.png +0 -0
  8. bws_menu/js/bws_tooltip.js +79 -0
  9. bws_menu/languages/bestwebsoft-de_DE.mo +0 -0
  10. bws_menu/languages/bestwebsoft-de_DE.po +189 -124
  11. bws_menu/languages/bestwebsoft-fr_FR.mo +0 -0
  12. bws_menu/languages/bestwebsoft-fr_FR.po +187 -122
  13. bws_menu/languages/bestwebsoft-it_IT.mo +0 -0
  14. bws_menu/languages/bestwebsoft-it_IT.po +191 -128
  15. bws_menu/languages/bestwebsoft-ja.mo +0 -0
  16. bws_menu/languages/bestwebsoft-ja.po +187 -125
  17. bws_menu/languages/bestwebsoft-pt_BR.mo +0 -0
  18. bws_menu/languages/bestwebsoft-pt_BR.po +188 -123
  19. bws_menu/languages/bestwebsoft-ru_RU.mo +0 -0
  20. bws_menu/languages/bestwebsoft-ru_RU.po +191 -121
  21. bws_menu/languages/bestwebsoft-sr_RS.mo +0 -0
  22. bws_menu/languages/bestwebsoft-sr_RS.po +187 -122
  23. bws_menu/languages/bestwebsoft-sv_SE.mo +0 -0
  24. bws_menu/languages/bestwebsoft-sv_SE.po +188 -125
  25. bws_menu/languages/bestwebsoft-uk.mo +0 -0
  26. bws_menu/languages/bestwebsoft-uk.po +191 -125
  27. contact_form.php +24 -19
  28. images/banner.png +0 -0
  29. images/banner_for_ctfrmtdb.png +0 -0
  30. languages/contact_form-el.mo +0 -0
  31. languages/contact_form-el.po +0 -0
  32. languages/contact_form-fr_FR.mo +0 -0
  33. languages/contact_form-fr_FR.po +404 -289
  34. languages/contact_form-nb_NO.mo +0 -0
  35. languages/contact_form-nb_NO.po +0 -0
  36. readme.txt +10 -3
bws_menu/bws_functions.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  * General functions for BestWebSoft plugins
4
- * Version: 1.0.2
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 ) {
@@ -417,7 +494,7 @@ if ( ! function_exists( 'bws_check_pro_license' ) ) {
417
  update_site_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
418
  else
419
  update_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
420
- $file = @fopen( dirname( __FILE__ ) . "/license_key.txt" , "w+" );
421
  if ( $file ) {
422
  @fwrite( $file, $license_key );
423
  @fclose( $file );
@@ -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-I-purchased-a-Pro-plugin-with-a-recurring-billing-I-cancelled-the-subscription-The-license-has-expir">' . __( "Learn more", 'bestwebsoft' ) . '</div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
472
  </td>
473
  </tr>';
474
  }
@@ -476,11 +573,11 @@ if ( ! function_exists ( 'bws_plugin_update_row' ) ) {
476
  }
477
 
478
  if ( ! function_exists ( 'bws_plugin_banner_timeout' ) ) {
479
- function bws_plugin_banner_timeout( $plugin_key, $plugin_prefix, $plugin_name ) {
480
  global $bstwbsftwppdtplgns_options, $bstwbsftwppdtplgns_cookie_add;
481
- if ( isset( $bstwbsftwppdtplgns_options['time_out'][ $plugin_key ] ) && strtotime( $bstwbsftwppdtplgns_options['time_out'][ $plugin_key ] ) < strtotime( date("m/d/Y") . '+1 month' ) && strtotime( $bstwbsftwppdtplgns_options['time_out'][ $plugin_key ] ) > strtotime( date("m/d/Y") ) ) {
482
  if ( ! isset( $bstwbsftwppdtplgns_cookie_add ) ) {
483
- echo '<script type="text/javascript" src="' . plugins_url( 'bws_menu/js/c_o_o_k_i_e.js', __FILE__ ) . '"></script>';
484
  $bstwbsftwppdtplgns_cookie_add = true;
485
  } ?>
486
  <script type="text/javascript">
@@ -501,11 +598,11 @@ if ( ! function_exists ( 'bws_plugin_banner_timeout' ) ) {
501
  </script>
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; ?> PRO</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 plugins_url( 'images/banner.png', __FILE__ ); ?>" 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,80 +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, i = '';
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 id="pointer-close' + i + '" style="margin:0px 5px 2px;" class="button-secondary">' + pointer_buttons[ but ]['text'] + '</a>';
667
- i++;
668
- }
669
- }
670
- button = jQuery( button );
671
- button.bind('click.pointer', function () {
672
- t.element.pointer('close');
673
- });
674
- return button;
675
- },
676
- /* add ajax dismiss functionality */
677
- close : $.proxy(function () {
678
- if ( pointer_options['actions']['onload'] == true ) {
679
- $.post( ajaxurl, this );
680
- }
681
- }, {
682
- pointer: pointer_options['tooltip_id'],
683
- action: 'dismiss-wp-pointer'
684
- })
685
- });
686
- /* function to display pointer */
687
- function displayPointer( cssSelector ) {
688
- cssSelector.pointer(pointer_options).pointer({
689
- pointerClass: 'wp-pointer ' + pointer_options["tooltip_id"],
690
- content: pointer_options['content'],
691
- position:
692
- {
693
- edge: pointer_options['position']['edge'],
694
- align: pointer_options['position']['align'],
695
- },
696
- }).pointer('open');
697
- /* display buttons that are not type of dismiss */
698
- for ( var but in pointer_buttons ) {
699
- if ( typeof pointer_buttons[ but ]['type'] != 'undefined' && pointer_buttons[ but ]['type'] != 'dismiss' && typeof pointer_buttons[ but ]['text'] != 'undefined' && pointer_buttons[ but ]['text'] != '' ) {
700
- $('#pointer-close').after( '<a class="button-primary" style="margin-right: 5px;" ' +
701
- ( ( pointer_buttons[ but ]['type'] == 'link' && typeof pointer_buttons[ but ]['link'] != 'undefined' && pointer_buttons[ but ]['link'] != '') ? 'target="_blank" href="' + pointer_buttons[ but ]['link'] + '"' : '' )
702
- + '>' + pointer_buttons[ but ]['text'] + '</a>' );
703
- };
704
- }
705
- /* adjust position of pointer */
706
- topPos = parseInt( $( "." + pointer_options["tooltip_id"] ).css("top") ) + parseInt( pointer_options['position']['pos-top'] );
707
- leftPos = parseInt( $( "." + pointer_options["tooltip_id"] ).css("left") ) + parseInt( pointer_options['position']['pos-left'] );
708
- if ( pointer_options['position']['align'] == 'left' ) {
709
- leftPos += cssSelector.outerWidth()/2;
710
- };
711
- $( "." + pointer_options["tooltip_id"] ).css({ "top": topPos + "px", "left": leftPos + "px" });
712
- /* adjust z-index if need */
713
- pointerZindex = parseInt( $( "." + pointer_options["tooltip_id"] ).css("z-index") );
714
- if ( pointerZindex != pointer_options['position']['zindex'] ) {
715
- $( "." + pointer_options["tooltip_id"] ).css({ "z-index": pointer_options['position']['zindex'] });
716
- }
717
- }
718
- /* display pointer for the first time */
719
- if ( pointer_options['actions']['onload'] ) {
720
- displayPointer( $( pointer_options['css_selector'] ) );
721
- }
722
- /* display pointer when clicked on selector */
723
- if ( pointer_options['actions']['click'] ) {
724
- $( pointer_options['css_selector'] ).click( function () {
725
- displayPointer( $( this ) );
726
- });
727
- }
728
  })(jQuery);
729
  </script>
730
  <?php }
@@ -732,5 +766,5 @@ if ( ! class_exists( 'BWS_add_admin_tooltip' ) ) {
732
  }
733
 
734
  add_action( 'admin_init', 'bws_plugin_init' );
735
- add_action( 'admin_enqueue_scripts', 'bws_admin_enqueue_scripts' );
736
  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 ) {
494
  update_site_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
495
  else
496
  update_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
497
+ $file = @fopen( dirname( dirname( __FILE__ ) ) . "/license_key.txt" , "w+" );
498
  if ( $file ) {
499
  @fwrite( $file, $license_key );
500
  @fclose( $file );
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
  }
573
  }
574
 
575
  if ( ! function_exists ( 'bws_plugin_banner_timeout' ) ) {
576
+ function bws_plugin_banner_timeout( $plugin_key, $plugin_prefix, $plugin_name, $banner_url = false ) {
577
  global $bstwbsftwppdtplgns_options, $bstwbsftwppdtplgns_cookie_add;
578
+ if ( isset( $bstwbsftwppdtplgns_options['time_out'][ $plugin_key ] ) && ( strtotime( $bstwbsftwppdtplgns_options['time_out'][ $plugin_key ] ) < strtotime( date("m/d/Y") . '+1 month' ) ) && ( strtotime( $bstwbsftwppdtplgns_options['time_out'][ $plugin_key ] ) > strtotime( date("m/d/Y") ) ) ) {
579
  if ( ! isset( $bstwbsftwppdtplgns_cookie_add ) ) {
580
+ echo '<script type="text/javascript" src="' . plugins_url( 'js/c_o_o_k_i_e.js', __FILE__ ) . '"></script>';
581
  $bstwbsftwppdtplgns_cookie_add = true;
582
  } ?>
583
  <script type="text/javascript">
598
  </script>
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.0
5
  */
6
 
7
  if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) )
@@ -273,7 +273,10 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
273
  'link' => 'http://bestwebsoft.com/products/bws-google-analytics/?k=261c74cad753fb279cdf5a5db63fbd43&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
274
  'download' => 'http://bestwebsoft.com/products/bws-google-analytics/download/?k=261c74cad753fb279cdf5a5db63fbd43&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
275
  'wp_install' => $admin_url . 'plugin-install.php?tab=search&s=Google+Analytics+Bestwebsoft&plugin-search-input=Search+Plugins',
276
- 'settings' => 'admin.php?page=bws-google-analytics.php'
 
 
 
277
  ),
278
  'db-manager/db-manager.php' => array(
279
  'name' => 'DB manager',
@@ -387,6 +390,33 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
387
  'pro_version' => 'promobar-pro/promobar-pro.php',
388
  'purchase' => 'http://bestwebsoft.com/products/promobar/buy/?k=a9b09708502f12a1483532ba12fe2103&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
389
  'pro_settings' => 'admin.php?page=promobar-pro.php'
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
390
  )
391
  );
392
 
@@ -734,7 +764,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
734
  $api = themes_api( 'query_themes', $args );
735
 
736
  if ( is_wp_error( $api ) )
737
- wp_die( $api->get_error_message() . '</p> <p><a href="#" onclick="document.location.reload(); return false;">' . __( 'Try again' ) . '</a>' );
738
 
739
  $theme_class->items = $api->themes;
740
  $theme_class->set_pagination_args( array(
@@ -752,7 +782,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
752
 
753
  $name = wp_kses( $theme->name, $themes_allowedtags );
754
  $author = wp_kses( $theme->author, $themes_allowedtags );
755
- $preview_title = sprintf( __('Preview &#8220;%s&#8221;'), $name );
756
  $preview_url = add_query_arg( array(
757
  'tab' => 'theme-information',
758
  'theme' => $theme->slug,
@@ -783,29 +813,29 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
783
  switch ( $status ) {
784
  default:
785
  case 'install':
786
- $actions[] = '<a class="install-now" href="' . esc_url( wp_nonce_url( $install_url, 'install-theme_' . $theme->slug ) ) . '" title="' . esc_attr( sprintf( __( 'Install %s' ), $name ) ) . '">' . __( 'Install Now' ) . '</a>';
787
  break;
788
  case 'update_available':
789
- $actions[] = '<a class="install-now" href="' . esc_url( wp_nonce_url( $update_url, 'upgrade-theme_' . $theme->slug ) ) . '" title="' . esc_attr( sprintf( __( 'Update to version %s' ), $theme->version ) ) . '">' . __( 'Update' ) . '</a>';
790
  break;
791
  case 'newer_installed':
792
  case 'latest_installed':
793
- $actions[] = '<span class="install-now" title="' . esc_attr__( 'This theme is already installed and is up to date' ) . '">' . _x( 'Installed', 'theme' ) . '</span>';
794
  break;
795
  }
796
- $actions[] = '<a class="install-theme-preview" href="' . esc_url( $preview_url ) . '" title="' . esc_attr( sprintf( __( 'Preview %s' ), $name ) ) . '">' . __( 'Preview' ) . '</a>';
797
  $actions = apply_filters( 'theme_install_actions', $actions, $theme ); ?>
798
  <a class="screenshot install-theme-preview" href="<?php echo esc_url( $preview_url ); ?>" title="<?php echo esc_attr( $preview_title ); ?>">
799
  <img src='<?php echo esc_url( $theme->screenshot_url ); ?>' width='150' />
800
  </a>
801
  <h3><?php echo $name; ?></h3>
802
- <div class="theme-author"><?php printf( __( 'By %s' ), $author ); ?></div>
803
  <div class="action-links">
804
  <ul>
805
  <?php foreach ( $actions as $action ): ?>
806
  <li><?php echo $action; ?></li>
807
  <?php endforeach; ?>
808
- <li class="hide-if-no-js"><a href="#" class="theme-detail"><?php _e('Details') ?></a></li>
809
  </ul>
810
  </div>
811
  <?php $theme_class->install_theme_info( $theme ); ?>
@@ -831,13 +861,13 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
831
  <?php } else { ?>
832
  <div class="theme-screenshot blank"></div>
833
  <?php } ?>
834
- <div class="theme-author"><?php printf( __( 'By %s' ), $theme->author ); ?></div>
835
  <h3 class="theme-name"><?php echo $theme->name; ?></h3>
836
  <div class="theme-actions">
837
- <a class="button button-secondary preview install-theme-preview" href="theme-install.php?theme=<?php echo $theme->slug ?>"><?php esc_html_e( 'Learn More' ); ?></a>
838
  </div>
839
  <?php if ( $theme->installed ) { ?>
840
- <div class="theme-installed"><?php _e( 'Already Installed' ); ?></div>
841
  <?php } ?>
842
  </div>
843
  <?php } ?>
@@ -915,6 +945,7 @@ if ( ! function_exists( 'bws_get_banner_array' ) ) {
915
  function bws_get_banner_array() {
916
  global $bstwbsftwppdtplgns_banner_array;
917
  $bstwbsftwppdtplgns_banner_array = array(
 
918
  array( 'prmbr_hide_banner_on_plugin_page', 'promobar/promobar.php', '1.0.0' ),
919
  array( 'gglnltcs_hide_banner_on_plugin_page', 'bws-google-analytics/bws-google-analytics.php', '1.6.2' ),
920
  array( 'htccss_hide_banner_on_plugin_page', 'htaccess/htaccess.php', '1.6.3' ),
@@ -932,10 +963,10 @@ if ( ! function_exists( 'bws_get_banner_array' ) ) {
932
  array( 'gglplsn_hide_banner_on_plugin_page', 'google-one/google-plus-one.php', '1.1.4' ),
933
  array( 'gglstmp_hide_banner_on_plugin_page', 'google-sitemap-plugin/google-sitemap-plugin.php', '2.8.4' ),
934
  array( 'cntctfrmpr_for_ctfrmtdb_hide_banner_on_plugin_page', 'contact-form-pro/contact_form_pro.php', '1.14' ),
935
- array( 'cntctfrm_for_ctfrmtdb_hide_banner_on_plugin_page', 'contact-form-plugin/contact_form.php', '3.62' ),
936
  array( 'cntctfrm_hide_banner_on_plugin_page', 'contact-form-plugin/contact_form.php', '3.47' ),
937
  array( 'cptch_hide_banner_on_plugin_page', 'captcha/captcha.php', '3.8.4' ),
938
- array( 'gllr_hide_banner_on_plugin_page', 'gallery-plugin/gallery-plugin.php', '3.9.1' )
 
939
  );
940
  }
941
  }
1
  <?php
2
  /*
3
  * Function for displaying BestWebSoft menu
4
+ * Version: 1.5.9
5
  */
6
 
7
  if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) )
273
  'link' => 'http://bestwebsoft.com/products/bws-google-analytics/?k=261c74cad753fb279cdf5a5db63fbd43&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
274
  'download' => 'http://bestwebsoft.com/products/bws-google-analytics/download/?k=261c74cad753fb279cdf5a5db63fbd43&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
275
  'wp_install' => $admin_url . 'plugin-install.php?tab=search&s=Google+Analytics+Bestwebsoft&plugin-search-input=Search+Plugins',
276
+ 'settings' => 'admin.php?page=bws-google-analytics.php',
277
+ 'pro_version' => 'bws-google-analytics-pro/bws-google-analytics-pro.php',
278
+ 'purchase' => 'http://bestwebsoft.com/products/bws-google-analytics/buy/?k=83796e84fec3f70ecfcc8894a73a6c4a&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
279
+ 'pro_settings' => 'admin.php?page=bws-google-analytics-pro.php'
280
  ),
281
  'db-manager/db-manager.php' => array(
282
  'name' => 'DB manager',
390
  'pro_version' => 'promobar-pro/promobar-pro.php',
391
  'purchase' => 'http://bestwebsoft.com/products/promobar/buy/?k=a9b09708502f12a1483532ba12fe2103&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
392
  'pro_settings' => 'admin.php?page=promobar-pro.php'
393
+ ),
394
+ 'realty/realty.php' => array(
395
+ 'name' => 'Realty',
396
+ 'description' => 'A convenient plugin that adds Real Estate functionality.',
397
+ 'link' => 'http://bestwebsoft.com/products/realty/?k=d55de979dbbbb7af0b2ff1d7f43884fa&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
398
+ 'download' => 'http://bestwebsoft.com/products/realty/download/?k=d55de979dbbbb7af0b2ff1d7f43884fa&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
399
+ 'wp_install' => $admin_url . 'plugin-install.php?tab=search&type=term&s=Realty+BestWebSoft&plugin-search-input=Search+Plugins',
400
+ 'settings' => 'admin.php?page=realty_settings',
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
 
764
  $api = themes_api( 'query_themes', $args );
765
 
766
  if ( is_wp_error( $api ) )
767
+ wp_die( $api->get_error_message() . '</p> <p><a href="#" onclick="document.location.reload(); return false;">' . __( 'Try again', 'bestwebsoft' ) . '</a>' );
768
 
769
  $theme_class->items = $api->themes;
770
  $theme_class->set_pagination_args( array(
782
 
783
  $name = wp_kses( $theme->name, $themes_allowedtags );
784
  $author = wp_kses( $theme->author, $themes_allowedtags );
785
+ $preview_title = sprintf( __( 'Preview &#8220;%s&#8221;', 'bestwebsoft' ), $name );
786
  $preview_url = add_query_arg( array(
787
  'tab' => 'theme-information',
788
  'theme' => $theme->slug,
813
  switch ( $status ) {
814
  default:
815
  case 'install':
816
+ $actions[] = '<a class="install-now" href="' . esc_url( wp_nonce_url( $install_url, 'install-theme_' . $theme->slug ) ) . '" title="' . esc_attr( sprintf( __( 'Install %s', 'bestwebsoft' ), $name ) ) . '">' . __( 'Install Now', 'bestwebsoft' ) . '</a>';
817
  break;
818
  case 'update_available':
819
+ $actions[] = '<a class="install-now" href="' . esc_url( wp_nonce_url( $update_url, 'upgrade-theme_' . $theme->slug ) ) . '" title="' . esc_attr( sprintf( __( 'Update to version %s', 'bestwebsoft' ), $theme->version ) ) . '">' . __( 'Update', 'bestwebsoft' ) . '</a>';
820
  break;
821
  case 'newer_installed':
822
  case 'latest_installed':
823
+ $actions[] = '<span class="install-now" title="' . esc_attr__( 'This theme is already installed and is up to date' ) . '">' . _x( 'Installed', 'theme', 'bestwebsoft' ) . '</span>';
824
  break;
825
  }
826
+ $actions[] = '<a class="install-theme-preview" href="' . esc_url( $preview_url ) . '" title="' . esc_attr( sprintf( __( 'Preview %s', 'bestwebsoft' ), $name ) ) . '">' . __( 'Preview', 'bestwebsoft' ) . '</a>';
827
  $actions = apply_filters( 'theme_install_actions', $actions, $theme ); ?>
828
  <a class="screenshot install-theme-preview" href="<?php echo esc_url( $preview_url ); ?>" title="<?php echo esc_attr( $preview_title ); ?>">
829
  <img src='<?php echo esc_url( $theme->screenshot_url ); ?>' width='150' />
830
  </a>
831
  <h3><?php echo $name; ?></h3>
832
+ <div class="theme-author"><?php printf( __( 'By %s', 'bestwebsoft' ), $author ); ?></div>
833
  <div class="action-links">
834
  <ul>
835
  <?php foreach ( $actions as $action ): ?>
836
  <li><?php echo $action; ?></li>
837
  <?php endforeach; ?>
838
+ <li class="hide-if-no-js"><a href="#" class="theme-detail"><?php _e( 'Details', 'bestwebsoft' ) ?></a></li>
839
  </ul>
840
  </div>
841
  <?php $theme_class->install_theme_info( $theme ); ?>
861
  <?php } else { ?>
862
  <div class="theme-screenshot blank"></div>
863
  <?php } ?>
864
+ <div class="theme-author"><?php printf( __( 'By %s', 'bestwebsoft' ), $theme->author ); ?></div>
865
  <h3 class="theme-name"><?php echo $theme->name; ?></h3>
866
  <div class="theme-actions">
867
+ <a class="button button-secondary preview install-theme-preview" href="theme-install.php?theme=<?php echo $theme->slug ?>"><?php esc_html_e( 'Learn More', 'bestwebsoft' ); ?></a>
868
  </div>
869
  <?php if ( $theme->installed ) { ?>
870
+ <div class="theme-installed"><?php _e( 'Already Installed', 'bestwebsoft' ); ?></div>
871
  <?php } ?>
872
  </div>
873
  <?php } ?>
945
  function bws_get_banner_array() {
946
  global $bstwbsftwppdtplgns_banner_array;
947
  $bstwbsftwppdtplgns_banner_array = array(
948
+ array( 'rlt_hide_banner_on_plugin_page', 'realty/realty.php', '1.0.0' ),
949
  array( 'prmbr_hide_banner_on_plugin_page', 'promobar/promobar.php', '1.0.0' ),
950
  array( 'gglnltcs_hide_banner_on_plugin_page', 'bws-google-analytics/bws-google-analytics.php', '1.6.2' ),
951
  array( 'htccss_hide_banner_on_plugin_page', 'htaccess/htaccess.php', '1.6.3' ),
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
@@ -120,6 +120,8 @@ table.bws_pro_version td {
120
  .bws_pro_version_tooltip .bws_info {
121
  float: left;
122
  padding-top: 10px;
 
 
123
  }
124
  .bws_pro_version_tooltip .bws_pro_links {
125
  float: right;
@@ -209,11 +211,11 @@ a.bws_plugin_pro_version {
209
  font-size: 12px;
210
  opacity: 0.7;
211
  }
212
- .bws_banner_on_plugin_page .button {
213
- float: left;
214
  border: none;
215
  font-size: 14px;
216
- margin: 18px 0 18px 16px;
217
  padding: 12px 29px;
218
  color: #FFF;
219
  text-shadow: none;
@@ -234,9 +236,15 @@ a.bws_plugin_pro_version {
234
  background: #222;
235
  color: #FFF;
236
  }
237
- .bws_banner_on_plugin_page .icon {
238
- float: right;
239
- margin: 12px 8px 8px 0;
 
 
 
 
 
 
240
  }
241
  .bws_banner_on_plugin_page .close_icon {
242
  float: right;
@@ -253,4 +261,8 @@ a.bws_plugin_pro_version {
253
  text-align: center;
254
  max-width: 100%;
255
  }
 
 
 
 
256
  }
120
  .bws_pro_version_tooltip .bws_info {
121
  float: left;
122
  padding-top: 10px;
123
+ font-size: 14px;
124
+ color: #444;
125
  }
126
  .bws_pro_version_tooltip .bws_pro_links {
127
  float: right;
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
@@ -122,6 +122,8 @@ table.bws_pro_version td {
122
  .bws_pro_version_tooltip .bws_info {
123
  float: left;
124
  padding-top: 10px;
 
 
125
  }
126
  .bws_pro_version_tooltip .bws_pro_links {
127
  float: right;
@@ -214,11 +216,11 @@ a.bws_plugin_pro_version {
214
  font-size: 12px;
215
  opacity: 0.7;
216
  }
217
- .bws_banner_on_plugin_page .button {
218
- float: left;
219
  border: none;
220
  font-size: 14px;
221
- margin: 18px 0 18px 16px;
222
  padding: 14px 29px;
223
  color: #FFF;
224
  text-shadow: none;
@@ -241,9 +243,15 @@ a.bws_plugin_pro_version {
241
  background: #222;
242
  color: #FFF;
243
  }
244
- .bws_banner_on_plugin_page .icon {
245
- float: right;
246
- margin: 12px 8px 8px 0;
 
 
 
 
 
 
247
  }
248
  .bws_banner_on_plugin_page .close_icon {
249
  float: right;
@@ -259,4 +267,8 @@ a.bws_plugin_pro_version {
259
  float: none;
260
  text-align: center;
261
  }
 
 
 
 
262
  }
122
  .bws_pro_version_tooltip .bws_info {
123
  float: left;
124
  padding-top: 10px;
125
+ font-size: 14px;
126
+ color: #444;
127
  }
128
  .bws_pro_version_tooltip .bws_pro_links {
129
  float: right;
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/realty.png ADDED
Binary file
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-05 13:14+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"
@@ -106,7 +106,7 @@ msgstr ""
106
  "обновлений приоритетного саппорта вам нужно продлить лицензию перейдя на "
107
  "вашей"
108
 
109
- #: bws_functions.php:223
110
  msgid ""
111
  "Unfortunately, the PRO licence was already installed to this domain. The PRO "
112
  "Trial license can be installed only once."
@@ -114,16 +114,16 @@ msgstr ""
114
  "К сожалению, PRO лицензия уже была установлена на этом доменен. PRO Trial "
115
  "лицензия может быть установлена только один раз."
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
 
122
- #: bws_functions.php:246
123
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
124
  msgstr "Не удалось открыть архив ZIP. Пожалуйста, загрузите плагин вручную"
125
 
126
- #: bws_functions.php:252
127
  msgid ""
128
  "Your server does not support either ZipArchive or Phar. Please, upload the "
129
  "plugin manually"
@@ -131,12 +131,12 @@ msgstr ""
131
  "Ваш сервер не поддерживает ни библиотеку ZipArchive, ни библиотеку Phar. "
132
  "Пожалуйста, загрузите плагин вручную"
133
 
134
- #: bws_functions.php:259
135
  msgid "UploadDir is not writable. Please, upload the plugin manually"
136
  msgstr ""
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,18 +182,55 @@ msgstr ""
182
  "Вы можете найти ваш лицензионный ключ на вашей личной странице Client area, "
183
  "нажав на ссылку"
184
 
185
- #: bws_functions.php:338
186
  msgid "(your username is the email you specify when purchasing the product)."
187
  msgstr ""
188
  "(ваше имя пользователя - это электронный адрес, указанный при покупке "
189
  "продукта)."
190
 
191
- #: bws_functions.php:346 bws_functions.php:354 bws_menu.php:613
192
- #: bws_menu.php:670
 
 
 
 
 
 
 
 
 
193
  msgid "Activate"
194
  msgstr "Активировать"
195
 
196
- #: bws_functions.php:399
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
197
  msgid ""
198
  "This license key is valid, but Your license has expired. If you want to "
199
  "update our plugin in future, you should extend the license."
@@ -201,23 +238,35 @@ msgstr ""
201
  "Лицензионный ключ принят, но срок действия лицензии истек. Если вы хотите "
202
  "обновлять плагин в будущем, вы должны продлить лицензию."
203
 
204
- #: bws_functions.php:401
205
  msgid "Unfortunately, you have exceeded the number of available tries."
206
  msgstr "К сожалению, вы превысили количество доступных попыток."
207
 
208
- #: bws_functions.php:405
209
- msgid "The license key is valid. Your license will expire on"
210
- msgstr "Лицензионный ключ принят. Ваша лицензия истечет"
 
 
 
 
 
 
 
 
211
 
212
- #: bws_functions.php:407
213
  msgid "The license key is valid."
214
  msgstr "Лицензионный ключ принят."
215
 
216
- #: bws_functions.php:431
 
 
 
 
217
  msgid "Please, enter your license key"
218
  msgstr "Пожалуйста, введите Ваш лицензионный ключ"
219
 
220
- #: bws_functions.php:444
221
  msgid ""
222
  "If needed you can check if the license key is correct or reenter it in the "
223
  "field below. You can find your license key on your personal page - Client "
@@ -227,7 +276,7 @@ msgstr ""
227
  "повторно ввести его в поле ниже. Вы можете найти ваш лицензионный ключ на "
228
  "своей личной странице - Client area - на нашем сайте"
229
 
230
- #: bws_functions.php:444
231
  msgid ""
232
  "(your username is the email you specify when purchasing the product). If "
233
  "necessary, please submit \"Lost your password?\" request."
@@ -235,11 +284,11 @@ msgstr ""
235
  "(ваш пользователь это емейл, который вы указывали при покупке продукта). При "
236
  "необходимости нажмите \"Lost your password?\"."
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 "
@@ -250,7 +299,7 @@ msgstr ""
250
  "противном случае плагин будет деативирован. Пожалуйста, перейдите на вашу "
251
  "личную"
252
 
253
- #: bws_functions.php:462
254
  msgid ""
255
  "(your username is the email you specify when purchasing the product), where "
256
  "you can make the necessary changes."
@@ -258,7 +307,15 @@ msgstr ""
258
  "(ваш пользователь это емейл, который вы указывали при покупке продукта), где "
259
  "вы можете сделать необходимые изменения."
260
 
261
- #: bws_functions.php:468
 
 
 
 
 
 
 
 
262
  msgid ""
263
  "Your license has expired. To continue getting top-priority support and "
264
  "plugin updates you should extend it."
@@ -267,282 +324,295 @@ msgstr ""
267
  "плагин в дальшем и иметь приоритетную тех.поддержку, то вам нужно продлить "
268
  "лицензию."
269
 
270
- #: bws_functions.php:468 bws_functions.php:502 bws_menu.php:589
271
- #: bws_menu.php:611 bws_menu.php:638 bws_menu.php:668 bws_menu.php:714
272
  msgid "Learn more"
273
  msgstr "Подробнее"
274
 
275
- #: bws_functions.php:502
 
 
 
 
 
 
 
 
 
 
 
 
 
276
  msgid "You license for"
277
  msgstr "Ваш лицензионный ключ для"
278
 
279
- #: bws_functions.php:502
280
  msgid "expires on"
281
  msgstr "истекает"
282
 
283
- #: bws_functions.php:502
284
  msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
285
  msgstr "и вы не будете получать приоритетную тех.поддержку или обновления."
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 "Mb"
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 Safe Mode"
347
 
348
- #: bws_menu.php:461
349
  msgid "PHP Allow URL fopen"
350
  msgstr "PHP Allow 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 "E-mail с системной информацией отправлен на"
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 "Извините, ваш email не может быть отправлен."
419
 
420
- #: bws_menu.php:540
421
  msgid "Need help?"
422
  msgstr "Нужна помощь?"
423
 
424
- #: bws_menu.php:541
425
  msgid "Client area"
426
  msgstr "Client area"
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 "Уже установлена"
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
 
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."
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"
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."
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"
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."
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"
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."
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"
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."
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 "
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."
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 "
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."
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."
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
 
contact_form.php CHANGED
@@ -1,10 +1,10 @@
1
  <?php
2
  /*
3
- Plugin Name: Contact Form
4
  Plugin URI: http://bestwebsoft.com/products/
5
  Description: Plugin for Contact Form.
6
  Author: BestWebSoft
7
- Version: 3.89
8
  Author URI: http://bestwebsoft.com/
9
  License: GPLv2 or later
10
  */
@@ -235,7 +235,7 @@ if ( ! function_exists( 'cntctfrm_settings' ) ) {
235
 
236
  if ( isset( $contact_form_multi_active ) || isset( $contact_form_multi_pro_active ) ) {
237
  if ( get_site_option( 'cntctfrmmlt_options_' . $_SESSION['cntctfrmmlt_id_form'] ) )
238
- update_option( 'cntctfrmmlt_options_' . $_SESSION['cntctfrmmlt_id_form'] , $cntctfrm_options, '', 'yes' );
239
  else
240
  update_option( 'cntctfrmmlt_options', $cntctfrm_options );
241
  } else
@@ -587,16 +587,16 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
587
  $cntctfrmmlt_options_main = get_option( 'cntctfrmmlt_options_main' );
588
 
589
  if ( $cntctfrmmlt_options_main['id_form'] !== $_SESSION['cntctfrmmlt_id_form'] )
590
- add_option( 'cntctfrmmlt_options_' . $cntctfrmmlt_options_main['id_form'] , $cntctfrm_options );
591
  else if ( $cntctfrmmlt_options_main['id_form'] == $_SESSION['cntctfrmmlt_id_form'] )
592
- update_option( 'cntctfrmmlt_options_' . $cntctfrmmlt_options_main['id_form'] , $cntctfrm_options, '', 'yes' );
593
  } elseif ( isset( $contact_form_multi_pro_active ) ) {
594
  $cntctfrmmltpr_options_main = get_option( 'cntctfrmmltpr_options_main' );
595
 
596
  if ( $cntctfrmmltpr_options_main['id_form'] !== $_SESSION['cntctfrmmlt_id_form'] )
597
- add_option( 'cntctfrmmlt_options_' . $cntctfrmmltpr_options_main['id_form'] , $cntctfrm_options );
598
  else if ( $cntctfrmmltpr_options_main['id_form'] == $_SESSION['cntctfrmmlt_id_form'] )
599
- update_option( 'cntctfrmmlt_options_' . $cntctfrmmltpr_options_main['id_form'] , $cntctfrm_options, '', 'yes' );
600
  } else {
601
  update_option( 'cntctfrm_options', $cntctfrm_options );
602
  }
@@ -1482,10 +1482,15 @@ if ( ! function_exists( 'cntctfrm_display_form' ) ) {
1482
  }
1483
  }
1484
 
1485
- if ( '80' != $_SERVER["SERVER_PORT"] || ( isset( $_SERVER["HTTPS"] ) && '443' != $_SERVER["SERVER_PORT"] && strtolower( $_SERVER["HTTPS"] ) == "on" ) )
1486
- $page_url = ( isset( $_SERVER["HTTPS"] ) && strtolower( $_SERVER["HTTPS"] ) == "on" ? "https://" : "http://" ) . $_SERVER[ $cntctfrm_options['cntctfrm_site_name_parameter'] ] . ':' . $_SERVER["SERVER_PORT"] . strip_tags( $_SERVER["REQUEST_URI"] ) . '#cntctfrm_contact_form';
1487
- else
1488
- $page_url = ( isset( $_SERVER["HTTPS"] ) && strtolower( $_SERVER["HTTPS"] ) == "on" ? "https://" : "http://" ) . $_SERVER[ $cntctfrm_options['cntctfrm_site_name_parameter'] ] . strip_tags( $_SERVER["REQUEST_URI"] ) . '#cntctfrm_contact_form';
 
 
 
 
 
1489
 
1490
  /* If contact form submited */
1491
 
@@ -1798,7 +1803,7 @@ if ( ! function_exists( 'cntctfrm_check_form' ) ) {
1798
  $tmp_path = $_FILES["cntctfrm_contact_attachment"]["tmp_name"];
1799
  $path_info = pathinfo( $path_of_uploaded_file );
1800
 
1801
- if ( array_key_exists ( $path_info['extension'], $mime_type ) ) {
1802
  if ( is_uploaded_file( $tmp_path ) ) {
1803
  if ( move_uploaded_file( $tmp_path, $path_of_uploaded_file ) ) {
1804
  do_action( 'cntctfrm_get_attachment_data', $path_of_uploaded_file );
@@ -2239,7 +2244,7 @@ if ( ! function_exists ( 'cntctfrm_admin_head' ) ) {
2239
  'align' => 'left',
2240
  ),
2241
  );
2242
- bws_add_tooltip_admin( $tooltip_args );
2243
  }
2244
  }
2245
  }
@@ -2374,7 +2379,7 @@ if ( ! function_exists ( 'cntctfrm_plugin_banner' ) ) {
2374
  global $hook_suffix;
2375
  if ( 'plugins.php' == $hook_suffix ) {
2376
  global $cntctfrm_plugin_info, $wp_version, $bstwbsftwppdtplgns_cookie_add, $bstwbsftwppdtplgns_banner_array;
2377
- bws_plugin_banner( $cntctfrm_plugin_info, 'cntctfrm', 'contact-form', 'f575dc39cba54a9de88df346eed52101', '77', plugins_url( 'images/banner.png', __FILE__ ) );
2378
 
2379
  if ( empty( $bstwbsftwppdtplgns_banner_array ) )
2380
  bws_get_banner_array();
@@ -2410,16 +2415,16 @@ if ( ! function_exists ( 'cntctfrm_plugin_banner' ) ) {
2410
  <?php if ( ! array_key_exists( 'contact-form-to-db/contact_form_to_db.php', $all_plugins ) && ! array_key_exists( 'contact-form-to-db-pro/contact_form_to_db_pro.php', $all_plugins ) ) { ?>
2411
  <div class="updated" style="padding: 0; margin: 0; border: none; background: none;">
2412
  <div class="cntctfrm_for_ctfrmtdb_message bws_banner_on_plugin_page" style="display: none;">
2413
- <img class="<?php echo $this_banner_prefix; ?>_close_icon close_icon" title="" src="<?php echo plugins_url( 'images/close_banner.png', __FILE__ ); ?>" alt=""/>
2414
- <div class="button_div">
2415
- <a class="button" target="_blank" href="http://bestwebsoft.com/products/contact-form-to-db/?k=6ebf0743736411607343ad391dc3b436&pn=77&v=<?php echo $cntctfrm_plugin_info["Version"]; ?>&amp;wp_v=<?php echo $wp_version; ?>"><?php _e( 'Learn More', 'contact_form' ); ?></a>
2416
  </div>
2417
  <div class="text">
2418
  <?php _e( "<strong>Contact Form to DB</strong> allows to store your messages to the database.", 'contact_form' ); ?><br />
2419
  <span><?php _e( "Manage messages that have been sent from your website.", 'contact_form' ); ?></span>
2420
  </div>
2421
- <div class="icon">
2422
- <img title="" src="<?php echo plugins_url( 'images/banner_for_ctfrmtdb.png', __FILE__ ); ?>" alt=""/>
2423
  </div>
2424
  </div>
2425
  </div>
1
  <?php
2
  /*
3
+ Plugin Name: Contact Form by BestWebSoft
4
  Plugin URI: http://bestwebsoft.com/products/
5
  Description: Plugin for Contact Form.
6
  Author: BestWebSoft
7
+ Version: 3.90
8
  Author URI: http://bestwebsoft.com/
9
  License: GPLv2 or later
10
  */
235
 
236
  if ( isset( $contact_form_multi_active ) || isset( $contact_form_multi_pro_active ) ) {
237
  if ( get_site_option( 'cntctfrmmlt_options_' . $_SESSION['cntctfrmmlt_id_form'] ) )
238
+ update_option( 'cntctfrmmlt_options_' . $_SESSION['cntctfrmmlt_id_form'] , $cntctfrm_options );
239
  else
240
  update_option( 'cntctfrmmlt_options', $cntctfrm_options );
241
  } else
587
  $cntctfrmmlt_options_main = get_option( 'cntctfrmmlt_options_main' );
588
 
589
  if ( $cntctfrmmlt_options_main['id_form'] !== $_SESSION['cntctfrmmlt_id_form'] )
590
+ add_option( 'cntctfrmmlt_options_' . $cntctfrmmlt_options_main['id_form'], $cntctfrm_options );
591
  else if ( $cntctfrmmlt_options_main['id_form'] == $_SESSION['cntctfrmmlt_id_form'] )
592
+ update_option( 'cntctfrmmlt_options_' . $cntctfrmmlt_options_main['id_form'], $cntctfrm_options );
593
  } elseif ( isset( $contact_form_multi_pro_active ) ) {
594
  $cntctfrmmltpr_options_main = get_option( 'cntctfrmmltpr_options_main' );
595
 
596
  if ( $cntctfrmmltpr_options_main['id_form'] !== $_SESSION['cntctfrmmlt_id_form'] )
597
+ add_option( 'cntctfrmmlt_options_' . $cntctfrmmltpr_options_main['id_form'], $cntctfrm_options );
598
  else if ( $cntctfrmmltpr_options_main['id_form'] == $_SESSION['cntctfrmmlt_id_form'] )
599
+ update_option( 'cntctfrmmlt_options_' . $cntctfrmmltpr_options_main['id_form'], $cntctfrm_options );
600
  } else {
601
  update_option( 'cntctfrm_options', $cntctfrm_options );
602
  }
1482
  }
1483
  }
1484
 
1485
+ if ( ( isset( $_SERVER['HTTPS'] ) && strtolower( $_SERVER['HTTPS'] ) == 'on' ) ) {
1486
+ $cntctfrm_protocol = 'https://';
1487
+ $cntctfrm_default_port = 443;
1488
+ } else {
1489
+ $cntctfrm_protocol = 'http://';
1490
+ $cntctfrm_default_port = 80;
1491
+ }
1492
+ $cntctfrm_port = ( $_SERVER['SERVER_PORT'] != $cntctfrm_default_port ) ? ':' . $_SERVER['SERVER_PORT'] : '';
1493
+ $page_url = $cntctfrm_protocol . $_SERVER[ $cntctfrm_options['cntctfrm_site_name_parameter'] ] . $cntctfrm_port . $_SERVER['REQUEST_URI'] . '#cntctfrm_contact_form';
1494
 
1495
  /* If contact form submited */
1496
 
1803
  $tmp_path = $_FILES["cntctfrm_contact_attachment"]["tmp_name"];
1804
  $path_info = pathinfo( $path_of_uploaded_file );
1805
 
1806
+ if ( array_key_exists( $path_info['extension'], $mime_type ) ) {
1807
  if ( is_uploaded_file( $tmp_path ) ) {
1808
  if ( move_uploaded_file( $tmp_path, $path_of_uploaded_file ) ) {
1809
  do_action( 'cntctfrm_get_attachment_data', $path_of_uploaded_file );
2244
  'align' => 'left',
2245
  ),
2246
  );
2247
+ bws_add_tooltip_in_admin( $tooltip_args );
2248
  }
2249
  }
2250
  }
2379
  global $hook_suffix;
2380
  if ( 'plugins.php' == $hook_suffix ) {
2381
  global $cntctfrm_plugin_info, $wp_version, $bstwbsftwppdtplgns_cookie_add, $bstwbsftwppdtplgns_banner_array;
2382
+ bws_plugin_banner( $cntctfrm_plugin_info, 'cntctfrm', 'contact-form', 'f575dc39cba54a9de88df346eed52101', '77', 'http://ps.w.org/contact-form-plugin/assets/icon-128x128.png' );
2383
 
2384
  if ( empty( $bstwbsftwppdtplgns_banner_array ) )
2385
  bws_get_banner_array();
2415
  <?php if ( ! array_key_exists( 'contact-form-to-db/contact_form_to_db.php', $all_plugins ) && ! array_key_exists( 'contact-form-to-db-pro/contact_form_to_db_pro.php', $all_plugins ) ) { ?>
2416
  <div class="updated" style="padding: 0; margin: 0; border: none; background: none;">
2417
  <div class="cntctfrm_for_ctfrmtdb_message bws_banner_on_plugin_page" style="display: none;">
2418
+ <img class="<?php echo $this_banner_prefix; ?>_close_icon close_icon" title="" src="<?php echo plugins_url( 'bws_menu/images/close_banner.png', __FILE__ ); ?>" alt=""/>
2419
+ <div class="icon">
2420
+ <img title="" src="http://ps.w.org/contact-form-to-db/assets/icon-128x128.png" alt="" />
2421
  </div>
2422
  <div class="text">
2423
  <?php _e( "<strong>Contact Form to DB</strong> allows to store your messages to the database.", 'contact_form' ); ?><br />
2424
  <span><?php _e( "Manage messages that have been sent from your website.", 'contact_form' ); ?></span>
2425
  </div>
2426
+ <div class="button_div">
2427
+ <a class="button" target="_blank" href="http://bestwebsoft.com/products/contact-form-to-db/?k=6ebf0743736411607343ad391dc3b436&pn=77&v=<?php echo $cntctfrm_plugin_info["Version"]; ?>&amp;wp_v=<?php echo $wp_version; ?>"><?php _e( 'Learn More', 'contact_form' ); ?></a>
2428
  </div>
2429
  </div>
2430
  </div>
images/banner.png DELETED
Binary file
images/banner_for_ctfrmtdb.png DELETED
Binary file
languages/contact_form-el.mo CHANGED
File without changes
languages/contact_form-el.po CHANGED
File without changes
languages/contact_form-fr_FR.mo CHANGED
Binary file
languages/contact_form-fr_FR.po CHANGED
@@ -1,24 +1,24 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: contact_form 3.86\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-03-05 12:53+0300\n"
6
- "PO-Revision-Date: 2015-03-05 12:55+0300\n"
7
- "Last-Translator: Luc Capronnier <lcapronnier@yahoo.com>\n"
8
  "Language-Team: Luc Capronnier <lcapronnier@yahoo.com>\n"
9
  "Language: fr_FR\n"
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;esc_html;esc_html__;esc_html_e;esc_attr__;"
14
- "esc_attr_e\n"
15
  "X-Poedit-Basepath: ..\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
  "Plural-Forms: nplurals=2;plural=n>2;\n"
18
- "X-Generator: Poedit 1.5.4\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
- #: contact_form.php:35 contact_form.php:631
 
22
  msgid "Contact Form Settings"
23
  msgstr "Options du formulaire de Contact"
24
 
@@ -26,49 +26,61 @@ msgstr "Options du formulaire de Contact"
26
  msgid "Contact Form"
27
  msgstr "Formulaire de contact"
28
 
29
- #: contact_form.php:123 contact_form.php:1012 contact_form.php:1046
 
 
30
  msgid "Name:"
31
- msgstr "Nom:"
32
 
33
- #: contact_form.php:124 contact_form.php:1013 contact_form.php:1047
 
 
34
  msgid "Address:"
35
  msgstr "Adresse :"
36
 
37
- #: contact_form.php:125 contact_form.php:1014 contact_form.php:1048
 
 
38
  msgid "Email Address:"
39
- msgstr "Adresse e-mail:"
40
 
41
- #: contact_form.php:126 contact_form.php:1015 contact_form.php:1049
 
 
42
  msgid "Phone number:"
43
- msgstr "Téléphone:"
44
 
45
- #: contact_form.php:127 contact_form.php:1016 contact_form.php:1050
 
 
46
  msgid "Subject:"
47
- msgstr "Sujet:"
48
 
49
- #: contact_form.php:128 contact_form.php:1017 contact_form.php:1051
 
 
50
  msgid "Message:"
51
- msgstr "Message:"
52
 
53
- #: contact_form.php:129 contact_form.php:1018 contact_form.php:1052
 
 
54
  msgid "Attachment:"
55
- msgstr "Pièce jointe:"
56
 
57
  #: contact_form.php:130
58
- msgid ""
59
- "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
60
- "EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. Max file size: "
61
- "2MB"
62
- msgstr ""
63
- "Types de fichiers autorisés: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, "
64
- "AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. Taille "
65
- "maximum 2MB"
66
 
67
- #: contact_form.php:131 contact_form.php:1020 contact_form.php:1054
 
 
68
  msgid "Send me a copy"
69
  msgstr "M'envoyer une copie"
70
 
71
- #: contact_form.php:132 contact_form.php:1021 contact_form.php:1055
 
 
72
  msgid "Submit"
73
  msgstr "Envoyer"
74
 
@@ -125,32 +137,20 @@ msgid "Thank you for contacting us."
125
  msgstr "Merci de nous avoir contacté."
126
 
127
  #: contact_form.php:543
128
- msgid ""
129
- "Email 'FROM' field option was changed, which may cause email messages being "
130
- "moved to the spam folder or email delivery failures."
131
- msgstr ""
132
- "L'option pour le champ 'From' des courriels a été modifiée, cela peut "
133
- "entrainer un classement des messages dans les dossiers spam ou bien une "
134
- "erreur d'acheminement peut survenir."
135
 
136
  #: contact_form.php:553
137
- msgid ""
138
- "If the 'Redirect to page' option is selected then the URL field should be in "
139
- "the following format"
140
- msgstr ""
141
- "Si l'ioption 'Rediriger vers la page' est positionnée, alors le champ Url "
142
- "doit être rempli avec le format suivant"
143
 
144
  #: contact_form.php:562
145
  msgid "Such user does not exist."
146
  msgstr "Cet utilisateur est inconnu."
147
 
148
  #: contact_form.php:572
149
- msgid ""
150
- "Please enter a valid email address in the 'Use this email address' field."
151
- msgstr ""
152
- "Merci de saisir une adresse e-mail valide pour le champ 'Utiliser cette "
153
- "adresse e-mail'."
154
 
155
  #: contact_form.php:580
156
  msgid "Please enter a valid email address in the 'FROM' field."
@@ -164,7 +164,9 @@ msgstr "Options enregistrées."
164
  msgid "Settings are not saved."
165
  msgstr "Paramètres non enregistrées."
166
 
167
- #: contact_form.php:633 contact_form.php:2126 contact_form.php:2140
 
 
168
  msgid "Settings"
169
  msgstr "Réglages"
170
 
@@ -176,7 +178,8 @@ msgstr "Options supplémentaires"
176
  msgid "Appearance"
177
  msgstr "Aspect"
178
 
179
- #: contact_form.php:636 contact_form.php:2141
 
180
  msgid "FAQ"
181
  msgstr "FAQ"
182
 
@@ -184,59 +187,49 @@ msgstr "FAQ"
184
  msgid "Go PRO"
185
  msgstr "Choisir la version PRO"
186
 
187
- #: contact_form.php:640 contact_form.php:642
 
188
  msgid "Notice:"
189
  msgstr "Avertissement :"
190
 
191
  #: contact_form.php:640
192
- msgid ""
193
- "The plugin's settings have been changed. In order to save them please don't "
194
- "forget to click the 'Save Changes' button."
195
- msgstr ""
196
- "Les paramètres de l'extension ont été changés. Afin de pouvoir les "
197
- "enregistrer, merci de cliquer sur le bouton 'Enregistrer les modifications'."
198
 
199
  #: contact_form.php:650
200
- msgid ""
201
- "If you want to create multiple contact forms, please install the Contact "
202
- "Form Multi plugin."
203
- msgstr ""
204
- "Si vous voulez créer plusieurs formulaire de contact, merci d'installer "
205
- "l'extension 'Contact Form Multi'"
206
-
207
- #: contact_form.php:657 contact_form.php:660 contact_form.php:1439
208
- msgid ""
209
- "If you would like to add the Contact Form to your website, just copy and "
210
- "paste this shortcode to your post or page or widget:"
211
- msgstr ""
212
- "Si vous souhaiter ajouter un formulaire de contact à votre site web, copiez "
213
- "juste ce code dans un article ou sur une page ou un widget:"
214
-
215
- #: contact_form.php:657 contact_form.php:658 contact_form.php:660
216
- #: contact_form.php:661 contact_form.php:1036 contact_form.php:1038
217
- #: contact_form.php:1099 contact_form.php:1101
218
  msgid "or"
219
  msgstr "ou"
220
 
221
- #: contact_form.php:658 contact_form.php:661
222
- msgid ""
223
- "If have any problems with the standard shortcode [contact_form], you should "
224
- "use the shortcode"
225
- msgstr ""
226
- "Si vous avez un soucis avec le code court standard [contact_form], vous "
227
- "pouvez utilisez le code court "
228
 
229
- #: contact_form.php:658 contact_form.php:661
 
230
  msgid "They work the same way."
231
  msgstr "Ils fonctionnent de la même manière."
232
 
233
  #: contact_form.php:665
234
- msgid ""
235
- "If you leave the fields empty, the messages will be sent to the email "
236
- "address specified during registration."
237
- msgstr ""
238
- "Si les champs ci-dessous ne sont pas renseignés le message sera envoyé à "
239
- "l'adresse spécifiée lors de l'enregistrement."
240
 
241
  #: contact_form.php:668
242
  msgid "The user's email address:"
@@ -247,16 +240,12 @@ msgid "Create a username"
247
  msgstr "Choisir un nom d'utilisateur"
248
 
249
  #: contact_form.php:685
250
- msgid ""
251
- "Enter a username of the person who should get the messages from the contact "
252
- "form."
253
- msgstr ""
254
- "Choisir le nom d'utilisateur qui recevra les messages envoyés depuis le "
255
- "formulaire de contact."
256
 
257
  #: contact_form.php:689
258
  msgid "Use this email address:"
259
- msgstr "Utiliser cette adresse e-mail:"
260
 
261
  #: contact_form.php:692
262
  msgid "Enter the email address you want the messages forwarded to."
@@ -264,27 +253,36 @@ msgstr "Choisir l'adresse e-mail qui sera utilisée pour recevoir les messages."
264
 
265
  #: contact_form.php:701
266
  msgid "Add department selectbox to the contact form:"
267
- msgstr ""
268
- "Ajouter la liste déroulante pour le département dans le formulaire de "
269
- "contact :"
270
 
271
- #: contact_form.php:709 contact_form.php:1145 contact_form.php:1322
 
 
272
  msgid "If you upgrade to Pro version all your settings will be saved."
273
- msgstr ""
274
- "Si vous passez à la version Pro, tous ces paramètres seront enregistrés."
275
 
276
- #: contact_form.php:716 contact_form.php:879 contact_form.php:952
277
- #: contact_form.php:1152 contact_form.php:1329
 
 
 
278
  msgid "Unlock premium options by upgrading to a PRO version."
279
  msgstr "Déploquer les options premium en migrant vers la version PRO."
280
 
281
- #: contact_form.php:717 contact_form.php:880 contact_form.php:953
282
- #: contact_form.php:1153 contact_form.php:1330 contact_form.php:2402
 
 
 
 
283
  msgid "Learn More"
284
  msgstr "Lire la suite"
285
 
286
- #: contact_form.php:720 contact_form.php:883 contact_form.php:956
287
- #: contact_form.php:1156 contact_form.php:1333
 
 
 
288
  msgid "Go"
289
  msgstr "Passez"
290
 
@@ -296,12 +294,15 @@ msgstr "Enregistrer les e-mails dans la base de données"
296
  msgid "Using"
297
  msgstr "Utilisant"
298
 
299
- #: contact_form.php:732 contact_form.php:929 contact_form.php:932
 
 
300
  #: contact_form.php:936
301
  msgid "powered by"
302
  msgstr "fournis par"
303
 
304
- #: contact_form.php:735 contact_form.php:739
 
305
  msgid "Using Contact Form to DB powered by"
306
  msgstr "Utilisant le formulaire de contact avec base de données fourni par"
307
 
@@ -323,9 +324,7 @@ msgstr "Wp-mail"
323
 
324
  #: contact_form.php:752
325
  msgid "You can use the wp_mail function for mailing"
326
- msgstr ""
327
- "Pour envoyer le courriel, vous pouvez utiliser la fonction wp_mail de "
328
- "WordPress "
329
 
330
  #: contact_form.php:754
331
  msgid "Mail"
@@ -339,8 +338,11 @@ msgstr "Pour envoyer le courriel, vous pouvez utiliser la fonction mail de php"
339
  msgid "'FROM' field"
340
  msgstr "Champ 'From'"
341
 
342
- #: contact_form.php:760 contact_form.php:810 contact_form.php:1197
343
- #: contact_form.php:1927 contact_form.php:1963
 
 
 
344
  msgid "Name"
345
  msgstr "Nom"
346
 
@@ -349,13 +351,12 @@ msgid "User name"
349
  msgstr "Nom de l'utlisateur"
350
 
351
  #: contact_form.php:766
352
- msgid ""
353
- "The name of the user who fills the form will be used in the field 'From'."
354
- msgstr ""
355
- "Dans le champ 'FROM' du courriel, il sera utilisé l'adresse e-mail de "
356
- "l'utlisateur qui rempli le formulaire."
357
 
358
- #: contact_form.php:771 contact_form.php:1938 contact_form.php:1970
 
 
359
  msgid "Email"
360
  msgstr "E-mail"
361
 
@@ -364,20 +365,12 @@ msgid "User email"
364
  msgstr "E-mail de l'utlisateur"
365
 
366
  #: contact_form.php:780
367
- msgid ""
368
- "The email address of the user who fills the form will be used in the field "
369
- "'From'."
370
- msgstr ""
371
- "Dans le champ 'FROM' du courriel, il sera utilisé l'adresse e-mail de "
372
- "l'utlisateur qui rempli le formulaire."
373
 
374
  #: contact_form.php:784
375
- msgid ""
376
- "If this option is changed, email messages may be moved to the spam folder or "
377
- "email delivery failures may occur."
378
- msgstr ""
379
- "Si cette option est modifiée, les courriels pourront se retrouver classer "
380
- "dans le dossier spam ou bien une erreur d'acheminement peut survenir."
381
 
382
  #: contact_form.php:790
383
  msgid "Required symbol"
@@ -409,24 +402,21 @@ msgstr "Valeur par défaut du champ"
409
 
410
  #: contact_form.php:817
411
  msgid "Use User's name as a default value if the user is logged in."
412
- msgstr ""
413
- "Utiliser le nom de l'utilisateur comme valeur par défaut si un utilisateur "
414
- "est connecté."
415
 
416
- #: contact_form.php:818 contact_form.php:846
417
- msgid ""
418
- "'Visible' and 'Disabled for editing' options will be applied only to logged-"
419
- "in users."
420
- msgstr ""
421
- "'Visible' et 'Inactif' pour modifier les options ne seront appliqués qu'aux "
422
- "utilisateurs connectés."
423
 
424
  #: contact_form.php:822
425
  msgid "Location selectbox"
426
  msgstr "Liste déroulante des localisations"
427
 
428
- #: contact_form.php:830 contact_form.php:1202 contact_form.php:1933
429
- #: contact_form.php:1967
 
 
430
  msgid "Address"
431
  msgstr "Adresse"
432
 
@@ -436,21 +426,23 @@ msgstr "Adresse e-mail"
436
 
437
  #: contact_form.php:845
438
  msgid "Use User's email as a default value if the user is logged in."
439
- msgstr ""
440
- "Utiliser l'adresse e-mail de l'utilisateur comme valeur par défaut si un "
441
- "utilisateur est connecté."
442
 
443
  #: contact_form.php:850
444
  msgid "Phone number"
445
  msgstr "Téléphone"
446
 
447
- #: contact_form.php:858 contact_form.php:1217 contact_form.php:1948
448
- #: contact_form.php:1976
 
 
449
  msgid "Subject"
450
  msgstr "Sujet"
451
 
452
- #: contact_form.php:866 contact_form.php:1221 contact_form.php:1951
453
- #: contact_form.php:1978
 
 
454
  msgid "Message"
455
  msgstr "Message"
456
 
@@ -474,7 +466,9 @@ msgstr "Afficher les explications en-dessous du bloc des pièces jointes"
474
  msgid "'Send me a copy' block"
475
  msgstr "Afficher le bloc \"M'envoyer une copie\""
476
 
477
- #: contact_form.php:929 contact_form.php:932 contact_form.php:936
 
 
478
  #: contact_form.php:1231
479
  msgid "Captcha"
480
  msgstr "Captcha"
@@ -515,43 +509,45 @@ msgstr "Courriel au format HTML"
515
  msgid "Display additional info in the email"
516
  msgstr "Afficher les informations complémentaires dans le courriel"
517
 
518
- #: contact_form.php:977 contact_form.php:1894 contact_form.php:1896
 
 
519
  msgid "Sent from (ip address)"
520
  msgstr "Envoyé de (adresse IP)"
521
 
522
  #: contact_form.php:977
523
  msgid "Example: Sent from (IP address):\t127.0.0.1"
524
- msgstr "Exemple: Envoyé de (addresse IP):\t127.0.0.1"
525
 
526
- #: contact_form.php:978 contact_form.php:1900 contact_form.php:1902
 
 
527
  msgid "Date/Time"
528
  msgstr "Date/Heure"
529
 
530
  #: contact_form.php:978
531
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
532
- msgstr "Exemple: Date/Heure:\tAoût 19, 2013 8:50pm"
533
 
534
- #: contact_form.php:979 contact_form.php:1906 contact_form.php:1908
 
 
535
  msgid "Sent from (referer)"
536
  msgstr "Envoyer de (référence)"
537
 
538
  #: contact_form.php:979
539
- msgid ""
540
- "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
541
- msgstr ""
542
- "Exemple: Envoyer de (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
543
 
544
- #: contact_form.php:980 contact_form.php:1912 contact_form.php:1914
 
 
545
  msgid "Using (user agent)"
546
  msgstr "Depuis (navigateur)"
547
 
548
  #: contact_form.php:980
549
- msgid ""
550
- "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
551
- "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
552
- msgstr ""
553
- "Exemple: En utilisant (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
554
- "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
555
 
556
  #: contact_form.php:984
557
  msgid "Language settings for the field names in the form"
@@ -563,86 +559,106 @@ msgstr "Ajouter une langue"
563
 
564
  #: contact_form.php:997
565
  msgid "Change the names of the contact form fields and error messages"
566
- msgstr ""
567
- "Modifier le texte pour les champs du formulaire de contact et les messages "
568
- "d'erreur"
569
 
570
- #: contact_form.php:1002 contact_form.php:1089
 
571
  msgid "English"
572
  msgstr "Anglais"
573
 
574
- #: contact_form.php:1010 contact_form.php:1044
 
575
  msgid "click to expand/hide the list"
576
  msgstr "cliquer pour voir/cacher la liste"
577
 
578
- #: contact_form.php:1019 contact_form.php:1053
 
579
  msgid "Tips below the Attachment block"
580
  msgstr "Afficher les explications en-dessous du bloc des pièces jointes"
581
 
582
- #: contact_form.php:1022 contact_form.php:1056
 
583
  msgid "Error message for the Name field"
584
  msgstr "Message d'erreur pour le champ nom"
585
 
586
- #: contact_form.php:1023 contact_form.php:1057
 
587
  msgid "Error message for the Address field"
588
  msgstr "Message d'erreur pour le champ Adresse"
589
 
590
- #: contact_form.php:1024 contact_form.php:1058
 
591
  msgid "Error message for the Email field"
592
  msgstr "Message d'erreur pour le champ e-mail"
593
 
594
- #: contact_form.php:1025 contact_form.php:1059
 
595
  msgid "Error message for the Phone field"
596
  msgstr "Message d'erreur pour le champ téléphone"
597
 
598
- #: contact_form.php:1026 contact_form.php:1060
 
599
  msgid "Error message for the Subject field"
600
  msgstr "Message d'erreur pour le champ sujet"
601
 
602
- #: contact_form.php:1027 contact_form.php:1061
 
603
  msgid "Error message for the Message field"
604
  msgstr "Message d'erreur pour le champ message"
605
 
606
- #: contact_form.php:1028 contact_form.php:1062
 
607
  msgid "Error message about the file type for the Attachment field"
608
  msgstr "Message d'erreur pour le champ fichier joint (type du fichier)"
609
 
610
- #: contact_form.php:1029 contact_form.php:1063
611
- msgid ""
612
- "Error message while uploading a file for the Attachment field to the server"
613
- msgstr ""
614
- "Message d'erreur pour le champ fichier joint (problème d'envoie vers le "
615
- "serveur)"
616
 
617
- #: contact_form.php:1030 contact_form.php:1064
 
618
  msgid "Error message while moving the file for the Attachment field"
619
  msgstr "Message d'erreur pour le champ fichier joint (déplacement du fichier)"
620
 
621
- #: contact_form.php:1031 contact_form.php:1065
 
622
  msgid "Error message when file size limit for the Attachment field is exceeded"
623
- msgstr ""
624
- "Message d'erreur pour le champ fichier joint (taille limite du fichier "
625
- "atteinte)"
626
 
627
- #: contact_form.php:1032 contact_form.php:1066
 
628
  msgid "Error message for the Captcha field"
629
  msgstr "Message d'erreur pour le captcha"
630
 
631
- #: contact_form.php:1033 contact_form.php:1067
 
632
  msgid "Error message for the whole form"
633
  msgstr "Message d'erreur demandant à compléter les champs manquants"
634
 
635
- #: contact_form.php:1036 contact_form.php:1038 contact_form.php:1070
636
- #: contact_form.php:1072 contact_form.php:1099 contact_form.php:1101
637
- #: contact_form.php:1109 contact_form.php:1111 contact_form.php:2272
638
- #: contact_form.php:2274
 
 
 
 
 
 
639
  msgid "Use shortcode"
640
  msgstr "Utiliser le code court"
641
 
642
- #: contact_form.php:1036 contact_form.php:1038 contact_form.php:1070
643
- #: contact_form.php:1072 contact_form.php:1099 contact_form.php:1101
644
- #: contact_form.php:1109 contact_form.php:1111 contact_form.php:2272
645
- #: contact_form.php:2274
 
 
 
 
 
 
646
  msgid "for this language"
647
  msgstr "pour cette langue"
648
 
@@ -658,7 +674,8 @@ msgstr "Action après l'envoie du courriel"
658
  msgid "Display text"
659
  msgstr "Afficher le texte"
660
 
661
- #: contact_form.php:1097 contact_form.php:1107
 
662
  msgid "Text"
663
  msgstr "Texte"
664
 
@@ -672,16 +689,11 @@ msgstr "Url"
672
 
673
  #: contact_form.php:1123
674
  msgid "The $_SERVER variable that is used to build a URL of the form"
675
- msgstr ""
676
- "La variable $_SERVER qui est utilisée pour construire l'URL du formulaire"
677
 
678
  #: contact_form.php:1127
679
- msgid ""
680
- "If you are not sure whether to change this setting or not, please do not do "
681
- "that."
682
- msgstr ""
683
- "Si vous n'êtes pas sûr de ce que vous faites, merci de ne pas toucher ce "
684
- "paramètre."
685
 
686
  #: contact_form.php:1136
687
  msgid "Auto Response"
@@ -689,16 +701,11 @@ msgstr "Réponse automatique"
689
 
690
  #: contact_form.php:1140
691
  #, php-format
692
- msgid ""
693
- "You can use %%NAME%% to display data from the email field and %%MESSAGE%% to "
694
- "display data from the Message field, as well as %%SITENAME%% to display blog "
695
- "name."
696
- msgstr ""
697
- "Vous pouvez utiliser %%NAME%% pour afficher des données du champ email et "
698
- "%%MESSAGE%% pour afficher des données du champ message, de même %%SITENAME%% "
699
- "pour afficher le nom du site."
700
 
701
- #: contact_form.php:1165 contact_form.php:1340
 
702
  msgid "Save Changes"
703
  msgstr "Enregistrer les modifications"
704
 
@@ -716,9 +723,7 @@ msgstr "Mettre en couleur les champs ayant des erreurs"
716
 
717
  #: contact_form.php:1182
718
  msgid "Display error messages & color of the input field errors"
719
- msgstr ""
720
- "Afficher les messages d'erreur et mettre en couleur les champs ayant des "
721
- "erreurs"
722
 
723
  #: contact_form.php:1187
724
  msgid "Add placeholder to the input blocks"
@@ -752,10 +757,18 @@ msgstr "Options de style"
752
  msgid "Text color"
753
  msgstr "Couleur du texte"
754
 
755
- #: contact_form.php:1242 contact_form.php:1247 contact_form.php:1257
756
- #: contact_form.php:1262 contact_form.php:1267 contact_form.php:1272
757
- #: contact_form.php:1282 contact_form.php:1287 contact_form.php:1293
758
- #: contact_form.php:1304 contact_form.php:1309 contact_form.php:1314
 
 
 
 
 
 
 
 
759
  msgid "Default"
760
  msgstr "Défaut"
761
 
@@ -803,7 +816,8 @@ msgstr "Couleur pour les textes des champs de saisie"
803
  msgid "Border width in px, numbers only"
804
  msgstr "Largeur des bordures en px, nombre seulement"
805
 
806
- #: contact_form.php:1295 contact_form.php:1316
 
807
  msgid "Border color"
808
  msgstr "Couleur des bordures"
809
 
@@ -831,89 +845,87 @@ msgstr "Formulaire Pro de Contact | Prévisualisation"
831
  msgid "Show with errors"
832
  msgstr "Afficher avec les erreurs"
833
 
834
- #: contact_form.php:1355 contact_form.php:1357
 
835
  msgid "Please enter your full name..."
836
  msgstr "Merci de saisir votre nom..."
837
 
838
- #: contact_form.php:1368 contact_form.php:1370
 
839
  msgid "Please enter your address..."
840
  msgstr "Merci de saisir votre adresse..."
841
 
842
- #: contact_form.php:1379 contact_form.php:1381
 
843
  msgid "Please enter your email address..."
844
  msgstr "Merci de saisir votre adresse e-mail..."
845
 
846
- #: contact_form.php:1390 contact_form.php:1392
 
847
  msgid "Please enter your phone number..."
848
  msgstr "Merci de saisir votre numéro de téléphone..."
849
 
850
- #: contact_form.php:1401 contact_form.php:1403
 
851
  msgid "Please enter subject..."
852
  msgstr "Merci de saisir le sujet..."
853
 
854
- #: contact_form.php:1411 contact_form.php:1413
 
855
  msgid "Please enter your message..."
856
  msgstr "Merci de saisir votre message..."
857
 
858
- #: contact_form.php:1517
859
  msgid "Sorry, email message could not be delivered."
860
  msgstr "Désolé, votre courriel n'a pas pu être envoyé."
861
 
862
- #: contact_form.php:1921
863
  msgid "Contact from"
864
  msgstr "Contact de"
865
 
866
- #: contact_form.php:1943 contact_form.php:1973
 
867
  msgid "Phone"
868
  msgstr "Téléphone"
869
 
870
- #: contact_form.php:1954 contact_form.php:1980
 
871
  msgid "Site"
872
  msgstr "Site"
873
 
874
- #: contact_form.php:2066
875
- msgid ""
876
- "If you can see this MIME, it means that the MIME type is not supported by "
877
- "your email client!"
878
- msgstr ""
879
- "Si vous voyez ce MIME c'est que votre navigateur n'accepte pas ce type de "
880
- "MIME !"
881
 
882
- #: contact_form.php:2142
883
  msgid "Support"
884
  msgstr "Support"
885
 
886
- #: contact_form.php:2191
887
  msgid "Are you sure that you want to delete this language data?"
888
  msgstr "Etes vous sûr de vouloir supprimer cette langue ?"
889
 
890
- #: contact_form.php:2212
891
  msgid "Add multiple forms"
892
- msgstr ""
893
 
894
- #: contact_form.php:2212
895
- msgid ""
896
- "Install Contact Form Multi plugin to create unlimited number of contact "
897
- "forms."
898
- msgstr ""
899
 
900
- #: contact_form.php:2217
901
  msgid "Learn more"
902
  msgstr "Lire la suite"
903
 
904
- #: contact_form.php:2221
905
  msgid "Close"
906
- msgstr ""
907
 
908
- #: contact_form.php:2405
909
- msgid ""
910
- "<strong>Contact Form to DB</strong> allows to store your messages to the "
911
- "database."
912
- msgstr ""
913
- "<strong>Contact Form to DB</strong> permet d'enregistrer les messages dans "
914
- "la base de données."
915
 
916
- #: contact_form.php:2406
917
  msgid "Manage messages that have been sent from your website."
918
  msgstr "Gérer les messages qui ont été envoyés depuis votre site."
919
 
@@ -933,18 +945,45 @@ msgstr "Gérer les messages qui ont été envoyés depuis votre site."
933
  #~ msgid "Plugins page"
934
  #~ msgstr "Page des extensions"
935
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
936
  #~ msgid "Wrong license key"
937
  #~ msgstr "Clé de licence incorrecte"
938
 
939
  #~ msgid ""
940
- #~ "Something went wrong. Try again later. If the error will appear again, "
941
- #~ "please, contact us <a href=http://support.bestwebsoft.com>BestWebSoft</"
942
- #~ "a>. We are sorry for inconvenience."
943
  #~ msgstr ""
944
  #~ "Il est survenu une erreur. Essayer de nouveau. Si l'erreur se produit de "
945
  #~ "nouveau, merci de contacter <a href=http://support.bestwebsoft."
946
  #~ "com>BestWebSoft</a>. Nous sommes désolés pour le désagrément."
947
 
 
 
 
948
  #~ msgid "This license key is bind to another site"
949
  #~ msgstr "La clé de licence correspond à un autre site."
950
 
@@ -955,6 +994,21 @@ msgstr "Gérer les messages qui ont été envoyés depuis votre site."
955
  #~ "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de "
956
  #~ "télécharger l'extension manuellement."
957
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
958
  #~ msgid ""
959
  #~ "Failed to download the zip archive. Please, upload the plugin manually"
960
  #~ msgstr ""
@@ -980,7 +1034,7 @@ msgstr "Gérer les messages qui ont été envoyés depuis votre site."
980
 
981
  #~ msgid ""
982
  #~ "Something went wrong. Try again later or upload the plugin manually. We "
983
- #~ "are sorry for inconvienience."
984
  #~ msgstr ""
985
  #~ "Il est survenu une erreur. Essayer de nouveau ou bien télécharger "
986
  #~ "l'extension manuellement.Nous sommes désolés pour le désagrément."
@@ -988,18 +1042,6 @@ msgstr "Gérer les messages qui ont été envoyés depuis votre site."
988
  #~ msgid "Please, enter Your license key"
989
  #~ msgstr "Merci de saisir votre clé de liecence"
990
 
991
- #~ msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
992
- #~ msgstr ""
993
- #~ "Si notre extension vous satisfait, merci de la notée avec 5 étoiles dans "
994
- #~ "Wordpress"
995
-
996
- #~ msgid "Rate the plugin"
997
- #~ msgstr "Noter l'extension"
998
-
999
- #~ msgid "If there is something wrong about it, please contact us"
1000
- #~ msgstr ""
1001
- #~ "Si quelque chose ne fonctionne pas correctement, merci de nous contacter"
1002
-
1003
  #~ msgid ""
1004
  #~ "Congratulations! The PRO version of the plugin is successfully download "
1005
  #~ "and activated."
@@ -1039,15 +1081,81 @@ msgstr "Gérer les messages qui ont été envoyés depuis votre site."
1039
  #~ msgstr "Activé"
1040
 
1041
  #~ msgid ""
1042
- #~ "It’s time to upgrade your <strong>Contact Form plugin</strong> to "
1043
- #~ "<strong>PRO</strong> version"
1044
  #~ msgstr ""
1045
- #~ "Le moment est venu de mettre à jour votre <strong>extension Contact Form</"
1046
- #~ "strong> vers la version <strong>PRO</strong>"
 
1047
 
1048
- #~ msgid "Extend standard plugin functionality with new great options."
1049
  #~ msgstr ""
1050
- #~ "Etend les fonctionalités de base de l'extension avec de nouvelles options."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1051
 
1052
  #~ msgid "Not set"
1053
  #~ msgstr "Not set"
@@ -1250,6 +1358,13 @@ msgstr "Gérer les messages qui ont été envoyés depuis votre site."
1250
  #~ msgid "This email address will be used in the 'From' field."
1251
  #~ msgstr "Dans le champ 'FROM', cette adresse e-mail sera utilisée."
1252
 
 
 
 
 
 
 
 
1253
  #~ msgid "Go!"
1254
  #~ msgstr "Allez!"
1255
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-05-04 14:56+0300\n"
6
+ "PO-Revision-Date: 2015-05-04 14:57+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"
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;esc_html;esc_html__;esc_html_e;esc_attr__;esc_attr_e\n"
 
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "Plural-Forms: nplurals=2;plural=n>2;\n"
17
+ "X-Generator: Poedit 1.5.7\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: contact_form.php:35
21
+ #: contact_form.php:631
22
  msgid "Contact Form Settings"
23
  msgstr "Options du formulaire de Contact"
24
 
26
  msgid "Contact Form"
27
  msgstr "Formulaire de contact"
28
 
29
+ #: contact_form.php:123
30
+ #: contact_form.php:1012
31
+ #: contact_form.php:1046
32
  msgid "Name:"
33
+ msgstr "Nom :"
34
 
35
+ #: contact_form.php:124
36
+ #: contact_form.php:1013
37
+ #: contact_form.php:1047
38
  msgid "Address:"
39
  msgstr "Adresse :"
40
 
41
+ #: contact_form.php:125
42
+ #: contact_form.php:1014
43
+ #: contact_form.php:1048
44
  msgid "Email Address:"
45
+ msgstr "Adresse e-mail :"
46
 
47
+ #: contact_form.php:126
48
+ #: contact_form.php:1015
49
+ #: contact_form.php:1049
50
  msgid "Phone number:"
51
+ msgstr "Téléphone :"
52
 
53
+ #: contact_form.php:127
54
+ #: contact_form.php:1016
55
+ #: contact_form.php:1050
56
  msgid "Subject:"
57
+ msgstr "Sujet :"
58
 
59
+ #: contact_form.php:128
60
+ #: contact_form.php:1017
61
+ #: contact_form.php:1051
62
  msgid "Message:"
63
+ msgstr "Message :"
64
 
65
+ #: contact_form.php:129
66
+ #: contact_form.php:1018
67
+ #: contact_form.php:1052
68
  msgid "Attachment:"
69
+ msgstr "Pièce jointe :"
70
 
71
  #: contact_form.php:130
72
+ msgid "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. Max file size: 2MB"
73
+ msgstr "Types de fichiers autorisés : HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. Taille maximum 2MB"
 
 
 
 
 
 
74
 
75
+ #: contact_form.php:131
76
+ #: contact_form.php:1020
77
+ #: contact_form.php:1054
78
  msgid "Send me a copy"
79
  msgstr "M'envoyer une copie"
80
 
81
+ #: contact_form.php:132
82
+ #: contact_form.php:1021
83
+ #: contact_form.php:1055
84
  msgid "Submit"
85
  msgstr "Envoyer"
86
 
137
  msgstr "Merci de nous avoir contacté."
138
 
139
  #: contact_form.php:543
140
+ msgid "Email 'FROM' field option was changed, which may cause email messages being moved to the spam folder or email delivery failures."
141
+ msgstr "L'option pour le champ 'From' des courriels a été modifiée, cela peut entrainer un classement des messages dans les dossiers spam ou bien une erreur d'acheminement peut survenir."
 
 
 
 
 
142
 
143
  #: contact_form.php:553
144
+ msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
145
+ msgstr "Si l'ioption 'Rediriger vers la page' est positionnée, alors le champ Url doit être rempli avec le format suivant"
 
 
 
 
146
 
147
  #: contact_form.php:562
148
  msgid "Such user does not exist."
149
  msgstr "Cet utilisateur est inconnu."
150
 
151
  #: contact_form.php:572
152
+ msgid "Please enter a valid email address in the 'Use this email address' field."
153
+ msgstr "Merci de saisir une adresse e-mail valide pour le champ 'Utiliser cette adresse e-mail'."
 
 
 
154
 
155
  #: contact_form.php:580
156
  msgid "Please enter a valid email address in the 'FROM' field."
164
  msgid "Settings are not saved."
165
  msgstr "Paramètres non enregistrées."
166
 
167
+ #: contact_form.php:633
168
+ #: contact_form.php:2139
169
+ #: contact_form.php:2153
170
  msgid "Settings"
171
  msgstr "Réglages"
172
 
178
  msgid "Appearance"
179
  msgstr "Aspect"
180
 
181
+ #: contact_form.php:636
182
+ #: contact_form.php:2154
183
  msgid "FAQ"
184
  msgstr "FAQ"
185
 
187
  msgid "Go PRO"
188
  msgstr "Choisir la version PRO"
189
 
190
+ #: contact_form.php:640
191
+ #: contact_form.php:642
192
  msgid "Notice:"
193
  msgstr "Avertissement :"
194
 
195
  #: contact_form.php:640
196
+ msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
197
+ msgstr "Les paramètres de l'extension ont été changés. Afin de pouvoir les enregistrer, merci de cliquer sur le bouton 'Enregistrer les modifications'."
 
 
 
 
198
 
199
  #: contact_form.php:650
200
+ msgid "If you want to create multiple contact forms, please install the Contact Form Multi plugin."
201
+ msgstr "Si vous voulez créer plusieurs formulaire de contact, merci d'installer l'extension 'Contact Form Multi'"
202
+
203
+ #: contact_form.php:657
204
+ #: contact_form.php:660
205
+ #: contact_form.php:1439
206
+ msgid "If you would like to add the Contact Form to your website, just copy and paste this shortcode to your post or page or widget:"
207
+ msgstr "Si vous souhaiter ajouter un formulaire de contact à votre site web, copiez juste ce code dans un article ou sur une page ou un widget :"
208
+
209
+ #: contact_form.php:657
210
+ #: contact_form.php:658
211
+ #: contact_form.php:660
212
+ #: contact_form.php:661
213
+ #: contact_form.php:1036
214
+ #: contact_form.php:1038
215
+ #: contact_form.php:1099
216
+ #: contact_form.php:1101
 
217
  msgid "or"
218
  msgstr "ou"
219
 
220
+ #: contact_form.php:658
221
+ #: contact_form.php:661
222
+ msgid "If have any problems with the standard shortcode [contact_form], you should use the shortcode"
223
+ msgstr "Si vous avez un soucis avec le code court standard [contact_form], vous pouvez utilisez le code court "
 
 
 
224
 
225
+ #: contact_form.php:658
226
+ #: contact_form.php:661
227
  msgid "They work the same way."
228
  msgstr "Ils fonctionnent de la même manière."
229
 
230
  #: contact_form.php:665
231
+ msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
232
+ msgstr "Si les champs ci-dessous ne sont pas renseignés le message sera envoyé à l'adresse spécifiée lors de l'enregistrement."
 
 
 
 
233
 
234
  #: contact_form.php:668
235
  msgid "The user's email address:"
240
  msgstr "Choisir un nom d'utilisateur"
241
 
242
  #: contact_form.php:685
243
+ msgid "Enter a username of the person who should get the messages from the contact form."
244
+ msgstr "Choisir le nom d'utilisateur qui recevra les messages envoyés depuis le formulaire de contact."
 
 
 
 
245
 
246
  #: contact_form.php:689
247
  msgid "Use this email address:"
248
+ msgstr "Utiliser cette adresse e-mail :"
249
 
250
  #: contact_form.php:692
251
  msgid "Enter the email address you want the messages forwarded to."
253
 
254
  #: contact_form.php:701
255
  msgid "Add department selectbox to the contact form:"
256
+ msgstr "Ajouter la liste déroulante pour le département dans le formulaire de contact :"
 
 
257
 
258
+ #: contact_form.php:709
259
+ #: contact_form.php:1145
260
+ #: contact_form.php:1322
261
  msgid "If you upgrade to Pro version all your settings will be saved."
262
+ msgstr "Si vous passez à la version Pro, tous ces paramètres seront enregistrés."
 
263
 
264
+ #: contact_form.php:716
265
+ #: contact_form.php:879
266
+ #: contact_form.php:952
267
+ #: contact_form.php:1152
268
+ #: contact_form.php:1329
269
  msgid "Unlock premium options by upgrading to a PRO version."
270
  msgstr "Déploquer les options premium en migrant vers la version PRO."
271
 
272
+ #: contact_form.php:717
273
+ #: contact_form.php:880
274
+ #: contact_form.php:953
275
+ #: contact_form.php:1153
276
+ #: contact_form.php:1330
277
+ #: contact_form.php:2422
278
  msgid "Learn More"
279
  msgstr "Lire la suite"
280
 
281
+ #: contact_form.php:720
282
+ #: contact_form.php:883
283
+ #: contact_form.php:956
284
+ #: contact_form.php:1156
285
+ #: contact_form.php:1333
286
  msgid "Go"
287
  msgstr "Passez"
288
 
294
  msgid "Using"
295
  msgstr "Utilisant"
296
 
297
+ #: contact_form.php:732
298
+ #: contact_form.php:929
299
+ #: contact_form.php:932
300
  #: contact_form.php:936
301
  msgid "powered by"
302
  msgstr "fournis par"
303
 
304
+ #: contact_form.php:735
305
+ #: contact_form.php:739
306
  msgid "Using Contact Form to DB powered by"
307
  msgstr "Utilisant le formulaire de contact avec base de données fourni par"
308
 
324
 
325
  #: contact_form.php:752
326
  msgid "You can use the wp_mail function for mailing"
327
+ msgstr "Pour envoyer le courriel, vous pouvez utiliser la fonction wp_mail de WordPress "
 
 
328
 
329
  #: contact_form.php:754
330
  msgid "Mail"
338
  msgid "'FROM' field"
339
  msgstr "Champ 'From'"
340
 
341
+ #: contact_form.php:760
342
+ #: contact_form.php:810
343
+ #: contact_form.php:1197
344
+ #: contact_form.php:1940
345
+ #: contact_form.php:1976
346
  msgid "Name"
347
  msgstr "Nom"
348
 
351
  msgstr "Nom de l'utlisateur"
352
 
353
  #: contact_form.php:766
354
+ msgid "The name of the user who fills the form will be used in the field 'From'."
355
+ msgstr "Dans le champ 'FROM' du courriel, il sera utilisé l'adresse e-mail de l'utlisateur qui rempli le formulaire."
 
 
 
356
 
357
+ #: contact_form.php:771
358
+ #: contact_form.php:1951
359
+ #: contact_form.php:1983
360
  msgid "Email"
361
  msgstr "E-mail"
362
 
365
  msgstr "E-mail de l'utlisateur"
366
 
367
  #: contact_form.php:780
368
+ msgid "The email address of the user who fills the form will be used in the field 'From'."
369
+ msgstr "Dans le champ 'FROM' du courriel, il sera utilisé l'adresse e-mail de l'utlisateur qui rempli le formulaire."
 
 
 
 
370
 
371
  #: contact_form.php:784
372
+ msgid "If this option is changed, email messages may be moved to the spam folder or email delivery failures may occur."
373
+ msgstr "Si cette option est modifiée, les courriels pourront se retrouver classer dans le dossier spam ou bien une erreur d'acheminement peut survenir."
 
 
 
 
374
 
375
  #: contact_form.php:790
376
  msgid "Required symbol"
402
 
403
  #: contact_form.php:817
404
  msgid "Use User's name as a default value if the user is logged in."
405
+ msgstr "Utiliser le nom de l'utilisateur comme valeur par défaut si un utilisateur est connecté."
 
 
406
 
407
+ #: contact_form.php:818
408
+ #: contact_form.php:846
409
+ msgid "'Visible' and 'Disabled for editing' options will be applied only to logged-in users."
410
+ msgstr "'Visible' et 'Inactif' pour modifier les options ne seront appliqués qu'aux utilisateurs connectés."
 
 
 
411
 
412
  #: contact_form.php:822
413
  msgid "Location selectbox"
414
  msgstr "Liste déroulante des localisations"
415
 
416
+ #: contact_form.php:830
417
+ #: contact_form.php:1202
418
+ #: contact_form.php:1946
419
+ #: contact_form.php:1980
420
  msgid "Address"
421
  msgstr "Adresse"
422
 
426
 
427
  #: contact_form.php:845
428
  msgid "Use User's email as a default value if the user is logged in."
429
+ msgstr "Utiliser l'adresse e-mail de l'utilisateur comme valeur par défaut si un utilisateur est connecté."
 
 
430
 
431
  #: contact_form.php:850
432
  msgid "Phone number"
433
  msgstr "Téléphone"
434
 
435
+ #: contact_form.php:858
436
+ #: contact_form.php:1217
437
+ #: contact_form.php:1961
438
+ #: contact_form.php:1989
439
  msgid "Subject"
440
  msgstr "Sujet"
441
 
442
+ #: contact_form.php:866
443
+ #: contact_form.php:1221
444
+ #: contact_form.php:1964
445
+ #: contact_form.php:1991
446
  msgid "Message"
447
  msgstr "Message"
448
 
466
  msgid "'Send me a copy' block"
467
  msgstr "Afficher le bloc \"M'envoyer une copie\""
468
 
469
+ #: contact_form.php:929
470
+ #: contact_form.php:932
471
+ #: contact_form.php:936
472
  #: contact_form.php:1231
473
  msgid "Captcha"
474
  msgstr "Captcha"
509
  msgid "Display additional info in the email"
510
  msgstr "Afficher les informations complémentaires dans le courriel"
511
 
512
+ #: contact_form.php:977
513
+ #: contact_form.php:1907
514
+ #: contact_form.php:1909
515
  msgid "Sent from (ip address)"
516
  msgstr "Envoyé de (adresse IP)"
517
 
518
  #: contact_form.php:977
519
  msgid "Example: Sent from (IP address):\t127.0.0.1"
520
+ msgstr "Exemple: Envoyé de (addresse IP) :\t127.0.0.1"
521
 
522
+ #: contact_form.php:978
523
+ #: contact_form.php:1913
524
+ #: contact_form.php:1915
525
  msgid "Date/Time"
526
  msgstr "Date/Heure"
527
 
528
  #: contact_form.php:978
529
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
530
+ msgstr "Exemple: Date/Heure :\tAoût 19, 2013 8:50pm"
531
 
532
+ #: contact_form.php:979
533
+ #: contact_form.php:1919
534
+ #: contact_form.php:1921
535
  msgid "Sent from (referer)"
536
  msgstr "Envoyer de (référence)"
537
 
538
  #: contact_form.php:979
539
+ msgid "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
540
+ msgstr "Exemple : Envoyer de (referer) :\thttp://bestwebsoft.com/contacts/contact-us/"
 
 
541
 
542
+ #: contact_form.php:980
543
+ #: contact_form.php:1925
544
+ #: contact_form.php:1927
545
  msgid "Using (user agent)"
546
  msgstr "Depuis (navigateur)"
547
 
548
  #: contact_form.php:980
549
+ msgid "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
550
+ msgstr "Exemple : En utilisant (user agent) :\tMozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
 
 
 
 
551
 
552
  #: contact_form.php:984
553
  msgid "Language settings for the field names in the form"
559
 
560
  #: contact_form.php:997
561
  msgid "Change the names of the contact form fields and error messages"
562
+ msgstr "Modifier le texte pour les champs du formulaire de contact et les messages d'erreur"
 
 
563
 
564
+ #: contact_form.php:1002
565
+ #: contact_form.php:1089
566
  msgid "English"
567
  msgstr "Anglais"
568
 
569
+ #: contact_form.php:1010
570
+ #: contact_form.php:1044
571
  msgid "click to expand/hide the list"
572
  msgstr "cliquer pour voir/cacher la liste"
573
 
574
+ #: contact_form.php:1019
575
+ #: contact_form.php:1053
576
  msgid "Tips below the Attachment block"
577
  msgstr "Afficher les explications en-dessous du bloc des pièces jointes"
578
 
579
+ #: contact_form.php:1022
580
+ #: contact_form.php:1056
581
  msgid "Error message for the Name field"
582
  msgstr "Message d'erreur pour le champ nom"
583
 
584
+ #: contact_form.php:1023
585
+ #: contact_form.php:1057
586
  msgid "Error message for the Address field"
587
  msgstr "Message d'erreur pour le champ Adresse"
588
 
589
+ #: contact_form.php:1024
590
+ #: contact_form.php:1058
591
  msgid "Error message for the Email field"
592
  msgstr "Message d'erreur pour le champ e-mail"
593
 
594
+ #: contact_form.php:1025
595
+ #: contact_form.php:1059
596
  msgid "Error message for the Phone field"
597
  msgstr "Message d'erreur pour le champ téléphone"
598
 
599
+ #: contact_form.php:1026
600
+ #: contact_form.php:1060
601
  msgid "Error message for the Subject field"
602
  msgstr "Message d'erreur pour le champ sujet"
603
 
604
+ #: contact_form.php:1027
605
+ #: contact_form.php:1061
606
  msgid "Error message for the Message field"
607
  msgstr "Message d'erreur pour le champ message"
608
 
609
+ #: contact_form.php:1028
610
+ #: contact_form.php:1062
611
  msgid "Error message about the file type for the Attachment field"
612
  msgstr "Message d'erreur pour le champ fichier joint (type du fichier)"
613
 
614
+ #: contact_form.php:1029
615
+ #: contact_form.php:1063
616
+ msgid "Error message while uploading a file for the Attachment field to the server"
617
+ msgstr "Message d'erreur pour le champ fichier joint (problème d'envoie vers le serveur)"
 
 
618
 
619
+ #: contact_form.php:1030
620
+ #: contact_form.php:1064
621
  msgid "Error message while moving the file for the Attachment field"
622
  msgstr "Message d'erreur pour le champ fichier joint (déplacement du fichier)"
623
 
624
+ #: contact_form.php:1031
625
+ #: contact_form.php:1065
626
  msgid "Error message when file size limit for the Attachment field is exceeded"
627
+ msgstr "Message d'erreur pour le champ fichier joint (taille limite du fichier atteinte)"
 
 
628
 
629
+ #: contact_form.php:1032
630
+ #: contact_form.php:1066
631
  msgid "Error message for the Captcha field"
632
  msgstr "Message d'erreur pour le captcha"
633
 
634
+ #: contact_form.php:1033
635
+ #: contact_form.php:1067
636
  msgid "Error message for the whole form"
637
  msgstr "Message d'erreur demandant à compléter les champs manquants"
638
 
639
+ #: contact_form.php:1036
640
+ #: contact_form.php:1038
641
+ #: contact_form.php:1070
642
+ #: contact_form.php:1072
643
+ #: contact_form.php:1099
644
+ #: contact_form.php:1101
645
+ #: contact_form.php:1109
646
+ #: contact_form.php:1111
647
+ #: contact_form.php:2285
648
+ #: contact_form.php:2287
649
  msgid "Use shortcode"
650
  msgstr "Utiliser le code court"
651
 
652
+ #: contact_form.php:1036
653
+ #: contact_form.php:1038
654
+ #: contact_form.php:1070
655
+ #: contact_form.php:1072
656
+ #: contact_form.php:1099
657
+ #: contact_form.php:1101
658
+ #: contact_form.php:1109
659
+ #: contact_form.php:1111
660
+ #: contact_form.php:2285
661
+ #: contact_form.php:2287
662
  msgid "for this language"
663
  msgstr "pour cette langue"
664
 
674
  msgid "Display text"
675
  msgstr "Afficher le texte"
676
 
677
+ #: contact_form.php:1097
678
+ #: contact_form.php:1107
679
  msgid "Text"
680
  msgstr "Texte"
681
 
689
 
690
  #: contact_form.php:1123
691
  msgid "The $_SERVER variable that is used to build a URL of the form"
692
+ msgstr "La variable $_SERVER qui est utilisée pour construire l'URL du formulaire"
 
693
 
694
  #: contact_form.php:1127
695
+ msgid "If you are not sure whether to change this setting or not, please do not do that."
696
+ msgstr "Si vous n'êtes pas sûr de ce que vous faites, merci de ne pas toucher ce paramètre."
 
 
 
 
697
 
698
  #: contact_form.php:1136
699
  msgid "Auto Response"
701
 
702
  #: contact_form.php:1140
703
  #, php-format
704
+ msgid "You can use %%NAME%% to display data from the email field and %%MESSAGE%% to display data from the Message field, as well as %%SITENAME%% to display blog name."
705
+ msgstr "Vous pouvez utiliser %%NAME%% pour afficher des données du champ email et %%MESSAGE%% pour afficher des données du champ message, de même %%SITENAME%% pour afficher le nom du site."
 
 
 
 
 
 
706
 
707
+ #: contact_form.php:1165
708
+ #: contact_form.php:1340
709
  msgid "Save Changes"
710
  msgstr "Enregistrer les modifications"
711
 
723
 
724
  #: contact_form.php:1182
725
  msgid "Display error messages & color of the input field errors"
726
+ msgstr "Afficher les messages d'erreur et mettre en couleur les champs ayant des erreurs"
 
 
727
 
728
  #: contact_form.php:1187
729
  msgid "Add placeholder to the input blocks"
757
  msgid "Text color"
758
  msgstr "Couleur du texte"
759
 
760
+ #: contact_form.php:1242
761
+ #: contact_form.php:1247
762
+ #: contact_form.php:1257
763
+ #: contact_form.php:1262
764
+ #: contact_form.php:1267
765
+ #: contact_form.php:1272
766
+ #: contact_form.php:1282
767
+ #: contact_form.php:1287
768
+ #: contact_form.php:1293
769
+ #: contact_form.php:1304
770
+ #: contact_form.php:1309
771
+ #: contact_form.php:1314
772
  msgid "Default"
773
  msgstr "Défaut"
774
 
816
  msgid "Border width in px, numbers only"
817
  msgstr "Largeur des bordures en px, nombre seulement"
818
 
819
+ #: contact_form.php:1295
820
+ #: contact_form.php:1316
821
  msgid "Border color"
822
  msgstr "Couleur des bordures"
823
 
845
  msgid "Show with errors"
846
  msgstr "Afficher avec les erreurs"
847
 
848
+ #: contact_form.php:1355
849
+ #: contact_form.php:1357
850
  msgid "Please enter your full name..."
851
  msgstr "Merci de saisir votre nom..."
852
 
853
+ #: contact_form.php:1368
854
+ #: contact_form.php:1370
855
  msgid "Please enter your address..."
856
  msgstr "Merci de saisir votre adresse..."
857
 
858
+ #: contact_form.php:1379
859
+ #: contact_form.php:1381
860
  msgid "Please enter your email address..."
861
  msgstr "Merci de saisir votre adresse e-mail..."
862
 
863
+ #: contact_form.php:1390
864
+ #: contact_form.php:1392
865
  msgid "Please enter your phone number..."
866
  msgstr "Merci de saisir votre numéro de téléphone..."
867
 
868
+ #: contact_form.php:1401
869
+ #: contact_form.php:1403
870
  msgid "Please enter subject..."
871
  msgstr "Merci de saisir le sujet..."
872
 
873
+ #: contact_form.php:1411
874
+ #: contact_form.php:1413
875
  msgid "Please enter your message..."
876
  msgstr "Merci de saisir votre message..."
877
 
878
+ #: contact_form.php:1521
879
  msgid "Sorry, email message could not be delivered."
880
  msgstr "Désolé, votre courriel n'a pas pu être envoyé."
881
 
882
+ #: contact_form.php:1934
883
  msgid "Contact from"
884
  msgstr "Contact de"
885
 
886
+ #: contact_form.php:1956
887
+ #: contact_form.php:1986
888
  msgid "Phone"
889
  msgstr "Téléphone"
890
 
891
+ #: contact_form.php:1967
892
+ #: contact_form.php:1993
893
  msgid "Site"
894
  msgstr "Site"
895
 
896
+ #: contact_form.php:2079
897
+ msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
898
+ msgstr "Si vous voyez ce MIME c'est que votre navigateur n'accepte pas ce type de MIME !"
 
 
 
 
899
 
900
+ #: contact_form.php:2155
901
  msgid "Support"
902
  msgstr "Support"
903
 
904
+ #: contact_form.php:2204
905
  msgid "Are you sure that you want to delete this language data?"
906
  msgstr "Etes vous sûr de vouloir supprimer cette langue ?"
907
 
908
+ #: contact_form.php:2225
909
  msgid "Add multiple forms"
910
+ msgstr "Ajouter plusieurs formulaires"
911
 
912
+ #: contact_form.php:2225
913
+ msgid "Install Contact Form Multi plugin to create unlimited number of contact forms."
914
+ msgstr "Installer l'extension 'Contact Form Multi' pour créer un nombre infini de formulaires de contact."
 
 
915
 
916
+ #: contact_form.php:2230
917
  msgid "Learn more"
918
  msgstr "Lire la suite"
919
 
920
+ #: contact_form.php:2234
921
  msgid "Close"
922
+ msgstr "Fermer"
923
 
924
+ #: contact_form.php:2418
925
+ msgid "<strong>Contact Form to DB</strong> allows to store your messages to the database."
926
+ msgstr "<strong>Contact Form to DB</strong> permet d'enregistrer les messages dans la base de données."
 
 
 
 
927
 
928
+ #: contact_form.php:2419
929
  msgid "Manage messages that have been sent from your website."
930
  msgstr "Gérer les messages qui ont été envoyés depuis votre site."
931
 
945
  #~ msgid "Plugins page"
946
  #~ msgstr "Page des extensions"
947
 
948
+ #~ msgid "It’s time to upgrade your"
949
+ #~ msgstr "C'est le moment de mettre à jour votre "
950
+
951
+ #~ msgid "to"
952
+ #~ msgstr "à"
953
+
954
+ #~ msgid "version!"
955
+ #~ msgstr "version"
956
+
957
+ #~ msgid "Extend standard plugin functionality with new great options."
958
+ #~ msgstr ""
959
+ #~ "Etend les fonctionalités de base de l'extension avec de nouvelles options."
960
+
961
+ #~ msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
962
+ #~ msgstr ""
963
+ #~ "Si notre extension vous satisfait, merci de la notée avec 5 étoiles dans "
964
+ #~ "Wordpress"
965
+
966
+ #~ msgid "Rate the plugin"
967
+ #~ msgstr "Noter l'extension"
968
+
969
+ #~ msgid "If there is something wrong about it, please contact us"
970
+ #~ msgstr ""
971
+ #~ "Si quelque chose ne fonctionne pas correctement, merci de nous contacter"
972
+
973
  #~ msgid "Wrong license key"
974
  #~ msgstr "Clé de licence incorrecte"
975
 
976
  #~ msgid ""
977
+ #~ "Something went wrong. Please try again later. If the error appears again, "
978
+ #~ "please contact us"
 
979
  #~ msgstr ""
980
  #~ "Il est survenu une erreur. Essayer de nouveau. Si l'erreur se produit de "
981
  #~ "nouveau, merci de contacter <a href=http://support.bestwebsoft."
982
  #~ "com>BestWebSoft</a>. Nous sommes désolés pour le désagrément."
983
 
984
+ #~ msgid "We are sorry for inconvenience."
985
+ #~ msgstr "Nous sommes désolés pour le désagrément."
986
+
987
  #~ msgid "This license key is bind to another site"
988
  #~ msgstr "La clé de licence correspond à un autre site."
989
 
994
  #~ "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de "
995
  #~ "télécharger l'extension manuellement."
996
 
997
+ #~ msgid ""
998
+ #~ "Unfortunately, Your license has expired. To continue getting top-priority "
999
+ #~ "support and plugin updates you should extend it in your"
1000
+ #~ msgstr ""
1001
+ #~ "Désoler, votre licence est terminée. Pour continuer à disposer du support "
1002
+ #~ "rapide et des mises à jour de l'extension vous devez la renouveller dans "
1003
+ #~ "votre"
1004
+
1005
+ #~ msgid ""
1006
+ #~ "Unfortunately, the PRO licence was already installed to this domain. The "
1007
+ #~ "PRO Trial license can be installed only once."
1008
+ #~ msgstr ""
1009
+ #~ "Une licence a déjà été installée sur ce domaine. La licence d'évaluation "
1010
+ #~ "ne peut-être installée qu'une seule fois."
1011
+
1012
  #~ msgid ""
1013
  #~ "Failed to download the zip archive. Please, upload the plugin manually"
1014
  #~ msgstr ""
1034
 
1035
  #~ msgid ""
1036
  #~ "Something went wrong. Try again later or upload the plugin manually. We "
1037
+ #~ "are sorry for inconvenience."
1038
  #~ msgstr ""
1039
  #~ "Il est survenu une erreur. Essayer de nouveau ou bien télécharger "
1040
  #~ "l'extension manuellement.Nous sommes désolés pour le désagrément."
1042
  #~ msgid "Please, enter Your license key"
1043
  #~ msgstr "Merci de saisir votre clé de liecence"
1044
 
 
 
 
 
 
 
 
 
 
 
 
 
1045
  #~ msgid ""
1046
  #~ "Congratulations! The PRO version of the plugin is successfully download "
1047
  #~ "and activated."
1081
  #~ msgstr "Activé"
1082
 
1083
  #~ msgid ""
1084
+ #~ "This license key is valid, but Your license has expired. If you want to "
1085
+ #~ "update our plugin in future, you should extend the license."
1086
  #~ msgstr ""
1087
+ #~ "La clé de licence est valide mais votre durée de validité est passée. "
1088
+ #~ "Pour continuer à disposer du support rapide et des mises à jour de "
1089
+ #~ "l'extension vous devez la renouveller."
1090
 
1091
+ #~ msgid "Unfortunately, you have exceeded the number of available tries."
1092
  #~ msgstr ""
1093
+ #~ "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de "
1094
+ #~ "télécharger l'extension manuellement."
1095
+
1096
+ #~ msgid "The license key is valid. Your license will expire on"
1097
+ #~ msgstr "La clé de licence est valide. Votre licence se termine le"
1098
+
1099
+ #~ msgid "The license key is valid."
1100
+ #~ msgstr "La clé de licence est valide."
1101
+
1102
+ #~ msgid "Please, enter your license key"
1103
+ #~ msgstr "Merci de saisir votre clé de licence"
1104
+
1105
+ #~ msgid ""
1106
+ #~ "If needed you can check if the license key is correct or reenter it in "
1107
+ #~ "the field below. You can find your license key on your personal page - "
1108
+ #~ "Client area - on our website"
1109
+ #~ msgstr ""
1110
+ #~ "Si nécessaire vous pouvez vérifier que la clé de licence est correcte ou "
1111
+ #~ "la saisir de nouveau dans le champ ci-dessous. Vous pouvez trouver votre "
1112
+ #~ "clé de licence sur votre page personnelle (zone client) sur notre site "
1113
+ #~ "web."
1114
+
1115
+ #~ msgid ""
1116
+ #~ "(your username is the email you specify when purchasing the product). If "
1117
+ #~ "necessary, please submit \"Lost your password?\" request."
1118
+ #~ msgstr ""
1119
+ #~ "(votre nom d'utilisateur est l'adresse e-mail que vous avez donné lors de "
1120
+ #~ "l'achat de l'extension). Si nécessaire, utilisez la fonction de demande "
1121
+ #~ "de mot de passe perdu."
1122
+
1123
+ #~ msgid "Check license key"
1124
+ #~ msgstr "Vérifier la clé de licence"
1125
+
1126
+ #~ msgid ""
1127
+ #~ "WARNING: We have noticed illegal use of our plugin by you. We strongly "
1128
+ #~ "recommend you to solve the problem within 24 hours, otherwise the plugin "
1129
+ #~ "will be deactivated. Please go to your personal"
1130
+ #~ msgstr ""
1131
+ #~ "AVERTISSEMENT : Nous avons détecté une utilisation abusive de notre "
1132
+ #~ "extension. Nous vous recommandons de résoudre ce problème dans les 24 "
1133
+ #~ "heures, sinon l'extension sera rendue inactive. Merci de vous rendre dans "
1134
+ #~ "votre espace personel"
1135
+
1136
+ #~ msgid ""
1137
+ #~ "(your username is the email you specify when purchasing the product), "
1138
+ #~ "where you can make the necessary changes."
1139
+ #~ msgstr ""
1140
+ #~ "(votre nom d'utilisateur est l'adresse e-mail que vous avez donné lors de "
1141
+ #~ "l'achat de l'extension), où vous pourrez faire les modifications "
1142
+ #~ "nécessaires."
1143
+
1144
+ #~ msgid ""
1145
+ #~ "Your license has expired. To continue getting top-priority support and "
1146
+ #~ "plugin updates you should extend it."
1147
+ #~ msgstr ""
1148
+ #~ "Votre licence est terminée. Pour continuer à disposer du support rapide "
1149
+ #~ "et des mises à jour de l'extension vous devez la renouveller."
1150
+
1151
+ #~ msgid "You license for"
1152
+ #~ msgstr "Votre licence pour"
1153
+
1154
+ #~ msgid "expires on"
1155
+ #~ msgstr "se termine le"
1156
+
1157
+ #~ msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
1158
+ #~ msgstr "et vous ne diposerez plus du support rapide et des mises à jour."
1159
 
1160
  #~ msgid "Not set"
1161
  #~ msgstr "Not set"
1358
  #~ msgid "This email address will be used in the 'From' field."
1359
  #~ msgstr "Dans le champ 'FROM', cette adresse e-mail sera utilisée."
1360
 
1361
+ #~ msgid ""
1362
+ #~ "It’s time to upgrade your <strong>Contact Form plugin</strong> to "
1363
+ #~ "<strong>PRO</strong> version"
1364
+ #~ msgstr ""
1365
+ #~ "Le moment est venu de mettre à jour votre <strong>extension Contact Form</"
1366
+ #~ "strong> vers la version <strong>PRO</strong>"
1367
+
1368
  #~ msgid "Go!"
1369
  #~ msgstr "Allez!"
1370
 
languages/contact_form-nb_NO.mo CHANGED
File without changes
languages/contact_form-nb_NO.po CHANGED
File without changes
readme.txt CHANGED
@@ -1,10 +1,10 @@
1
- === Contact Form ===
2
  Contributors: bestwebsoft
3
  Donate link: https://www.2checkout.com/checkout/purchase?sid=1430388&quantity=1&product_id=94
4
  Tags: attachment, contact, contatc, conact, cnotact, contact button, contact form, contact form plugin, contact me, contacts, contacts form plugin, copy, feedback, feedback form, form, insert the shortcode, post feedback, request, send, send copy, send messages, shortcode, text, web-page feedback
5
  Requires at least: 3.1
6
- Tested up to: 4.1.1
7
- Stable tag: 3.89
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -152,6 +152,10 @@ Please make sure that the problem hasn't been discussed yet on our forum (<a hre
152
 
153
  == Changelog ==
154
 
 
 
 
 
155
  = V3.89 - 13.03.2015 =
156
  * Bugfix : Bug with undefined function on plugin's settings page was fixed.
157
 
@@ -551,6 +555,9 @@ Please make sure that the problem hasn't been discussed yet on our forum (<a hre
551
 
552
  == Upgrade Notice ==
553
 
 
 
 
554
  = V3.89 =
555
  Bug with undefined function on plugin's settings page was fixed.
556
 
1
+ === Contact Form by BestWebSoft ===
2
  Contributors: bestwebsoft
3
  Donate link: https://www.2checkout.com/checkout/purchase?sid=1430388&quantity=1&product_id=94
4
  Tags: attachment, contact, contatc, conact, cnotact, contact button, contact form, contact form plugin, contact me, contacts, contacts form plugin, copy, feedback, feedback form, form, insert the shortcode, post feedback, request, send, send copy, send messages, shortcode, text, web-page feedback
5
  Requires at least: 3.1
6
+ Tested up to: 4.2.1
7
+ Stable tag: 3.90
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
152
 
153
  == Changelog ==
154
 
155
+ = V3.90 - 04.05.2015 =
156
+ * Update : We updated all functionality for wordpress 4.2.1.
157
+ * Update : The French language file is updated.
158
+
159
  = V3.89 - 13.03.2015 =
160
  * Bugfix : Bug with undefined function on plugin's settings page was fixed.
161
 
555
 
556
  == Upgrade Notice ==
557
 
558
+ = V3.90 =
559
+ We updated all functionality for wordpress 4.2.1. The French language file is updated.
560
+
561
  = V3.89 =
562
  Bug with undefined function on plugin's settings page was fixed.
563