Google Sitemap by BestWebSoft - Version 3.0.2

Version Description

  • 28.12.2015 =
  • NEW : Compatibility with Htaccess by BestWebSoft was added. This allows to get an access to the xml files (for network which is based on sub-directories).
  • Bugfix : The bug with plugin menu duplicating was fixed.
Download this release

Release Info

Developer bestwebsoft
Plugin Icon 128x128 Google Sitemap by BestWebSoft
Version 3.0.2
Comparing to
See all releases

Code changes from version 3.0.1 to 3.0.2

Files changed (37) hide show
  1. bws_menu/bws_functions.php +178 -32
  2. bws_menu/bws_include.php +0 -1
  3. bws_menu/bws_menu.php +6 -9
  4. bws_menu/css/general_style.css +56 -9
  5. bws_menu/css/style.css +6 -6
  6. bws_menu/images/shortcode-icon.png +0 -0
  7. bws_menu/js/bws_tooltip.js +14 -6
  8. bws_menu/js/general_script.js +11 -5
  9. bws_menu/js/shortcode-button.js +114 -111
  10. bws_menu/languages/bestwebsoft-de_DE.mo +0 -0
  11. bws_menu/languages/bestwebsoft-de_DE.po +150 -106
  12. bws_menu/languages/bestwebsoft-fr_FR.mo +0 -0
  13. bws_menu/languages/bestwebsoft-fr_FR.po +329 -246
  14. bws_menu/languages/bestwebsoft-it_IT.mo +0 -0
  15. bws_menu/languages/bestwebsoft-it_IT.po +151 -109
  16. bws_menu/languages/bestwebsoft-ja.mo +0 -0
  17. bws_menu/languages/bestwebsoft-ja.po +152 -112
  18. bws_menu/languages/bestwebsoft-pt_BR.mo +0 -0
  19. bws_menu/languages/bestwebsoft-pt_BR.po +150 -106
  20. bws_menu/languages/bestwebsoft-ru_RU.mo +0 -0
  21. bws_menu/languages/bestwebsoft-ru_RU.po +150 -106
  22. bws_menu/languages/bestwebsoft-sr_RS.mo +0 -0
  23. bws_menu/languages/bestwebsoft-sr_RS.po +151 -112
  24. bws_menu/languages/bestwebsoft-sv_SE.mo +0 -0
  25. bws_menu/languages/bestwebsoft-sv_SE.po +150 -109
  26. bws_menu/languages/bestwebsoft-uk.mo +0 -0
  27. bws_menu/languages/bestwebsoft-uk.po +151 -110
  28. google-sitemap-plugin.php +211 -66
  29. languages/google-sitemap-plugin-ru_RU.mo +0 -0
  30. languages/google-sitemap-plugin-ru_RU.po +223 -151
  31. languages/google-sitemap-plugin-uk.mo +0 -0
  32. languages/google-sitemap-plugin-uk.po +218 -150
  33. readme.txt +10 -3
  34. screenshot-1.png +0 -0
  35. screenshot-2.png +0 -0
  36. screenshot-3.png +0 -0
  37. screenshot-4.png +0 -0
bws_menu/bws_functions.php CHANGED
@@ -1,19 +1,45 @@
1
  <?php
2
  /*
3
  * General functions for BestWebSoft plugins
4
- * Version: 1.1.2
5
  */
6
 
 
 
 
 
7
  if ( ! function_exists ( 'bws_add_general_menu' ) ) {
8
  function bws_add_general_menu() {
9
- add_menu_page( 'BWS Plugins', 'BWS Plugins', 'manage_options', 'bws_plugins', 'bws_add_menu_render', plugins_url( 'images/px.png', __FILE__ ), 1001 );
10
  }
11
  }
12
 
13
  /**
14
- * Function check if plugin is compatible with current WP version - for old plugin version
15
  * @return void
16
  */
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
17
  if ( ! function_exists ( 'bws_wp_version_check' ) ) {
18
  function bws_wp_version_check( $plugin_basename, $plugin_info, $require_wp ) {
19
  bws_wp_min_version_check( $plugin_basename, $plugin_info, '3.8' , $require_wp );
@@ -152,12 +178,34 @@ if ( ! function_exists( 'bws_plugin_reviews_block' ) ) {
152
  }
153
 
154
  if ( ! function_exists( 'bws_go_pro_tab_check' ) ) {
155
- function bws_go_pro_tab_check( $plugin_basename ) {
156
- global $wp_version, $bstwbsftwppdtplgns_options;
157
  $result = array();
158
 
159
  $bws_license_key = ( isset( $_POST['bws_license_key'] ) ) ? stripslashes( esc_html( trim( $_POST['bws_license_key'] ) ) ) : "";
160
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
161
  if ( isset( $_POST['bws_license_submit'] ) && check_admin_referer( $plugin_basename, 'bws_license_nonce_name' ) ) {
162
  if ( '' != $bws_license_key ) {
163
  if ( strlen( $bws_license_key ) != 18 ) {
@@ -306,8 +354,21 @@ if ( ! function_exists( 'bws_go_pro_tab_check' ) ) {
306
  }
307
  }
308
 
 
 
 
 
309
  if ( ! function_exists( 'bws_go_pro_tab' ) ) {
310
  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 ) {
 
 
 
 
 
 
 
 
 
311
  global $wp_version, $bstwbsftwppdtplgns_options;
312
  $bws_license_key = ( isset( $_POST['bws_license_key'] ) ) ? stripslashes( esc_html( trim( $_POST['bws_license_key'] ) ) ) : "";
313
  if ( $pro_plugin_is_activated ) { ?>
@@ -321,7 +382,16 @@ if ( ! function_exists( 'bws_go_pro_tab' ) ) {
321
  <?php _e( "Please, go to", 'bestwebsoft' ); ?> <a href="admin.php?page=<?php echo $pro_page; ?>"><?php _e( 'the setting page', 'bestwebsoft' ); ?></a>
322
  (<?php _e( "You will be redirected automatically in 5 seconds.", 'bestwebsoft' ); ?>)
323
  </p>
324
- <?php } else { ?>
 
 
 
 
 
 
 
 
 
325
  <form method="post" action="admin.php?page=<?php echo $page; ?>&amp;action=go_pro">
326
  <p>
327
  <?php _e( 'You can download and activate', 'bestwebsoft' ); ?>
@@ -607,26 +677,7 @@ if ( ! function_exists( 'bws_plugin_banner_to_settings' ) ) {
607
 
608
  if ( false == strrpos( $banner_url_or_slug, '/' ) ) {
609
  $banner_url_or_slug = '//ps.w.org/' . $banner_url_or_slug . '/assets/icon-128x128.png';
610
- }
611
-
612
- if ( 4.2 > $wp_version ) {
613
- $plugin_dir_array = explode( '/', plugin_basename( __FILE__ ) );
614
- $plugin_dir = $plugin_dir_array[0]; ?>
615
- <style type="text/css">
616
- .bws_hide_settings_notice {
617
- width: 11px;
618
- height: 11px;
619
- border: none;
620
- background: url("<?php echo plugins_url( $plugin_dir . '/bws_menu/images/close_banner.png' ); ?>") no-repeat center center;
621
- box-shadow: none;
622
- float: right;
623
- margin: 8px;
624
- }
625
- .bws_hide_settings_notice:hover {
626
- cursor: pointer;
627
- }
628
- </style>
629
- <?php } ?>
630
  <div class="updated" style="padding: 0; margin: 0; border: none; background: none;">
631
  <div class="bws_banner_on_plugin_page">
632
  <div class="icon">
@@ -662,6 +713,35 @@ if ( ! function_exists( 'bws_show_settings_notice' ) ) {
662
  <?php }
663
  }
664
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
665
  if ( ! function_exists ( 'bws_plugins_admin_init' ) ) {
666
  function bws_plugins_admin_init() {
667
  /* Internationalization, first(!) */
@@ -687,7 +767,7 @@ if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) ) {
687
 
688
  if ( ! function_exists ( 'bws_plugins_admin_head' ) ) {
689
  function bws_plugins_admin_head() {
690
- global $bws_shortcode_list, $wp_version;
691
  if ( isset( $_GET['page'] ) && $_GET['page'] == "bws_plugins" ) { ?>
692
  <noscript>
693
  <style type="text/css">
@@ -696,7 +776,30 @@ if ( ! function_exists ( 'bws_plugins_admin_head' ) ) {
696
  }
697
  </style>
698
  </noscript>
699
- <?php }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
700
  if ( ! empty( $bws_shortcode_list ) ) { ?>
701
  <!-- TinyMCE Shortcode Plugin -->
702
  <script type='text/javascript'>
@@ -713,7 +816,25 @@ if ( ! function_exists ( 'bws_plugins_admin_head' ) ) {
713
  };
714
  </script>
715
  <!-- TinyMCE Shortcode Plugin -->
716
- <?php }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
717
  }
718
  }
719
 
@@ -754,7 +875,8 @@ if ( ! class_exists( 'BWS_admin_tooltip' ) ) {
754
  'pos-left' => 0,
755
  'pos-top' => 0,
756
  'zindex' => 10000
757
- ),
 
758
  );
759
  $tooltip_args = array_merge( $tooltip_args_default, $tooltip_args );
760
  /* Check that our merged array has default values */
@@ -834,11 +956,11 @@ if ( ! class_exists( 'BWS_admin_tooltip' ) ) {
834
  }
835
 
836
  if ( ! function_exists ( 'bws_form_restore_default_settings' ) ) {
837
- function bws_form_restore_default_settings( $plugin_basename ) { ?>
838
  <form method="post" action="">
839
  <p><?php _e( 'Restore all plugin settings to defaults', 'bestwebsoft' ); ?></p>
840
  <p>
841
- <input type="submit" class="button" value="<?php _e( 'Restore settings', 'bestwebsoft' ); ?>" />
842
  </p>
843
  <input type="hidden" name="bws_restore_default" value="submit" />
844
  <?php wp_nonce_field( $plugin_basename, 'bws_settings_nonce_name' ); ?>
@@ -873,12 +995,14 @@ if ( ! function_exists( 'bws_add_editor_buttons' ) ) {
873
  }
874
  }
875
  }
 
876
  if ( ! function_exists( 'bws_add_buttons' ) ){
877
  function bws_add_buttons( $plugin_array ) {
878
  $plugin_array['add_bws_shortcode'] = plugins_url( 'js/shortcode-button.js', __FILE__ );
879
  return $plugin_array;
880
  }
881
  }
 
882
  if ( ! function_exists( 'bws_register_buttons' ) ) {
883
  function bws_register_buttons( $buttons ) {
884
  array_push( $buttons, 'add_bws_shortcode' ); /* dropcap', 'recentposts */
@@ -944,6 +1068,28 @@ if ( ! function_exists( 'bws_shortcode_media_button_popup' ) ) {
944
  }
945
  }
946
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
947
  add_action( 'admin_init', 'bws_plugins_admin_init' );
948
  add_action( 'admin_enqueue_scripts', 'bws_admin_enqueue_scripts' );
949
  add_action( 'admin_head', 'bws_plugins_admin_head' );
1
  <?php
2
  /*
3
  * General functions for BestWebSoft plugins
 
4
  */
5
 
6
+ /**
7
+ * Function add BWS Plugins page - for old plugin version
8
+ * @deprecated 1.7.9
9
+ */
10
  if ( ! function_exists ( 'bws_add_general_menu' ) ) {
11
  function bws_add_general_menu() {
12
+ bws_general_menu();
13
  }
14
  }
15
 
16
  /**
17
+ * Function add BWS Plugins page
18
  * @return void
19
  */
20
+ if ( ! function_exists ( 'bws_general_menu' ) ) {
21
+ function bws_general_menu() {
22
+ global $menu, $bws_general_menu_exist;
23
+
24
+ if ( ! $bws_general_menu_exist ) {
25
+ /* we check also menu exist in global array as in old plugins $bws_general_menu_exist variable not exist */
26
+ foreach ( $menu as $value_menu ) {
27
+ if ( 'bws_plugins' == $value_menu[2] ) {
28
+ $bws_general_menu_exist = true;
29
+ return;
30
+ }
31
+ }
32
+
33
+ add_menu_page( 'BWS Plugins', 'BWS Plugins', 'manage_options', 'bws_plugins', 'bws_add_menu_render', plugins_url( 'images/px.png', __FILE__ ), 1001 );
34
+ $bws_general_menu_exist = true;
35
+ }
36
+ }
37
+ }
38
+
39
+ /**
40
+ * Function check if plugin is compatible with current WP version - for old plugin version
41
+ * @deprecated 1.7.4
42
+ */
43
  if ( ! function_exists ( 'bws_wp_version_check' ) ) {
44
  function bws_wp_version_check( $plugin_basename, $plugin_info, $require_wp ) {
45
  bws_wp_min_version_check( $plugin_basename, $plugin_info, '3.8' , $require_wp );
178
  }
179
 
180
  if ( ! function_exists( 'bws_go_pro_tab_check' ) ) {
181
+ function bws_go_pro_tab_check( $plugin_basename, $plugin_options_name = false, $is_network_option = false ) {
182
+ global $wp_version, $bstwbsftwppdtplgns_options, $current_user;
183
  $result = array();
184
 
185
  $bws_license_key = ( isset( $_POST['bws_license_key'] ) ) ? stripslashes( esc_html( trim( $_POST['bws_license_key'] ) ) ) : "";
186
 
187
+ if ( ! empty( $plugin_options_name ) && isset( $_POST['bws_hide_premium_options_submit'] ) && check_admin_referer( $plugin_basename, 'bws_license_nonce_name' ) ) {
188
+ if ( ! $current_user )
189
+ get_currentuserinfo();
190
+
191
+ $plugin_options = ( $is_network_option ) ? get_site_option( $plugin_options_name ) : get_option( $plugin_options_name );
192
+
193
+ if ( !empty( $plugin_options['hide_premium_options'] ) ) {
194
+
195
+ $key = array_search( $current_user->ID, $plugin_options['hide_premium_options'] );
196
+ if ( false !== $key ) {
197
+ unset( $plugin_options['hide_premium_options'][ $key ] );
198
+ }
199
+
200
+ if ( $is_network_option )
201
+ update_site_option( $plugin_options_name, $plugin_options );
202
+ else
203
+ update_option( $plugin_options_name, $plugin_options );
204
+
205
+ $result['message'] = __( 'Check premium options on the plugin settings page!', 'bestwebsoft' );
206
+ }
207
+ }
208
+
209
  if ( isset( $_POST['bws_license_submit'] ) && check_admin_referer( $plugin_basename, 'bws_license_nonce_name' ) ) {
210
  if ( '' != $bws_license_key ) {
211
  if ( strlen( $bws_license_key ) != 18 ) {
354
  }
355
  }
356
 
357
+ /**
358
+ * Function display GO PRO tab - for old plugin version
359
+ * @deprecated 1.7.6
360
+ */
361
  if ( ! function_exists( 'bws_go_pro_tab' ) ) {
362
  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 ) {
363
+ bws_go_pro_tab_show( false, $plugin_info, $plugin_basename, $page, $pro_page, $bws_license_plugin, $link_slug, $link_key, $link_pn, $pro_plugin_is_activated, $trial_days_number );
364
+ }
365
+ }
366
+
367
+ /**
368
+ * Function display GO PRO tab
369
+ */
370
+ if ( ! function_exists( 'bws_go_pro_tab_show' ) ) {
371
+ function bws_go_pro_tab_show( $bws_hide_premium_options_check, $plugin_info, $plugin_basename, $page, $pro_page, $bws_license_plugin, $link_slug, $link_key, $link_pn, $pro_plugin_is_activated = false, $trial_days_number = false ) {
372
  global $wp_version, $bstwbsftwppdtplgns_options;
373
  $bws_license_key = ( isset( $_POST['bws_license_key'] ) ) ? stripslashes( esc_html( trim( $_POST['bws_license_key'] ) ) ) : "";
374
  if ( $pro_plugin_is_activated ) { ?>
382
  <?php _e( "Please, go to", 'bestwebsoft' ); ?> <a href="admin.php?page=<?php echo $pro_page; ?>"><?php _e( 'the setting page', 'bestwebsoft' ); ?></a>
383
  (<?php _e( "You will be redirected automatically in 5 seconds.", 'bestwebsoft' ); ?>)
384
  </p>
385
+ <?php } else {
386
+ if ( $bws_hide_premium_options_check ) { ?>
387
+ <form method="post" action="admin.php?page=<?php echo $page; ?>&amp;action=go_pro">
388
+ <p>
389
+ <input type="hidden" name="bws_hide_premium_options_submit" value="submit" />
390
+ <input type="submit" class="button" value="<?php _e( 'Show Pro features', 'bestwebsoft' ); ?>" />
391
+ <?php wp_nonce_field( $plugin_basename, 'bws_license_nonce_name' ); ?>
392
+ </p>
393
+ </form>
394
+ <?php } ?>
395
  <form method="post" action="admin.php?page=<?php echo $page; ?>&amp;action=go_pro">
396
  <p>
397
  <?php _e( 'You can download and activate', 'bestwebsoft' ); ?>
677
 
678
  if ( false == strrpos( $banner_url_or_slug, '/' ) ) {
679
  $banner_url_or_slug = '//ps.w.org/' . $banner_url_or_slug . '/assets/icon-128x128.png';
680
+ } ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
681
  <div class="updated" style="padding: 0; margin: 0; border: none; background: none;">
682
  <div class="bws_banner_on_plugin_page">
683
  <div class="icon">
713
  <?php }
714
  }
715
 
716
+ if ( ! function_exists( 'bws_hide_premium_options' ) ) {
717
+ function bws_hide_premium_options( $options ) {
718
+ global $current_user;
719
+ if ( ! $current_user )
720
+ get_currentuserinfo();
721
+ if ( ! isset( $options['hide_premium_options'] ) || ! is_array( $options['hide_premium_options'] ) )
722
+ $options['hide_premium_options'] = array();
723
+
724
+ $options['hide_premium_options'][] = $current_user->ID;
725
+
726
+ return array(
727
+ 'message' => __( 'You can always look at premium options by clicking on the "Show Pro features" in the "Go PRO" tab', 'bestwebsoft' ),
728
+ 'options' => $options );
729
+ }
730
+ }
731
+
732
+ if ( ! function_exists( 'bws_hide_premium_options_check' ) ) {
733
+ function bws_hide_premium_options_check( $options ) {
734
+ global $current_user;
735
+ if ( ! $current_user )
736
+ get_currentuserinfo();
737
+
738
+ if ( ! empty( $options['hide_premium_options'] ) && in_array( $current_user->ID, $options['hide_premium_options'] ) )
739
+ return true;
740
+ else
741
+ return false;
742
+ }
743
+ }
744
+
745
  if ( ! function_exists ( 'bws_plugins_admin_init' ) ) {
746
  function bws_plugins_admin_init() {
747
  /* Internationalization, first(!) */
767
 
768
  if ( ! function_exists ( 'bws_plugins_admin_head' ) ) {
769
  function bws_plugins_admin_head() {
770
+ global $bws_shortcode_list, $wp_version, $post_type;
771
  if ( isset( $_GET['page'] ) && $_GET['page'] == "bws_plugins" ) { ?>
772
  <noscript>
773
  <style type="text/css">
776
  }
777
  </style>
778
  </noscript>
779
+ <?php }
780
+ if ( 4.2 > $wp_version ) {
781
+ $plugin_dir_array = explode( '/', plugin_basename( __FILE__ ) );
782
+ $plugin_dir = $plugin_dir_array[0]; ?>
783
+ <style type="text/css">
784
+ .bws_hide_settings_notice,
785
+ .bws_hide_premium_options {
786
+ width: 11px;
787
+ height: 11px;
788
+ border: none;
789
+ background: url("<?php echo plugins_url( $plugin_dir . '/bws_menu/images/close_banner.png' ); ?>") no-repeat center center;
790
+ box-shadow: none;
791
+ float: right;
792
+ margin: 8px;
793
+ }
794
+ .bws_hide_settings_notice:hover,
795
+ .bws_hide_premium_options:hover {
796
+ cursor: pointer;
797
+ }
798
+ .bws_hide_premium_options {
799
+ position: relative;
800
+ }
801
+ </style>
802
+ <?php }
803
  if ( ! empty( $bws_shortcode_list ) ) { ?>
804
  <!-- TinyMCE Shortcode Plugin -->
805
  <script type='text/javascript'>
816
  };
817
  </script>
818
  <!-- TinyMCE Shortcode Plugin -->
819
+ <?php if ( isset( $post_type ) && in_array( $post_type, array( 'post', 'page' ) ) ) {
820
+ $tooltip_args = array(
821
+ 'tooltip_id' => 'bws_shortcode_button_tooltip',
822
+ 'css_selector' => '.mce-bws_shortcode_button',
823
+ 'actions' => array(
824
+ 'click' => false,
825
+ 'onload' => true
826
+ ),
827
+ 'content' => '<h3>' . __( 'Add shortcode', 'bestwebsoft' ) . '</h3><p>' . __( "Add BestWebSoft plugins' shortcodes using this button.", 'bestwebsoft' ) . '</p>',
828
+ 'position' => array(
829
+ 'edge' => 'right'
830
+ ),
831
+ 'set_timeout' => 2000
832
+ );
833
+ if ( $wp_version < '3.9' )
834
+ $tooltip_args['css_selector'] = '.mce_add_bws_shortcode';
835
+ bws_add_tooltip_in_admin( $tooltip_args );
836
+ }
837
+ }
838
  }
839
  }
840
 
875
  'pos-left' => 0,
876
  'pos-top' => 0,
877
  'zindex' => 10000
878
+ ),
879
+ 'set_timeout' => 0
880
  );
881
  $tooltip_args = array_merge( $tooltip_args_default, $tooltip_args );
882
  /* Check that our merged array has default values */
956
  }
957
 
958
  if ( ! function_exists ( 'bws_form_restore_default_settings' ) ) {
959
+ function bws_form_restore_default_settings( $plugin_basename, $change_permission_attr = '' ) { ?>
960
  <form method="post" action="">
961
  <p><?php _e( 'Restore all plugin settings to defaults', 'bestwebsoft' ); ?></p>
962
  <p>
963
+ <input <?php echo $change_permission_attr; ?> type="submit" class="button" value="<?php _e( 'Restore settings', 'bestwebsoft' ); ?>" />
964
  </p>
965
  <input type="hidden" name="bws_restore_default" value="submit" />
966
  <?php wp_nonce_field( $plugin_basename, 'bws_settings_nonce_name' ); ?>
995
  }
996
  }
997
  }
998
+
999
  if ( ! function_exists( 'bws_add_buttons' ) ){
1000
  function bws_add_buttons( $plugin_array ) {
1001
  $plugin_array['add_bws_shortcode'] = plugins_url( 'js/shortcode-button.js', __FILE__ );
1002
  return $plugin_array;
1003
  }
1004
  }
1005
+
1006
  if ( ! function_exists( 'bws_register_buttons' ) ) {
1007
  function bws_register_buttons( $buttons ) {
1008
  array_push( $buttons, 'add_bws_shortcode' ); /* dropcap', 'recentposts */
1068
  }
1069
  }
1070
 
1071
+ /* add help tab */
1072
+ if ( ! function_exists( 'bws_help_tab' ) ) {
1073
+ function bws_help_tab( $screen, $args ) {
1074
+ $content = '<p><a href="http://support.bestwebsoft.com/hc/en-us/sections/' . $args['section'] . '" target="_blank">' . __( 'Visit Help Center', 'bestwebsoft' ) . '</a></p>';
1075
+
1076
+ $screen->add_help_tab(
1077
+ array(
1078
+ 'id' => $args['id'] . '_help_tab',
1079
+ 'title' => __( 'FAQ', 'bestwebsoft' ),
1080
+ 'content' => $content
1081
+ )
1082
+ );
1083
+
1084
+ $screen->set_help_sidebar(
1085
+ '<p><strong>' . __( 'For more information:', 'bestwebsoft' ) . '</strong></p>' .
1086
+ '<p><a href="https://drive.google.com/folderview?id=0B5l8lO-CaKt9VGh0a09vUjNFNjA&usp=sharing#list" target="_blank">' . __( 'Documentation', 'bestwebsoft' ) . '</a></p>' .
1087
+ '<p><a href="http://www.youtube.com/user/bestwebsoft/playlists?flow=grid&sort=da&view=1" target="_blank">' . __( 'Video Instructions', 'bestwebsoft' ) . '</a></p>' .
1088
+ '<p><a href="http://support.bestwebsoft.com/hc/en-us/requests/new" target="_blank">' . __( 'Submit a Request', 'bestwebsoft' ) . '</a></p>'
1089
+ );
1090
+ }
1091
+ }
1092
+
1093
  add_action( 'admin_init', 'bws_plugins_admin_init' );
1094
  add_action( 'admin_enqueue_scripts', 'bws_admin_enqueue_scripts' );
1095
  add_action( 'admin_head', 'bws_plugins_admin_head' );
bws_menu/bws_include.php CHANGED
@@ -1,7 +1,6 @@
1
  <?php
2
  /*
3
  * Get latest version
4
- * Version: 1.0.0
5
  */
6
 
7
  if ( ! function_exists ( 'bws_include_init' ) ) {
1
  <?php
2
  /*
3
  * Get latest version
 
4
  */
5
 
6
  if ( ! function_exists ( 'bws_include_init' ) ) {
bws_menu/bws_menu.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  * Function for displaying BestWebSoft menu
4
- * Version: 1.7.4
5
  */
6
 
7
  if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) )
@@ -613,8 +613,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
613
  }
614
  } ?>
615
  <div class="wrap">
616
- <div class="icon32 icon32-bws" id="icon-options-general"></div>
617
- <h2>
618
  <span class="bws_main title">BestWebSoft</span>
619
  <ul class="subsubsub bws_title_menu">
620
  <li><a href="<?php echo esc_url( 'http://support.bestwebsoft.com/home' ); ?>" target="_blank"><?php _e( 'Need help?', 'bestwebsoft' ); ?></a></li> |
@@ -622,12 +621,10 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
622
  <li><a class="bws_system_status <?php if ( isset( $_GET['action'] ) && 'system_status' == $_GET['action'] ) echo ' nav-tab-active'; ?>" href="admin.php?page=bws_plugins&amp;action=system_status"><?php _e( 'System status', 'bestwebsoft' ); ?></a></li>
623
  </ul>
624
  <div class="clear"></div>
625
- </h2>
626
  <h2 class="nav-tab-wrapper">
627
  <a class="nav-tab<?php if ( !isset( $_GET['action'] ) ) echo ' nav-tab-active'; ?>" href="admin.php?page=bws_plugins"><?php _e( 'Plugins', 'bestwebsoft' ); ?></a>
628
- <?php if ( $wp_version >= '3.4' ) { ?>
629
- <a class="nav-tab<?php if ( isset( $_GET['action'] ) && 'themes' == $_GET['action'] ) echo ' nav-tab-active'; ?>" href="admin.php?page=bws_plugins&amp;action=themes"><?php _e( 'Themes', 'bestwebsoft' ); ?></a>
630
- <?php } ?>
631
  </h2>
632
  <?php if ( ! isset( $_GET['action'] ) ) { ?>
633
  <ul class="subsubsub">
@@ -637,7 +634,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
637
  </ul>
638
  <div class="clear"></div>
639
  <?php if ( ( isset( $_GET['sub'] ) && 'installed' == $_GET['sub'] ) || !isset( $_GET['sub'] ) ) { ?>
640
- <h4 class="bws_installed"><?php _e( 'Installed plugins', 'bestwebsoft' ); ?></h4>
641
  <?php foreach ( $all_plugins as $key_plugin => $value_plugin ) {
642
  if ( isset( $bws_plugins_pro[ $key_plugin ] ) )
643
  $key_plugin = $bws_plugins_pro[ $key_plugin ];
@@ -755,7 +752,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
755
  } ?>
756
  <div class="clear"></div>
757
  <?php if ( ( isset( $_GET['sub'] ) && 'recommended' == $_GET['sub'] ) || !isset( $_GET['sub'] ) ) { ?>
758
- <h4 class="bws_recommended"><?php _e( 'Recommended plugins', 'bestwebsoft' ); ?></h4>
759
  <?php foreach ( $recommend_plugins as $key_plugin => $value_plugin ) {
760
 
761
  if ( isset( $bws_plugins[ $key_plugin ] ) ) {
1
  <?php
2
  /*
3
  * Function for displaying BestWebSoft menu
4
+ * Version: 1.8.0
5
  */
6
 
7
  if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) )
613
  }
614
  } ?>
615
  <div class="wrap">
616
+ <h1>
 
617
  <span class="bws_main title">BestWebSoft</span>
618
  <ul class="subsubsub bws_title_menu">
619
  <li><a href="<?php echo esc_url( 'http://support.bestwebsoft.com/home' ); ?>" target="_blank"><?php _e( 'Need help?', 'bestwebsoft' ); ?></a></li> |
621
  <li><a class="bws_system_status <?php if ( isset( $_GET['action'] ) && 'system_status' == $_GET['action'] ) echo ' nav-tab-active'; ?>" href="admin.php?page=bws_plugins&amp;action=system_status"><?php _e( 'System status', 'bestwebsoft' ); ?></a></li>
622
  </ul>
623
  <div class="clear"></div>
624
+ </h1>
625
  <h2 class="nav-tab-wrapper">
626
  <a class="nav-tab<?php if ( !isset( $_GET['action'] ) ) echo ' nav-tab-active'; ?>" href="admin.php?page=bws_plugins"><?php _e( 'Plugins', 'bestwebsoft' ); ?></a>
627
+ <a class="nav-tab<?php if ( isset( $_GET['action'] ) && 'themes' == $_GET['action'] ) echo ' nav-tab-active'; ?>" href="admin.php?page=bws_plugins&amp;action=themes"><?php _e( 'Themes', 'bestwebsoft' ); ?></a>
 
 
628
  </h2>
629
  <?php if ( ! isset( $_GET['action'] ) ) { ?>
630
  <ul class="subsubsub">
634
  </ul>
635
  <div class="clear"></div>
636
  <?php if ( ( isset( $_GET['sub'] ) && 'installed' == $_GET['sub'] ) || !isset( $_GET['sub'] ) ) { ?>
637
+ <h3 class="bws_installed"><?php _e( 'Installed plugins', 'bestwebsoft' ); ?></h3>
638
  <?php foreach ( $all_plugins as $key_plugin => $value_plugin ) {
639
  if ( isset( $bws_plugins_pro[ $key_plugin ] ) )
640
  $key_plugin = $bws_plugins_pro[ $key_plugin ];
752
  } ?>
753
  <div class="clear"></div>
754
  <?php if ( ( isset( $_GET['sub'] ) && 'recommended' == $_GET['sub'] ) || !isset( $_GET['sub'] ) ) { ?>
755
+ <h3 class="bws_recommended"><?php _e( 'Recommended plugins', 'bestwebsoft' ); ?></h3>
756
  <?php foreach ( $recommend_plugins as $key_plugin => $value_plugin ) {
757
 
758
  if ( isset( $bws_plugins[ $key_plugin ] ) ) {
bws_menu/css/general_style.css CHANGED
@@ -81,6 +81,9 @@ td.bws_pro_version_tooltip {
81
  position: absolute;
82
  z-index: 1;
83
  }
 
 
 
84
  .bws_pro_version_table_bloc table.bws_pro_version {
85
  background: transparent;
86
  margin: 0;
@@ -252,6 +255,14 @@ div.bws_banner_on_plugin_page .icon {
252
  margin: 8px;
253
  cursor: pointer;
254
  }
 
 
 
 
 
 
 
 
255
  /* #### Mobile Phones Portrait or Landscape #### */
256
  @media screen and (max-device-width: 768px) {
257
  .bws_banner_on_plugin_page .text,
@@ -285,7 +296,9 @@ span.bws_code {
285
  position: relative;
286
  margin: 3px 5px;
287
  width: 28px;
288
- display: inline-block;
 
 
289
  vertical-align: middle;
290
  }
291
  .bws_help_box.dashicons-editor-help {
@@ -299,9 +312,8 @@ span.bws_code {
299
  color: #2ea2cc;
300
  }
301
  .bws_hidden_help_text {
302
- background: #F4F4F4;
303
  border: 1px solid #DCDCDC;
304
- border-radius: 4px;
305
  left: 40px;
306
  padding: 5px;
307
  position: absolute;
@@ -310,18 +322,44 @@ span.bws_code {
310
  display: none;
311
  color: #333;
312
  font-size: 12px;
 
 
313
  }
314
  .dashicons-editor-help .bws_hidden_help_text {
315
  left: 30px;
316
  top: -6px;
317
  }
 
318
  .bws_hidden_help_text:before {
319
- content: url("../images/help.png");
320
- left: -10px;
321
  position: absolute;
 
 
 
 
322
  top: 7px;
323
  direction: ltr;
324
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
325
  .bws_help_box:hover .bws_hidden_help_text {
326
  display: inline-block;
327
  z-index: 1001;
@@ -335,11 +373,11 @@ span.bws_code {
335
  .bws_help_box_right.dashicons-editor-help .bws_hidden_help_text,
336
  .rtl .dashicons-editor-help .bws_hidden_help_text {
337
  right: 30px;
338
- top: 0;
339
  }
340
  .bws_help_box_right .bws_hidden_help_text:before,
341
- .rtl .bws_hidden_help_text:before {
342
- top: 0;
 
343
  left: auto;
344
  right: -10px;
345
  -webkit-transform: rotate(180deg); /* Chrome y Safari */
@@ -347,12 +385,21 @@ span.bws_code {
347
  -o-transform: rotate(180deg); /* Opera */
348
  transform: rotate(180deg);
349
  }
350
-
 
 
 
 
 
 
351
  /* bws shortcode insert */
352
  #bws_shortcode_content,
353
  #bws_shortcode_select_plugin {
354
  margin-bottom: 10px;
355
  }
 
 
 
356
  #bws_shortcode_popup_block h4 {
357
  padding: 0;
358
  line-height: 2.5;
81
  position: absolute;
82
  z-index: 1;
83
  }
84
+ .bws_hide_premium_options {
85
+ z-index: 5;
86
+ }
87
  .bws_pro_version_table_bloc table.bws_pro_version {
88
  background: transparent;
89
  margin: 0;
255
  margin: 8px;
256
  cursor: pointer;
257
  }
258
+ .rtl .bws_banner_on_plugin_page .close_icon {
259
+ float: left;
260
+ }
261
+ .rtl div.bws_banner_on_plugin_page .icon,
262
+ .rtl div.bws_banner_on_plugin_page .button,
263
+ .rtl .bws_banner_on_plugin_page .text {
264
+ float: right;
265
+ }
266
  /* #### Mobile Phones Portrait or Landscape #### */
267
  @media screen and (max-device-width: 768px) {
268
  .bws_banner_on_plugin_page .text,
296
  position: relative;
297
  margin: 3px 5px;
298
  width: 28px;
299
+ display: inline-block;
300
+ }
301
+ .bws_help_box:not(.dashicons) {
302
  vertical-align: middle;
303
  }
304
  .bws_help_box.dashicons-editor-help {
312
  color: #2ea2cc;
313
  }
314
  .bws_hidden_help_text {
315
+ background: #fff;
316
  border: 1px solid #DCDCDC;
 
317
  left: 40px;
318
  padding: 5px;
319
  position: absolute;
322
  display: none;
323
  color: #333;
324
  font-size: 12px;
325
+ font-family: "Open Sans",sans-serif;
326
+ text-align: left;
327
  }
328
  .dashicons-editor-help .bws_hidden_help_text {
329
  left: 30px;
330
  top: -6px;
331
  }
332
+ .bws_hidden_help_text:after,
333
  .bws_hidden_help_text:before {
 
 
334
  position: absolute;
335
+ content: "";
336
+ width: 0;
337
+ height: 0;
338
+ left: -10px;
339
  top: 7px;
340
  direction: ltr;
341
  }
342
+ .bws_hidden_help_text:before {
343
+ border-top: 8px solid transparent;
344
+ border-bottom: 8px solid transparent;
345
+ border-right: 11px solid #DCDCDC;
346
+ z-index: -1;
347
+ margin-top: -1px;
348
+ margin-left: -2px;
349
+ }
350
+ .bws_hidden_help_text:after {
351
+ border-top: 7px solid transparent;
352
+ border-bottom: 7px solid transparent;
353
+ border-right: 10px solid #fff;
354
+ }
355
+ .bws_hidden_help_text:after {
356
+ border-top: 7px solid transparent;
357
+ border-bottom: 7px solid transparent;
358
+ border-right: 10px solid #fff;
359
+ }
360
+ .bws_hidden_help_text code {
361
+ padding: 2px 5px 1px;
362
+ }
363
  .bws_help_box:hover .bws_hidden_help_text {
364
  display: inline-block;
365
  z-index: 1001;
373
  .bws_help_box_right.dashicons-editor-help .bws_hidden_help_text,
374
  .rtl .dashicons-editor-help .bws_hidden_help_text {
375
  right: 30px;
 
376
  }
377
  .bws_help_box_right .bws_hidden_help_text:before,
378
+ .rtl .bws_hidden_help_text:before,
379
+ .rtl .bws_hidden_help_text:after,
380
+ .bws_help_box_right .bws_hidden_help_text:after {
381
  left: auto;
382
  right: -10px;
383
  -webkit-transform: rotate(180deg); /* Chrome y Safari */
385
  -o-transform: rotate(180deg); /* Opera */
386
  transform: rotate(180deg);
387
  }
388
+ .rtl .bws_hidden_help_text {
389
+ text-align: right;
390
+ }
391
+ .bws_help_box_right .bws_hidden_help_text:before,
392
+ .rtl .bws_hidden_help_text:before {
393
+ margin-right: -2px;
394
+ }
395
  /* bws shortcode insert */
396
  #bws_shortcode_content,
397
  #bws_shortcode_select_plugin {
398
  margin-bottom: 10px;
399
  }
400
+ #bws_shortcode_content * {
401
+ white-space: normal;
402
+ }
403
  #bws_shortcode_popup_block h4 {
404
  padding: 0;
405
  line-height: 2.5;
bws_menu/css/style.css CHANGED
@@ -24,15 +24,15 @@
24
  float: left;
25
  margin-right: 30px;
26
  }
27
- h4.bws_installed,
28
- h4.bws_recommended {
29
  color: #999;
30
  font-weight: bold;
31
  text-transform: uppercase;
32
  font-size: 14px;
33
  }
34
- h4.bws_installed:before,
35
- h4.bws_recommended:before {
36
  border-radius: 9px;
37
  content: "";
38
  display: inline-block;
@@ -42,10 +42,10 @@ h4.bws_recommended:before {
42
  width: 8px;
43
  margin-right: 7px;
44
  }
45
- h4.bws_recommended:before {
46
  background: #0074a2;
47
  }
48
- h4.bws_installed:before {
49
  background: #00a22e;
50
  }
51
  .bws_product_box {
24
  float: left;
25
  margin-right: 30px;
26
  }
27
+ .bws_installed,
28
+ .bws_recommended {
29
  color: #999;
30
  font-weight: bold;
31
  text-transform: uppercase;
32
  font-size: 14px;
33
  }
34
+ .bws_installed:before,
35
+ .bws_recommended:before {
36
  border-radius: 9px;
37
  content: "";
38
  display: inline-block;
42
  width: 8px;
43
  margin-right: 7px;
44
  }
45
+ .bws_recommended:before {
46
  background: #0074a2;
47
  }
48
+ .bws_installed:before {
49
  background: #00a22e;
50
  }
51
  .bws_product_box {
bws_menu/images/shortcode-icon.png CHANGED
Binary file
bws_menu/js/bws_tooltip.js CHANGED
@@ -7,11 +7,11 @@
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
  }
@@ -34,11 +34,10 @@
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
  },
@@ -64,10 +63,19 @@
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 () {
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
  }
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
  edge: pointer_options['position']['edge'],
42
  align: pointer_options['position']['align'],
43
  },
63
  $( "." + pointer_options["tooltip_id"] ).css({ "z-index": pointer_options['position']['zindex'] });
64
  }
65
  }
66
+
67
  /* display pointer for the first time */
68
  if ( pointer_options['actions']['onload'] ) {
69
+ if ( pointer_options['set_timeout'] > 0 ) {
70
+ var settime = parseInt( pointer_options['set_timeout'] );
71
+ setTimeout( function() {
72
+ displayPointer( $( pointer_options['css_selector'] ) );
73
+ }, settime );
74
+ } else {
75
+ displayPointer( $( pointer_options['css_selector'] ) );
76
+ }
77
  }
78
+
79
  /* display pointer when clicked on selector */
80
  if ( pointer_options['actions']['click'] ) {
81
  $( pointer_options['css_selector'] ).click( function () {
bws_menu/js/general_script.js CHANGED
@@ -1,17 +1,23 @@
 
 
 
 
 
 
 
1
  (function($) {
2
  $( document ).ready( function() {
3
  /**
4
  * add notice about changing on the settings page
5
  */
6
- $( '.bws_form input, .bws_form textarea, .bws_form select' ).bind( "change click select", function() {
7
  if ( $( this ).attr( 'type' ) != 'submit' && ! $( this ).hasClass( 'bws_no_bind_notice' ) ) {
8
- $( '.updated.fade, .error' ).css( 'display', 'none' );
9
- $( '#bws_save_settings_notice' ).css( 'display', 'block' );
10
  };
11
  });
12
  $( '.bws_save_anchor' ).on( "click", function( event ) {
13
  event.preventDefault();
14
  $( '.bws_form #bws-submit-button' ).click();
15
- });
16
  });
17
- })(jQuery);
1
+ function bws_show_settings_notice() {
2
+ (function($) {
3
+ $( '.updated.fade, .error' ).css( 'display', 'none' );
4
+ $( '#bws_save_settings_notice' ).css( 'display', 'block' );
5
+ })(jQuery);
6
+ }
7
+
8
  (function($) {
9
  $( document ).ready( function() {
10
  /**
11
  * add notice about changing on the settings page
12
  */
13
+ $( '.bws_form input, .bws_form textarea, .bws_form select' ).bind( "change paste select", function() {
14
  if ( $( this ).attr( 'type' ) != 'submit' && ! $( this ).hasClass( 'bws_no_bind_notice' ) ) {
15
+ bws_show_settings_notice();
 
16
  };
17
  });
18
  $( '.bws_save_anchor' ).on( "click", function( event ) {
19
  event.preventDefault();
20
  $( '.bws_form #bws-submit-button' ).click();
21
+ });
22
  });
23
+ })(jQuery);
bws_menu/js/shortcode-button.js CHANGED
@@ -1,121 +1,124 @@
1
- (function($) {
2
- var win;
3
- tinymce.create( 'tinymce.plugins.BWSButton', {
4
- /**
5
- * Initializes the plugin, this will be executed after the plugin has been created.
6
- * This call is done before the editor instance has finished it's initialization so use the onInit event
7
- * of the editor instance to intercept that event.
8
- *
9
- * @param {tinymce.Editor} ed Editor instance that the plugin is initialized in.
10
- * @param {string} url Absolute URL to where the plugin is located.
11
- */
12
- init : function( ed, url ) {
13
- ed.addButton( 'add_bws_shortcode', {
14
- title : bws_shortcode_button.title,
15
- image : bws_shortcode_button.icon_url,
16
- onclick: function() {
17
- if ( bws_shortcode_button.wp_version < '3.9' ) {
18
- /* triggers the thickbox */
19
- var width = jQuery(window).width(), H = jQuery(window).height(), W = ( 720 < width ) ? 720 : width;
20
- W = W - 80;
21
- H = H - 84;
22
- tb_show( bws_shortcode_button.title, '#TB_inline?width=' + W + '&height=' + H + '&inlineId=bws_shortcode_popup' );
23
-
24
- var current_object = '#TB_ajaxContent';
25
- } else {
26
- win = ed.windowManager.open( {
27
- width: 400,
28
- height: 400,
29
- inline: true,
30
- title: bws_shortcode_button.title,
31
- body: {
32
- id : 'bws-shortcode-content',
33
- type: 'container',
34
- classes: 'bws-shortcode',
35
- html: $( '#bws_shortcode_popup' ).html()
36
- },
37
- buttons: [{
38
- text: 'Insert',
39
- classes: 'button-primary primary bws_shortcode_insert',
40
- onclick: function( e ) {
41
- var shortcode = $( '.mce-container-body #bws_shortcode_display' ).text();
42
- if ( '' != shortcode ) {
43
- /* insert shortcode to tinymce */
44
- ed.insertContent( shortcode );
45
- }
46
- ed.windowManager.close();
 
 
 
47
  },
48
- },
49
- {
50
- text: 'Cancel',
51
- onclick: 'close'
52
- }],
53
-
54
- });
55
- var current_object = '.mce-container-body';
56
- }
57
- var select_count = $( current_object + ' select#bws_shortcode_select option').length;
58
- if ( 1 == select_count ) {
59
- $( current_object + ' #bws_shortcode_select_plugin' ).hide();
60
- }
61
-
62
- var plugin = $( current_object + ' #bws_shortcode_select option:selected' ).val();
63
- $( current_object + ' #bws_shortcode_content > div' ).hide();
64
- $( current_object + ' #bws_shortcode_content > #' + plugin ).show();
65
-
66
- if ( $( current_object + ' #bws_shortcode_content > #' + plugin + ' .bws_default_shortcode' ).length > 0 ) {
67
- $( current_object + ' #bws_shortcode_display' ).text( $( current_object + ' #bws_shortcode_content > #' + plugin + ' .bws_default_shortcode' ).val() );
68
- }
69
 
70
- $( current_object + ' #bws_shortcode_select' ).on( 'change',function() {
71
  var plugin = $( current_object + ' #bws_shortcode_select option:selected' ).val();
72
  $( current_object + ' #bws_shortcode_content > div' ).hide();
73
  $( current_object + ' #bws_shortcode_content > #' + plugin ).show();
 
74
  if ( $( current_object + ' #bws_shortcode_content > #' + plugin + ' .bws_default_shortcode' ).length > 0 ) {
75
  $( current_object + ' #bws_shortcode_display' ).text( $( current_object + ' #bws_shortcode_content > #' + plugin + ' .bws_default_shortcode' ).val() );
76
- } else {
77
- $( current_object + ' #bws_shortcode_display' ).text( '' );
78
  }
79
- });
80
 
81
- $.each( bws_shortcode_button.function_name, function( index, value ) {
82
- eval( value + '();' );
83
- });
84
- }
85
- });
86
- },
87
-
88
- /**
89
- * Creates control instances based in the incomming name. This method is normally not
90
- * needed since the addButton method of the tinymce.Editor class is a more easy way of adding buttons
91
- * but you sometimes need to create more complex controls like listboxes, split buttons etc then this
92
- * method can be used to create those.
93
- *
94
- * @param {String} n Name of the control to create.
95
- * @param {tinymce.ControlManager} cm Control manager to use inorder to create new control.
96
- * @return {tinymce.ui.Control} New control instance or null if no control was created.
97
- */
98
- createControl : function(n, cm) {
99
- return null;
100
- },
101
-
102
- /**
103
- * Returns information about the plugin as a name/value array.
104
- * The current keys are longname, author, authorurl, infourl and version.
105
- *
106
- * @return {Object} Name/value array containing information about the plugin.
107
- */
108
- getInfo : function() {
109
- return {
110
- longname : 'BWS Shortcode Buttons',
111
- author : 'BWS',
112
- authorurl : 'http://bestwebsoft.com',
113
- infourl : '',
114
- version : "0.1"
115
- };
116
- }
117
- });
118
-
119
- /* Register plugin */
120
- tinymce.PluginManager.add( 'add_bws_shortcode', tinymce.plugins.BWSButton );
 
 
 
 
 
 
 
 
 
 
 
 
121
  })(jQuery);
1
+ (function($) {
2
+ if ( typeof bws_shortcode_button != 'undefined' ) {
3
+ var win;
4
+ tinymce.create( 'tinymce.plugins.BWSButton', {
5
+ /**
6
+ * Initializes the plugin, this will be executed after the plugin has been created.
7
+ * This call is done before the editor instance has finished it's initialization so use the onInit event
8
+ * of the editor instance to intercept that event.
9
+ *
10
+ * @param {tinymce.Editor} ed Editor instance that the plugin is initialized in.
11
+ * @param {string} url Absolute URL to where the plugin is located.
12
+ */
13
+ init : function( ed, url ) {
14
+ ed.addButton( 'add_bws_shortcode', {
15
+ title : bws_shortcode_button.title,
16
+ classes: 'bws_shortcode_button widget btn',
17
+ image : bws_shortcode_button.icon_url,
18
+ onclick: function() {
19
+ if ( bws_shortcode_button.wp_version < '3.9' ) {
20
+ /* triggers the thickbox */
21
+ var width = jQuery(window).width(), H = jQuery(window).height(), W = ( 720 < width ) ? 720 : width;
22
+ W = W - 80;
23
+ H = H - 84;
24
+ tb_show( bws_shortcode_button.title, '#TB_inline?width=' + W + '&height=' + H + '&inlineId=bws_shortcode_popup' );
25
+
26
+ var current_object = '#TB_ajaxContent';
27
+ } else {
28
+ win = ed.windowManager.open( {
29
+ width: 400,
30
+ height: 400,
31
+ inline: true,
32
+ title: bws_shortcode_button.title,
33
+ body: {
34
+ id : 'bws-shortcode-content',
35
+ type: 'container',
36
+ classes: 'bws-shortcode',
37
+ html: $( '#bws_shortcode_popup' ).html()
38
+ },
39
+ buttons: [{
40
+ text: 'Insert',
41
+ classes: 'button-primary primary bws_shortcode_insert',
42
+ onclick: function( e ) {
43
+ var shortcode = $( '.mce-container-body #bws_shortcode_display' ).text();
44
+ if ( '' != shortcode ) {
45
+ /* insert shortcode to tinymce */
46
+ ed.insertContent( shortcode );
47
+ }
48
+ ed.windowManager.close();
49
+ },
50
  },
51
+ {
52
+ text: 'Cancel',
53
+ onclick: 'close'
54
+ }],
55
+
56
+ });
57
+ var current_object = '.mce-container-body';
58
+ }
59
+ var select_count = $( current_object + ' select#bws_shortcode_select option').length;
60
+ if ( 1 == select_count ) {
61
+ $( current_object + ' #bws_shortcode_select_plugin' ).hide();
62
+ }
 
 
 
 
 
 
 
 
 
63
 
 
64
  var plugin = $( current_object + ' #bws_shortcode_select option:selected' ).val();
65
  $( current_object + ' #bws_shortcode_content > div' ).hide();
66
  $( current_object + ' #bws_shortcode_content > #' + plugin ).show();
67
+
68
  if ( $( current_object + ' #bws_shortcode_content > #' + plugin + ' .bws_default_shortcode' ).length > 0 ) {
69
  $( current_object + ' #bws_shortcode_display' ).text( $( current_object + ' #bws_shortcode_content > #' + plugin + ' .bws_default_shortcode' ).val() );
 
 
70
  }
 
71
 
72
+ $( current_object + ' #bws_shortcode_select' ).on( 'change',function() {
73
+ var plugin = $( current_object + ' #bws_shortcode_select option:selected' ).val();
74
+ $( current_object + ' #bws_shortcode_content > div' ).hide();
75
+ $( current_object + ' #bws_shortcode_content > #' + plugin ).show();
76
+ if ( $( current_object + ' #bws_shortcode_content > #' + plugin + ' .bws_default_shortcode' ).length > 0 ) {
77
+ $( current_object + ' #bws_shortcode_display' ).text( $( current_object + ' #bws_shortcode_content > #' + plugin + ' .bws_default_shortcode' ).val() );
78
+ } else {
79
+ $( current_object + ' #bws_shortcode_display' ).text( '' );
80
+ }
81
+ });
82
+
83
+ $.each( bws_shortcode_button.function_name, function( index, value ) {
84
+ eval( value + '();' );
85
+ });
86
+ }
87
+ });
88
+ },
89
+
90
+ /**
91
+ * Creates control instances based in the incomming name. This method is normally not
92
+ * needed since the addButton method of the tinymce.Editor class is a more easy way of adding buttons
93
+ * but you sometimes need to create more complex controls like listboxes, split buttons etc then this
94
+ * method can be used to create those.
95
+ *
96
+ * @param {String} n Name of the control to create.
97
+ * @param {tinymce.ControlManager} cm Control manager to use inorder to create new control.
98
+ * @return {tinymce.ui.Control} New control instance or null if no control was created.
99
+ */
100
+ createControl : function(n, cm) {
101
+ return null;
102
+ },
103
+
104
+ /**
105
+ * Returns information about the plugin as a name/value array.
106
+ * The current keys are longname, author, authorurl, infourl and version.
107
+ *
108
+ * @return {Object} Name/value array containing information about the plugin.
109
+ */
110
+ getInfo : function() {
111
+ return {
112
+ longname : 'BWS Shortcode Buttons',
113
+ author : 'BWS',
114
+ authorurl : 'http://bestwebsoft.com',
115
+ infourl : '',
116
+ version : "0.1"
117
+ };
118
+ }
119
+ });
120
+
121
+ /* Register plugin */
122
+ tinymce.PluginManager.add( 'add_bws_shortcode', tinymce.plugins.BWSButton );
123
+ }
124
  })(jQuery);
bws_menu/languages/bestwebsoft-de_DE.mo CHANGED
Binary file
bws_menu/languages/bestwebsoft-de_DE.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-09-17 16:00+0300\n"
6
- "PO-Revision-Date: 2015-09-17 16:00+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"
@@ -18,273 +18,281 @@ msgstr ""
18
  "X-Textdomain-Support: yes\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
- #: bws_functions.php:29
22
- #: bws_functions.php:53
23
  msgid "requires"
24
  msgstr ""
25
 
26
- #: bws_functions.php:31
27
  msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
28
  msgstr ""
29
 
30
- #: bws_functions.php:32
31
  msgid "Back to the WordPress"
32
  msgstr ""
33
 
34
  # @ captcha
35
- #: bws_functions.php:34
36
  #, fuzzy
37
  msgid "Plugins page"
38
  msgstr "BWS Plugins"
39
 
40
- #: bws_functions.php:55
41
  msgid "or higher! We do not guarantee that our plugin will work correctly. Please upgrade to WordPress latest version."
42
  msgstr ""
43
 
44
- #: bws_functions.php:112
45
  msgid "It’s time to upgrade your"
46
  msgstr ""
47
 
48
- #: bws_functions.php:112
49
  msgid "to"
50
  msgstr ""
51
 
52
  # @ captcha
53
- #: bws_functions.php:112
54
  #, fuzzy
55
  msgid "version!"
56
  msgstr "PHP Version"
57
 
58
- #: bws_functions.php:113
59
  msgid "Extend standard plugin functionality with new great options."
60
  msgstr ""
61
 
62
  # @ captcha
63
- #: bws_functions.php:116
64
- #: bws_functions.php:513
65
  #, fuzzy
66
  msgid "Learn More"
67
  msgstr "Lesen Sie mehr"
68
 
69
- #: bws_functions.php:133
70
  msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
71
  msgstr ""
72
 
73
  # @ captcha
74
- #: bws_functions.php:134
75
  #, fuzzy
76
  msgid "Rate the plugin"
77
  msgstr "Aktivierte Plugins"
78
 
79
  # @ captcha
80
- #: bws_functions.php:137
81
  #, fuzzy
82
  msgid "If there is something wrong about it, please contact us"
83
  msgstr "Wenn Sie irgendwelche Fragen haben, kontaktieren Sie uns bitte über"
84
 
85
- #: bws_functions.php:154
86
- #: bws_functions.php:190
 
 
 
 
87
  msgid "Wrong license key"
88
  msgstr ""
89
 
90
- #: bws_functions.php:184
91
- #: bws_functions.php:426
92
- #: bws_functions.php:477
93
  msgid "Something went wrong. Please try again later. If the error appears again, please contact us"
94
  msgstr ""
95
 
96
- #: bws_functions.php:184
97
- #: bws_functions.php:426
98
- #: bws_functions.php:477
99
  msgid "We are sorry for inconvenience."
100
  msgstr ""
101
 
102
- #: bws_functions.php:192
103
  msgid "This license key is bind to another site"
104
  msgstr ""
105
 
106
- #: bws_functions.php:194
107
- #: bws_functions.php:336
108
  msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
109
  msgstr ""
110
 
111
- #: bws_functions.php:196
112
  msgid "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates you should extend it in your"
113
  msgstr ""
114
 
115
- #: bws_functions.php:198
116
  msgid "Unfortunately, the Pro licence was already installed to this domain. The Pro Trial license can be installed only once."
117
  msgstr ""
118
 
119
- #: bws_functions.php:219
120
- #: bws_functions.php:241
121
- #: bws_functions.php:263
122
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
123
  msgstr ""
124
 
125
- #: bws_functions.php:231
126
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
127
  msgstr ""
128
 
129
- #: bws_functions.php:237
130
  msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
131
  msgstr ""
132
 
133
- #: bws_functions.php:244
134
  msgid "UploadDir is not writable. Please, upload the plugin manually"
135
  msgstr ""
136
 
137
- #: bws_functions.php:267
138
  msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvenience."
139
  msgstr ""
140
 
141
- #: bws_functions.php:292
142
  msgid "Please, enter Your license key"
143
  msgstr ""
144
 
145
- #: bws_functions.php:309
146
  msgid "Congratulations! The Pro version of the plugin is successfully download and activated."
147
  msgstr ""
148
 
149
- #: bws_functions.php:311
150
- #: bws_functions.php:393
151
  msgid "Please, go to"
152
  msgstr ""
153
 
154
- #: bws_functions.php:311
155
- #: bws_functions.php:393
156
  msgid "the setting page"
157
  msgstr ""
158
 
159
- #: bws_functions.php:312
160
- #: bws_functions.php:394
161
  msgid "You will be redirected automatically in 5 seconds."
162
  msgstr ""
163
 
164
- #: bws_functions.php:317
 
 
 
 
165
  msgid "You can download and activate"
166
  msgstr ""
167
 
168
- #: bws_functions.php:319
169
  msgid "version of this plugin by entering Your license key."
170
  msgstr ""
171
 
172
- #: bws_functions.php:321
173
- #: bws_functions.php:362
174
  msgid "You can find your license key on your personal page Client area, by clicking on the link"
175
  msgstr ""
176
 
177
- #: bws_functions.php:323
178
- #: bws_functions.php:364
179
  msgid "(your username is the email you specify when purchasing the product)."
180
  msgstr ""
181
 
182
- #: bws_functions.php:327
183
- #: bws_functions.php:630
184
  msgid "or"
185
  msgstr ""
186
 
187
- #: bws_functions.php:327
188
  #, php-format
189
  msgid "Start Your Free %s-Day Trial Now"
190
  msgstr ""
191
 
192
  # @ captcha
193
- #: bws_functions.php:333
194
- #: bws_functions.php:342
195
- #: bws_functions.php:372
196
- #: bws_functions.php:380
197
  #: bws_menu.php:693
198
  #: bws_menu.php:750
199
  #, fuzzy
200
  msgid "Activate"
201
  msgstr "Aktivierte Plugins"
202
 
203
- #: bws_functions.php:359
204
- #: bws_functions.php:452
205
  #, php-format
206
  msgid "In order to continue using the plugin it is necessary to buy a %s license."
207
  msgstr ""
208
 
209
- #: bws_functions.php:360
210
  msgid "After that you can activate it by entering your license key."
211
  msgstr ""
212
 
213
- #: bws_functions.php:374
214
  msgid "Unfortunately, you have exceeded the number of available tries per day."
215
  msgstr ""
216
 
217
- #: bws_functions.php:391
218
  msgid "Congratulations! The Pro license of the plugin is successfully activated."
219
  msgstr ""
220
 
221
- #: bws_functions.php:432
222
  msgid "Wrong license key."
223
  msgstr ""
224
 
225
- #: bws_functions.php:434
226
  msgid "This license key is bind to another site."
227
  msgstr ""
228
 
229
- #: bws_functions.php:436
230
  msgid "This license key is valid, but Your license has expired. If you want to update our plugin in future, you should extend the license."
231
  msgstr ""
232
 
233
- #: bws_functions.php:438
234
  msgid "Unfortunately, you have exceeded the number of available tries."
235
  msgstr ""
236
 
237
- #: bws_functions.php:440
238
  msgid "Unfortunately, the Pro Trial licence was already installed to this domain. The Pro Trial license can be installed only once."
239
  msgstr ""
240
 
241
- #: bws_functions.php:444
242
  msgid "The Pro Trial license key is valid."
243
  msgstr ""
244
 
245
- #: bws_functions.php:446
246
  msgid "The license key is valid."
247
  msgstr ""
248
 
249
- #: bws_functions.php:449
250
  msgid "Your license will expire on"
251
  msgstr ""
252
 
253
- #: bws_functions.php:482
254
  msgid "Please, enter your license key"
255
  msgstr ""
256
 
257
- #: bws_functions.php:495
258
  msgid "If needed you can check if the license key is correct or reenter it in the field below. You can find your license key on your personal page - Client area - on our website"
259
  msgstr ""
260
 
261
- #: bws_functions.php:495
262
  msgid "(your username is the email you specify when purchasing the product). If necessary, please submit \"Lost your password?\" request."
263
  msgstr ""
264
 
265
- #: bws_functions.php:499
266
  msgid "Check license key"
267
  msgstr ""
268
 
269
- #: bws_functions.php:513
270
  msgid "WARNING: Illegal use notification"
271
  msgstr ""
272
 
273
- #: bws_functions.php:513
274
  msgid "You can use one license of the Pro plugin for one domain only. Please check and edit your license or domain if necessary using you personal Client Area. We strongly recommend you to solve the problem within 24 hours, otherwise the Pro plugin will be deactivated."
275
  msgstr ""
276
 
277
- #: bws_functions.php:521
278
  msgid "Notice: Your Pro Trial license has expired. To continue using the plugin you should buy a Pro license"
279
  msgstr ""
280
 
281
- #: bws_functions.php:523
282
  msgid "Your license has expired. To continue getting top-priority support and plugin updates you should extend it."
283
  msgstr ""
284
 
285
  # @ captcha
286
- #: bws_functions.php:523
287
- #: bws_functions.php:576
288
  #: bws_menu.php:669
289
  #: bws_menu.php:691
290
  #: bws_menu.php:718
@@ -294,115 +302,151 @@ msgstr ""
294
  msgid "Learn more"
295
  msgstr "Lesen Sie mehr"
296
 
297
- #: bws_functions.php:533
298
  #, php-format
299
  msgid "Notice: You are using the Pro Trial license of %s plugin."
300
  msgstr ""
301
 
302
- #: bws_functions.php:535
303
  msgid "Notice: You are using the Pro Trial license of plugin."
304
  msgstr ""
305
 
306
- #: bws_functions.php:538
307
  msgid "The Pro Trial license will expire on"
308
  msgstr ""
309
 
310
- #: bws_functions.php:576
311
  msgid "You license for"
312
  msgstr ""
313
 
314
- #: bws_functions.php:576
315
  msgid "expires on"
316
  msgstr ""
317
 
318
- #: bws_functions.php:576
319
  msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
320
  msgstr ""
321
 
322
  # @ captcha
323
- #: bws_functions.php:626
324
  #, fuzzy
325
  msgid "Thank you for installing"
326
  msgstr "Vielen Dank für Ihre Kontaktaufnahme."
327
 
328
- #: bws_functions.php:627
329
  msgid "Let's get started"
330
  msgstr ""
331
 
332
  # @ captcha
333
- #: bws_functions.php:628
334
  #, fuzzy
335
  msgid "Configure Settings"
336
  msgstr "Einstellungen"
337
 
338
- #: bws_functions.php:631
339
  msgid "Add New"
340
  msgstr ""
341
 
342
- #: bws_functions.php:635
343
  msgid "Close notice"
344
  msgstr ""
345
 
346
- #: bws_functions.php:648
347
  msgid "Notice"
348
  msgstr ""
349
 
350
- #: bws_functions.php:648
351
  msgid "The plugin's settings have been changed."
352
  msgstr ""
353
 
354
- #: bws_functions.php:649
355
  msgid "Save Changes"
356
  msgstr ""
357
 
358
- #: bws_functions.php:694
 
 
 
 
359
  msgid "Add BWS Plugins Shortcode"
360
  msgstr ""
361
 
362
- #: bws_functions.php:738
 
 
 
 
 
 
 
 
363
  msgid "Close"
364
  msgstr ""
365
 
366
- #: bws_functions.php:829
367
  msgid "Restore all plugin settings to defaults"
368
  msgstr ""
369
 
370
- #: bws_functions.php:831
371
  msgid "Restore settings"
372
  msgstr ""
373
 
374
- #: bws_functions.php:842
375
  msgid "Are you sure you want to restore all settings by default?"
376
  msgstr ""
377
 
378
- #: bws_functions.php:845
379
  msgid "Yes, restore all settings"
380
  msgstr ""
381
 
382
- #: bws_functions.php:846
383
  msgid "No, go back to the settings page"
384
  msgstr ""
385
 
386
  # @ captcha
387
- #: bws_functions.php:890
388
  #, fuzzy
389
  msgid "Plugin"
390
  msgstr "BWS Plugins"
391
 
392
  # @ captcha
393
- #: bws_functions.php:899
394
  #, fuzzy
395
  msgid "Shortcode settings"
396
  msgstr "Einstellungen"
397
 
398
- #: bws_functions.php:904
399
  msgid "The shortcode will be inserted"
400
  msgstr ""
401
 
402
- #: bws_functions.php:909
403
  msgid "Insert"
404
  msgstr ""
405
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
406
  # @ captcha
407
  #: bws_menu.php:506
408
  msgid "Not set"
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-10-09 14:42+0300\n"
6
+ "PO-Revision-Date: 2015-10-09 14:42+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"
18
  "X-Textdomain-Support: yes\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
+ #: bws_functions.php:39
22
+ #: bws_functions.php:63
23
  msgid "requires"
24
  msgstr ""
25
 
26
+ #: bws_functions.php:41
27
  msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
28
  msgstr ""
29
 
30
+ #: bws_functions.php:42
31
  msgid "Back to the WordPress"
32
  msgstr ""
33
 
34
  # @ captcha
35
+ #: bws_functions.php:44
36
  #, fuzzy
37
  msgid "Plugins page"
38
  msgstr "BWS Plugins"
39
 
40
+ #: bws_functions.php:65
41
  msgid "or higher! We do not guarantee that our plugin will work correctly. Please upgrade to WordPress latest version."
42
  msgstr ""
43
 
44
+ #: bws_functions.php:122
45
  msgid "It’s time to upgrade your"
46
  msgstr ""
47
 
48
+ #: bws_functions.php:122
49
  msgid "to"
50
  msgstr ""
51
 
52
  # @ captcha
53
+ #: bws_functions.php:122
54
  #, fuzzy
55
  msgid "version!"
56
  msgstr "PHP Version"
57
 
58
+ #: bws_functions.php:123
59
  msgid "Extend standard plugin functionality with new great options."
60
  msgstr ""
61
 
62
  # @ captcha
63
+ #: bws_functions.php:126
64
+ #: bws_functions.php:561
65
  #, fuzzy
66
  msgid "Learn More"
67
  msgstr "Lesen Sie mehr"
68
 
69
+ #: bws_functions.php:143
70
  msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
71
  msgstr ""
72
 
73
  # @ captcha
74
+ #: bws_functions.php:144
75
  #, fuzzy
76
  msgid "Rate the plugin"
77
  msgstr "Aktivierte Plugins"
78
 
79
  # @ captcha
80
+ #: bws_functions.php:147
81
  #, fuzzy
82
  msgid "If there is something wrong about it, please contact us"
83
  msgstr "Wenn Sie irgendwelche Fragen haben, kontaktieren Sie uns bitte über"
84
 
85
+ #: bws_functions.php:179
86
+ msgid "Check premium options on the plugin settings page!"
87
+ msgstr ""
88
+
89
+ #: bws_functions.php:186
90
+ #: bws_functions.php:222
91
  msgid "Wrong license key"
92
  msgstr ""
93
 
94
+ #: bws_functions.php:216
95
+ #: bws_functions.php:474
96
+ #: bws_functions.php:525
97
  msgid "Something went wrong. Please try again later. If the error appears again, please contact us"
98
  msgstr ""
99
 
100
+ #: bws_functions.php:216
101
+ #: bws_functions.php:474
102
+ #: bws_functions.php:525
103
  msgid "We are sorry for inconvenience."
104
  msgstr ""
105
 
106
+ #: bws_functions.php:224
107
  msgid "This license key is bind to another site"
108
  msgstr ""
109
 
110
+ #: bws_functions.php:226
111
+ #: bws_functions.php:384
112
  msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
113
  msgstr ""
114
 
115
+ #: bws_functions.php:228
116
  msgid "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates you should extend it in your"
117
  msgstr ""
118
 
119
+ #: bws_functions.php:230
120
  msgid "Unfortunately, the Pro licence was already installed to this domain. The Pro Trial license can be installed only once."
121
  msgstr ""
122
 
123
+ #: bws_functions.php:251
124
+ #: bws_functions.php:273
125
+ #: bws_functions.php:295
126
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
127
  msgstr ""
128
 
129
+ #: bws_functions.php:263
130
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
131
  msgstr ""
132
 
133
+ #: bws_functions.php:269
134
  msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
135
  msgstr ""
136
 
137
+ #: bws_functions.php:276
138
  msgid "UploadDir is not writable. Please, upload the plugin manually"
139
  msgstr ""
140
 
141
+ #: bws_functions.php:299
142
  msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvenience."
143
  msgstr ""
144
 
145
+ #: bws_functions.php:324
146
  msgid "Please, enter Your license key"
147
  msgstr ""
148
 
149
+ #: bws_functions.php:348
150
  msgid "Congratulations! The Pro version of the plugin is successfully download and activated."
151
  msgstr ""
152
 
153
+ #: bws_functions.php:350
154
+ #: bws_functions.php:441
155
  msgid "Please, go to"
156
  msgstr ""
157
 
158
+ #: bws_functions.php:350
159
+ #: bws_functions.php:441
160
  msgid "the setting page"
161
  msgstr ""
162
 
163
+ #: bws_functions.php:351
164
+ #: bws_functions.php:442
165
  msgid "You will be redirected automatically in 5 seconds."
166
  msgstr ""
167
 
168
+ #: bws_functions.php:358
169
+ msgid "Show Pro features"
170
+ msgstr ""
171
+
172
+ #: bws_functions.php:365
173
  msgid "You can download and activate"
174
  msgstr ""
175
 
176
+ #: bws_functions.php:367
177
  msgid "version of this plugin by entering Your license key."
178
  msgstr ""
179
 
180
+ #: bws_functions.php:369
181
+ #: bws_functions.php:410
182
  msgid "You can find your license key on your personal page Client area, by clicking on the link"
183
  msgstr ""
184
 
185
+ #: bws_functions.php:371
186
+ #: bws_functions.php:412
187
  msgid "(your username is the email you specify when purchasing the product)."
188
  msgstr ""
189
 
190
+ #: bws_functions.php:375
191
+ #: bws_functions.php:659
192
  msgid "or"
193
  msgstr ""
194
 
195
+ #: bws_functions.php:375
196
  #, php-format
197
  msgid "Start Your Free %s-Day Trial Now"
198
  msgstr ""
199
 
200
  # @ captcha
201
+ #: bws_functions.php:381
202
+ #: bws_functions.php:390
203
+ #: bws_functions.php:420
204
+ #: bws_functions.php:428
205
  #: bws_menu.php:693
206
  #: bws_menu.php:750
207
  #, fuzzy
208
  msgid "Activate"
209
  msgstr "Aktivierte Plugins"
210
 
211
+ #: bws_functions.php:407
212
+ #: bws_functions.php:500
213
  #, php-format
214
  msgid "In order to continue using the plugin it is necessary to buy a %s license."
215
  msgstr ""
216
 
217
+ #: bws_functions.php:408
218
  msgid "After that you can activate it by entering your license key."
219
  msgstr ""
220
 
221
+ #: bws_functions.php:422
222
  msgid "Unfortunately, you have exceeded the number of available tries per day."
223
  msgstr ""
224
 
225
+ #: bws_functions.php:439
226
  msgid "Congratulations! The Pro license of the plugin is successfully activated."
227
  msgstr ""
228
 
229
+ #: bws_functions.php:480
230
  msgid "Wrong license key."
231
  msgstr ""
232
 
233
+ #: bws_functions.php:482
234
  msgid "This license key is bind to another site."
235
  msgstr ""
236
 
237
+ #: bws_functions.php:484
238
  msgid "This license key is valid, but Your license has expired. If you want to update our plugin in future, you should extend the license."
239
  msgstr ""
240
 
241
+ #: bws_functions.php:486
242
  msgid "Unfortunately, you have exceeded the number of available tries."
243
  msgstr ""
244
 
245
+ #: bws_functions.php:488
246
  msgid "Unfortunately, the Pro Trial licence was already installed to this domain. The Pro Trial license can be installed only once."
247
  msgstr ""
248
 
249
+ #: bws_functions.php:492
250
  msgid "The Pro Trial license key is valid."
251
  msgstr ""
252
 
253
+ #: bws_functions.php:494
254
  msgid "The license key is valid."
255
  msgstr ""
256
 
257
+ #: bws_functions.php:497
258
  msgid "Your license will expire on"
259
  msgstr ""
260
 
261
+ #: bws_functions.php:530
262
  msgid "Please, enter your license key"
263
  msgstr ""
264
 
265
+ #: bws_functions.php:543
266
  msgid "If needed you can check if the license key is correct or reenter it in the field below. You can find your license key on your personal page - Client area - on our website"
267
  msgstr ""
268
 
269
+ #: bws_functions.php:543
270
  msgid "(your username is the email you specify when purchasing the product). If necessary, please submit \"Lost your password?\" request."
271
  msgstr ""
272
 
273
+ #: bws_functions.php:547
274
  msgid "Check license key"
275
  msgstr ""
276
 
277
+ #: bws_functions.php:561
278
  msgid "WARNING: Illegal use notification"
279
  msgstr ""
280
 
281
+ #: bws_functions.php:561
282
  msgid "You can use one license of the Pro plugin for one domain only. Please check and edit your license or domain if necessary using you personal Client Area. We strongly recommend you to solve the problem within 24 hours, otherwise the Pro plugin will be deactivated."
283
  msgstr ""
284
 
285
+ #: bws_functions.php:569
286
  msgid "Notice: Your Pro Trial license has expired. To continue using the plugin you should buy a Pro license"
287
  msgstr ""
288
 
289
+ #: bws_functions.php:571
290
  msgid "Your license has expired. To continue getting top-priority support and plugin updates you should extend it."
291
  msgstr ""
292
 
293
  # @ captcha
294
+ #: bws_functions.php:571
295
+ #: bws_functions.php:624
296
  #: bws_menu.php:669
297
  #: bws_menu.php:691
298
  #: bws_menu.php:718
302
  msgid "Learn more"
303
  msgstr "Lesen Sie mehr"
304
 
305
+ #: bws_functions.php:581
306
  #, php-format
307
  msgid "Notice: You are using the Pro Trial license of %s plugin."
308
  msgstr ""
309
 
310
+ #: bws_functions.php:583
311
  msgid "Notice: You are using the Pro Trial license of plugin."
312
  msgstr ""
313
 
314
+ #: bws_functions.php:586
315
  msgid "The Pro Trial license will expire on"
316
  msgstr ""
317
 
318
+ #: bws_functions.php:624
319
  msgid "You license for"
320
  msgstr ""
321
 
322
+ #: bws_functions.php:624
323
  msgid "expires on"
324
  msgstr ""
325
 
326
+ #: bws_functions.php:624
327
  msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
328
  msgstr ""
329
 
330
  # @ captcha
331
+ #: bws_functions.php:655
332
  #, fuzzy
333
  msgid "Thank you for installing"
334
  msgstr "Vielen Dank für Ihre Kontaktaufnahme."
335
 
336
+ #: bws_functions.php:656
337
  msgid "Let's get started"
338
  msgstr ""
339
 
340
  # @ captcha
341
+ #: bws_functions.php:657
342
  #, fuzzy
343
  msgid "Configure Settings"
344
  msgstr "Einstellungen"
345
 
346
+ #: bws_functions.php:660
347
  msgid "Add New"
348
  msgstr ""
349
 
350
+ #: bws_functions.php:664
351
  msgid "Close notice"
352
  msgstr ""
353
 
354
+ #: bws_functions.php:677
355
  msgid "Notice"
356
  msgstr ""
357
 
358
+ #: bws_functions.php:677
359
  msgid "The plugin's settings have been changed."
360
  msgstr ""
361
 
362
+ #: bws_functions.php:678
363
  msgid "Save Changes"
364
  msgstr ""
365
 
366
+ #: bws_functions.php:693
367
+ msgid "You can always look at premium options by clicking on the \"Show Pro features\" in the \"Go PRO\" tab"
368
+ msgstr ""
369
+
370
+ #: bws_functions.php:773
371
  msgid "Add BWS Plugins Shortcode"
372
  msgstr ""
373
 
374
+ #: bws_functions.php:793
375
+ msgid "Add shortcode"
376
+ msgstr ""
377
+
378
+ #: bws_functions.php:793
379
+ msgid "Add BestWebSoft plugins' shortcodes using this button."
380
+ msgstr ""
381
+
382
+ #: bws_functions.php:833
383
  msgid "Close"
384
  msgstr ""
385
 
386
+ #: bws_functions.php:925
387
  msgid "Restore all plugin settings to defaults"
388
  msgstr ""
389
 
390
+ #: bws_functions.php:927
391
  msgid "Restore settings"
392
  msgstr ""
393
 
394
+ #: bws_functions.php:938
395
  msgid "Are you sure you want to restore all settings by default?"
396
  msgstr ""
397
 
398
+ #: bws_functions.php:941
399
  msgid "Yes, restore all settings"
400
  msgstr ""
401
 
402
+ #: bws_functions.php:942
403
  msgid "No, go back to the settings page"
404
  msgstr ""
405
 
406
  # @ captcha
407
+ #: bws_functions.php:986
408
  #, fuzzy
409
  msgid "Plugin"
410
  msgstr "BWS Plugins"
411
 
412
  # @ captcha
413
+ #: bws_functions.php:995
414
  #, fuzzy
415
  msgid "Shortcode settings"
416
  msgstr "Einstellungen"
417
 
418
+ #: bws_functions.php:1000
419
  msgid "The shortcode will be inserted"
420
  msgstr ""
421
 
422
+ #: bws_functions.php:1005
423
  msgid "Insert"
424
  msgstr ""
425
 
426
+ #: bws_functions.php:1036
427
+ msgid "Visit Help Center"
428
+ msgstr ""
429
+
430
+ #: bws_functions.php:1041
431
+ msgid "FAQ"
432
+ msgstr ""
433
+
434
+ #: bws_functions.php:1047
435
+ msgid "For more information:"
436
+ msgstr ""
437
+
438
+ #: bws_functions.php:1048
439
+ msgid "Documentation"
440
+ msgstr ""
441
+
442
+ #: bws_functions.php:1049
443
+ msgid "Video Instructions"
444
+ msgstr ""
445
+
446
+ #: bws_functions.php:1050
447
+ msgid "Submit a Request"
448
+ msgstr ""
449
+
450
  # @ captcha
451
  #: bws_menu.php:506
452
  msgid "Not set"
bws_menu/languages/bestwebsoft-fr_FR.mo CHANGED
Binary file
bws_menu/languages/bestwebsoft-fr_FR.po CHANGED
@@ -2,9 +2,9 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-09-17 16:00+0300\n"
6
- "PO-Revision-Date: 2015-09-17 16:00+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"
@@ -14,408 +14,511 @@ msgstr ""
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
- #: bws_functions.php:29
21
- #: bws_functions.php:53
22
  msgid "requires"
23
  msgstr "obligatoire"
24
 
25
- #: bws_functions.php:31
26
- msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
27
- msgstr "ou supérieure, c'est pourquoi il a été désactivé! Merci de faire la mise à jour de WordPress puis de ré-essayer."
 
 
 
 
28
 
29
- #: bws_functions.php:32
30
  msgid "Back to the WordPress"
31
  msgstr "Retour à WordPress"
32
 
33
- #: bws_functions.php:34
34
  msgid "Plugins page"
35
  msgstr "Page des extensions"
36
 
37
- #: bws_functions.php:55
38
- msgid "or higher! We do not guarantee that our plugin will work correctly. Please upgrade to WordPress latest version."
 
 
39
  msgstr ""
 
 
40
 
41
- #: bws_functions.php:112
42
  msgid "It’s time to upgrade your"
43
  msgstr "C'est le moment de mettre à jour votre "
44
 
45
- #: bws_functions.php:112
46
  msgid "to"
47
  msgstr "à"
48
 
49
- #: bws_functions.php:112
50
  msgid "version!"
51
  msgstr "version"
52
 
53
- #: bws_functions.php:113
54
  msgid "Extend standard plugin functionality with new great options."
55
- msgstr "Etend les fonctionalités classiques de l'extension avec des nouvelles options."
 
 
56
 
57
- #: bws_functions.php:116
58
- #: bws_functions.php:513
59
  msgid "Learn More"
60
  msgstr "En savoir plus"
61
 
62
- #: bws_functions.php:133
63
  msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
64
- msgstr "Si notre extension vous satisfait, merci de la notée avec 5 étoiles dans Wordpress"
 
 
65
 
66
- #: bws_functions.php:134
67
  msgid "Rate the plugin"
68
  msgstr "Voter pour l'extension"
69
 
70
- #: bws_functions.php:137
71
  msgid "If there is something wrong about it, please contact us"
72
  msgstr "Si vous avez une question, n'hésitez pas à nous contacter"
73
 
74
- #: bws_functions.php:154
75
- #: bws_functions.php:190
 
 
 
 
76
  msgid "Wrong license key"
77
  msgstr "Clé de licence incorrecte"
78
 
79
- #: bws_functions.php:184
80
- #: bws_functions.php:426
81
- #: bws_functions.php:477
82
- msgid "Something went wrong. Please try again later. If the error appears again, please contact us"
83
- msgstr "Il est survenu une erreur. Essayer de nouveau. Si l'erreur se produit de nouveau, merci de contacter <a href=http://support.bestwebsoft.com>BestWebSoft</a>. Nous sommes désolés pour le désagrément."
 
 
 
84
 
85
- #: bws_functions.php:184
86
- #: bws_functions.php:426
87
- #: bws_functions.php:477
88
  msgid "We are sorry for inconvenience."
89
  msgstr "Nous sommes désolés pour le désagrément."
90
 
91
- #: bws_functions.php:192
92
  msgid "This license key is bind to another site"
93
  msgstr "La clé de licence correspond à un autre site."
94
 
95
- #: bws_functions.php:194
96
- #: bws_functions.php:336
97
- msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
98
- msgstr "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de télécharger l'extension manuellement."
 
 
 
99
 
100
- #: bws_functions.php:196
101
- msgid "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates you should extend it in your"
102
- msgstr "Désoler, votre licence est terminée. Pour continuer à disposer du support rapide et des mises à jour de l'extension vous devez la renouveller dans votre"
 
 
 
 
103
 
104
- #: bws_functions.php:198
105
- #, fuzzy
106
- msgid "Unfortunately, the Pro licence was already installed to this domain. The Pro Trial license can be installed only once."
107
- msgstr "Une licence a déjà été installée sur ce domaine. La licence d'évaluation ne peut-être installée qu'une seule fois."
 
 
 
108
 
109
- #: bws_functions.php:219
110
- #: bws_functions.php:241
111
- #: bws_functions.php:263
112
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
113
- msgstr "Erreur de téléchargement de l'archive ZIP. Merci de télécharger l'extension manuellement."
 
 
114
 
115
- #: bws_functions.php:231
116
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
117
- msgstr "Erreur d'ouverture de l'archive zip. Merci de télécharger l'extension manuellement."
 
 
118
 
119
- #: bws_functions.php:237
120
- msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
121
- msgstr "Votre server n'a pas le support du format des archives ZIP ou Phar. Merci de télécharger l'extension manuellement."
 
 
 
 
122
 
123
- #: bws_functions.php:244
124
  msgid "UploadDir is not writable. Please, upload the plugin manually"
125
- msgstr "Erreur d'ouverture de l'archive zip. Merci de télécharger l'extension manuellement."
 
 
126
 
127
- #: bws_functions.php:267
128
- msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvenience."
129
- msgstr "Il est survenu une erreur. Essayer de nouveau ou bien télécharger l'extension manuellement.Nous sommes désolés pour le désagrément."
 
 
 
 
130
 
131
- #: bws_functions.php:292
132
  msgid "Please, enter Your license key"
133
  msgstr "Merci de saisir votre clé de licence"
134
 
135
- #: bws_functions.php:309
136
- #, fuzzy
137
- msgid "Congratulations! The Pro version of the plugin is successfully download and activated."
138
- msgstr "Félicitations! La version PRO de cette extension a été téléchargée et activée avec succès."
 
 
 
139
 
140
- #: bws_functions.php:311
141
- #: bws_functions.php:393
142
  msgid "Please, go to"
143
- msgstr "Merci d'allez à"
144
 
145
- #: bws_functions.php:311
146
- #: bws_functions.php:393
147
  msgid "the setting page"
148
  msgstr "Options supplémentaires"
149
 
150
- #: bws_functions.php:312
151
- #: bws_functions.php:394
152
  msgid "You will be redirected automatically in 5 seconds."
153
  msgstr "Vous allez être redirigé automatiquement dans 5 secondes"
154
 
155
- #: bws_functions.php:317
 
 
 
 
156
  msgid "You can download and activate"
157
  msgstr "Vous pouvez télécharger et activer la version "
158
 
159
- #: bws_functions.php:319
160
  msgid "version of this plugin by entering Your license key."
161
  msgstr " de cette extension en donnant votre clé de licence."
162
 
163
- #: bws_functions.php:321
164
- #: bws_functions.php:362
165
- msgid "You can find your license key on your personal page Client area, by clicking on the link"
166
- msgstr "Vous pouvez trouver votre clé de licence sur votre page personnelle dans la zone cliente en cliquant sur le lien"
 
 
 
167
 
168
- #: bws_functions.php:323
169
- #: bws_functions.php:364
170
  msgid "(your username is the email you specify when purchasing the product)."
171
- msgstr "(votre nom d'utilisateur est l'adresse e-mail que vous avez donné lors de l'achat de l'extension)."
 
 
172
 
173
- #: bws_functions.php:327
174
- #: bws_functions.php:630
175
  msgid "or"
176
  msgstr "ou"
177
 
178
- #: bws_functions.php:327
179
  #, php-format
180
  msgid "Start Your Free %s-Day Trial Now"
181
  msgstr "Débuter votre licence d'évaluation gratuite de %s jours"
182
 
183
- #: bws_functions.php:333
184
- #: bws_functions.php:342
185
- #: bws_functions.php:372
186
- #: bws_functions.php:380
187
- #: bws_menu.php:693
188
- #: bws_menu.php:750
189
  msgid "Activate"
190
  msgstr "Activé"
191
 
192
- #: bws_functions.php:359
193
- #: bws_functions.php:452
194
  #, php-format
195
- msgid "In order to continue using the plugin it is necessary to buy a %s license."
196
- msgstr "Afin de pouvoir continuer à utiliser cette extension il est nécessaire d'acheter une licence %s."
 
 
 
197
 
198
- #: bws_functions.php:360
199
  msgid "After that you can activate it by entering your license key."
200
- msgstr " Après vous pouvez activer cette extension en donnant votre clé de licence."
 
201
 
202
- #: bws_functions.php:374
203
  msgid "Unfortunately, you have exceeded the number of available tries per day."
204
- msgstr "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de télécharger l'extension manuellement."
 
 
205
 
206
- #: bws_functions.php:391
207
- #, fuzzy
208
- msgid "Congratulations! The Pro license of the plugin is successfully activated."
209
- msgstr "Félicitations! La version PRO de cette extension a été téléchargée et activée avec succès."
 
 
210
 
211
- #: bws_functions.php:432
212
  msgid "Wrong license key."
213
  msgstr "Clé de licence incorrecte."
214
 
215
- #: bws_functions.php:434
216
  msgid "This license key is bind to another site."
217
  msgstr "La clé de licence correspond à un autre site."
218
 
219
- #: bws_functions.php:436
220
- msgid "This license key is valid, but Your license has expired. If you want to update our plugin in future, you should extend the license."
221
- msgstr "La clé de licence est valide mais votre durée de validité est passée. Pour continuer à disposer du support rapide et des mises à jour de l'extension vous devez la renouveller."
 
 
 
 
 
222
 
223
- #: bws_functions.php:438
224
  msgid "Unfortunately, you have exceeded the number of available tries."
225
- msgstr "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de télécharger l'extension manuellement."
 
 
226
 
227
- #: bws_functions.php:440
228
- #, fuzzy
229
- msgid "Unfortunately, the Pro Trial licence was already installed to this domain. The Pro Trial license can be installed only once."
230
- msgstr "Une licence a déjà été installée sur ce domaine. La licence d'évaluation ne peut-être installée qu'une seule fois."
 
 
 
231
 
232
- #: bws_functions.php:444
233
- #, fuzzy
234
  msgid "The Pro Trial license key is valid."
235
  msgstr "La clé de licence d'évaluation est valide."
236
 
237
- #: bws_functions.php:446
238
  msgid "The license key is valid."
239
  msgstr "La clé de licence est valide."
240
 
241
- #: bws_functions.php:449
242
  msgid "Your license will expire on"
243
  msgstr "Votre licence se termine le "
244
 
245
- #: bws_functions.php:482
246
  msgid "Please, enter your license key"
247
  msgstr "Merci de saisir votre clé de licence"
248
 
249
- #: bws_functions.php:495
250
- msgid "If needed you can check if the license key is correct or reenter it in the field below. You can find your license key on your personal page - Client area - on our website"
251
- msgstr "Si nécessaire vous pouvez vérifier que la clé de licence est correcte ou la saisir de nouveau dans le champ ci-dessous. Vous pouvez trouver votre clé de licence sur votre page personnelle (zone client) sur notre site web."
 
 
 
 
 
 
252
 
253
- #: bws_functions.php:495
254
- msgid "(your username is the email you specify when purchasing the product). If necessary, please submit \"Lost your password?\" request."
255
- msgstr "(votre nom d'utilisateur est l'adresse e-mail que vous avez donné lors de l'achat de l'extension). Si nécessaire, utilisez la fonction de demande de mot de passe perdu."
 
 
 
 
 
256
 
257
- #: bws_functions.php:499
258
  msgid "Check license key"
259
  msgstr "Vérifier la clé de licence"
260
 
261
- #: bws_functions.php:513
262
  msgid "WARNING: Illegal use notification"
263
  msgstr "AVERTISSEMENT : Notification d'utilisation abusive"
264
 
265
- #: bws_functions.php:513
266
- msgid "You can use one license of the Pro plugin for one domain only. Please check and edit your license or domain if necessary using you personal Client Area. We strongly recommend you to solve the problem within 24 hours, otherwise the Pro plugin will be deactivated."
267
- msgstr "Nous avons détecté une utilisation abusive de notre extension. Nous vous recommandons de résoudre ce problème dans les 24 heures, sinon l'extension sera rendue inactive. Merci de vous rendre dans votre espace personel"
 
 
 
 
 
 
 
 
 
268
 
269
- #: bws_functions.php:521
270
- #, fuzzy
271
- msgid "Notice: Your Pro Trial license has expired. To continue using the plugin you should buy a Pro license"
272
- msgstr "Votre licence d'évaluation est terminée. Pour continuer à disposer du support rapide et des mises à jour de l'extension vous devez la renouveller."
273
-
274
- #: bws_functions.php:523
275
- msgid "Your license has expired. To continue getting top-priority support and plugin updates you should extend it."
276
- msgstr "Votre licence est terminée. Pour continuer à disposer du support rapide et des mises à jour de l'extension vous devez la renouveller."
277
-
278
- #: bws_functions.php:523
279
- #: bws_functions.php:576
280
- #: bws_menu.php:669
281
- #: bws_menu.php:691
282
- #: bws_menu.php:718
283
- #: bws_menu.php:748
284
- #: bws_menu.php:794
 
 
285
  msgid "Learn more"
286
  msgstr "En savoir plus"
287
 
288
- #: bws_functions.php:533
289
- #, fuzzy, php-format
290
  msgid "Notice: You are using the Pro Trial license of %s plugin."
291
- msgstr "Avertissement : vous utilisez la version d'évaluation de l'extension %s."
 
292
 
293
- #: bws_functions.php:535
294
- #, fuzzy
295
  msgid "Notice: You are using the Pro Trial license of plugin."
296
  msgstr "Avertissement : vous utilisez la version d'évaluation de l'extension."
297
 
298
- #: bws_functions.php:538
299
- #, fuzzy
300
  msgid "The Pro Trial license will expire on"
301
- msgstr "Votre licence se termine le "
302
 
303
- #: bws_functions.php:576
304
  msgid "You license for"
305
  msgstr "Votre licence pour"
306
 
307
- #: bws_functions.php:576
308
  msgid "expires on"
309
  msgstr "se termine le"
310
 
311
- #: bws_functions.php:576
312
  msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
313
- msgstr "et vous ne diposerez plus du support rapide et des mises à jour."
314
 
315
- #: bws_functions.php:626
316
- #, fuzzy
317
  msgid "Thank you for installing"
318
- msgstr "Merci de nous avoir contacté."
319
 
320
- #: bws_functions.php:627
321
  msgid "Let's get started"
322
- msgstr ""
323
 
324
- #: bws_functions.php:628
325
- #, fuzzy
326
  msgid "Configure Settings"
327
- msgstr "Options du formulaire de Contact"
328
 
329
- #: bws_functions.php:631
330
  msgid "Add New"
331
- msgstr ""
332
 
333
- #: bws_functions.php:635
334
  msgid "Close notice"
335
- msgstr ""
336
 
337
- #: bws_functions.php:648
338
  msgid "Notice"
339
- msgstr ""
340
 
341
- #: bws_functions.php:648
342
  msgid "The plugin's settings have been changed."
343
- msgstr ""
344
 
345
- #: bws_functions.php:649
346
  msgid "Save Changes"
347
  msgstr "Sauvegarder les modifications"
348
 
349
- #: bws_functions.php:694
350
- #, fuzzy
 
 
 
 
 
 
 
351
  msgid "Add BWS Plugins Shortcode"
352
- msgstr "Utiliser le code court"
353
 
354
- #: bws_functions.php:738
 
 
 
 
 
 
 
 
355
  msgid "Close"
356
  msgstr "Fermer"
357
 
358
- #: bws_functions.php:829
359
  msgid "Restore all plugin settings to defaults"
360
- msgstr ""
361
 
362
- #: bws_functions.php:831
363
- #, fuzzy
364
  msgid "Restore settings"
365
- msgstr "Options supplémentaires"
366
 
367
- #: bws_functions.php:842
368
- #, fuzzy
369
  msgid "Are you sure you want to restore all settings by default?"
370
- msgstr "Etes vous sûr de vouloir supprimer cette langue ?"
371
 
372
- #: bws_functions.php:845
373
  msgid "Yes, restore all settings"
374
- msgstr ""
375
 
376
- #: bws_functions.php:846
377
- #, fuzzy
378
  msgid "No, go back to the settings page"
379
- msgstr "Options supplémentaires"
380
 
381
- #: bws_functions.php:890
382
- #, fuzzy
383
  msgid "Plugin"
384
- msgstr "Extensions"
385
 
386
- #: bws_functions.php:899
387
- #, fuzzy
388
  msgid "Shortcode settings"
389
- msgstr "Options supplémentaires"
390
 
391
- #: bws_functions.php:904
392
  msgid "The shortcode will be inserted"
393
- msgstr ""
394
 
395
- #: bws_functions.php:909
396
  msgid "Insert"
397
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
398
 
399
  #: bws_menu.php:506
400
  msgid "Not set"
401
  msgstr "Not set"
402
 
403
- #: bws_menu.php:508
404
- #: bws_menu.php:509
405
  msgid "On"
406
  msgstr "On"
407
 
408
- #: bws_menu.php:508
409
- #: bws_menu.php:509
410
  msgid "Off"
411
  msgstr "Off"
412
 
413
- #: bws_menu.php:510
414
- #: bws_menu.php:511
415
- #: bws_menu.php:512
416
- #: bws_menu.php:513
417
- #: bws_menu.php:514
418
- #: bws_menu.php:526
419
  msgid "N/A"
420
  msgstr "N/A"
421
 
@@ -423,17 +526,11 @@ msgstr "N/A"
423
  msgid " Mb"
424
  msgstr " Mb"
425
 
426
- #: bws_menu.php:515
427
- #: bws_menu.php:516
428
- #: bws_menu.php:517
429
- #: bws_menu.php:522
430
  msgid "Yes"
431
  msgstr "Yes"
432
 
433
- #: bws_menu.php:515
434
- #: bws_menu.php:516
435
- #: bws_menu.php:517
436
- #: bws_menu.php:524
437
  msgid "No"
438
  msgstr "No"
439
 
@@ -545,8 +642,7 @@ msgstr "Besoin d'aide ?"
545
  msgid "Client area"
546
  msgstr "Espace client"
547
 
548
- #: bws_menu.php:622
549
- #: bws_menu.php:933
550
  msgid "System status"
551
  msgstr "System status"
552
 
@@ -572,33 +668,27 @@ msgstr "Recommandé"
572
 
573
  #: bws_menu.php:640
574
  msgid "Installed plugins"
575
- msgstr "Plugin installé"
576
 
577
- #: bws_menu.php:672
578
- #: bws_menu.php:721
579
  msgid "Settings"
580
  msgstr "Réglages"
581
 
582
- #: bws_menu.php:693
583
- #: bws_menu.php:750
584
  msgid "Activate this plugin"
585
  msgstr "Activer cette extension"
586
 
587
- #: bws_menu.php:708
588
- #: bws_menu.php:738
589
- #: bws_menu.php:784
590
  msgid "Go"
591
  msgstr "Passez"
592
 
593
- #: bws_menu.php:712
594
- #: bws_menu.php:742
595
- #: bws_menu.php:788
596
  msgid "DONATE"
597
  msgstr "Faire un don"
598
 
599
  #: bws_menu.php:758
600
  msgid "Recommended plugins"
601
- msgstr "Plugin recommandé"
602
 
603
  #: bws_menu.php:796
604
  msgid "Install now"
@@ -620,12 +710,12 @@ msgstr "%s installé"
620
 
621
  #: bws_menu.php:866
622
  msgid "Install Now"
623
- msgstr "Installa Ora"
624
 
625
  #: bws_menu.php:869
626
  #, php-format
627
  msgid "Update to version %s"
628
- msgstr "Mettre à jour pour la version %s"
629
 
630
  #: bws_menu.php:869
631
  msgid "Update"
@@ -640,8 +730,7 @@ msgstr "Pré-visualiser %s"
640
  msgid "Preview"
641
  msgstr "Pré-visualiser"
642
 
643
- #: bws_menu.php:882
644
- #: bws_menu.php:914
645
  #, php-format
646
  msgid "By %s"
647
  msgstr "Par %s"
@@ -656,15 +745,15 @@ msgstr "Déjà installé"
656
 
657
  #: bws_menu.php:936
658
  msgid "Environment"
659
- msgstr "Environment"
660
 
661
  #: bws_menu.php:947
662
  msgid "Active Plugins"
663
- msgstr "Plugin actifs"
664
 
665
  #: bws_menu.php:960
666
  msgid "Inactive Plugins"
667
- msgstr "Plugin inactifs"
668
 
669
  #: bws_menu.php:976
670
  msgid "Send to support"
@@ -1121,9 +1210,6 @@ msgstr "Envoyer un e-mail spécifique &#187;"
1121
  #~ msgid "Border color"
1122
  #~ msgstr "Couleur des bordures"
1123
 
1124
- #~ msgid "Submit button"
1125
- #~ msgstr "Bouton Envoyer"
1126
-
1127
  #~ msgid "Width in px, numbers only"
1128
  #~ msgstr "Largeur en px, nombre seulement"
1129
 
@@ -1182,9 +1268,6 @@ msgstr "Envoyer un e-mail spécifique &#187;"
1182
  #~ "Si vous voyez ce MIME c'est que votre navigateur n'accepte pas ce type de "
1183
  #~ "MIME !"
1184
 
1185
- #~ msgid "FAQ"
1186
- #~ msgstr "FAQ"
1187
-
1188
  #~ msgid "Support"
1189
  #~ msgstr "Support"
1190
 
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-11-17 13:31+0300\n"
6
+ "PO-Revision-Date: 2015-11-17 13:31+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"
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.4\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: bws_functions.php:39 bws_functions.php:63
 
21
  msgid "requires"
22
  msgstr "obligatoire"
23
 
24
+ #: bws_functions.php:41
25
+ msgid ""
26
+ "or higher, that is why it has been deactivated! Please upgrade WordPress and "
27
+ "try again."
28
+ msgstr ""
29
+ "ou supérieure, c'est pourquoi il a été désactivé! Merci de faire la mise à "
30
+ "jour de WordPress puis de ré-essayer."
31
 
32
+ #: bws_functions.php:42
33
  msgid "Back to the WordPress"
34
  msgstr "Retour à WordPress"
35
 
36
+ #: bws_functions.php:44
37
  msgid "Plugins page"
38
  msgstr "Page des extensions"
39
 
40
+ #: bws_functions.php:65
41
+ msgid ""
42
+ "or higher! We do not guarantee that our plugin will work correctly. Please "
43
+ "upgrade to WordPress latest version."
44
  msgstr ""
45
+ "ou plus ! Nous ne garantissons pas que notre extension fonctionne "
46
+ "correctement. Merci de mettre à jour Wordpress avec la dernière version."
47
 
48
+ #: bws_functions.php:122
49
  msgid "It’s time to upgrade your"
50
  msgstr "C'est le moment de mettre à jour votre "
51
 
52
+ #: bws_functions.php:122
53
  msgid "to"
54
  msgstr "à"
55
 
56
+ #: bws_functions.php:122
57
  msgid "version!"
58
  msgstr "version"
59
 
60
+ #: bws_functions.php:123
61
  msgid "Extend standard plugin functionality with new great options."
62
+ msgstr ""
63
+ "Étend les fonctionnalités classiques de l'extension avec des nouvelles "
64
+ "options."
65
 
66
+ #: bws_functions.php:126 bws_functions.php:561
 
67
  msgid "Learn More"
68
  msgstr "En savoir plus"
69
 
70
+ #: bws_functions.php:143
71
  msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
72
+ msgstr ""
73
+ "Si notre extension vous satisfait, merci de la notée avec 5 étoiles dans "
74
+ "Wordpress"
75
 
76
+ #: bws_functions.php:144
77
  msgid "Rate the plugin"
78
  msgstr "Voter pour l'extension"
79
 
80
+ #: bws_functions.php:147
81
  msgid "If there is something wrong about it, please contact us"
82
  msgstr "Si vous avez une question, n'hésitez pas à nous contacter"
83
 
84
+ #: bws_functions.php:179
85
+ msgid "Check premium options on the plugin settings page!"
86
+ msgstr ""
87
+ "Vérifier les options premium sur la page des paramètres de l'extension!"
88
+
89
+ #: bws_functions.php:186 bws_functions.php:222
90
  msgid "Wrong license key"
91
  msgstr "Clé de licence incorrecte"
92
 
93
+ #: bws_functions.php:216 bws_functions.php:474 bws_functions.php:525
94
+ msgid ""
95
+ "Something went wrong. Please try again later. If the error appears again, "
96
+ "please contact us"
97
+ msgstr ""
98
+ "Il est survenu une erreur. Essayer de nouveau. Si l'erreur se produit de "
99
+ "nouveau, merci de contacter <a href=http://support.bestwebsoft."
100
+ "com>BestWebSoft</a>. Nous sommes désolés pour le désagrément."
101
 
102
+ #: bws_functions.php:216 bws_functions.php:474 bws_functions.php:525
 
 
103
  msgid "We are sorry for inconvenience."
104
  msgstr "Nous sommes désolés pour le désagrément."
105
 
106
+ #: bws_functions.php:224
107
  msgid "This license key is bind to another site"
108
  msgstr "La clé de licence correspond à un autre site."
109
 
110
+ #: bws_functions.php:226 bws_functions.php:384
111
+ msgid ""
112
+ "Unfortunately, you have exceeded the number of available tries per day. "
113
+ "Please, upload the plugin manually."
114
+ msgstr ""
115
+ "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de "
116
+ "télécharger l'extension manuellement."
117
 
118
+ #: bws_functions.php:228
119
+ msgid ""
120
+ "Unfortunately, Your license has expired. To continue getting top-priority "
121
+ "support and plugin updates you should extend it in your"
122
+ msgstr ""
123
+ "Désoler, votre licence est terminée. Pour continuer à disposer du support "
124
+ "rapide et des mises à jour de l'extension vous devez la renouveler dans votre"
125
 
126
+ #: bws_functions.php:230
127
+ msgid ""
128
+ "Unfortunately, the Pro licence was already installed to this domain. The Pro "
129
+ "Trial license can be installed only once."
130
+ msgstr ""
131
+ "Une licence a déjà été installée sur ce domaine. La licence d'évaluation ne "
132
+ "peut-être installée qu'une seule fois."
133
 
134
+ #: bws_functions.php:251 bws_functions.php:273 bws_functions.php:295
 
 
135
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
136
+ msgstr ""
137
+ "Erreur de téléchargement de l'archive ZIP. Merci de télécharger l'extension "
138
+ "manuellement."
139
 
140
+ #: bws_functions.php:263
141
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
142
+ msgstr ""
143
+ "Erreur d'ouverture de l'archive zip. Merci de télécharger l'extension "
144
+ "manuellement."
145
 
146
+ #: bws_functions.php:269
147
+ msgid ""
148
+ "Your server does not support either ZipArchive or Phar. Please, upload the "
149
+ "plugin manually"
150
+ msgstr ""
151
+ "Votre serveur n'a pas le support du format des archives ZIP ou Phar. Merci "
152
+ "de télécharger l'extension manuellement."
153
 
154
+ #: bws_functions.php:276
155
  msgid "UploadDir is not writable. Please, upload the plugin manually"
156
+ msgstr ""
157
+ "Erreur d'ouverture de l'archive zip. Merci de télécharger l'extension "
158
+ "manuellement."
159
 
160
+ #: bws_functions.php:299
161
+ msgid ""
162
+ "Something went wrong. Try again later or upload the plugin manually. We are "
163
+ "sorry for inconvenience."
164
+ msgstr ""
165
+ "Il est survenu une erreur. Essayer de nouveau ou bien télécharger "
166
+ "l'extension manuellement.Nous sommes désolés pour le désagrément."
167
 
168
+ #: bws_functions.php:324
169
  msgid "Please, enter Your license key"
170
  msgstr "Merci de saisir votre clé de licence"
171
 
172
+ #: bws_functions.php:348
173
+ msgid ""
174
+ "Congratulations! The Pro version of the plugin is successfully download and "
175
+ "activated."
176
+ msgstr ""
177
+ "Félicitations! La version PRO de cette extension a été téléchargée et "
178
+ "activée avec succès."
179
 
180
+ #: bws_functions.php:350 bws_functions.php:441
 
181
  msgid "Please, go to"
182
+ msgstr "Merci d’aller à"
183
 
184
+ #: bws_functions.php:350 bws_functions.php:441
 
185
  msgid "the setting page"
186
  msgstr "Options supplémentaires"
187
 
188
+ #: bws_functions.php:351 bws_functions.php:442
 
189
  msgid "You will be redirected automatically in 5 seconds."
190
  msgstr "Vous allez être redirigé automatiquement dans 5 secondes"
191
 
192
+ #: bws_functions.php:358
193
+ msgid "Show Pro features"
194
+ msgstr "Voir les fonctionnalités de la version PRO"
195
+
196
+ #: bws_functions.php:365
197
  msgid "You can download and activate"
198
  msgstr "Vous pouvez télécharger et activer la version "
199
 
200
+ #: bws_functions.php:367
201
  msgid "version of this plugin by entering Your license key."
202
  msgstr " de cette extension en donnant votre clé de licence."
203
 
204
+ #: bws_functions.php:369 bws_functions.php:410
205
+ msgid ""
206
+ "You can find your license key on your personal page Client area, by clicking "
207
+ "on the link"
208
+ msgstr ""
209
+ "Vous pouvez trouver votre clé de licence sur votre page personnelle dans la "
210
+ "zone cliente en cliquant sur le lien"
211
 
212
+ #: bws_functions.php:371 bws_functions.php:412
 
213
  msgid "(your username is the email you specify when purchasing the product)."
214
+ msgstr ""
215
+ "(votre nom d'utilisateur est l'adresse e-mail que vous avez donné lors de "
216
+ "l'achat de l'extension)."
217
 
218
+ #: bws_functions.php:375 bws_functions.php:659
 
219
  msgid "or"
220
  msgstr "ou"
221
 
222
+ #: bws_functions.php:375
223
  #, php-format
224
  msgid "Start Your Free %s-Day Trial Now"
225
  msgstr "Débuter votre licence d'évaluation gratuite de %s jours"
226
 
227
+ #: bws_functions.php:381 bws_functions.php:390 bws_functions.php:420
228
+ #: bws_functions.php:428 bws_menu.php:693 bws_menu.php:750
 
 
 
 
229
  msgid "Activate"
230
  msgstr "Activé"
231
 
232
+ #: bws_functions.php:407 bws_functions.php:500
 
233
  #, php-format
234
+ msgid ""
235
+ "In order to continue using the plugin it is necessary to buy a %s license."
236
+ msgstr ""
237
+ "Afin de pouvoir continuer à utiliser cette extension il est nécessaire "
238
+ "d'acheter une licence %s."
239
 
240
+ #: bws_functions.php:408
241
  msgid "After that you can activate it by entering your license key."
242
+ msgstr ""
243
+ " Après vous pouvez activer cette extension en donnant votre clé de licence."
244
 
245
+ #: bws_functions.php:422
246
  msgid "Unfortunately, you have exceeded the number of available tries per day."
247
+ msgstr ""
248
+ "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de "
249
+ "télécharger l'extension manuellement."
250
 
251
+ #: bws_functions.php:439
252
+ msgid ""
253
+ "Congratulations! The Pro license of the plugin is successfully activated."
254
+ msgstr ""
255
+ "Félicitations! La version PRO de cette extension a été téléchargée et "
256
+ "activée avec succès."
257
 
258
+ #: bws_functions.php:480
259
  msgid "Wrong license key."
260
  msgstr "Clé de licence incorrecte."
261
 
262
+ #: bws_functions.php:482
263
  msgid "This license key is bind to another site."
264
  msgstr "La clé de licence correspond à un autre site."
265
 
266
+ #: bws_functions.php:484
267
+ msgid ""
268
+ "This license key is valid, but Your license has expired. If you want to "
269
+ "update our plugin in future, you should extend the license."
270
+ msgstr ""
271
+ "La clé de licence est valide mais votre durée de validité est passée. Pour "
272
+ "continuer à disposer du support rapide et des mises à jour de l'extension "
273
+ "vous devez la renouveller."
274
 
275
+ #: bws_functions.php:486
276
  msgid "Unfortunately, you have exceeded the number of available tries."
277
+ msgstr ""
278
+ "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de "
279
+ "télécharger l'extension manuellement."
280
 
281
+ #: bws_functions.php:488
282
+ msgid ""
283
+ "Unfortunately, the Pro Trial licence was already installed to this domain. "
284
+ "The Pro Trial license can be installed only once."
285
+ msgstr ""
286
+ "Une licence a déjà été installée sur ce domaine. La licence d'évaluation ne "
287
+ "peut-être installée qu'une seule fois."
288
 
289
+ #: bws_functions.php:492
 
290
  msgid "The Pro Trial license key is valid."
291
  msgstr "La clé de licence d'évaluation est valide."
292
 
293
+ #: bws_functions.php:494
294
  msgid "The license key is valid."
295
  msgstr "La clé de licence est valide."
296
 
297
+ #: bws_functions.php:497
298
  msgid "Your license will expire on"
299
  msgstr "Votre licence se termine le "
300
 
301
+ #: bws_functions.php:530
302
  msgid "Please, enter your license key"
303
  msgstr "Merci de saisir votre clé de licence"
304
 
305
+ #: bws_functions.php:543
306
+ msgid ""
307
+ "If needed you can check if the license key is correct or reenter it in the "
308
+ "field below. You can find your license key on your personal page - Client "
309
+ "area - on our website"
310
+ msgstr ""
311
+ "Si nécessaire vous pouvez vérifier que la clé de licence est correcte ou la "
312
+ "saisir de nouveau dans le champ ci-dessous. Vous pouvez trouver votre clé de "
313
+ "licence sur votre page personnelle (zone client) sur notre site web."
314
 
315
+ #: bws_functions.php:543
316
+ msgid ""
317
+ "(your username is the email you specify when purchasing the product). If "
318
+ "necessary, please submit \"Lost your password?\" request."
319
+ msgstr ""
320
+ "(votre nom d'utilisateur est l'adresse e-mail que vous avez donné lors de "
321
+ "l'achat de l'extension). Si nécessaire, utilisez la fonction de demande de "
322
+ "mot de passe perdu."
323
 
324
+ #: bws_functions.php:547
325
  msgid "Check license key"
326
  msgstr "Vérifier la clé de licence"
327
 
328
+ #: bws_functions.php:561
329
  msgid "WARNING: Illegal use notification"
330
  msgstr "AVERTISSEMENT : Notification d'utilisation abusive"
331
 
332
+ #: bws_functions.php:561
333
+ msgid ""
334
+ "You can use one license of the Pro plugin for one domain only. Please check "
335
+ "and edit your license or domain if necessary using you personal Client Area. "
336
+ "We strongly recommend you to solve the problem within 24 hours, otherwise "
337
+ "the Pro plugin will be deactivated."
338
+ msgstr ""
339
+ "Vous ne pouvez utilisez qu'une licence de la version Pro de l'extension pour "
340
+ "un seul domaine. Merci de vérifier et de modifier votre licence ou votre "
341
+ "domaine si nécessaire en utilisant votre zone client. Nous vous recommandons "
342
+ "de résoudre ce problème dans les 24 heures, sinon l'extension sera rendue "
343
+ "inactive."
344
 
345
+ #: bws_functions.php:569
346
+ msgid ""
347
+ "Notice: Your Pro Trial license has expired. To continue using the plugin you "
348
+ "should buy a Pro license"
349
+ msgstr ""
350
+ "Votre licence d'évaluation est terminée. Pour continuer à disposer du "
351
+ "support rapide et des mises à jour de l'extension vous devez la renouveler."
352
+
353
+ #: bws_functions.php:571
354
+ msgid ""
355
+ "Your license has expired. To continue getting top-priority support and "
356
+ "plugin updates you should extend it."
357
+ msgstr ""
358
+ "Votre licence est terminée. Pour continuer à disposer du support rapide et "
359
+ "des mises à jour de l'extension vous devez la renouveller."
360
+
361
+ #: bws_functions.php:571 bws_functions.php:624 bws_menu.php:669
362
+ #: bws_menu.php:691 bws_menu.php:718 bws_menu.php:748 bws_menu.php:794
363
  msgid "Learn more"
364
  msgstr "En savoir plus"
365
 
366
+ #: bws_functions.php:581
367
+ #, php-format
368
  msgid "Notice: You are using the Pro Trial license of %s plugin."
369
+ msgstr ""
370
+ "Avertissement : vous utilisez la version d'évaluation de l'extension %s."
371
 
372
+ #: bws_functions.php:583
 
373
  msgid "Notice: You are using the Pro Trial license of plugin."
374
  msgstr "Avertissement : vous utilisez la version d'évaluation de l'extension."
375
 
376
+ #: bws_functions.php:586
 
377
  msgid "The Pro Trial license will expire on"
378
+ msgstr "La licence PRO d'évaluation expirera le"
379
 
380
+ #: bws_functions.php:624
381
  msgid "You license for"
382
  msgstr "Votre licence pour"
383
 
384
+ #: bws_functions.php:624
385
  msgid "expires on"
386
  msgstr "se termine le"
387
 
388
+ #: bws_functions.php:624
389
  msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
390
+ msgstr "et vous ne disposerez plus du support rapide et des mises à jour."
391
 
392
+ #: bws_functions.php:655
 
393
  msgid "Thank you for installing"
394
+ msgstr "Merci d'avoir installé"
395
 
396
+ #: bws_functions.php:656
397
  msgid "Let's get started"
398
+ msgstr "Démarrer"
399
 
400
+ #: bws_functions.php:657
 
401
  msgid "Configure Settings"
402
+ msgstr "Configuration des paramètres"
403
 
404
+ #: bws_functions.php:660
405
  msgid "Add New"
406
+ msgstr "Ajouter"
407
 
408
+ #: bws_functions.php:664
409
  msgid "Close notice"
410
+ msgstr "Effacer l'avertissement"
411
 
412
+ #: bws_functions.php:677
413
  msgid "Notice"
414
+ msgstr "Avertissement"
415
 
416
+ #: bws_functions.php:677
417
  msgid "The plugin's settings have been changed."
418
+ msgstr "Les paramètres de l'extension ont été modifiés."
419
 
420
+ #: bws_functions.php:678
421
  msgid "Save Changes"
422
  msgstr "Sauvegarder les modifications"
423
 
424
+ #: bws_functions.php:693
425
+ msgid ""
426
+ "You can always look at premium options by clicking on the \"Show Pro features"
427
+ "\" in the \"Go PRO\" tab"
428
+ msgstr ""
429
+ "Vous pouvez toujours consulter les options premium en cliquant sur le lien "
430
+ "\"Voir les fonctionnalités de la version PRO\" dans l'onglet Passer PRO"
431
+
432
+ #: bws_functions.php:773
433
  msgid "Add BWS Plugins Shortcode"
434
+ msgstr "Ajouter le code court de l'extension BWS"
435
 
436
+ #: bws_functions.php:793
437
+ msgid "Add shortcode"
438
+ msgstr "Ajouter le code court"
439
+
440
+ #: bws_functions.php:793
441
+ msgid "Add BestWebSoft plugins' shortcodes using this button."
442
+ msgstr "Ajouter le code court des extensions BestWebSoft avec ce bouton."
443
+
444
+ #: bws_functions.php:835
445
  msgid "Close"
446
  msgstr "Fermer"
447
 
448
+ #: bws_functions.php:927
449
  msgid "Restore all plugin settings to defaults"
450
+ msgstr "Remettre les valeurs par défaut des paramètres de l'extension"
451
 
452
+ #: bws_functions.php:929
 
453
  msgid "Restore settings"
454
+ msgstr "Remettre les paramètres"
455
 
456
+ #: bws_functions.php:940
 
457
  msgid "Are you sure you want to restore all settings by default?"
458
+ msgstr "Êtes vous sûr de vouloir remettre toutes les valeurs par défaut ?"
459
 
460
+ #: bws_functions.php:943
461
  msgid "Yes, restore all settings"
462
+ msgstr "Oui, remettre les valeurs par défaut"
463
 
464
+ #: bws_functions.php:944
 
465
  msgid "No, go back to the settings page"
466
+ msgstr "Non, retourner à la page des paramètres"
467
 
468
+ #: bws_functions.php:988
 
469
  msgid "Plugin"
470
+ msgstr "Extension"
471
 
472
+ #: bws_functions.php:997
 
473
  msgid "Shortcode settings"
474
+ msgstr "Paramètres du code court"
475
 
476
+ #: bws_functions.php:1002
477
  msgid "The shortcode will be inserted"
478
+ msgstr "Le code court sera inséré"
479
 
480
+ #: bws_functions.php:1007
481
  msgid "Insert"
482
+ msgstr "Insérer"
483
+
484
+ #: bws_functions.php:1038
485
+ msgid "Visit Help Center"
486
+ msgstr "Visiter le site du support"
487
+
488
+ #: bws_functions.php:1043
489
+ msgid "FAQ"
490
+ msgstr "FAQ"
491
+
492
+ #: bws_functions.php:1049
493
+ msgid "For more information:"
494
+ msgstr "Pour plus d'informations&nbsp;:"
495
+
496
+ #: bws_functions.php:1050
497
+ msgid "Documentation"
498
+ msgstr "Documentation"
499
+
500
+ #: bws_functions.php:1051
501
+ msgid "Video Instructions"
502
+ msgstr "Vidéo explicative"
503
+
504
+ #: bws_functions.php:1052
505
+ msgid "Submit a Request"
506
+ msgstr "Soumettre une requête"
507
 
508
  #: bws_menu.php:506
509
  msgid "Not set"
510
  msgstr "Not set"
511
 
512
+ #: bws_menu.php:508 bws_menu.php:509
 
513
  msgid "On"
514
  msgstr "On"
515
 
516
+ #: bws_menu.php:508 bws_menu.php:509
 
517
  msgid "Off"
518
  msgstr "Off"
519
 
520
+ #: bws_menu.php:510 bws_menu.php:511 bws_menu.php:512 bws_menu.php:513
521
+ #: bws_menu.php:514 bws_menu.php:526
 
 
 
 
522
  msgid "N/A"
523
  msgstr "N/A"
524
 
526
  msgid " Mb"
527
  msgstr " Mb"
528
 
529
+ #: bws_menu.php:515 bws_menu.php:516 bws_menu.php:517 bws_menu.php:522
 
 
 
530
  msgid "Yes"
531
  msgstr "Yes"
532
 
533
+ #: bws_menu.php:515 bws_menu.php:516 bws_menu.php:517 bws_menu.php:524
 
 
 
534
  msgid "No"
535
  msgstr "No"
536
 
642
  msgid "Client area"
643
  msgstr "Espace client"
644
 
645
+ #: bws_menu.php:622 bws_menu.php:933
 
646
  msgid "System status"
647
  msgstr "System status"
648
 
668
 
669
  #: bws_menu.php:640
670
  msgid "Installed plugins"
671
+ msgstr "Extensions installées"
672
 
673
+ #: bws_menu.php:672 bws_menu.php:721
 
674
  msgid "Settings"
675
  msgstr "Réglages"
676
 
677
+ #: bws_menu.php:693 bws_menu.php:750
 
678
  msgid "Activate this plugin"
679
  msgstr "Activer cette extension"
680
 
681
+ #: bws_menu.php:708 bws_menu.php:738 bws_menu.php:784
 
 
682
  msgid "Go"
683
  msgstr "Passez"
684
 
685
+ #: bws_menu.php:712 bws_menu.php:742 bws_menu.php:788
 
 
686
  msgid "DONATE"
687
  msgstr "Faire un don"
688
 
689
  #: bws_menu.php:758
690
  msgid "Recommended plugins"
691
+ msgstr "Extensions recommandées"
692
 
693
  #: bws_menu.php:796
694
  msgid "Install now"
710
 
711
  #: bws_menu.php:866
712
  msgid "Install Now"
713
+ msgstr "Installer maintenant"
714
 
715
  #: bws_menu.php:869
716
  #, php-format
717
  msgid "Update to version %s"
718
+ msgstr "Mettre à jour avec la version %s"
719
 
720
  #: bws_menu.php:869
721
  msgid "Update"
730
  msgid "Preview"
731
  msgstr "Pré-visualiser"
732
 
733
+ #: bws_menu.php:882 bws_menu.php:914
 
734
  #, php-format
735
  msgid "By %s"
736
  msgstr "Par %s"
745
 
746
  #: bws_menu.php:936
747
  msgid "Environment"
748
+ msgstr "Environnent"
749
 
750
  #: bws_menu.php:947
751
  msgid "Active Plugins"
752
+ msgstr "Extensions actives"
753
 
754
  #: bws_menu.php:960
755
  msgid "Inactive Plugins"
756
+ msgstr "Extensions inactives"
757
 
758
  #: bws_menu.php:976
759
  msgid "Send to support"
1210
  #~ msgid "Border color"
1211
  #~ msgstr "Couleur des bordures"
1212
 
 
 
 
1213
  #~ msgid "Width in px, numbers only"
1214
  #~ msgstr "Largeur en px, nombre seulement"
1215
 
1268
  #~ "Si vous voyez ce MIME c'est que votre navigateur n'accepte pas ce type de "
1269
  #~ "MIME !"
1270
 
 
 
 
1271
  #~ msgid "Support"
1272
  #~ msgstr "Support"
1273
 
bws_menu/languages/bestwebsoft-it_IT.mo CHANGED
Binary file
bws_menu/languages/bestwebsoft-it_IT.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-09-17 16:00+0300\n"
6
- "PO-Revision-Date: 2015-09-17 16:00+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Marco <marco@blackstudio.it>\n"
9
  "Language: it_IT\n"
@@ -18,277 +18,285 @@ msgstr ""
18
  "X-Textdomain-Support: yes\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
- #: bws_functions.php:29
22
- #: bws_functions.php:53
23
  msgid "requires"
24
  msgstr ""
25
 
26
- #: bws_functions.php:31
27
  msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
28
  msgstr ""
29
 
30
- #: bws_functions.php:32
31
  msgid "Back to the WordPress"
32
  msgstr ""
33
 
34
  # @ bestwebsoft
35
- #: bws_functions.php:34
36
  #, fuzzy
37
  msgid "Plugins page"
38
  msgstr "Plugin Pro"
39
 
40
- #: bws_functions.php:55
41
  msgid "or higher! We do not guarantee that our plugin will work correctly. Please upgrade to WordPress latest version."
42
  msgstr ""
43
 
44
- #: bws_functions.php:112
45
  msgid "It’s time to upgrade your"
46
  msgstr ""
47
 
48
  # @ captcha
49
- #: bws_functions.php:112
50
  #, fuzzy
51
  msgid "to"
52
  msgstr "due"
53
 
54
  # @ bestwebsoft
55
- #: bws_functions.php:112
56
  #, fuzzy
57
  msgid "version!"
58
  msgstr "Versione PHP"
59
 
60
- #: bws_functions.php:113
61
  msgid "Extend standard plugin functionality with new great options."
62
  msgstr ""
63
 
64
  # @ bestwebsoft
65
- #: bws_functions.php:116
66
- #: bws_functions.php:513
67
  #, fuzzy
68
  msgid "Learn More"
69
  msgstr "Leggi tutto"
70
 
71
- #: bws_functions.php:133
72
  msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
73
  msgstr ""
74
 
75
  # @ bestwebsoft
76
- #: bws_functions.php:134
77
  #, fuzzy
78
  msgid "Rate the plugin"
79
  msgstr "Plugin attivi"
80
 
81
  # @ bestwebsoft
82
- #: bws_functions.php:137
83
  #, fuzzy
84
  msgid "If there is something wrong about it, please contact us"
85
  msgstr "Se hai domande, contattaci tramite"
86
 
87
- #: bws_functions.php:154
88
- #: bws_functions.php:190
 
 
 
 
89
  msgid "Wrong license key"
90
  msgstr ""
91
 
92
- #: bws_functions.php:184
93
- #: bws_functions.php:426
94
- #: bws_functions.php:477
95
  msgid "Something went wrong. Please try again later. If the error appears again, please contact us"
96
  msgstr ""
97
 
98
- #: bws_functions.php:184
99
- #: bws_functions.php:426
100
- #: bws_functions.php:477
101
  msgid "We are sorry for inconvenience."
102
  msgstr ""
103
 
104
- #: bws_functions.php:192
105
  msgid "This license key is bind to another site"
106
  msgstr ""
107
 
108
- #: bws_functions.php:194
109
- #: bws_functions.php:336
110
  msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
111
  msgstr ""
112
 
113
- #: bws_functions.php:196
114
  msgid "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates you should extend it in your"
115
  msgstr ""
116
 
117
- #: bws_functions.php:198
118
  msgid "Unfortunately, the Pro licence was already installed to this domain. The Pro Trial license can be installed only once."
119
  msgstr ""
120
 
121
- #: bws_functions.php:219
122
- #: bws_functions.php:241
123
- #: bws_functions.php:263
124
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
125
  msgstr ""
126
 
127
- #: bws_functions.php:231
128
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
129
  msgstr ""
130
 
131
- #: bws_functions.php:237
132
  msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
133
  msgstr ""
134
 
135
- #: bws_functions.php:244
136
  msgid "UploadDir is not writable. Please, upload the plugin manually"
137
  msgstr ""
138
 
139
- #: bws_functions.php:267
140
  msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvenience."
141
  msgstr ""
142
 
143
- #: bws_functions.php:292
144
  msgid "Please, enter Your license key"
145
  msgstr ""
146
 
147
- #: bws_functions.php:309
148
  msgid "Congratulations! The Pro version of the plugin is successfully download and activated."
149
  msgstr ""
150
 
151
- #: bws_functions.php:311
152
- #: bws_functions.php:393
153
  msgid "Please, go to"
154
  msgstr ""
155
 
156
- #: bws_functions.php:311
157
- #: bws_functions.php:393
158
  msgid "the setting page"
159
  msgstr ""
160
 
161
- #: bws_functions.php:312
162
- #: bws_functions.php:394
163
  msgid "You will be redirected automatically in 5 seconds."
164
  msgstr ""
165
 
166
- #: bws_functions.php:317
 
 
 
 
167
  msgid "You can download and activate"
168
  msgstr ""
169
 
170
- #: bws_functions.php:319
171
  msgid "version of this plugin by entering Your license key."
172
  msgstr ""
173
 
174
- #: bws_functions.php:321
175
- #: bws_functions.php:362
176
  msgid "You can find your license key on your personal page Client area, by clicking on the link"
177
  msgstr ""
178
 
179
- #: bws_functions.php:323
180
- #: bws_functions.php:364
181
  msgid "(your username is the email you specify when purchasing the product)."
182
  msgstr ""
183
 
184
  # @ captcha
185
- #: bws_functions.php:327
186
- #: bws_functions.php:630
187
  #, fuzzy
188
  msgid "or"
189
  msgstr "quattro"
190
 
191
- #: bws_functions.php:327
192
  #, php-format
193
  msgid "Start Your Free %s-Day Trial Now"
194
  msgstr ""
195
 
196
  # @ bestwebsoft
197
- #: bws_functions.php:333
198
- #: bws_functions.php:342
199
- #: bws_functions.php:372
200
- #: bws_functions.php:380
201
  #: bws_menu.php:693
202
  #: bws_menu.php:750
203
  #, fuzzy
204
  msgid "Activate"
205
  msgstr "Plugin attivi"
206
 
207
- #: bws_functions.php:359
208
- #: bws_functions.php:452
209
  #, php-format
210
  msgid "In order to continue using the plugin it is necessary to buy a %s license."
211
  msgstr ""
212
 
213
- #: bws_functions.php:360
214
  msgid "After that you can activate it by entering your license key."
215
  msgstr ""
216
 
217
- #: bws_functions.php:374
218
  msgid "Unfortunately, you have exceeded the number of available tries per day."
219
  msgstr ""
220
 
221
- #: bws_functions.php:391
222
  msgid "Congratulations! The Pro license of the plugin is successfully activated."
223
  msgstr ""
224
 
225
- #: bws_functions.php:432
226
  msgid "Wrong license key."
227
  msgstr ""
228
 
229
- #: bws_functions.php:434
230
  msgid "This license key is bind to another site."
231
  msgstr ""
232
 
233
- #: bws_functions.php:436
234
  msgid "This license key is valid, but Your license has expired. If you want to update our plugin in future, you should extend the license."
235
  msgstr ""
236
 
237
- #: bws_functions.php:438
238
  msgid "Unfortunately, you have exceeded the number of available tries."
239
  msgstr ""
240
 
241
- #: bws_functions.php:440
242
  msgid "Unfortunately, the Pro Trial licence was already installed to this domain. The Pro Trial license can be installed only once."
243
  msgstr ""
244
 
245
- #: bws_functions.php:444
246
  msgid "The Pro Trial license key is valid."
247
  msgstr ""
248
 
249
- #: bws_functions.php:446
250
  msgid "The license key is valid."
251
  msgstr ""
252
 
253
- #: bws_functions.php:449
254
  msgid "Your license will expire on"
255
  msgstr ""
256
 
257
- #: bws_functions.php:482
258
  msgid "Please, enter your license key"
259
  msgstr ""
260
 
261
- #: bws_functions.php:495
262
  msgid "If needed you can check if the license key is correct or reenter it in the field below. You can find your license key on your personal page - Client area - on our website"
263
  msgstr ""
264
 
265
- #: bws_functions.php:495
266
  msgid "(your username is the email you specify when purchasing the product). If necessary, please submit \"Lost your password?\" request."
267
  msgstr ""
268
 
269
- #: bws_functions.php:499
270
  msgid "Check license key"
271
  msgstr ""
272
 
273
- #: bws_functions.php:513
274
  msgid "WARNING: Illegal use notification"
275
  msgstr ""
276
 
277
- #: bws_functions.php:513
278
  msgid "You can use one license of the Pro plugin for one domain only. Please check and edit your license or domain if necessary using you personal Client Area. We strongly recommend you to solve the problem within 24 hours, otherwise the Pro plugin will be deactivated."
279
  msgstr ""
280
 
281
- #: bws_functions.php:521
282
  msgid "Notice: Your Pro Trial license has expired. To continue using the plugin you should buy a Pro license"
283
  msgstr ""
284
 
285
- #: bws_functions.php:523
286
  msgid "Your license has expired. To continue getting top-priority support and plugin updates you should extend it."
287
  msgstr ""
288
 
289
  # @ bestwebsoft
290
- #: bws_functions.php:523
291
- #: bws_functions.php:576
292
  #: bws_menu.php:669
293
  #: bws_menu.php:691
294
  #: bws_menu.php:718
@@ -298,118 +306,155 @@ msgstr ""
298
  msgid "Learn more"
299
  msgstr "Leggi tutto"
300
 
301
- #: bws_functions.php:533
302
  #, php-format
303
  msgid "Notice: You are using the Pro Trial license of %s plugin."
304
  msgstr ""
305
 
306
- #: bws_functions.php:535
307
  msgid "Notice: You are using the Pro Trial license of plugin."
308
  msgstr ""
309
 
310
- #: bws_functions.php:538
311
  msgid "The Pro Trial license will expire on"
312
  msgstr ""
313
 
314
- #: bws_functions.php:576
315
  msgid "You license for"
316
  msgstr ""
317
 
318
- #: bws_functions.php:576
319
  msgid "expires on"
320
  msgstr ""
321
 
322
- #: bws_functions.php:576
323
  msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
324
  msgstr ""
325
 
326
  # @ bestwebsoft
327
- #: bws_functions.php:626
328
  #, fuzzy
329
  msgid "Thank you for installing"
330
  msgstr "Grazie per averci contattato."
331
 
332
- #: bws_functions.php:627
333
  msgid "Let's get started"
334
  msgstr ""
335
 
336
  # @ bestwebsoft
337
  # @ captcha
338
- #: bws_functions.php:628
339
  #, fuzzy
340
  msgid "Configure Settings"
341
  msgstr "Impostazioni"
342
 
343
- #: bws_functions.php:631
344
  msgid "Add New"
345
  msgstr ""
346
 
347
- #: bws_functions.php:635
348
  msgid "Close notice"
349
  msgstr ""
350
 
351
- #: bws_functions.php:648
352
  msgid "Notice"
353
  msgstr ""
354
 
355
- #: bws_functions.php:648
356
  msgid "The plugin's settings have been changed."
357
  msgstr ""
358
 
359
  # @ default
360
- #: bws_functions.php:649
361
  msgid "Save Changes"
362
  msgstr "Salva le modifiche"
363
 
364
- #: bws_functions.php:694
 
 
 
 
365
  msgid "Add BWS Plugins Shortcode"
366
  msgstr ""
367
 
368
- #: bws_functions.php:738
 
 
 
 
 
 
 
 
369
  msgid "Close"
370
  msgstr ""
371
 
372
- #: bws_functions.php:829
373
  msgid "Restore all plugin settings to defaults"
374
  msgstr ""
375
 
376
- #: bws_functions.php:831
377
  msgid "Restore settings"
378
  msgstr ""
379
 
380
- #: bws_functions.php:842
381
  msgid "Are you sure you want to restore all settings by default?"
382
  msgstr ""
383
 
384
- #: bws_functions.php:845
385
  msgid "Yes, restore all settings"
386
  msgstr ""
387
 
388
- #: bws_functions.php:846
389
  msgid "No, go back to the settings page"
390
  msgstr ""
391
 
392
  # @ bestwebsoft
393
- #: bws_functions.php:890
394
  #, fuzzy
395
  msgid "Plugin"
396
  msgstr "Plugin Pro"
397
 
398
  # @ bestwebsoft
399
  # @ captcha
400
- #: bws_functions.php:899
401
  #, fuzzy
402
  msgid "Shortcode settings"
403
  msgstr "Impostazioni"
404
 
405
- #: bws_functions.php:904
406
  msgid "The shortcode will be inserted"
407
  msgstr ""
408
 
409
- #: bws_functions.php:909
410
  msgid "Insert"
411
  msgstr ""
412
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
413
  # @ bestwebsoft
414
  #: bws_menu.php:506
415
  msgid "Not set"
@@ -848,9 +893,6 @@ msgstr "Invia a una email personalizzata &#187;"
848
  #~ msgid "Words"
849
  #~ msgstr "Parole"
850
  # @ captcha
851
- #~ msgid "FAQ"
852
- #~ msgstr "FAQ"
853
- # @ captcha
854
  #~ msgid "Support"
855
  #~ msgstr "Supporto"
856
  # @ captcha
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-10-09 14:42+0300\n"
6
+ "PO-Revision-Date: 2015-10-09 14:42+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Marco <marco@blackstudio.it>\n"
9
  "Language: it_IT\n"
18
  "X-Textdomain-Support: yes\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
+ #: bws_functions.php:39
22
+ #: bws_functions.php:63
23
  msgid "requires"
24
  msgstr ""
25
 
26
+ #: bws_functions.php:41
27
  msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
28
  msgstr ""
29
 
30
+ #: bws_functions.php:42
31
  msgid "Back to the WordPress"
32
  msgstr ""
33
 
34
  # @ bestwebsoft
35
+ #: bws_functions.php:44
36
  #, fuzzy
37
  msgid "Plugins page"
38
  msgstr "Plugin Pro"
39
 
40
+ #: bws_functions.php:65
41
  msgid "or higher! We do not guarantee that our plugin will work correctly. Please upgrade to WordPress latest version."
42
  msgstr ""
43
 
44
+ #: bws_functions.php:122
45
  msgid "It’s time to upgrade your"
46
  msgstr ""
47
 
48
  # @ captcha
49
+ #: bws_functions.php:122
50
  #, fuzzy
51
  msgid "to"
52
  msgstr "due"
53
 
54
  # @ bestwebsoft
55
+ #: bws_functions.php:122
56
  #, fuzzy
57
  msgid "version!"
58
  msgstr "Versione PHP"
59
 
60
+ #: bws_functions.php:123
61
  msgid "Extend standard plugin functionality with new great options."
62
  msgstr ""
63
 
64
  # @ bestwebsoft
65
+ #: bws_functions.php:126
66
+ #: bws_functions.php:561
67
  #, fuzzy
68
  msgid "Learn More"
69
  msgstr "Leggi tutto"
70
 
71
+ #: bws_functions.php:143
72
  msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
73
  msgstr ""
74
 
75
  # @ bestwebsoft
76
+ #: bws_functions.php:144
77
  #, fuzzy
78
  msgid "Rate the plugin"
79
  msgstr "Plugin attivi"
80
 
81
  # @ bestwebsoft
82
+ #: bws_functions.php:147
83
  #, fuzzy
84
  msgid "If there is something wrong about it, please contact us"
85
  msgstr "Se hai domande, contattaci tramite"
86
 
87
+ #: bws_functions.php:179
88
+ msgid "Check premium options on the plugin settings page!"
89
+ msgstr ""
90
+
91
+ #: bws_functions.php:186
92
+ #: bws_functions.php:222
93
  msgid "Wrong license key"
94
  msgstr ""
95
 
96
+ #: bws_functions.php:216
97
+ #: bws_functions.php:474
98
+ #: bws_functions.php:525
99
  msgid "Something went wrong. Please try again later. If the error appears again, please contact us"
100
  msgstr ""
101
 
102
+ #: bws_functions.php:216
103
+ #: bws_functions.php:474
104
+ #: bws_functions.php:525
105
  msgid "We are sorry for inconvenience."
106
  msgstr ""
107
 
108
+ #: bws_functions.php:224
109
  msgid "This license key is bind to another site"
110
  msgstr ""
111
 
112
+ #: bws_functions.php:226
113
+ #: bws_functions.php:384
114
  msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
115
  msgstr ""
116
 
117
+ #: bws_functions.php:228
118
  msgid "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates you should extend it in your"
119
  msgstr ""
120
 
121
+ #: bws_functions.php:230
122
  msgid "Unfortunately, the Pro licence was already installed to this domain. The Pro Trial license can be installed only once."
123
  msgstr ""
124
 
125
+ #: bws_functions.php:251
126
+ #: bws_functions.php:273
127
+ #: bws_functions.php:295
128
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
129
  msgstr ""
130
 
131
+ #: bws_functions.php:263
132
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
133
  msgstr ""
134
 
135
+ #: bws_functions.php:269
136
  msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
137
  msgstr ""
138
 
139
+ #: bws_functions.php:276
140
  msgid "UploadDir is not writable. Please, upload the plugin manually"
141
  msgstr ""
142
 
143
+ #: bws_functions.php:299
144
  msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvenience."
145
  msgstr ""
146
 
147
+ #: bws_functions.php:324
148
  msgid "Please, enter Your license key"
149
  msgstr ""
150
 
151
+ #: bws_functions.php:348
152
  msgid "Congratulations! The Pro version of the plugin is successfully download and activated."
153
  msgstr ""
154
 
155
+ #: bws_functions.php:350
156
+ #: bws_functions.php:441
157
  msgid "Please, go to"
158
  msgstr ""
159
 
160
+ #: bws_functions.php:350
161
+ #: bws_functions.php:441
162
  msgid "the setting page"
163
  msgstr ""
164
 
165
+ #: bws_functions.php:351
166
+ #: bws_functions.php:442
167
  msgid "You will be redirected automatically in 5 seconds."
168
  msgstr ""
169
 
170
+ #: bws_functions.php:358
171
+ msgid "Show Pro features"
172
+ msgstr ""
173
+
174
+ #: bws_functions.php:365
175
  msgid "You can download and activate"
176
  msgstr ""
177
 
178
+ #: bws_functions.php:367
179
  msgid "version of this plugin by entering Your license key."
180
  msgstr ""
181
 
182
+ #: bws_functions.php:369
183
+ #: bws_functions.php:410
184
  msgid "You can find your license key on your personal page Client area, by clicking on the link"
185
  msgstr ""
186
 
187
+ #: bws_functions.php:371
188
+ #: bws_functions.php:412
189
  msgid "(your username is the email you specify when purchasing the product)."
190
  msgstr ""
191
 
192
  # @ captcha
193
+ #: bws_functions.php:375
194
+ #: bws_functions.php:659
195
  #, fuzzy
196
  msgid "or"
197
  msgstr "quattro"
198
 
199
+ #: bws_functions.php:375
200
  #, php-format
201
  msgid "Start Your Free %s-Day Trial Now"
202
  msgstr ""
203
 
204
  # @ bestwebsoft
205
+ #: bws_functions.php:381
206
+ #: bws_functions.php:390
207
+ #: bws_functions.php:420
208
+ #: bws_functions.php:428
209
  #: bws_menu.php:693
210
  #: bws_menu.php:750
211
  #, fuzzy
212
  msgid "Activate"
213
  msgstr "Plugin attivi"
214
 
215
+ #: bws_functions.php:407
216
+ #: bws_functions.php:500
217
  #, php-format
218
  msgid "In order to continue using the plugin it is necessary to buy a %s license."
219
  msgstr ""
220
 
221
+ #: bws_functions.php:408
222
  msgid "After that you can activate it by entering your license key."
223
  msgstr ""
224
 
225
+ #: bws_functions.php:422
226
  msgid "Unfortunately, you have exceeded the number of available tries per day."
227
  msgstr ""
228
 
229
+ #: bws_functions.php:439
230
  msgid "Congratulations! The Pro license of the plugin is successfully activated."
231
  msgstr ""
232
 
233
+ #: bws_functions.php:480
234
  msgid "Wrong license key."
235
  msgstr ""
236
 
237
+ #: bws_functions.php:482
238
  msgid "This license key is bind to another site."
239
  msgstr ""
240
 
241
+ #: bws_functions.php:484
242
  msgid "This license key is valid, but Your license has expired. If you want to update our plugin in future, you should extend the license."
243
  msgstr ""
244
 
245
+ #: bws_functions.php:486
246
  msgid "Unfortunately, you have exceeded the number of available tries."
247
  msgstr ""
248
 
249
+ #: bws_functions.php:488
250
  msgid "Unfortunately, the Pro Trial licence was already installed to this domain. The Pro Trial license can be installed only once."
251
  msgstr ""
252
 
253
+ #: bws_functions.php:492
254
  msgid "The Pro Trial license key is valid."
255
  msgstr ""
256
 
257
+ #: bws_functions.php:494
258
  msgid "The license key is valid."
259
  msgstr ""
260
 
261
+ #: bws_functions.php:497
262
  msgid "Your license will expire on"
263
  msgstr ""
264
 
265
+ #: bws_functions.php:530
266
  msgid "Please, enter your license key"
267
  msgstr ""
268
 
269
+ #: bws_functions.php:543
270
  msgid "If needed you can check if the license key is correct or reenter it in the field below. You can find your license key on your personal page - Client area - on our website"
271
  msgstr ""
272
 
273
+ #: bws_functions.php:543
274
  msgid "(your username is the email you specify when purchasing the product). If necessary, please submit \"Lost your password?\" request."
275
  msgstr ""
276
 
277
+ #: bws_functions.php:547
278
  msgid "Check license key"
279
  msgstr ""
280
 
281
+ #: bws_functions.php:561
282
  msgid "WARNING: Illegal use notification"
283
  msgstr ""
284
 
285
+ #: bws_functions.php:561
286
  msgid "You can use one license of the Pro plugin for one domain only. Please check and edit your license or domain if necessary using you personal Client Area. We strongly recommend you to solve the problem within 24 hours, otherwise the Pro plugin will be deactivated."
287
  msgstr ""
288
 
289
+ #: bws_functions.php:569
290
  msgid "Notice: Your Pro Trial license has expired. To continue using the plugin you should buy a Pro license"
291
  msgstr ""
292
 
293
+ #: bws_functions.php:571
294
  msgid "Your license has expired. To continue getting top-priority support and plugin updates you should extend it."
295
  msgstr ""
296
 
297
  # @ bestwebsoft
298
+ #: bws_functions.php:571
299
+ #: bws_functions.php:624
300
  #: bws_menu.php:669
301
  #: bws_menu.php:691
302
  #: bws_menu.php:718
306
  msgid "Learn more"
307
  msgstr "Leggi tutto"
308
 
309
+ #: bws_functions.php:581
310
  #, php-format
311
  msgid "Notice: You are using the Pro Trial license of %s plugin."
312
  msgstr ""
313
 
314
+ #: bws_functions.php:583
315
  msgid "Notice: You are using the Pro Trial license of plugin."
316
  msgstr ""
317
 
318
+ #: bws_functions.php:586
319
  msgid "The Pro Trial license will expire on"
320
  msgstr ""
321
 
322
+ #: bws_functions.php:624
323
  msgid "You license for"
324
  msgstr ""
325
 
326
+ #: bws_functions.php:624
327
  msgid "expires on"
328
  msgstr ""
329
 
330
+ #: bws_functions.php:624
331
  msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
332
  msgstr ""
333
 
334
  # @ bestwebsoft
335
+ #: bws_functions.php:655
336
  #, fuzzy
337
  msgid "Thank you for installing"
338
  msgstr "Grazie per averci contattato."
339
 
340
+ #: bws_functions.php:656
341
  msgid "Let's get started"
342
  msgstr ""
343
 
344
  # @ bestwebsoft
345
  # @ captcha
346
+ #: bws_functions.php:657
347
  #, fuzzy
348
  msgid "Configure Settings"
349
  msgstr "Impostazioni"
350
 
351
+ #: bws_functions.php:660
352
  msgid "Add New"
353
  msgstr ""
354
 
355
+ #: bws_functions.php:664
356
  msgid "Close notice"
357
  msgstr ""
358
 
359
+ #: bws_functions.php:677
360
  msgid "Notice"
361
  msgstr ""
362
 
363
+ #: bws_functions.php:677
364
  msgid "The plugin's settings have been changed."
365
  msgstr ""
366
 
367
  # @ default
368
+ #: bws_functions.php:678
369
  msgid "Save Changes"
370
  msgstr "Salva le modifiche"
371
 
372
+ #: bws_functions.php:693
373
+ msgid "You can always look at premium options by clicking on the \"Show Pro features\" in the \"Go PRO\" tab"
374
+ msgstr ""
375
+
376
+ #: bws_functions.php:773
377
  msgid "Add BWS Plugins Shortcode"
378
  msgstr ""
379
 
380
+ #: bws_functions.php:793
381
+ msgid "Add shortcode"
382
+ msgstr ""
383
+
384
+ #: bws_functions.php:793
385
+ msgid "Add BestWebSoft plugins' shortcodes using this button."
386
+ msgstr ""
387
+
388
+ #: bws_functions.php:833
389
  msgid "Close"
390
  msgstr ""
391
 
392
+ #: bws_functions.php:925
393
  msgid "Restore all plugin settings to defaults"
394
  msgstr ""
395
 
396
+ #: bws_functions.php:927
397
  msgid "Restore settings"
398
  msgstr ""
399
 
400
+ #: bws_functions.php:938
401
  msgid "Are you sure you want to restore all settings by default?"
402
  msgstr ""
403
 
404
+ #: bws_functions.php:941
405
  msgid "Yes, restore all settings"
406
  msgstr ""
407
 
408
+ #: bws_functions.php:942
409
  msgid "No, go back to the settings page"
410
  msgstr ""
411
 
412
  # @ bestwebsoft
413
+ #: bws_functions.php:986
414
  #, fuzzy
415
  msgid "Plugin"
416
  msgstr "Plugin Pro"
417
 
418
  # @ bestwebsoft
419
  # @ captcha
420
+ #: bws_functions.php:995
421
  #, fuzzy
422
  msgid "Shortcode settings"
423
  msgstr "Impostazioni"
424
 
425
+ #: bws_functions.php:1000
426
  msgid "The shortcode will be inserted"
427
  msgstr ""
428
 
429
+ #: bws_functions.php:1005
430
  msgid "Insert"
431
  msgstr ""
432
 
433
+ #: bws_functions.php:1036
434
+ msgid "Visit Help Center"
435
+ msgstr ""
436
+
437
+ # @ captcha
438
+ #: bws_functions.php:1041
439
+ msgid "FAQ"
440
+ msgstr "FAQ"
441
+
442
+ #: bws_functions.php:1047
443
+ msgid "For more information:"
444
+ msgstr ""
445
+
446
+ #: bws_functions.php:1048
447
+ msgid "Documentation"
448
+ msgstr ""
449
+
450
+ #: bws_functions.php:1049
451
+ msgid "Video Instructions"
452
+ msgstr ""
453
+
454
+ #: bws_functions.php:1050
455
+ msgid "Submit a Request"
456
+ msgstr ""
457
+
458
  # @ bestwebsoft
459
  #: bws_menu.php:506
460
  msgid "Not set"
893
  #~ msgid "Words"
894
  #~ msgstr "Parole"
895
  # @ captcha
 
 
 
896
  #~ msgid "Support"
897
  #~ msgstr "Supporto"
898
  # @ captcha
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-09-17 16:00+0300\n"
6
- "PO-Revision-Date: 2015-09-17 16:00+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,270 +16,278 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: bws_functions.php:29
20
- #: bws_functions.php:53
21
  #, fuzzy
22
  msgid "requires"
23
  msgstr "必須フィールド"
24
 
25
- #: bws_functions.php:31
26
  msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
27
  msgstr ""
28
 
29
- #: bws_functions.php:32
30
  msgid "Back to the WordPress"
31
  msgstr ""
32
 
33
- #: bws_functions.php:34
34
  #, fuzzy
35
  msgid "Plugins page"
36
  msgstr "Pro Plugins"
37
 
38
- #: bws_functions.php:55
39
  msgid "or higher! We do not guarantee that our plugin will work correctly. Please upgrade to WordPress latest version."
40
  msgstr ""
41
 
42
- #: bws_functions.php:112
43
  msgid "It’s time to upgrade your"
44
  msgstr ""
45
 
46
- #: bws_functions.php:112
47
  msgid "to"
48
  msgstr ""
49
 
50
- #: bws_functions.php:112
51
  #, fuzzy
52
  msgid "version!"
53
  msgstr "PHP バージョン"
54
 
55
- #: bws_functions.php:113
56
  msgid "Extend standard plugin functionality with new great options."
57
  msgstr ""
58
 
59
- #: bws_functions.php:116
60
- #: bws_functions.php:513
61
  #, fuzzy
62
  msgid "Learn More"
63
  msgstr "もっと読む"
64
 
65
- #: bws_functions.php:133
66
  msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
67
  msgstr ""
68
 
69
- #: bws_functions.php:134
70
  #, fuzzy
71
  msgid "Rate the plugin"
72
  msgstr "有効なプラグイン"
73
 
74
- #: bws_functions.php:137
75
  #, fuzzy
76
  msgid "If there is something wrong about it, please contact us"
77
  msgstr "もそご質問がある場合は、以下の方法でご連絡下さい:"
78
 
79
- #: bws_functions.php:154
80
- #: bws_functions.php:190
 
 
 
 
81
  msgid "Wrong license key"
82
  msgstr ""
83
 
84
- #: bws_functions.php:184
85
- #: bws_functions.php:426
86
- #: bws_functions.php:477
87
  msgid "Something went wrong. Please try again later. If the error appears again, please contact us"
88
  msgstr ""
89
 
90
- #: bws_functions.php:184
91
- #: bws_functions.php:426
92
- #: bws_functions.php:477
93
  msgid "We are sorry for inconvenience."
94
  msgstr ""
95
 
96
- #: bws_functions.php:192
97
  msgid "This license key is bind to another site"
98
  msgstr ""
99
 
100
- #: bws_functions.php:194
101
- #: bws_functions.php:336
102
  msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
103
  msgstr ""
104
 
105
- #: bws_functions.php:196
106
  msgid "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates you should extend it in your"
107
  msgstr ""
108
 
109
- #: bws_functions.php:198
110
  msgid "Unfortunately, the Pro licence was already installed to this domain. The Pro Trial license can be installed only once."
111
  msgstr ""
112
 
113
- #: bws_functions.php:219
114
- #: bws_functions.php:241
115
- #: bws_functions.php:263
116
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
117
  msgstr ""
118
 
119
- #: bws_functions.php:231
120
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
121
  msgstr ""
122
 
123
- #: bws_functions.php:237
124
  msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
125
  msgstr ""
126
 
127
- #: bws_functions.php:244
128
  msgid "UploadDir is not writable. Please, upload the plugin manually"
129
  msgstr ""
130
 
131
- #: bws_functions.php:267
132
  msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvenience."
133
  msgstr ""
134
 
135
- #: bws_functions.php:292
136
  #, fuzzy
137
  msgid "Please, enter Your license key"
138
  msgstr "メッセージを入力して下さい..."
139
 
140
- #: bws_functions.php:309
141
  msgid "Congratulations! The Pro version of the plugin is successfully download and activated."
142
  msgstr ""
143
 
144
- #: bws_functions.php:311
145
- #: bws_functions.php:393
146
  msgid "Please, go to"
147
  msgstr ""
148
 
149
- #: bws_functions.php:311
150
- #: bws_functions.php:393
151
  #, fuzzy
152
  msgid "the setting page"
153
  msgstr "追加設定"
154
 
155
- #: bws_functions.php:312
156
- #: bws_functions.php:394
157
  msgid "You will be redirected automatically in 5 seconds."
158
  msgstr ""
159
 
160
- #: bws_functions.php:317
 
 
 
 
161
  msgid "You can download and activate"
162
  msgstr ""
163
 
164
- #: bws_functions.php:319
165
  msgid "version of this plugin by entering Your license key."
166
  msgstr ""
167
 
168
- #: bws_functions.php:321
169
- #: bws_functions.php:362
170
  msgid "You can find your license key on your personal page Client area, by clicking on the link"
171
  msgstr ""
172
 
173
- #: bws_functions.php:323
174
- #: bws_functions.php:364
175
  msgid "(your username is the email you specify when purchasing the product)."
176
  msgstr ""
177
 
178
- #: bws_functions.php:327
179
- #: bws_functions.php:630
180
  msgid "or"
181
  msgstr "又は"
182
 
183
- #: bws_functions.php:327
184
  #, php-format
185
  msgid "Start Your Free %s-Day Trial Now"
186
  msgstr ""
187
 
188
- #: bws_functions.php:333
189
- #: bws_functions.php:342
190
- #: bws_functions.php:372
191
- #: bws_functions.php:380
192
  #: bws_menu.php:693
193
  #: bws_menu.php:750
194
  #, fuzzy
195
  msgid "Activate"
196
  msgstr "有効なcaptcha"
197
 
198
- #: bws_functions.php:359
199
- #: bws_functions.php:452
200
  #, php-format
201
  msgid "In order to continue using the plugin it is necessary to buy a %s license."
202
  msgstr ""
203
 
204
- #: bws_functions.php:360
205
  msgid "After that you can activate it by entering your license key."
206
  msgstr ""
207
 
208
- #: bws_functions.php:374
209
  msgid "Unfortunately, you have exceeded the number of available tries per day."
210
  msgstr ""
211
 
212
- #: bws_functions.php:391
213
  msgid "Congratulations! The Pro license of the plugin is successfully activated."
214
  msgstr ""
215
 
216
- #: bws_functions.php:432
217
  msgid "Wrong license key."
218
  msgstr ""
219
 
220
- #: bws_functions.php:434
221
  msgid "This license key is bind to another site."
222
  msgstr ""
223
 
224
- #: bws_functions.php:436
225
  msgid "This license key is valid, but Your license has expired. If you want to update our plugin in future, you should extend the license."
226
  msgstr ""
227
 
228
- #: bws_functions.php:438
229
  msgid "Unfortunately, you have exceeded the number of available tries."
230
  msgstr ""
231
 
232
- #: bws_functions.php:440
233
  msgid "Unfortunately, the Pro Trial licence was already installed to this domain. The Pro Trial license can be installed only once."
234
  msgstr ""
235
 
236
- #: bws_functions.php:444
237
  msgid "The Pro Trial license key is valid."
238
  msgstr ""
239
 
240
- #: bws_functions.php:446
241
  msgid "The license key is valid."
242
  msgstr ""
243
 
244
- #: bws_functions.php:449
245
  msgid "Your license will expire on"
246
  msgstr ""
247
 
248
- #: bws_functions.php:482
249
  #, fuzzy
250
  msgid "Please, enter your license key"
251
  msgstr "メッセージを入力して下さい..."
252
 
253
- #: bws_functions.php:495
254
  msgid "If needed you can check if the license key is correct or reenter it in the field below. You can find your license key on your personal page - Client area - on our website"
255
  msgstr ""
256
 
257
- #: bws_functions.php:495
258
  msgid "(your username is the email you specify when purchasing the product). If necessary, please submit \"Lost your password?\" request."
259
  msgstr ""
260
 
261
- #: bws_functions.php:499
262
  msgid "Check license key"
263
  msgstr ""
264
 
265
- #: bws_functions.php:513
266
  msgid "WARNING: Illegal use notification"
267
  msgstr ""
268
 
269
- #: bws_functions.php:513
270
  msgid "You can use one license of the Pro plugin for one domain only. Please check and edit your license or domain if necessary using you personal Client Area. We strongly recommend you to solve the problem within 24 hours, otherwise the Pro plugin will be deactivated."
271
  msgstr ""
272
 
273
- #: bws_functions.php:521
274
  msgid "Notice: Your Pro Trial license has expired. To continue using the plugin you should buy a Pro license"
275
  msgstr ""
276
 
277
- #: bws_functions.php:523
278
  msgid "Your license has expired. To continue getting top-priority support and plugin updates you should extend it."
279
  msgstr ""
280
 
281
- #: bws_functions.php:523
282
- #: bws_functions.php:576
283
  #: bws_menu.php:669
284
  #: bws_menu.php:691
285
  #: bws_menu.php:718
@@ -289,115 +297,153 @@ msgstr ""
289
  msgid "Learn more"
290
  msgstr "もっと読む"
291
 
292
- #: bws_functions.php:533
293
  #, php-format
294
  msgid "Notice: You are using the Pro Trial license of %s plugin."
295
  msgstr ""
296
 
297
- #: bws_functions.php:535
298
  msgid "Notice: You are using the Pro Trial license of plugin."
299
  msgstr ""
300
 
301
- #: bws_functions.php:538
302
  msgid "The Pro Trial license will expire on"
303
  msgstr ""
304
 
305
- #: bws_functions.php:576
306
  msgid "You license for"
307
  msgstr ""
308
 
309
- #: bws_functions.php:576
310
  msgid "expires on"
311
  msgstr ""
312
 
313
- #: bws_functions.php:576
314
  msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
315
  msgstr ""
316
 
317
- #: bws_functions.php:626
318
  #, fuzzy
319
  msgid "Thank you for installing"
320
  msgstr "ご連絡ありがとうございます"
321
 
322
- #: bws_functions.php:627
323
  msgid "Let's get started"
324
  msgstr ""
325
 
326
- #: bws_functions.php:628
327
  #, fuzzy
328
  msgid "Configure Settings"
329
  msgstr "コンタクトフォーム設定"
330
 
331
- #: bws_functions.php:631
332
  msgid "Add New"
333
  msgstr ""
334
 
335
- #: bws_functions.php:635
336
  msgid "Close notice"
337
  msgstr ""
338
 
339
- #: bws_functions.php:648
340
  msgid "Notice"
341
  msgstr ""
342
 
343
- #: bws_functions.php:648
344
  msgid "The plugin's settings have been changed."
345
  msgstr ""
346
 
347
- #: bws_functions.php:649
348
  msgid "Save Changes"
349
  msgstr "変更を保存"
350
 
351
- #: bws_functions.php:694
 
 
 
 
352
  #, fuzzy
353
  msgid "Add BWS Plugins Shortcode"
354
  msgstr "短いコードの利用"
355
 
356
- #: bws_functions.php:738
 
 
 
 
 
 
 
 
 
357
  msgid "Close"
358
  msgstr ""
359
 
360
- #: bws_functions.php:829
361
  msgid "Restore all plugin settings to defaults"
362
  msgstr ""
363
 
364
- #: bws_functions.php:831
365
  #, fuzzy
366
  msgid "Restore settings"
367
  msgstr "追加設定"
368
 
369
- #: bws_functions.php:842
370
  #, fuzzy
371
  msgid "Are you sure you want to restore all settings by default?"
372
  msgstr "本当に、この言語データを削除しますか?"
373
 
374
- #: bws_functions.php:845
375
  msgid "Yes, restore all settings"
376
  msgstr ""
377
 
378
- #: bws_functions.php:846
379
  #, fuzzy
380
  msgid "No, go back to the settings page"
381
  msgstr "追加設定"
382
 
383
- #: bws_functions.php:890
384
  #, fuzzy
385
  msgid "Plugin"
386
  msgstr "Pro Plugins"
387
 
388
- #: bws_functions.php:899
389
  #, fuzzy
390
  msgid "Shortcode settings"
391
  msgstr "追加設定"
392
 
393
- #: bws_functions.php:904
394
  msgid "The shortcode will be inserted"
395
  msgstr ""
396
 
397
- #: bws_functions.php:909
398
  msgid "Insert"
399
  msgstr ""
400
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
401
  #: bws_menu.php:506
402
  msgid "Not set"
403
  msgstr "未設定"
@@ -1104,9 +1150,6 @@ msgstr "カスタムEメールに送信&#187;"
1104
  #~ msgid "Border color"
1105
  #~ msgstr "罫線色"
1106
 
1107
- #~ msgid "Submit button"
1108
- #~ msgstr "送信ボタン"
1109
-
1110
  #~ msgid "Width in px, numbers only"
1111
  #~ msgstr "px単位の幅、数字のみ"
1112
 
@@ -1164,9 +1207,6 @@ msgstr "カスタムEメールに送信&#187;"
1164
  #~ msgstr ""
1165
  #~ "このMIMEを見ている場合は、貴方のクライアントはMIMEタイプを読めません。"
1166
 
1167
- #~ msgid "FAQ"
1168
- #~ msgstr "FAQ"
1169
-
1170
  #~ msgid "Support"
1171
  #~ msgstr "サポート"
1172
 
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-10-09 14:42+0300\n"
6
+ "PO-Revision-Date: 2015-10-09 14:42+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:39
20
+ #: bws_functions.php:63
21
  #, fuzzy
22
  msgid "requires"
23
  msgstr "必須フィールド"
24
 
25
+ #: bws_functions.php:41
26
  msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
27
  msgstr ""
28
 
29
+ #: bws_functions.php:42
30
  msgid "Back to the WordPress"
31
  msgstr ""
32
 
33
+ #: bws_functions.php:44
34
  #, fuzzy
35
  msgid "Plugins page"
36
  msgstr "Pro Plugins"
37
 
38
+ #: bws_functions.php:65
39
  msgid "or higher! We do not guarantee that our plugin will work correctly. Please upgrade to WordPress latest version."
40
  msgstr ""
41
 
42
+ #: bws_functions.php:122
43
  msgid "It’s time to upgrade your"
44
  msgstr ""
45
 
46
+ #: bws_functions.php:122
47
  msgid "to"
48
  msgstr ""
49
 
50
+ #: bws_functions.php:122
51
  #, fuzzy
52
  msgid "version!"
53
  msgstr "PHP バージョン"
54
 
55
+ #: bws_functions.php:123
56
  msgid "Extend standard plugin functionality with new great options."
57
  msgstr ""
58
 
59
+ #: bws_functions.php:126
60
+ #: bws_functions.php:561
61
  #, fuzzy
62
  msgid "Learn More"
63
  msgstr "もっと読む"
64
 
65
+ #: bws_functions.php:143
66
  msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
67
  msgstr ""
68
 
69
+ #: bws_functions.php:144
70
  #, fuzzy
71
  msgid "Rate the plugin"
72
  msgstr "有効なプラグイン"
73
 
74
+ #: bws_functions.php:147
75
  #, fuzzy
76
  msgid "If there is something wrong about it, please contact us"
77
  msgstr "もそご質問がある場合は、以下の方法でご連絡下さい:"
78
 
79
+ #: bws_functions.php:179
80
+ msgid "Check premium options on the plugin settings page!"
81
+ msgstr ""
82
+
83
+ #: bws_functions.php:186
84
+ #: bws_functions.php:222
85
  msgid "Wrong license key"
86
  msgstr ""
87
 
88
+ #: bws_functions.php:216
89
+ #: bws_functions.php:474
90
+ #: bws_functions.php:525
91
  msgid "Something went wrong. Please try again later. If the error appears again, please contact us"
92
  msgstr ""
93
 
94
+ #: bws_functions.php:216
95
+ #: bws_functions.php:474
96
+ #: bws_functions.php:525
97
  msgid "We are sorry for inconvenience."
98
  msgstr ""
99
 
100
+ #: bws_functions.php:224
101
  msgid "This license key is bind to another site"
102
  msgstr ""
103
 
104
+ #: bws_functions.php:226
105
+ #: bws_functions.php:384
106
  msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
107
  msgstr ""
108
 
109
+ #: bws_functions.php:228
110
  msgid "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates you should extend it in your"
111
  msgstr ""
112
 
113
+ #: bws_functions.php:230
114
  msgid "Unfortunately, the Pro licence was already installed to this domain. The Pro Trial license can be installed only once."
115
  msgstr ""
116
 
117
+ #: bws_functions.php:251
118
+ #: bws_functions.php:273
119
+ #: bws_functions.php:295
120
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
121
  msgstr ""
122
 
123
+ #: bws_functions.php:263
124
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
125
  msgstr ""
126
 
127
+ #: bws_functions.php:269
128
  msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
129
  msgstr ""
130
 
131
+ #: bws_functions.php:276
132
  msgid "UploadDir is not writable. Please, upload the plugin manually"
133
  msgstr ""
134
 
135
+ #: bws_functions.php:299
136
  msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvenience."
137
  msgstr ""
138
 
139
+ #: bws_functions.php:324
140
  #, fuzzy
141
  msgid "Please, enter Your license key"
142
  msgstr "メッセージを入力して下さい..."
143
 
144
+ #: bws_functions.php:348
145
  msgid "Congratulations! The Pro version of the plugin is successfully download and activated."
146
  msgstr ""
147
 
148
+ #: bws_functions.php:350
149
+ #: bws_functions.php:441
150
  msgid "Please, go to"
151
  msgstr ""
152
 
153
+ #: bws_functions.php:350
154
+ #: bws_functions.php:441
155
  #, fuzzy
156
  msgid "the setting page"
157
  msgstr "追加設定"
158
 
159
+ #: bws_functions.php:351
160
+ #: bws_functions.php:442
161
  msgid "You will be redirected automatically in 5 seconds."
162
  msgstr ""
163
 
164
+ #: bws_functions.php:358
165
+ msgid "Show Pro features"
166
+ msgstr ""
167
+
168
+ #: bws_functions.php:365
169
  msgid "You can download and activate"
170
  msgstr ""
171
 
172
+ #: bws_functions.php:367
173
  msgid "version of this plugin by entering Your license key."
174
  msgstr ""
175
 
176
+ #: bws_functions.php:369
177
+ #: bws_functions.php:410
178
  msgid "You can find your license key on your personal page Client area, by clicking on the link"
179
  msgstr ""
180
 
181
+ #: bws_functions.php:371
182
+ #: bws_functions.php:412
183
  msgid "(your username is the email you specify when purchasing the product)."
184
  msgstr ""
185
 
186
+ #: bws_functions.php:375
187
+ #: bws_functions.php:659
188
  msgid "or"
189
  msgstr "又は"
190
 
191
+ #: bws_functions.php:375
192
  #, php-format
193
  msgid "Start Your Free %s-Day Trial Now"
194
  msgstr ""
195
 
196
+ #: bws_functions.php:381
197
+ #: bws_functions.php:390
198
+ #: bws_functions.php:420
199
+ #: bws_functions.php:428
200
  #: bws_menu.php:693
201
  #: bws_menu.php:750
202
  #, fuzzy
203
  msgid "Activate"
204
  msgstr "有効なcaptcha"
205
 
206
+ #: bws_functions.php:407
207
+ #: bws_functions.php:500
208
  #, php-format
209
  msgid "In order to continue using the plugin it is necessary to buy a %s license."
210
  msgstr ""
211
 
212
+ #: bws_functions.php:408
213
  msgid "After that you can activate it by entering your license key."
214
  msgstr ""
215
 
216
+ #: bws_functions.php:422
217
  msgid "Unfortunately, you have exceeded the number of available tries per day."
218
  msgstr ""
219
 
220
+ #: bws_functions.php:439
221
  msgid "Congratulations! The Pro license of the plugin is successfully activated."
222
  msgstr ""
223
 
224
+ #: bws_functions.php:480
225
  msgid "Wrong license key."
226
  msgstr ""
227
 
228
+ #: bws_functions.php:482
229
  msgid "This license key is bind to another site."
230
  msgstr ""
231
 
232
+ #: bws_functions.php:484
233
  msgid "This license key is valid, but Your license has expired. If you want to update our plugin in future, you should extend the license."
234
  msgstr ""
235
 
236
+ #: bws_functions.php:486
237
  msgid "Unfortunately, you have exceeded the number of available tries."
238
  msgstr ""
239
 
240
+ #: bws_functions.php:488
241
  msgid "Unfortunately, the Pro Trial licence was already installed to this domain. The Pro Trial license can be installed only once."
242
  msgstr ""
243
 
244
+ #: bws_functions.php:492
245
  msgid "The Pro Trial license key is valid."
246
  msgstr ""
247
 
248
+ #: bws_functions.php:494
249
  msgid "The license key is valid."
250
  msgstr ""
251
 
252
+ #: bws_functions.php:497
253
  msgid "Your license will expire on"
254
  msgstr ""
255
 
256
+ #: bws_functions.php:530
257
  #, fuzzy
258
  msgid "Please, enter your license key"
259
  msgstr "メッセージを入力して下さい..."
260
 
261
+ #: bws_functions.php:543
262
  msgid "If needed you can check if the license key is correct or reenter it in the field below. You can find your license key on your personal page - Client area - on our website"
263
  msgstr ""
264
 
265
+ #: bws_functions.php:543
266
  msgid "(your username is the email you specify when purchasing the product). If necessary, please submit \"Lost your password?\" request."
267
  msgstr ""
268
 
269
+ #: bws_functions.php:547
270
  msgid "Check license key"
271
  msgstr ""
272
 
273
+ #: bws_functions.php:561
274
  msgid "WARNING: Illegal use notification"
275
  msgstr ""
276
 
277
+ #: bws_functions.php:561
278
  msgid "You can use one license of the Pro plugin for one domain only. Please check and edit your license or domain if necessary using you personal Client Area. We strongly recommend you to solve the problem within 24 hours, otherwise the Pro plugin will be deactivated."
279
  msgstr ""
280
 
281
+ #: bws_functions.php:569
282
  msgid "Notice: Your Pro Trial license has expired. To continue using the plugin you should buy a Pro license"
283
  msgstr ""
284
 
285
+ #: bws_functions.php:571
286
  msgid "Your license has expired. To continue getting top-priority support and plugin updates you should extend it."
287
  msgstr ""
288
 
289
+ #: bws_functions.php:571
290
+ #: bws_functions.php:624
291
  #: bws_menu.php:669
292
  #: bws_menu.php:691
293
  #: bws_menu.php:718
297
  msgid "Learn more"
298
  msgstr "もっと読む"
299
 
300
+ #: bws_functions.php:581
301
  #, php-format
302
  msgid "Notice: You are using the Pro Trial license of %s plugin."
303
  msgstr ""
304
 
305
+ #: bws_functions.php:583
306
  msgid "Notice: You are using the Pro Trial license of plugin."
307
  msgstr ""
308
 
309
+ #: bws_functions.php:586
310
  msgid "The Pro Trial license will expire on"
311
  msgstr ""
312
 
313
+ #: bws_functions.php:624
314
  msgid "You license for"
315
  msgstr ""
316
 
317
+ #: bws_functions.php:624
318
  msgid "expires on"
319
  msgstr ""
320
 
321
+ #: bws_functions.php:624
322
  msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
323
  msgstr ""
324
 
325
+ #: bws_functions.php:655
326
  #, fuzzy
327
  msgid "Thank you for installing"
328
  msgstr "ご連絡ありがとうございます"
329
 
330
+ #: bws_functions.php:656
331
  msgid "Let's get started"
332
  msgstr ""
333
 
334
+ #: bws_functions.php:657
335
  #, fuzzy
336
  msgid "Configure Settings"
337
  msgstr "コンタクトフォーム設定"
338
 
339
+ #: bws_functions.php:660
340
  msgid "Add New"
341
  msgstr ""
342
 
343
+ #: bws_functions.php:664
344
  msgid "Close notice"
345
  msgstr ""
346
 
347
+ #: bws_functions.php:677
348
  msgid "Notice"
349
  msgstr ""
350
 
351
+ #: bws_functions.php:677
352
  msgid "The plugin's settings have been changed."
353
  msgstr ""
354
 
355
+ #: bws_functions.php:678
356
  msgid "Save Changes"
357
  msgstr "変更を保存"
358
 
359
+ #: bws_functions.php:693
360
+ msgid "You can always look at premium options by clicking on the \"Show Pro features\" in the \"Go PRO\" tab"
361
+ msgstr ""
362
+
363
+ #: bws_functions.php:773
364
  #, fuzzy
365
  msgid "Add BWS Plugins Shortcode"
366
  msgstr "短いコードの利用"
367
 
368
+ #: bws_functions.php:793
369
+ #, fuzzy
370
+ msgid "Add shortcode"
371
+ msgstr "短いコードの利用"
372
+
373
+ #: bws_functions.php:793
374
+ msgid "Add BestWebSoft plugins' shortcodes using this button."
375
+ msgstr ""
376
+
377
+ #: bws_functions.php:833
378
  msgid "Close"
379
  msgstr ""
380
 
381
+ #: bws_functions.php:925
382
  msgid "Restore all plugin settings to defaults"
383
  msgstr ""
384
 
385
+ #: bws_functions.php:927
386
  #, fuzzy
387
  msgid "Restore settings"
388
  msgstr "追加設定"
389
 
390
+ #: bws_functions.php:938
391
  #, fuzzy
392
  msgid "Are you sure you want to restore all settings by default?"
393
  msgstr "本当に、この言語データを削除しますか?"
394
 
395
+ #: bws_functions.php:941
396
  msgid "Yes, restore all settings"
397
  msgstr ""
398
 
399
+ #: bws_functions.php:942
400
  #, fuzzy
401
  msgid "No, go back to the settings page"
402
  msgstr "追加設定"
403
 
404
+ #: bws_functions.php:986
405
  #, fuzzy
406
  msgid "Plugin"
407
  msgstr "Pro Plugins"
408
 
409
+ #: bws_functions.php:995
410
  #, fuzzy
411
  msgid "Shortcode settings"
412
  msgstr "追加設定"
413
 
414
+ #: bws_functions.php:1000
415
  msgid "The shortcode will be inserted"
416
  msgstr ""
417
 
418
+ #: bws_functions.php:1005
419
  msgid "Insert"
420
  msgstr ""
421
 
422
+ #: bws_functions.php:1036
423
+ msgid "Visit Help Center"
424
+ msgstr ""
425
+
426
+ #: bws_functions.php:1041
427
+ msgid "FAQ"
428
+ msgstr "FAQ"
429
+
430
+ #: bws_functions.php:1047
431
+ msgid "For more information:"
432
+ msgstr ""
433
+
434
+ #: bws_functions.php:1048
435
+ msgid "Documentation"
436
+ msgstr ""
437
+
438
+ #: bws_functions.php:1049
439
+ msgid "Video Instructions"
440
+ msgstr ""
441
+
442
+ #: bws_functions.php:1050
443
+ #, fuzzy
444
+ msgid "Submit a Request"
445
+ msgstr "送信ボタン"
446
+
447
  #: bws_menu.php:506
448
  msgid "Not set"
449
  msgstr "未設定"
1150
  #~ msgid "Border color"
1151
  #~ msgstr "罫線色"
1152
 
 
 
 
1153
  #~ msgid "Width in px, numbers only"
1154
  #~ msgstr "px単位の幅、数字のみ"
1155
 
1207
  #~ msgstr ""
1208
  #~ "このMIMEを見ている場合は、貴方のクライアントはMIMEタイプを読めません。"
1209
 
 
 
 
1210
  #~ msgid "Support"
1211
  #~ msgstr "サポート"
1212
 
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-09-17 16:00+0300\n"
6
- "PO-Revision-Date: 2015-09-17 16:00+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,273 +18,281 @@ msgstr ""
18
  "X-Textdomain-Support: yes\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
- #: bws_functions.php:29
22
- #: bws_functions.php:53
23
  msgid "requires"
24
  msgstr ""
25
 
26
- #: bws_functions.php:31
27
  msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
28
  msgstr ""
29
 
30
- #: bws_functions.php:32
31
  msgid "Back to the WordPress"
32
  msgstr ""
33
 
34
  # @ captcha
35
- #: bws_functions.php:34
36
  #, fuzzy
37
  msgid "Plugins page"
38
  msgstr "Plugins Pro"
39
 
40
- #: bws_functions.php:55
41
  msgid "or higher! We do not guarantee that our plugin will work correctly. Please upgrade to WordPress latest version."
42
  msgstr ""
43
 
44
- #: bws_functions.php:112
45
  msgid "It’s time to upgrade your"
46
  msgstr ""
47
 
48
- #: bws_functions.php:112
49
  msgid "to"
50
  msgstr ""
51
 
52
  # @ captcha
53
- #: bws_functions.php:112
54
  #, fuzzy
55
  msgid "version!"
56
  msgstr "Versão do PHP"
57
 
58
- #: bws_functions.php:113
59
  msgid "Extend standard plugin functionality with new great options."
60
  msgstr ""
61
 
62
  # @ captcha
63
- #: bws_functions.php:116
64
- #: bws_functions.php:513
65
  #, fuzzy
66
  msgid "Learn More"
67
  msgstr "Leia Mais"
68
 
69
- #: bws_functions.php:133
70
  msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
71
  msgstr ""
72
 
73
  # @ captcha
74
- #: bws_functions.php:134
75
  #, fuzzy
76
  msgid "Rate the plugin"
77
  msgstr "Plugins ativados"
78
 
79
  # @ captcha
80
- #: bws_functions.php:137
81
  #, fuzzy
82
  msgid "If there is something wrong about it, please contact us"
83
  msgstr "Se você tiver quaisquer perguntas, por favor entre em contato via"
84
 
85
- #: bws_functions.php:154
86
- #: bws_functions.php:190
 
 
 
 
87
  msgid "Wrong license key"
88
  msgstr ""
89
 
90
- #: bws_functions.php:184
91
- #: bws_functions.php:426
92
- #: bws_functions.php:477
93
  msgid "Something went wrong. Please try again later. If the error appears again, please contact us"
94
  msgstr ""
95
 
96
- #: bws_functions.php:184
97
- #: bws_functions.php:426
98
- #: bws_functions.php:477
99
  msgid "We are sorry for inconvenience."
100
  msgstr ""
101
 
102
- #: bws_functions.php:192
103
  msgid "This license key is bind to another site"
104
  msgstr ""
105
 
106
- #: bws_functions.php:194
107
- #: bws_functions.php:336
108
  msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
109
  msgstr ""
110
 
111
- #: bws_functions.php:196
112
  msgid "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates you should extend it in your"
113
  msgstr ""
114
 
115
- #: bws_functions.php:198
116
  msgid "Unfortunately, the Pro licence was already installed to this domain. The Pro Trial license can be installed only once."
117
  msgstr ""
118
 
119
- #: bws_functions.php:219
120
- #: bws_functions.php:241
121
- #: bws_functions.php:263
122
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
123
  msgstr ""
124
 
125
- #: bws_functions.php:231
126
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
127
  msgstr ""
128
 
129
- #: bws_functions.php:237
130
  msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
131
  msgstr ""
132
 
133
- #: bws_functions.php:244
134
  msgid "UploadDir is not writable. Please, upload the plugin manually"
135
  msgstr ""
136
 
137
- #: bws_functions.php:267
138
  msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvenience."
139
  msgstr ""
140
 
141
- #: bws_functions.php:292
142
  msgid "Please, enter Your license key"
143
  msgstr ""
144
 
145
- #: bws_functions.php:309
146
  msgid "Congratulations! The Pro version of the plugin is successfully download and activated."
147
  msgstr ""
148
 
149
- #: bws_functions.php:311
150
- #: bws_functions.php:393
151
  msgid "Please, go to"
152
  msgstr ""
153
 
154
- #: bws_functions.php:311
155
- #: bws_functions.php:393
156
  msgid "the setting page"
157
  msgstr ""
158
 
159
- #: bws_functions.php:312
160
- #: bws_functions.php:394
161
  msgid "You will be redirected automatically in 5 seconds."
162
  msgstr ""
163
 
164
- #: bws_functions.php:317
 
 
 
 
165
  msgid "You can download and activate"
166
  msgstr ""
167
 
168
- #: bws_functions.php:319
169
  msgid "version of this plugin by entering Your license key."
170
  msgstr ""
171
 
172
- #: bws_functions.php:321
173
- #: bws_functions.php:362
174
  msgid "You can find your license key on your personal page Client area, by clicking on the link"
175
  msgstr ""
176
 
177
- #: bws_functions.php:323
178
- #: bws_functions.php:364
179
  msgid "(your username is the email you specify when purchasing the product)."
180
  msgstr ""
181
 
182
- #: bws_functions.php:327
183
- #: bws_functions.php:630
184
  msgid "or"
185
  msgstr ""
186
 
187
- #: bws_functions.php:327
188
  #, php-format
189
  msgid "Start Your Free %s-Day Trial Now"
190
  msgstr ""
191
 
192
  # @ captcha
193
- #: bws_functions.php:333
194
- #: bws_functions.php:342
195
- #: bws_functions.php:372
196
- #: bws_functions.php:380
197
  #: bws_menu.php:693
198
  #: bws_menu.php:750
199
  #, fuzzy
200
  msgid "Activate"
201
  msgstr "Plugins ativados"
202
 
203
- #: bws_functions.php:359
204
- #: bws_functions.php:452
205
  #, php-format
206
  msgid "In order to continue using the plugin it is necessary to buy a %s license."
207
  msgstr ""
208
 
209
- #: bws_functions.php:360
210
  msgid "After that you can activate it by entering your license key."
211
  msgstr ""
212
 
213
- #: bws_functions.php:374
214
  msgid "Unfortunately, you have exceeded the number of available tries per day."
215
  msgstr ""
216
 
217
- #: bws_functions.php:391
218
  msgid "Congratulations! The Pro license of the plugin is successfully activated."
219
  msgstr ""
220
 
221
- #: bws_functions.php:432
222
  msgid "Wrong license key."
223
  msgstr ""
224
 
225
- #: bws_functions.php:434
226
  msgid "This license key is bind to another site."
227
  msgstr ""
228
 
229
- #: bws_functions.php:436
230
  msgid "This license key is valid, but Your license has expired. If you want to update our plugin in future, you should extend the license."
231
  msgstr ""
232
 
233
- #: bws_functions.php:438
234
  msgid "Unfortunately, you have exceeded the number of available tries."
235
  msgstr ""
236
 
237
- #: bws_functions.php:440
238
  msgid "Unfortunately, the Pro Trial licence was already installed to this domain. The Pro Trial license can be installed only once."
239
  msgstr ""
240
 
241
- #: bws_functions.php:444
242
  msgid "The Pro Trial license key is valid."
243
  msgstr ""
244
 
245
- #: bws_functions.php:446
246
  msgid "The license key is valid."
247
  msgstr ""
248
 
249
- #: bws_functions.php:449
250
  msgid "Your license will expire on"
251
  msgstr ""
252
 
253
- #: bws_functions.php:482
254
  msgid "Please, enter your license key"
255
  msgstr ""
256
 
257
- #: bws_functions.php:495
258
  msgid "If needed you can check if the license key is correct or reenter it in the field below. You can find your license key on your personal page - Client area - on our website"
259
  msgstr ""
260
 
261
- #: bws_functions.php:495
262
  msgid "(your username is the email you specify when purchasing the product). If necessary, please submit \"Lost your password?\" request."
263
  msgstr ""
264
 
265
- #: bws_functions.php:499
266
  msgid "Check license key"
267
  msgstr ""
268
 
269
- #: bws_functions.php:513
270
  msgid "WARNING: Illegal use notification"
271
  msgstr ""
272
 
273
- #: bws_functions.php:513
274
  msgid "You can use one license of the Pro plugin for one domain only. Please check and edit your license or domain if necessary using you personal Client Area. We strongly recommend you to solve the problem within 24 hours, otherwise the Pro plugin will be deactivated."
275
  msgstr ""
276
 
277
- #: bws_functions.php:521
278
  msgid "Notice: Your Pro Trial license has expired. To continue using the plugin you should buy a Pro license"
279
  msgstr ""
280
 
281
- #: bws_functions.php:523
282
  msgid "Your license has expired. To continue getting top-priority support and plugin updates you should extend it."
283
  msgstr ""
284
 
285
  # @ captcha
286
- #: bws_functions.php:523
287
- #: bws_functions.php:576
288
  #: bws_menu.php:669
289
  #: bws_menu.php:691
290
  #: bws_menu.php:718
@@ -294,115 +302,151 @@ msgstr ""
294
  msgid "Learn more"
295
  msgstr "Leia Mais"
296
 
297
- #: bws_functions.php:533
298
  #, php-format
299
  msgid "Notice: You are using the Pro Trial license of %s plugin."
300
  msgstr ""
301
 
302
- #: bws_functions.php:535
303
  msgid "Notice: You are using the Pro Trial license of plugin."
304
  msgstr ""
305
 
306
- #: bws_functions.php:538
307
  msgid "The Pro Trial license will expire on"
308
  msgstr ""
309
 
310
- #: bws_functions.php:576
311
  msgid "You license for"
312
  msgstr ""
313
 
314
- #: bws_functions.php:576
315
  msgid "expires on"
316
  msgstr ""
317
 
318
- #: bws_functions.php:576
319
  msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
320
  msgstr ""
321
 
322
  # @ captcha
323
- #: bws_functions.php:626
324
  #, fuzzy
325
  msgid "Thank you for installing"
326
  msgstr "Obrigado por nos contatar."
327
 
328
- #: bws_functions.php:627
329
  msgid "Let's get started"
330
  msgstr ""
331
 
332
  # @ captcha
333
- #: bws_functions.php:628
334
  #, fuzzy
335
  msgid "Configure Settings"
336
  msgstr "Configurações"
337
 
338
- #: bws_functions.php:631
339
  msgid "Add New"
340
  msgstr ""
341
 
342
- #: bws_functions.php:635
343
  msgid "Close notice"
344
  msgstr ""
345
 
346
- #: bws_functions.php:648
347
  msgid "Notice"
348
  msgstr ""
349
 
350
- #: bws_functions.php:648
351
  msgid "The plugin's settings have been changed."
352
  msgstr ""
353
 
354
- #: bws_functions.php:649
355
  msgid "Save Changes"
356
  msgstr ""
357
 
358
- #: bws_functions.php:694
 
 
 
 
359
  msgid "Add BWS Plugins Shortcode"
360
  msgstr ""
361
 
362
- #: bws_functions.php:738
 
 
 
 
 
 
 
 
363
  msgid "Close"
364
  msgstr ""
365
 
366
- #: bws_functions.php:829
367
  msgid "Restore all plugin settings to defaults"
368
  msgstr ""
369
 
370
- #: bws_functions.php:831
371
  msgid "Restore settings"
372
  msgstr ""
373
 
374
- #: bws_functions.php:842
375
  msgid "Are you sure you want to restore all settings by default?"
376
  msgstr ""
377
 
378
- #: bws_functions.php:845
379
  msgid "Yes, restore all settings"
380
  msgstr ""
381
 
382
- #: bws_functions.php:846
383
  msgid "No, go back to the settings page"
384
  msgstr ""
385
 
386
  # @ captcha
387
- #: bws_functions.php:890
388
  #, fuzzy
389
  msgid "Plugin"
390
  msgstr "Plugins Pro"
391
 
392
  # @ captcha
393
- #: bws_functions.php:899
394
  #, fuzzy
395
  msgid "Shortcode settings"
396
  msgstr "Configurações"
397
 
398
- #: bws_functions.php:904
399
  msgid "The shortcode will be inserted"
400
  msgstr ""
401
 
402
- #: bws_functions.php:909
403
  msgid "Insert"
404
  msgstr ""
405
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
406
  # @ captcha
407
  #: bws_menu.php:506
408
  msgid "Not set"
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-10-09 14:42+0300\n"
6
+ "PO-Revision-Date: 2015-10-09 14:42+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:39
22
+ #: bws_functions.php:63
23
  msgid "requires"
24
  msgstr ""
25
 
26
+ #: bws_functions.php:41
27
  msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
28
  msgstr ""
29
 
30
+ #: bws_functions.php:42
31
  msgid "Back to the WordPress"
32
  msgstr ""
33
 
34
  # @ captcha
35
+ #: bws_functions.php:44
36
  #, fuzzy
37
  msgid "Plugins page"
38
  msgstr "Plugins Pro"
39
 
40
+ #: bws_functions.php:65
41
  msgid "or higher! We do not guarantee that our plugin will work correctly. Please upgrade to WordPress latest version."
42
  msgstr ""
43
 
44
+ #: bws_functions.php:122
45
  msgid "It’s time to upgrade your"
46
  msgstr ""
47
 
48
+ #: bws_functions.php:122
49
  msgid "to"
50
  msgstr ""
51
 
52
  # @ captcha
53
+ #: bws_functions.php:122
54
  #, fuzzy
55
  msgid "version!"
56
  msgstr "Versão do PHP"
57
 
58
+ #: bws_functions.php:123
59
  msgid "Extend standard plugin functionality with new great options."
60
  msgstr ""
61
 
62
  # @ captcha
63
+ #: bws_functions.php:126
64
+ #: bws_functions.php:561
65
  #, fuzzy
66
  msgid "Learn More"
67
  msgstr "Leia Mais"
68
 
69
+ #: bws_functions.php:143
70
  msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
71
  msgstr ""
72
 
73
  # @ captcha
74
+ #: bws_functions.php:144
75
  #, fuzzy
76
  msgid "Rate the plugin"
77
  msgstr "Plugins ativados"
78
 
79
  # @ captcha
80
+ #: bws_functions.php:147
81
  #, fuzzy
82
  msgid "If there is something wrong about it, please contact us"
83
  msgstr "Se você tiver quaisquer perguntas, por favor entre em contato via"
84
 
85
+ #: bws_functions.php:179
86
+ msgid "Check premium options on the plugin settings page!"
87
+ msgstr ""
88
+
89
+ #: bws_functions.php:186
90
+ #: bws_functions.php:222
91
  msgid "Wrong license key"
92
  msgstr ""
93
 
94
+ #: bws_functions.php:216
95
+ #: bws_functions.php:474
96
+ #: bws_functions.php:525
97
  msgid "Something went wrong. Please try again later. If the error appears again, please contact us"
98
  msgstr ""
99
 
100
+ #: bws_functions.php:216
101
+ #: bws_functions.php:474
102
+ #: bws_functions.php:525
103
  msgid "We are sorry for inconvenience."
104
  msgstr ""
105
 
106
+ #: bws_functions.php:224
107
  msgid "This license key is bind to another site"
108
  msgstr ""
109
 
110
+ #: bws_functions.php:226
111
+ #: bws_functions.php:384
112
  msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
113
  msgstr ""
114
 
115
+ #: bws_functions.php:228
116
  msgid "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates you should extend it in your"
117
  msgstr ""
118
 
119
+ #: bws_functions.php:230
120
  msgid "Unfortunately, the Pro licence was already installed to this domain. The Pro Trial license can be installed only once."
121
  msgstr ""
122
 
123
+ #: bws_functions.php:251
124
+ #: bws_functions.php:273
125
+ #: bws_functions.php:295
126
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
127
  msgstr ""
128
 
129
+ #: bws_functions.php:263
130
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
131
  msgstr ""
132
 
133
+ #: bws_functions.php:269
134
  msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
135
  msgstr ""
136
 
137
+ #: bws_functions.php:276
138
  msgid "UploadDir is not writable. Please, upload the plugin manually"
139
  msgstr ""
140
 
141
+ #: bws_functions.php:299
142
  msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvenience."
143
  msgstr ""
144
 
145
+ #: bws_functions.php:324
146
  msgid "Please, enter Your license key"
147
  msgstr ""
148
 
149
+ #: bws_functions.php:348
150
  msgid "Congratulations! The Pro version of the plugin is successfully download and activated."
151
  msgstr ""
152
 
153
+ #: bws_functions.php:350
154
+ #: bws_functions.php:441
155
  msgid "Please, go to"
156
  msgstr ""
157
 
158
+ #: bws_functions.php:350
159
+ #: bws_functions.php:441
160
  msgid "the setting page"
161
  msgstr ""
162
 
163
+ #: bws_functions.php:351
164
+ #: bws_functions.php:442
165
  msgid "You will be redirected automatically in 5 seconds."
166
  msgstr ""
167
 
168
+ #: bws_functions.php:358
169
+ msgid "Show Pro features"
170
+ msgstr ""
171
+
172
+ #: bws_functions.php:365
173
  msgid "You can download and activate"
174
  msgstr ""
175
 
176
+ #: bws_functions.php:367
177
  msgid "version of this plugin by entering Your license key."
178
  msgstr ""
179
 
180
+ #: bws_functions.php:369
181
+ #: bws_functions.php:410
182
  msgid "You can find your license key on your personal page Client area, by clicking on the link"
183
  msgstr ""
184
 
185
+ #: bws_functions.php:371
186
+ #: bws_functions.php:412
187
  msgid "(your username is the email you specify when purchasing the product)."
188
  msgstr ""
189
 
190
+ #: bws_functions.php:375
191
+ #: bws_functions.php:659
192
  msgid "or"
193
  msgstr ""
194
 
195
+ #: bws_functions.php:375
196
  #, php-format
197
  msgid "Start Your Free %s-Day Trial Now"
198
  msgstr ""
199
 
200
  # @ captcha
201
+ #: bws_functions.php:381
202
+ #: bws_functions.php:390
203
+ #: bws_functions.php:420
204
+ #: bws_functions.php:428
205
  #: bws_menu.php:693
206
  #: bws_menu.php:750
207
  #, fuzzy
208
  msgid "Activate"
209
  msgstr "Plugins ativados"
210
 
211
+ #: bws_functions.php:407
212
+ #: bws_functions.php:500
213
  #, php-format
214
  msgid "In order to continue using the plugin it is necessary to buy a %s license."
215
  msgstr ""
216
 
217
+ #: bws_functions.php:408
218
  msgid "After that you can activate it by entering your license key."
219
  msgstr ""
220
 
221
+ #: bws_functions.php:422
222
  msgid "Unfortunately, you have exceeded the number of available tries per day."
223
  msgstr ""
224
 
225
+ #: bws_functions.php:439
226
  msgid "Congratulations! The Pro license of the plugin is successfully activated."
227
  msgstr ""
228
 
229
+ #: bws_functions.php:480
230
  msgid "Wrong license key."
231
  msgstr ""
232
 
233
+ #: bws_functions.php:482
234
  msgid "This license key is bind to another site."
235
  msgstr ""
236
 
237
+ #: bws_functions.php:484
238
  msgid "This license key is valid, but Your license has expired. If you want to update our plugin in future, you should extend the license."
239
  msgstr ""
240
 
241
+ #: bws_functions.php:486
242
  msgid "Unfortunately, you have exceeded the number of available tries."
243
  msgstr ""
244
 
245
+ #: bws_functions.php:488
246
  msgid "Unfortunately, the Pro Trial licence was already installed to this domain. The Pro Trial license can be installed only once."
247
  msgstr ""
248
 
249
+ #: bws_functions.php:492
250
  msgid "The Pro Trial license key is valid."
251
  msgstr ""
252
 
253
+ #: bws_functions.php:494
254
  msgid "The license key is valid."
255
  msgstr ""
256
 
257
+ #: bws_functions.php:497
258
  msgid "Your license will expire on"
259
  msgstr ""
260
 
261
+ #: bws_functions.php:530
262
  msgid "Please, enter your license key"
263
  msgstr ""
264
 
265
+ #: bws_functions.php:543
266
  msgid "If needed you can check if the license key is correct or reenter it in the field below. You can find your license key on your personal page - Client area - on our website"
267
  msgstr ""
268
 
269
+ #: bws_functions.php:543
270
  msgid "(your username is the email you specify when purchasing the product). If necessary, please submit \"Lost your password?\" request."
271
  msgstr ""
272
 
273
+ #: bws_functions.php:547
274
  msgid "Check license key"
275
  msgstr ""
276
 
277
+ #: bws_functions.php:561
278
  msgid "WARNING: Illegal use notification"
279
  msgstr ""
280
 
281
+ #: bws_functions.php:561
282
  msgid "You can use one license of the Pro plugin for one domain only. Please check and edit your license or domain if necessary using you personal Client Area. We strongly recommend you to solve the problem within 24 hours, otherwise the Pro plugin will be deactivated."
283
  msgstr ""
284
 
285
+ #: bws_functions.php:569
286
  msgid "Notice: Your Pro Trial license has expired. To continue using the plugin you should buy a Pro license"
287
  msgstr ""
288
 
289
+ #: bws_functions.php:571
290
  msgid "Your license has expired. To continue getting top-priority support and plugin updates you should extend it."
291
  msgstr ""
292
 
293
  # @ captcha
294
+ #: bws_functions.php:571
295
+ #: bws_functions.php:624
296
  #: bws_menu.php:669
297
  #: bws_menu.php:691
298
  #: bws_menu.php:718
302
  msgid "Learn more"
303
  msgstr "Leia Mais"
304
 
305
+ #: bws_functions.php:581
306
  #, php-format
307
  msgid "Notice: You are using the Pro Trial license of %s plugin."
308
  msgstr ""
309
 
310
+ #: bws_functions.php:583
311
  msgid "Notice: You are using the Pro Trial license of plugin."
312
  msgstr ""
313
 
314
+ #: bws_functions.php:586
315
  msgid "The Pro Trial license will expire on"
316
  msgstr ""
317
 
318
+ #: bws_functions.php:624
319
  msgid "You license for"
320
  msgstr ""
321
 
322
+ #: bws_functions.php:624
323
  msgid "expires on"
324
  msgstr ""
325
 
326
+ #: bws_functions.php:624
327
  msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
328
  msgstr ""
329
 
330
  # @ captcha
331
+ #: bws_functions.php:655
332
  #, fuzzy
333
  msgid "Thank you for installing"
334
  msgstr "Obrigado por nos contatar."
335
 
336
+ #: bws_functions.php:656
337
  msgid "Let's get started"
338
  msgstr ""
339
 
340
  # @ captcha
341
+ #: bws_functions.php:657
342
  #, fuzzy
343
  msgid "Configure Settings"
344
  msgstr "Configurações"
345
 
346
+ #: bws_functions.php:660
347
  msgid "Add New"
348
  msgstr ""
349
 
350
+ #: bws_functions.php:664
351
  msgid "Close notice"
352
  msgstr ""
353
 
354
+ #: bws_functions.php:677
355
  msgid "Notice"
356
  msgstr ""
357
 
358
+ #: bws_functions.php:677
359
  msgid "The plugin's settings have been changed."
360
  msgstr ""
361
 
362
+ #: bws_functions.php:678
363
  msgid "Save Changes"
364
  msgstr ""
365
 
366
+ #: bws_functions.php:693
367
+ msgid "You can always look at premium options by clicking on the \"Show Pro features\" in the \"Go PRO\" tab"
368
+ msgstr ""
369
+
370
+ #: bws_functions.php:773
371
  msgid "Add BWS Plugins Shortcode"
372
  msgstr ""
373
 
374
+ #: bws_functions.php:793
375
+ msgid "Add shortcode"
376
+ msgstr ""
377
+
378
+ #: bws_functions.php:793
379
+ msgid "Add BestWebSoft plugins' shortcodes using this button."
380
+ msgstr ""
381
+
382
+ #: bws_functions.php:833
383
  msgid "Close"
384
  msgstr ""
385
 
386
+ #: bws_functions.php:925
387
  msgid "Restore all plugin settings to defaults"
388
  msgstr ""
389
 
390
+ #: bws_functions.php:927
391
  msgid "Restore settings"
392
  msgstr ""
393
 
394
+ #: bws_functions.php:938
395
  msgid "Are you sure you want to restore all settings by default?"
396
  msgstr ""
397
 
398
+ #: bws_functions.php:941
399
  msgid "Yes, restore all settings"
400
  msgstr ""
401
 
402
+ #: bws_functions.php:942
403
  msgid "No, go back to the settings page"
404
  msgstr ""
405
 
406
  # @ captcha
407
+ #: bws_functions.php:986
408
  #, fuzzy
409
  msgid "Plugin"
410
  msgstr "Plugins Pro"
411
 
412
  # @ captcha
413
+ #: bws_functions.php:995
414
  #, fuzzy
415
  msgid "Shortcode settings"
416
  msgstr "Configurações"
417
 
418
+ #: bws_functions.php:1000
419
  msgid "The shortcode will be inserted"
420
  msgstr ""
421
 
422
+ #: bws_functions.php:1005
423
  msgid "Insert"
424
  msgstr ""
425
 
426
+ #: bws_functions.php:1036
427
+ msgid "Visit Help Center"
428
+ msgstr ""
429
+
430
+ #: bws_functions.php:1041
431
+ msgid "FAQ"
432
+ msgstr ""
433
+
434
+ #: bws_functions.php:1047
435
+ msgid "For more information:"
436
+ msgstr ""
437
+
438
+ #: bws_functions.php:1048
439
+ msgid "Documentation"
440
+ msgstr ""
441
+
442
+ #: bws_functions.php:1049
443
+ msgid "Video Instructions"
444
+ msgstr ""
445
+
446
+ #: bws_functions.php:1050
447
+ msgid "Submit a Request"
448
+ msgstr ""
449
+
450
  # @ captcha
451
  #: bws_menu.php:506
452
  msgid "Not set"
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-09-17 16:00+0300\n"
6
- "PO-Revision-Date: 2015-09-17 16:04+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,260 +16,268 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: bws_functions.php:29
20
- #: bws_functions.php:53
21
  msgid "requires"
22
  msgstr "требует"
23
 
24
- #: bws_functions.php:31
25
  msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
26
  msgstr "или выше, поэтому он был деактивирован! Пожалуйста, обновите WordPress и попробуйте еще раз."
27
 
28
- #: bws_functions.php:32
29
  msgid "Back to the WordPress"
30
  msgstr "Вернуться к WordPress на"
31
 
32
- #: bws_functions.php:34
33
  msgid "Plugins page"
34
  msgstr "Страницу плагинов"
35
 
36
- #: bws_functions.php:55
37
  msgid "or higher! We do not guarantee that our plugin will work correctly. Please upgrade to WordPress latest version."
38
  msgstr "или выше! Мы не гарантируем, что наш плагин будет работать корректно. Пожалуйста, обновите WordPress до последней версии."
39
 
40
- #: bws_functions.php:112
41
  msgid "It’s time to upgrade your"
42
  msgstr "Настало время обновить Ваш"
43
 
44
- #: bws_functions.php:112
45
  msgid "to"
46
  msgstr "до"
47
 
48
- #: bws_functions.php:112
49
  msgid "version!"
50
  msgstr "версии!"
51
 
52
- #: bws_functions.php:113
53
  msgid "Extend standard plugin functionality with new great options."
54
  msgstr "Расширяет возможности стандартного функционала плагина."
55
 
56
- #: bws_functions.php:116
57
- #: bws_functions.php:513
58
  msgid "Learn More"
59
  msgstr "Подробнее"
60
 
61
- #: bws_functions.php:133
62
  msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
63
  msgstr "Если вам понравился плагин, пожалуйста, поставьте нам 5 звезд на WordPress"
64
 
65
- #: bws_functions.php:134
66
  msgid "Rate the plugin"
67
  msgstr "Оценить плагин"
68
 
69
- #: bws_functions.php:137
70
  msgid "If there is something wrong about it, please contact us"
71
  msgstr "Если у вас есть какие-то вопросы, обращайтесь"
72
 
73
- #: bws_functions.php:154
74
- #: bws_functions.php:190
 
 
 
 
75
  msgid "Wrong license key"
76
  msgstr "Неправильный лицензионный ключ"
77
 
78
- #: bws_functions.php:184
79
- #: bws_functions.php:426
80
- #: bws_functions.php:477
81
  msgid "Something went wrong. Please try again later. If the error appears again, please contact us"
82
  msgstr "Что-то пошло не так. Повторите попытку позже. Если ошибка появится снова, пожалуйста, свяжитесь с нами"
83
 
84
- #: bws_functions.php:184
85
- #: bws_functions.php:426
86
- #: bws_functions.php:477
87
  msgid "We are sorry for inconvenience."
88
  msgstr "Приносим извинения за неудобства."
89
 
90
- #: bws_functions.php:192
91
  msgid "This license key is bind to another site"
92
  msgstr "Этот лицензионный ключ привязан к другому сайту"
93
 
94
- #: bws_functions.php:194
95
- #: bws_functions.php:336
96
  msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
97
  msgstr "К сожалению, вы превысили количество доступных попыток в день. Пожалуйста, загрузите плагин вручную."
98
 
99
- #: bws_functions.php:196
100
  msgid "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates you should extend it in your"
101
  msgstr "К сожалению, время использования вашей лицензии истекло. Для получения обновлений приоритетного саппорта вам нужно продлить лицензию перейдя на вашей"
102
 
103
- #: bws_functions.php:198
104
  msgid "Unfortunately, the Pro licence was already installed to this domain. The Pro Trial license can be installed only once."
105
  msgstr "К сожалению, Pro лицензия уже была установлена на этом доменен. Pro Trial лицензия может быть установлена только один раз."
106
 
107
- #: bws_functions.php:219
108
- #: bws_functions.php:241
109
- #: bws_functions.php:263
110
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
111
  msgstr "Не удалось загрузить архив плагина. Пожалуйста, загрузите плагин вручную"
112
 
113
- #: bws_functions.php:231
114
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
115
  msgstr "Не удалось открыть архив ZIP. Пожалуйста, загрузите плагин вручную"
116
 
117
- #: bws_functions.php:237
118
  msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
119
  msgstr "Ваш сервер не поддерживает ни библиотеку ZipArchive, ни библиотеку Phar. Пожалуйста, загрузите плагин вручную"
120
 
121
- #: bws_functions.php:244
122
  msgid "UploadDir is not writable. Please, upload the plugin manually"
123
  msgstr "Папка загрузки не доступна для записи. Пожалуйста, загрузите плагин вручную"
124
 
125
- #: bws_functions.php:267
126
  msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvenience."
127
  msgstr "Что-то пошло не так. Повторите попытку позже или загрузите плагин вручную. Приносим извинения за неудобства."
128
 
129
- #: bws_functions.php:292
130
  msgid "Please, enter Your license key"
131
  msgstr "Пожалуйста, введите ваш лицензионный ключ"
132
 
133
- #: bws_functions.php:309
134
  msgid "Congratulations! The Pro version of the plugin is successfully download and activated."
135
  msgstr "Поздравляем! Pro версия плагина была успешно загружена и активирована."
136
 
137
- #: bws_functions.php:311
138
- #: bws_functions.php:393
139
  msgid "Please, go to"
140
  msgstr "Пожалуйста, перейдите на"
141
 
142
- #: bws_functions.php:311
143
- #: bws_functions.php:393
144
  msgid "the setting page"
145
  msgstr "страницу настроек"
146
 
147
- #: bws_functions.php:312
148
- #: bws_functions.php:394
149
  msgid "You will be redirected automatically in 5 seconds."
150
  msgstr "Вы будете перенаправлены автоматически через 5 секунд."
151
 
152
- #: bws_functions.php:317
 
 
 
 
153
  msgid "You can download and activate"
154
  msgstr "Вы можете скачать и активировать"
155
 
156
- #: bws_functions.php:319
157
  msgid "version of this plugin by entering Your license key."
158
  msgstr "версию этого плагина, введя ваш лицензионный ключ."
159
 
160
- #: bws_functions.php:321
161
- #: bws_functions.php:362
162
  msgid "You can find your license key on your personal page Client area, by clicking on the link"
163
  msgstr "Вы можете найти ваш лицензионный ключ на вашей личной странице Client area, нажав на ссылку"
164
 
165
- #: bws_functions.php:323
166
- #: bws_functions.php:364
167
  msgid "(your username is the email you specify when purchasing the product)."
168
  msgstr "(ваше имя пользователя - это электронный адрес, указанный при покупке продукта)."
169
 
170
- #: bws_functions.php:327
171
- #: bws_functions.php:630
172
  msgid "or"
173
  msgstr "или"
174
 
175
- #: bws_functions.php:327
176
  #, php-format
177
  msgid "Start Your Free %s-Day Trial Now"
178
  msgstr "Попробуйте %s-дневную Trial версию бесплатно"
179
 
180
- #: bws_functions.php:333
181
- #: bws_functions.php:342
182
- #: bws_functions.php:372
183
- #: bws_functions.php:380
184
  #: bws_menu.php:693
185
  #: bws_menu.php:750
186
  msgid "Activate"
187
  msgstr "Активировать"
188
 
189
- #: bws_functions.php:359
190
- #: bws_functions.php:452
191
  #, php-format
192
  msgid "In order to continue using the plugin it is necessary to buy a %s license."
193
  msgstr "Чтобы продолжить пользоваться плагином, необходимо приобрести %s лицензию."
194
 
195
- #: bws_functions.php:360
196
  msgid "After that you can activate it by entering your license key."
197
  msgstr "После этого вы сможете активировать его введя лицензионный ключ."
198
 
199
- #: bws_functions.php:374
200
  msgid "Unfortunately, you have exceeded the number of available tries per day."
201
  msgstr "К сожалению, вы превысили количество доступных попыток."
202
 
203
- #: bws_functions.php:391
204
  msgid "Congratulations! The Pro license of the plugin is successfully activated."
205
  msgstr "Поздравляем! Pro версия плагина была успешно активирована."
206
 
207
- #: bws_functions.php:432
208
  msgid "Wrong license key."
209
  msgstr "Неправильный лицензионный ключ."
210
 
211
- #: bws_functions.php:434
212
  msgid "This license key is bind to another site."
213
  msgstr "Этот лицензионный ключ привязан к другому сайту."
214
 
215
- #: bws_functions.php:436
216
  msgid "This license key is valid, but Your license has expired. If you want to update our plugin in future, you should extend the license."
217
  msgstr "Лицензионный ключ принят, но срок действия лицензии истек. Если вы хотите обновлять плагин в будущем, вы должны продлить лицензию."
218
 
219
- #: bws_functions.php:438
220
  msgid "Unfortunately, you have exceeded the number of available tries."
221
  msgstr "К сожалению, вы превысили количество доступных попыток."
222
 
223
- #: bws_functions.php:440
224
  msgid "Unfortunately, the Pro Trial licence was already installed to this domain. The Pro Trial license can be installed only once."
225
  msgstr "К сожалению, Pro Trial версия плагина уже устанавливалась на этот домен. Pro Trial версию можно устанавливать лишь один раз."
226
 
227
- #: bws_functions.php:444
228
  msgid "The Pro Trial license key is valid."
229
  msgstr "Ключ Pro Trial версии действителен."
230
 
231
- #: bws_functions.php:446
232
  msgid "The license key is valid."
233
  msgstr "Лицензионный ключ действителен."
234
 
235
- #: bws_functions.php:449
236
  msgid "Your license will expire on"
237
  msgstr "Ваша лицензия истечет"
238
 
239
- #: bws_functions.php:482
240
  msgid "Please, enter your license key"
241
  msgstr "Пожалуйста, введите Ваш лицензионный ключ"
242
 
243
- #: bws_functions.php:495
244
  msgid "If needed you can check if the license key is correct or reenter it in the field below. You can find your license key on your personal page - Client area - on our website"
245
  msgstr "При необходимости вы можете проверить валидность лицензионного ключа или повторно ввести его в поле ниже. Вы можете найти ваш лицензионный ключ на своей личной странице - Client area - на нашем сайте"
246
 
247
- #: bws_functions.php:495
248
  msgid "(your username is the email you specify when purchasing the product). If necessary, please submit \"Lost your password?\" request."
249
  msgstr "(ваш пользователь это емейл, который вы указывали при покупке продукта). При необходимости нажмите \"Забыли пароль?\"."
250
 
251
- #: bws_functions.php:499
252
  msgid "Check license key"
253
  msgstr "Проверка лицензионного ключа"
254
 
255
- #: bws_functions.php:513
256
  msgid "WARNING: Illegal use notification"
257
  msgstr "ВНИМАНИЕ: уведомление о незаконном использовании"
258
 
259
- #: bws_functions.php:513
260
  msgid "You can use one license of the Pro plugin for one domain only. Please check and edit your license or domain if necessary using you personal Client Area. We strongly recommend you to solve the problem within 24 hours, otherwise the Pro plugin will be deactivated."
261
  msgstr "Вы можете использовать одну лицензию Pro плагина только для одного домена. Пожалуйста, проверьте и отредактируйте при необходимости лицензию или домен, используя Ваш личный Client Area. Мы настоятельно рекомендуем вам решить проблему в течение 24 часов, в противном случае плагин будет деактивирован."
262
 
263
- #: bws_functions.php:521
264
  msgid "Notice: Your Pro Trial license has expired. To continue using the plugin you should buy a Pro license"
265
  msgstr "Внимание: Срок действия Pro Trial версии истек. Чтобы продолжить пользоваться плагином, пожалуйста, приобретите лицензию Pro"
266
 
267
- #: bws_functions.php:523
268
  msgid "Your license has expired. To continue getting top-priority support and plugin updates you should extend it."
269
  msgstr "Время использования вашей лицензии истекло. Если вы хотите обновлять ваш плагин в дальнейшем и иметь приоритетную тех.поддержку, то вам нужно продлить лицензию."
270
 
271
- #: bws_functions.php:523
272
- #: bws_functions.php:576
273
  #: bws_menu.php:669
274
  #: bws_menu.php:691
275
  #: bws_menu.php:718
@@ -278,107 +286,143 @@ msgstr "Время использования вашей лицензии ист
278
  msgid "Learn more"
279
  msgstr "Подробнее"
280
 
281
- #: bws_functions.php:533
282
  #, php-format
283
  msgid "Notice: You are using the Pro Trial license of %s plugin."
284
  msgstr "Внимание: Вы используете Pro Trial версию плагина %s."
285
 
286
- #: bws_functions.php:535
287
  msgid "Notice: You are using the Pro Trial license of plugin."
288
  msgstr "Внимание: Вы используете Pro Trial версию плагина."
289
 
290
- #: bws_functions.php:538
291
  msgid "The Pro Trial license will expire on"
292
  msgstr "Ваша лицензия Pro Trial версии плагина истекает"
293
 
294
- #: bws_functions.php:576
295
  msgid "You license for"
296
  msgstr "Ваш лицензионный ключ для"
297
 
298
- #: bws_functions.php:576
299
  msgid "expires on"
300
  msgstr "истекает"
301
 
302
- #: bws_functions.php:576
303
  msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
304
  msgstr "и вы не будете получать приоритетную тех.поддержку или обновления."
305
 
306
- #: bws_functions.php:626
307
  msgid "Thank you for installing"
308
  msgstr "Спасибо за установку"
309
 
310
- #: bws_functions.php:627
311
  msgid "Let's get started"
312
  msgstr "Давайте начнем"
313
 
314
- #: bws_functions.php:628
315
  msgid "Configure Settings"
316
  msgstr "Настройка параметров"
317
 
318
- #: bws_functions.php:631
319
  msgid "Add New"
320
  msgstr "Добавить"
321
 
322
- #: bws_functions.php:635
323
  msgid "Close notice"
324
  msgstr "Закрыть"
325
 
326
- #: bws_functions.php:648
327
  msgid "Notice"
328
  msgstr "Внимание"
329
 
330
- #: bws_functions.php:648
331
  msgid "The plugin's settings have been changed."
332
  msgstr "Настройки плагина были изменены"
333
 
334
- #: bws_functions.php:649
335
  msgid "Save Changes"
336
  msgstr "Сохранить изменения"
337
 
338
- #: bws_functions.php:694
 
 
 
 
339
  msgid "Add BWS Plugins Shortcode"
340
  msgstr "Добавить шорткод BWS Плагина"
341
 
342
- #: bws_functions.php:738
 
 
 
 
 
 
 
 
343
  msgid "Close"
344
  msgstr "Закрыть"
345
 
346
- #: bws_functions.php:829
347
  msgid "Restore all plugin settings to defaults"
348
  msgstr "Восстановить все настройки плагина к настройкам по умолчанию"
349
 
350
- #: bws_functions.php:831
351
  msgid "Restore settings"
352
  msgstr "Восстановить настройки"
353
 
354
- #: bws_functions.php:842
355
  msgid "Are you sure you want to restore all settings by default?"
356
  msgstr "Вы уверены что хотите восстановить все настройки плагина к настройкам по умолчанию?"
357
 
358
- #: bws_functions.php:845
359
  msgid "Yes, restore all settings"
360
  msgstr "Да, восстановить все настройки"
361
 
362
- #: bws_functions.php:846
363
  msgid "No, go back to the settings page"
364
  msgstr "Нет, вернуться на страницу настроек"
365
 
366
- #: bws_functions.php:890
367
  msgid "Plugin"
368
  msgstr "Плагин"
369
 
370
- #: bws_functions.php:899
371
  msgid "Shortcode settings"
372
  msgstr "Настройки шорткода"
373
 
374
- #: bws_functions.php:904
375
  msgid "The shortcode will be inserted"
376
  msgstr "Будет вставлен шорткод"
377
 
378
- #: bws_functions.php:909
379
  msgid "Insert"
380
  msgstr "Вставить"
381
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
382
  #: bws_menu.php:506
383
  msgid "Not set"
384
  msgstr "Не задан"
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-10-09 16:33+0300\n"
6
+ "PO-Revision-Date: 2015-10-09 17:02+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:39
20
+ #: bws_functions.php:63
21
  msgid "requires"
22
  msgstr "требует"
23
 
24
+ #: bws_functions.php:41
25
  msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
26
  msgstr "или выше, поэтому он был деактивирован! Пожалуйста, обновите WordPress и попробуйте еще раз."
27
 
28
+ #: bws_functions.php:42
29
  msgid "Back to the WordPress"
30
  msgstr "Вернуться к WordPress на"
31
 
32
+ #: bws_functions.php:44
33
  msgid "Plugins page"
34
  msgstr "Страницу плагинов"
35
 
36
+ #: bws_functions.php:65
37
  msgid "or higher! We do not guarantee that our plugin will work correctly. Please upgrade to WordPress latest version."
38
  msgstr "или выше! Мы не гарантируем, что наш плагин будет работать корректно. Пожалуйста, обновите WordPress до последней версии."
39
 
40
+ #: bws_functions.php:122
41
  msgid "It’s time to upgrade your"
42
  msgstr "Настало время обновить Ваш"
43
 
44
+ #: bws_functions.php:122
45
  msgid "to"
46
  msgstr "до"
47
 
48
+ #: bws_functions.php:122
49
  msgid "version!"
50
  msgstr "версии!"
51
 
52
+ #: bws_functions.php:123
53
  msgid "Extend standard plugin functionality with new great options."
54
  msgstr "Расширяет возможности стандартного функционала плагина."
55
 
56
+ #: bws_functions.php:126
57
+ #: bws_functions.php:561
58
  msgid "Learn More"
59
  msgstr "Подробнее"
60
 
61
+ #: bws_functions.php:143
62
  msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
63
  msgstr "Если вам понравился плагин, пожалуйста, поставьте нам 5 звезд на WordPress"
64
 
65
+ #: bws_functions.php:144
66
  msgid "Rate the plugin"
67
  msgstr "Оценить плагин"
68
 
69
+ #: bws_functions.php:147
70
  msgid "If there is something wrong about it, please contact us"
71
  msgstr "Если у вас есть какие-то вопросы, обращайтесь"
72
 
73
+ #: bws_functions.php:179
74
+ msgid "Check premium options on the plugin settings page!"
75
+ msgstr "Просмотрите премиум опции на странице настроек плагина!"
76
+
77
+ #: bws_functions.php:186
78
+ #: bws_functions.php:222
79
  msgid "Wrong license key"
80
  msgstr "Неправильный лицензионный ключ"
81
 
82
+ #: bws_functions.php:216
83
+ #: bws_functions.php:474
84
+ #: bws_functions.php:525
85
  msgid "Something went wrong. Please try again later. If the error appears again, please contact us"
86
  msgstr "Что-то пошло не так. Повторите попытку позже. Если ошибка появится снова, пожалуйста, свяжитесь с нами"
87
 
88
+ #: bws_functions.php:216
89
+ #: bws_functions.php:474
90
+ #: bws_functions.php:525
91
  msgid "We are sorry for inconvenience."
92
  msgstr "Приносим извинения за неудобства."
93
 
94
+ #: bws_functions.php:224
95
  msgid "This license key is bind to another site"
96
  msgstr "Этот лицензионный ключ привязан к другому сайту"
97
 
98
+ #: bws_functions.php:226
99
+ #: bws_functions.php:384
100
  msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
101
  msgstr "К сожалению, вы превысили количество доступных попыток в день. Пожалуйста, загрузите плагин вручную."
102
 
103
+ #: bws_functions.php:228
104
  msgid "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates you should extend it in your"
105
  msgstr "К сожалению, время использования вашей лицензии истекло. Для получения обновлений приоритетного саппорта вам нужно продлить лицензию перейдя на вашей"
106
 
107
+ #: bws_functions.php:230
108
  msgid "Unfortunately, the Pro licence was already installed to this domain. The Pro Trial license can be installed only once."
109
  msgstr "К сожалению, Pro лицензия уже была установлена на этом доменен. Pro Trial лицензия может быть установлена только один раз."
110
 
111
+ #: bws_functions.php:251
112
+ #: bws_functions.php:273
113
+ #: bws_functions.php:295
114
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
115
  msgstr "Не удалось загрузить архив плагина. Пожалуйста, загрузите плагин вручную"
116
 
117
+ #: bws_functions.php:263
118
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
119
  msgstr "Не удалось открыть архив ZIP. Пожалуйста, загрузите плагин вручную"
120
 
121
+ #: bws_functions.php:269
122
  msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
123
  msgstr "Ваш сервер не поддерживает ни библиотеку ZipArchive, ни библиотеку Phar. Пожалуйста, загрузите плагин вручную"
124
 
125
+ #: bws_functions.php:276
126
  msgid "UploadDir is not writable. Please, upload the plugin manually"
127
  msgstr "Папка загрузки не доступна для записи. Пожалуйста, загрузите плагин вручную"
128
 
129
+ #: bws_functions.php:299
130
  msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvenience."
131
  msgstr "Что-то пошло не так. Повторите попытку позже или загрузите плагин вручную. Приносим извинения за неудобства."
132
 
133
+ #: bws_functions.php:324
134
  msgid "Please, enter Your license key"
135
  msgstr "Пожалуйста, введите ваш лицензионный ключ"
136
 
137
+ #: bws_functions.php:348
138
  msgid "Congratulations! The Pro version of the plugin is successfully download and activated."
139
  msgstr "Поздравляем! Pro версия плагина была успешно загружена и активирована."
140
 
141
+ #: bws_functions.php:350
142
+ #: bws_functions.php:441
143
  msgid "Please, go to"
144
  msgstr "Пожалуйста, перейдите на"
145
 
146
+ #: bws_functions.php:350
147
+ #: bws_functions.php:441
148
  msgid "the setting page"
149
  msgstr "страницу настроек"
150
 
151
+ #: bws_functions.php:351
152
+ #: bws_functions.php:442
153
  msgid "You will be redirected automatically in 5 seconds."
154
  msgstr "Вы будете перенаправлены автоматически через 5 секунд."
155
 
156
+ #: bws_functions.php:358
157
+ msgid "Show Pro features"
158
+ msgstr "Показать Pro опции"
159
+
160
+ #: bws_functions.php:365
161
  msgid "You can download and activate"
162
  msgstr "Вы можете скачать и активировать"
163
 
164
+ #: bws_functions.php:367
165
  msgid "version of this plugin by entering Your license key."
166
  msgstr "версию этого плагина, введя ваш лицензионный ключ."
167
 
168
+ #: bws_functions.php:369
169
+ #: bws_functions.php:410
170
  msgid "You can find your license key on your personal page Client area, by clicking on the link"
171
  msgstr "Вы можете найти ваш лицензионный ключ на вашей личной странице Client area, нажав на ссылку"
172
 
173
+ #: bws_functions.php:371
174
+ #: bws_functions.php:412
175
  msgid "(your username is the email you specify when purchasing the product)."
176
  msgstr "(ваше имя пользователя - это электронный адрес, указанный при покупке продукта)."
177
 
178
+ #: bws_functions.php:375
179
+ #: bws_functions.php:659
180
  msgid "or"
181
  msgstr "или"
182
 
183
+ #: bws_functions.php:375
184
  #, php-format
185
  msgid "Start Your Free %s-Day Trial Now"
186
  msgstr "Попробуйте %s-дневную Trial версию бесплатно"
187
 
188
+ #: bws_functions.php:381
189
+ #: bws_functions.php:390
190
+ #: bws_functions.php:420
191
+ #: bws_functions.php:428
192
  #: bws_menu.php:693
193
  #: bws_menu.php:750
194
  msgid "Activate"
195
  msgstr "Активировать"
196
 
197
+ #: bws_functions.php:407
198
+ #: bws_functions.php:500
199
  #, php-format
200
  msgid "In order to continue using the plugin it is necessary to buy a %s license."
201
  msgstr "Чтобы продолжить пользоваться плагином, необходимо приобрести %s лицензию."
202
 
203
+ #: bws_functions.php:408
204
  msgid "After that you can activate it by entering your license key."
205
  msgstr "После этого вы сможете активировать его введя лицензионный ключ."
206
 
207
+ #: bws_functions.php:422
208
  msgid "Unfortunately, you have exceeded the number of available tries per day."
209
  msgstr "К сожалению, вы превысили количество доступных попыток."
210
 
211
+ #: bws_functions.php:439
212
  msgid "Congratulations! The Pro license of the plugin is successfully activated."
213
  msgstr "Поздравляем! Pro версия плагина была успешно активирована."
214
 
215
+ #: bws_functions.php:480
216
  msgid "Wrong license key."
217
  msgstr "Неправильный лицензионный ключ."
218
 
219
+ #: bws_functions.php:482
220
  msgid "This license key is bind to another site."
221
  msgstr "Этот лицензионный ключ привязан к другому сайту."
222
 
223
+ #: bws_functions.php:484
224
  msgid "This license key is valid, but Your license has expired. If you want to update our plugin in future, you should extend the license."
225
  msgstr "Лицензионный ключ принят, но срок действия лицензии истек. Если вы хотите обновлять плагин в будущем, вы должны продлить лицензию."
226
 
227
+ #: bws_functions.php:486
228
  msgid "Unfortunately, you have exceeded the number of available tries."
229
  msgstr "К сожалению, вы превысили количество доступных попыток."
230
 
231
+ #: bws_functions.php:488
232
  msgid "Unfortunately, the Pro Trial licence was already installed to this domain. The Pro Trial license can be installed only once."
233
  msgstr "К сожалению, Pro Trial версия плагина уже устанавливалась на этот домен. Pro Trial версию можно устанавливать лишь один раз."
234
 
235
+ #: bws_functions.php:492
236
  msgid "The Pro Trial license key is valid."
237
  msgstr "Ключ Pro Trial версии действителен."
238
 
239
+ #: bws_functions.php:494
240
  msgid "The license key is valid."
241
  msgstr "Лицензионный ключ действителен."
242
 
243
+ #: bws_functions.php:497
244
  msgid "Your license will expire on"
245
  msgstr "Ваша лицензия истечет"
246
 
247
+ #: bws_functions.php:530
248
  msgid "Please, enter your license key"
249
  msgstr "Пожалуйста, введите Ваш лицензионный ключ"
250
 
251
+ #: bws_functions.php:543
252
  msgid "If needed you can check if the license key is correct or reenter it in the field below. You can find your license key on your personal page - Client area - on our website"
253
  msgstr "При необходимости вы можете проверить валидность лицензионного ключа или повторно ввести его в поле ниже. Вы можете найти ваш лицензионный ключ на своей личной странице - Client area - на нашем сайте"
254
 
255
+ #: bws_functions.php:543
256
  msgid "(your username is the email you specify when purchasing the product). If necessary, please submit \"Lost your password?\" request."
257
  msgstr "(ваш пользователь это емейл, который вы указывали при покупке продукта). При необходимости нажмите \"Забыли пароль?\"."
258
 
259
+ #: bws_functions.php:547
260
  msgid "Check license key"
261
  msgstr "Проверка лицензионного ключа"
262
 
263
+ #: bws_functions.php:561
264
  msgid "WARNING: Illegal use notification"
265
  msgstr "ВНИМАНИЕ: уведомление о незаконном использовании"
266
 
267
+ #: bws_functions.php:561
268
  msgid "You can use one license of the Pro plugin for one domain only. Please check and edit your license or domain if necessary using you personal Client Area. We strongly recommend you to solve the problem within 24 hours, otherwise the Pro plugin will be deactivated."
269
  msgstr "Вы можете использовать одну лицензию Pro плагина только для одного домена. Пожалуйста, проверьте и отредактируйте при необходимости лицензию или домен, используя Ваш личный Client Area. Мы настоятельно рекомендуем вам решить проблему в течение 24 часов, в противном случае плагин будет деактивирован."
270
 
271
+ #: bws_functions.php:569
272
  msgid "Notice: Your Pro Trial license has expired. To continue using the plugin you should buy a Pro license"
273
  msgstr "Внимание: Срок действия Pro Trial версии истек. Чтобы продолжить пользоваться плагином, пожалуйста, приобретите лицензию Pro"
274
 
275
+ #: bws_functions.php:571
276
  msgid "Your license has expired. To continue getting top-priority support and plugin updates you should extend it."
277
  msgstr "Время использования вашей лицензии истекло. Если вы хотите обновлять ваш плагин в дальнейшем и иметь приоритетную тех.поддержку, то вам нужно продлить лицензию."
278
 
279
+ #: bws_functions.php:571
280
+ #: bws_functions.php:624
281
  #: bws_menu.php:669
282
  #: bws_menu.php:691
283
  #: bws_menu.php:718
286
  msgid "Learn more"
287
  msgstr "Подробнее"
288
 
289
+ #: bws_functions.php:581
290
  #, php-format
291
  msgid "Notice: You are using the Pro Trial license of %s plugin."
292
  msgstr "Внимание: Вы используете Pro Trial версию плагина %s."
293
 
294
+ #: bws_functions.php:583
295
  msgid "Notice: You are using the Pro Trial license of plugin."
296
  msgstr "Внимание: Вы используете Pro Trial версию плагина."
297
 
298
+ #: bws_functions.php:586
299
  msgid "The Pro Trial license will expire on"
300
  msgstr "Ваша лицензия Pro Trial версии плагина истекает"
301
 
302
+ #: bws_functions.php:624
303
  msgid "You license for"
304
  msgstr "Ваш лицензионный ключ для"
305
 
306
+ #: bws_functions.php:624
307
  msgid "expires on"
308
  msgstr "истекает"
309
 
310
+ #: bws_functions.php:624
311
  msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
312
  msgstr "и вы не будете получать приоритетную тех.поддержку или обновления."
313
 
314
+ #: bws_functions.php:655
315
  msgid "Thank you for installing"
316
  msgstr "Спасибо за установку"
317
 
318
+ #: bws_functions.php:656
319
  msgid "Let's get started"
320
  msgstr "Давайте начнем"
321
 
322
+ #: bws_functions.php:657
323
  msgid "Configure Settings"
324
  msgstr "Настройка параметров"
325
 
326
+ #: bws_functions.php:660
327
  msgid "Add New"
328
  msgstr "Добавить"
329
 
330
+ #: bws_functions.php:664
331
  msgid "Close notice"
332
  msgstr "Закрыть"
333
 
334
+ #: bws_functions.php:677
335
  msgid "Notice"
336
  msgstr "Внимание"
337
 
338
+ #: bws_functions.php:677
339
  msgid "The plugin's settings have been changed."
340
  msgstr "Настройки плагина были изменены"
341
 
342
+ #: bws_functions.php:678
343
  msgid "Save Changes"
344
  msgstr "Сохранить изменения"
345
 
346
+ #: bws_functions.php:693
347
+ msgid "You can always look at premium options by clicking on the \"Show Pro features\" in the \"Go PRO\" tab"
348
+ msgstr "Вы всегда можете просмотреть премиум опции нажав на кнопку \"Показать Pro опции\" на вкладке \"Перейти на PRO\""
349
+
350
+ #: bws_functions.php:773
351
  msgid "Add BWS Plugins Shortcode"
352
  msgstr "Добавить шорткод BWS Плагина"
353
 
354
+ #: bws_functions.php:793
355
+ msgid "Add shortcode"
356
+ msgstr "Добавить шорткод"
357
+
358
+ #: bws_functions.php:793
359
+ msgid "Add BestWebSoft plugins' shortcodes using this button."
360
+ msgstr "Добавьте шорткоды BestWebSoft плагинов с помощью этой кнопки."
361
+
362
+ #: bws_functions.php:833
363
  msgid "Close"
364
  msgstr "Закрыть"
365
 
366
+ #: bws_functions.php:926
367
  msgid "Restore all plugin settings to defaults"
368
  msgstr "Восстановить все настройки плагина к настройкам по умолчанию"
369
 
370
+ #: bws_functions.php:928
371
  msgid "Restore settings"
372
  msgstr "Восстановить настройки"
373
 
374
+ #: bws_functions.php:939
375
  msgid "Are you sure you want to restore all settings by default?"
376
  msgstr "Вы уверены что хотите восстановить все настройки плагина к настройкам по умолчанию?"
377
 
378
+ #: bws_functions.php:942
379
  msgid "Yes, restore all settings"
380
  msgstr "Да, восстановить все настройки"
381
 
382
+ #: bws_functions.php:943
383
  msgid "No, go back to the settings page"
384
  msgstr "Нет, вернуться на страницу настроек"
385
 
386
+ #: bws_functions.php:987
387
  msgid "Plugin"
388
  msgstr "Плагин"
389
 
390
+ #: bws_functions.php:996
391
  msgid "Shortcode settings"
392
  msgstr "Настройки шорткода"
393
 
394
+ #: bws_functions.php:1001
395
  msgid "The shortcode will be inserted"
396
  msgstr "Будет вставлен шорткод"
397
 
398
+ #: bws_functions.php:1006
399
  msgid "Insert"
400
  msgstr "Вставить"
401
 
402
+ #: bws_functions.php:1037
403
+ msgid "Visit Help Center"
404
+ msgstr "Перейти в Help Center"
405
+
406
+ #: bws_functions.php:1042
407
+ msgid "FAQ"
408
+ msgstr "FAQ"
409
+
410
+ #: bws_functions.php:1048
411
+ msgid "For more information:"
412
+ msgstr "Для дополнительной информации:"
413
+
414
+ #: bws_functions.php:1049
415
+ msgid "Documentation"
416
+ msgstr "Документация"
417
+
418
+ #: bws_functions.php:1050
419
+ msgid "Video Instructions"
420
+ msgstr "Видео инструкции"
421
+
422
+ #: bws_functions.php:1051
423
+ msgid "Submit a Request"
424
+ msgstr "Отправить запрос"
425
+
426
  #: bws_menu.php:506
427
  msgid "Not set"
428
  msgstr "Не задан"
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-09-17 16:00+0300\n"
6
- "PO-Revision-Date: 2015-09-17 16:00+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,268 +17,276 @@ msgstr ""
17
  "X-Generator: Poedit 1.5.4\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: bws_functions.php:29
21
- #: bws_functions.php:53
22
  msgid "requires"
23
  msgstr ""
24
 
25
- #: bws_functions.php:31
26
  msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
27
  msgstr ""
28
 
29
- #: bws_functions.php:32
30
  msgid "Back to the WordPress"
31
  msgstr ""
32
 
33
- #: bws_functions.php:34
34
  #, fuzzy
35
  msgid "Plugins page"
36
  msgstr "Pro moduli"
37
 
38
- #: bws_functions.php:55
39
  msgid "or higher! We do not guarantee that our plugin will work correctly. Please upgrade to WordPress latest version."
40
  msgstr ""
41
 
42
- #: bws_functions.php:112
43
  msgid "It’s time to upgrade your"
44
  msgstr ""
45
 
46
- #: bws_functions.php:112
47
  #, fuzzy
48
  msgid "to"
49
  msgstr "vrh"
50
 
51
- #: bws_functions.php:112
52
  #, fuzzy
53
  msgid "version!"
54
  msgstr "PHP Verzija"
55
 
56
- #: bws_functions.php:113
57
  msgid "Extend standard plugin functionality with new great options."
58
  msgstr ""
59
 
60
- #: bws_functions.php:116
61
- #: bws_functions.php:513
62
  #, fuzzy
63
  msgid "Learn More"
64
  msgstr "Pročitaj više"
65
 
66
- #: bws_functions.php:133
67
  msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
68
  msgstr ""
69
 
70
- #: bws_functions.php:134
71
  #, fuzzy
72
  msgid "Rate the plugin"
73
  msgstr "Aktivirani moduli"
74
 
75
- #: bws_functions.php:137
76
  #, fuzzy
77
  msgid "If there is something wrong about it, please contact us"
78
  msgstr "Ako imate pitanja molimo da nas kontaktirate preko"
79
 
80
- #: bws_functions.php:154
81
- #: bws_functions.php:190
 
 
 
 
82
  msgid "Wrong license key"
83
  msgstr ""
84
 
85
- #: bws_functions.php:184
86
- #: bws_functions.php:426
87
- #: bws_functions.php:477
88
  msgid "Something went wrong. Please try again later. If the error appears again, please contact us"
89
  msgstr ""
90
 
91
- #: bws_functions.php:184
92
- #: bws_functions.php:426
93
- #: bws_functions.php:477
94
  msgid "We are sorry for inconvenience."
95
  msgstr ""
96
 
97
- #: bws_functions.php:192
98
  msgid "This license key is bind to another site"
99
  msgstr ""
100
 
101
- #: bws_functions.php:194
102
- #: bws_functions.php:336
103
  msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
104
  msgstr ""
105
 
106
- #: bws_functions.php:196
107
  msgid "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates you should extend it in your"
108
  msgstr ""
109
 
110
- #: bws_functions.php:198
111
  msgid "Unfortunately, the Pro licence was already installed to this domain. The Pro Trial license can be installed only once."
112
  msgstr ""
113
 
114
- #: bws_functions.php:219
115
- #: bws_functions.php:241
116
- #: bws_functions.php:263
117
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
118
  msgstr ""
119
 
120
- #: bws_functions.php:231
121
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
122
  msgstr ""
123
 
124
- #: bws_functions.php:237
125
  msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
126
  msgstr ""
127
 
128
- #: bws_functions.php:244
129
  msgid "UploadDir is not writable. Please, upload the plugin manually"
130
  msgstr ""
131
 
132
- #: bws_functions.php:267
133
  msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvenience."
134
  msgstr ""
135
 
136
- #: bws_functions.php:292
137
  msgid "Please, enter Your license key"
138
  msgstr ""
139
 
140
- #: bws_functions.php:309
141
  msgid "Congratulations! The Pro version of the plugin is successfully download and activated."
142
  msgstr ""
143
 
144
- #: bws_functions.php:311
145
- #: bws_functions.php:393
146
  msgid "Please, go to"
147
  msgstr ""
148
 
149
- #: bws_functions.php:311
150
- #: bws_functions.php:393
151
  #, fuzzy
152
  msgid "the setting page"
153
  msgstr "na stranici za podešavanje modula ("
154
 
155
- #: bws_functions.php:312
156
- #: bws_functions.php:394
157
  msgid "You will be redirected automatically in 5 seconds."
158
  msgstr ""
159
 
160
- #: bws_functions.php:317
 
 
 
 
161
  msgid "You can download and activate"
162
  msgstr ""
163
 
164
- #: bws_functions.php:319
165
  msgid "version of this plugin by entering Your license key."
166
  msgstr ""
167
 
168
- #: bws_functions.php:321
169
- #: bws_functions.php:362
170
  msgid "You can find your license key on your personal page Client area, by clicking on the link"
171
  msgstr ""
172
 
173
- #: bws_functions.php:323
174
- #: bws_functions.php:364
175
  msgid "(your username is the email you specify when purchasing the product)."
176
  msgstr ""
177
 
178
- #: bws_functions.php:327
179
- #: bws_functions.php:630
180
  msgid "or"
181
  msgstr ""
182
 
183
- #: bws_functions.php:327
184
  #, php-format
185
  msgid "Start Your Free %s-Day Trial Now"
186
  msgstr ""
187
 
188
- #: bws_functions.php:333
189
- #: bws_functions.php:342
190
- #: bws_functions.php:372
191
- #: bws_functions.php:380
192
  #: bws_menu.php:693
193
  #: bws_menu.php:750
194
  #, fuzzy
195
  msgid "Activate"
196
  msgstr "Aktivirani moduli"
197
 
198
- #: bws_functions.php:359
199
- #: bws_functions.php:452
200
  #, php-format
201
  msgid "In order to continue using the plugin it is necessary to buy a %s license."
202
  msgstr ""
203
 
204
- #: bws_functions.php:360
205
  msgid "After that you can activate it by entering your license key."
206
  msgstr ""
207
 
208
- #: bws_functions.php:374
209
  msgid "Unfortunately, you have exceeded the number of available tries per day."
210
  msgstr ""
211
 
212
- #: bws_functions.php:391
213
  msgid "Congratulations! The Pro license of the plugin is successfully activated."
214
  msgstr ""
215
 
216
- #: bws_functions.php:432
217
  msgid "Wrong license key."
218
  msgstr ""
219
 
220
- #: bws_functions.php:434
221
  msgid "This license key is bind to another site."
222
  msgstr ""
223
 
224
- #: bws_functions.php:436
225
  msgid "This license key is valid, but Your license has expired. If you want to update our plugin in future, you should extend the license."
226
  msgstr ""
227
 
228
- #: bws_functions.php:438
229
  msgid "Unfortunately, you have exceeded the number of available tries."
230
  msgstr ""
231
 
232
- #: bws_functions.php:440
233
  msgid "Unfortunately, the Pro Trial licence was already installed to this domain. The Pro Trial license can be installed only once."
234
  msgstr ""
235
 
236
- #: bws_functions.php:444
237
  msgid "The Pro Trial license key is valid."
238
  msgstr ""
239
 
240
- #: bws_functions.php:446
241
  msgid "The license key is valid."
242
  msgstr ""
243
 
244
- #: bws_functions.php:449
245
  msgid "Your license will expire on"
246
  msgstr ""
247
 
248
- #: bws_functions.php:482
249
  msgid "Please, enter your license key"
250
  msgstr ""
251
 
252
- #: bws_functions.php:495
253
  msgid "If needed you can check if the license key is correct or reenter it in the field below. You can find your license key on your personal page - Client area - on our website"
254
  msgstr ""
255
 
256
- #: bws_functions.php:495
257
  msgid "(your username is the email you specify when purchasing the product). If necessary, please submit \"Lost your password?\" request."
258
  msgstr ""
259
 
260
- #: bws_functions.php:499
261
  msgid "Check license key"
262
  msgstr ""
263
 
264
- #: bws_functions.php:513
265
  msgid "WARNING: Illegal use notification"
266
  msgstr ""
267
 
268
- #: bws_functions.php:513
269
  msgid "You can use one license of the Pro plugin for one domain only. Please check and edit your license or domain if necessary using you personal Client Area. We strongly recommend you to solve the problem within 24 hours, otherwise the Pro plugin will be deactivated."
270
  msgstr ""
271
 
272
- #: bws_functions.php:521
273
  msgid "Notice: Your Pro Trial license has expired. To continue using the plugin you should buy a Pro license"
274
  msgstr ""
275
 
276
- #: bws_functions.php:523
277
  msgid "Your license has expired. To continue getting top-priority support and plugin updates you should extend it."
278
  msgstr ""
279
 
280
- #: bws_functions.php:523
281
- #: bws_functions.php:576
282
  #: bws_menu.php:669
283
  #: bws_menu.php:691
284
  #: bws_menu.php:718
@@ -288,113 +296,150 @@ msgstr ""
288
  msgid "Learn more"
289
  msgstr "Pročitaj više"
290
 
291
- #: bws_functions.php:533
292
  #, php-format
293
  msgid "Notice: You are using the Pro Trial license of %s plugin."
294
  msgstr ""
295
 
296
- #: bws_functions.php:535
297
  msgid "Notice: You are using the Pro Trial license of plugin."
298
  msgstr ""
299
 
300
- #: bws_functions.php:538
301
  msgid "The Pro Trial license will expire on"
302
  msgstr ""
303
 
304
- #: bws_functions.php:576
305
  msgid "You license for"
306
  msgstr ""
307
 
308
- #: bws_functions.php:576
309
  msgid "expires on"
310
  msgstr ""
311
 
312
- #: bws_functions.php:576
313
  msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
314
  msgstr ""
315
 
316
- #: bws_functions.php:626
317
  #, fuzzy
318
  msgid "Thank you for installing"
319
  msgstr "Hvala što ste nas kontaktirali"
320
 
321
- #: bws_functions.php:627
322
  msgid "Let's get started"
323
  msgstr ""
324
 
325
- #: bws_functions.php:628
326
  #, fuzzy
327
  msgid "Configure Settings"
328
  msgstr "na stranici za podešavanje modula ("
329
 
330
- #: bws_functions.php:631
331
  msgid "Add New"
332
  msgstr "Ajouter"
333
 
334
- #: bws_functions.php:635
335
  msgid "Close notice"
336
  msgstr ""
337
 
338
- #: bws_functions.php:648
339
  msgid "Notice"
340
  msgstr ""
341
 
342
- #: bws_functions.php:648
343
  msgid "The plugin's settings have been changed."
344
  msgstr ""
345
 
346
- #: bws_functions.php:649
347
  msgid "Save Changes"
348
  msgstr "Sačuvaj izmene"
349
 
350
- #: bws_functions.php:694
 
 
 
 
351
  msgid "Add BWS Plugins Shortcode"
352
  msgstr ""
353
 
354
- #: bws_functions.php:738
 
 
 
 
 
 
 
 
 
355
  msgid "Close"
356
  msgstr ""
357
 
358
- #: bws_functions.php:829
359
  msgid "Restore all plugin settings to defaults"
360
  msgstr ""
361
 
362
- #: bws_functions.php:831
363
  #, fuzzy
364
  msgid "Restore settings"
365
  msgstr "na stranici za podešavanje modula ("
366
 
367
- #: bws_functions.php:842
368
  msgid "Are you sure you want to restore all settings by default?"
369
  msgstr ""
370
 
371
- #: bws_functions.php:845
372
  msgid "Yes, restore all settings"
373
  msgstr ""
374
 
375
- #: bws_functions.php:846
376
  #, fuzzy
377
  msgid "No, go back to the settings page"
378
  msgstr "na stranici za podešavanje modula ("
379
 
380
- #: bws_functions.php:890
381
  #, fuzzy
382
  msgid "Plugin"
383
  msgstr "Pro moduli"
384
 
385
- #: bws_functions.php:899
386
  #, fuzzy
387
  msgid "Shortcode settings"
388
  msgstr "na stranici za podešavanje modula ("
389
 
390
- #: bws_functions.php:904
391
  msgid "The shortcode will be inserted"
392
  msgstr ""
393
 
394
- #: bws_functions.php:909
395
  msgid "Insert"
396
  msgstr ""
397
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
398
  #: bws_menu.php:506
399
  msgid "Not set"
400
  msgstr "Nije podešeno"
@@ -764,9 +809,6 @@ msgstr "Pošalji na korisnički mejl &#187;"
764
  #~ msgid "Upload File"
765
  #~ msgstr "Učitaj fajl"
766
 
767
- #~ msgid "Gallery Shortcode"
768
- #~ msgstr "Kratak kod za Galeriju"
769
-
770
  #~ msgid ""
771
  #~ "The gallery temp directory (gallery-plugin/upload/files) is not available "
772
  #~ "for record on your webserver. Please use the standard WP functionality to "
@@ -1040,9 +1082,6 @@ msgstr "Pošalji na korisnički mejl &#187;"
1040
  #~ msgid "Google +1"
1041
  #~ msgstr "Google +1"
1042
 
1043
- #~ msgid "FAQ"
1044
- #~ msgstr "FAQ"
1045
-
1046
  #~ msgid "Support"
1047
  #~ msgstr "Podrška"
1048
 
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-10-09 14:46+0300\n"
6
+ "PO-Revision-Date: 2015-10-09 14:46+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:39
21
+ #: bws_functions.php:63
22
  msgid "requires"
23
  msgstr ""
24
 
25
+ #: bws_functions.php:41
26
  msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
27
  msgstr ""
28
 
29
+ #: bws_functions.php:42
30
  msgid "Back to the WordPress"
31
  msgstr ""
32
 
33
+ #: bws_functions.php:44
34
  #, fuzzy
35
  msgid "Plugins page"
36
  msgstr "Pro moduli"
37
 
38
+ #: bws_functions.php:65
39
  msgid "or higher! We do not guarantee that our plugin will work correctly. Please upgrade to WordPress latest version."
40
  msgstr ""
41
 
42
+ #: bws_functions.php:122
43
  msgid "It’s time to upgrade your"
44
  msgstr ""
45
 
46
+ #: bws_functions.php:122
47
  #, fuzzy
48
  msgid "to"
49
  msgstr "vrh"
50
 
51
+ #: bws_functions.php:122
52
  #, fuzzy
53
  msgid "version!"
54
  msgstr "PHP Verzija"
55
 
56
+ #: bws_functions.php:123
57
  msgid "Extend standard plugin functionality with new great options."
58
  msgstr ""
59
 
60
+ #: bws_functions.php:126
61
+ #: bws_functions.php:561
62
  #, fuzzy
63
  msgid "Learn More"
64
  msgstr "Pročitaj više"
65
 
66
+ #: bws_functions.php:143
67
  msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
68
  msgstr ""
69
 
70
+ #: bws_functions.php:144
71
  #, fuzzy
72
  msgid "Rate the plugin"
73
  msgstr "Aktivirani moduli"
74
 
75
+ #: bws_functions.php:147
76
  #, fuzzy
77
  msgid "If there is something wrong about it, please contact us"
78
  msgstr "Ako imate pitanja molimo da nas kontaktirate preko"
79
 
80
+ #: bws_functions.php:179
81
+ msgid "Check premium options on the plugin settings page!"
82
+ msgstr ""
83
+
84
+ #: bws_functions.php:186
85
+ #: bws_functions.php:222
86
  msgid "Wrong license key"
87
  msgstr ""
88
 
89
+ #: bws_functions.php:216
90
+ #: bws_functions.php:474
91
+ #: bws_functions.php:525
92
  msgid "Something went wrong. Please try again later. If the error appears again, please contact us"
93
  msgstr ""
94
 
95
+ #: bws_functions.php:216
96
+ #: bws_functions.php:474
97
+ #: bws_functions.php:525
98
  msgid "We are sorry for inconvenience."
99
  msgstr ""
100
 
101
+ #: bws_functions.php:224
102
  msgid "This license key is bind to another site"
103
  msgstr ""
104
 
105
+ #: bws_functions.php:226
106
+ #: bws_functions.php:384
107
  msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
108
  msgstr ""
109
 
110
+ #: bws_functions.php:228
111
  msgid "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates you should extend it in your"
112
  msgstr ""
113
 
114
+ #: bws_functions.php:230
115
  msgid "Unfortunately, the Pro licence was already installed to this domain. The Pro Trial license can be installed only once."
116
  msgstr ""
117
 
118
+ #: bws_functions.php:251
119
+ #: bws_functions.php:273
120
+ #: bws_functions.php:295
121
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
122
  msgstr ""
123
 
124
+ #: bws_functions.php:263
125
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
126
  msgstr ""
127
 
128
+ #: bws_functions.php:269
129
  msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
130
  msgstr ""
131
 
132
+ #: bws_functions.php:276
133
  msgid "UploadDir is not writable. Please, upload the plugin manually"
134
  msgstr ""
135
 
136
+ #: bws_functions.php:299
137
  msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvenience."
138
  msgstr ""
139
 
140
+ #: bws_functions.php:324
141
  msgid "Please, enter Your license key"
142
  msgstr ""
143
 
144
+ #: bws_functions.php:348
145
  msgid "Congratulations! The Pro version of the plugin is successfully download and activated."
146
  msgstr ""
147
 
148
+ #: bws_functions.php:350
149
+ #: bws_functions.php:441
150
  msgid "Please, go to"
151
  msgstr ""
152
 
153
+ #: bws_functions.php:350
154
+ #: bws_functions.php:441
155
  #, fuzzy
156
  msgid "the setting page"
157
  msgstr "na stranici za podešavanje modula ("
158
 
159
+ #: bws_functions.php:351
160
+ #: bws_functions.php:442
161
  msgid "You will be redirected automatically in 5 seconds."
162
  msgstr ""
163
 
164
+ #: bws_functions.php:358
165
+ msgid "Show Pro features"
166
+ msgstr ""
167
+
168
+ #: bws_functions.php:365
169
  msgid "You can download and activate"
170
  msgstr ""
171
 
172
+ #: bws_functions.php:367
173
  msgid "version of this plugin by entering Your license key."
174
  msgstr ""
175
 
176
+ #: bws_functions.php:369
177
+ #: bws_functions.php:410
178
  msgid "You can find your license key on your personal page Client area, by clicking on the link"
179
  msgstr ""
180
 
181
+ #: bws_functions.php:371
182
+ #: bws_functions.php:412
183
  msgid "(your username is the email you specify when purchasing the product)."
184
  msgstr ""
185
 
186
+ #: bws_functions.php:375
187
+ #: bws_functions.php:659
188
  msgid "or"
189
  msgstr ""
190
 
191
+ #: bws_functions.php:375
192
  #, php-format
193
  msgid "Start Your Free %s-Day Trial Now"
194
  msgstr ""
195
 
196
+ #: bws_functions.php:381
197
+ #: bws_functions.php:390
198
+ #: bws_functions.php:420
199
+ #: bws_functions.php:428
200
  #: bws_menu.php:693
201
  #: bws_menu.php:750
202
  #, fuzzy
203
  msgid "Activate"
204
  msgstr "Aktivirani moduli"
205
 
206
+ #: bws_functions.php:407
207
+ #: bws_functions.php:500
208
  #, php-format
209
  msgid "In order to continue using the plugin it is necessary to buy a %s license."
210
  msgstr ""
211
 
212
+ #: bws_functions.php:408
213
  msgid "After that you can activate it by entering your license key."
214
  msgstr ""
215
 
216
+ #: bws_functions.php:422
217
  msgid "Unfortunately, you have exceeded the number of available tries per day."
218
  msgstr ""
219
 
220
+ #: bws_functions.php:439
221
  msgid "Congratulations! The Pro license of the plugin is successfully activated."
222
  msgstr ""
223
 
224
+ #: bws_functions.php:480
225
  msgid "Wrong license key."
226
  msgstr ""
227
 
228
+ #: bws_functions.php:482
229
  msgid "This license key is bind to another site."
230
  msgstr ""
231
 
232
+ #: bws_functions.php:484
233
  msgid "This license key is valid, but Your license has expired. If you want to update our plugin in future, you should extend the license."
234
  msgstr ""
235
 
236
+ #: bws_functions.php:486
237
  msgid "Unfortunately, you have exceeded the number of available tries."
238
  msgstr ""
239
 
240
+ #: bws_functions.php:488
241
  msgid "Unfortunately, the Pro Trial licence was already installed to this domain. The Pro Trial license can be installed only once."
242
  msgstr ""
243
 
244
+ #: bws_functions.php:492
245
  msgid "The Pro Trial license key is valid."
246
  msgstr ""
247
 
248
+ #: bws_functions.php:494
249
  msgid "The license key is valid."
250
  msgstr ""
251
 
252
+ #: bws_functions.php:497
253
  msgid "Your license will expire on"
254
  msgstr ""
255
 
256
+ #: bws_functions.php:530
257
  msgid "Please, enter your license key"
258
  msgstr ""
259
 
260
+ #: bws_functions.php:543
261
  msgid "If needed you can check if the license key is correct or reenter it in the field below. You can find your license key on your personal page - Client area - on our website"
262
  msgstr ""
263
 
264
+ #: bws_functions.php:543
265
  msgid "(your username is the email you specify when purchasing the product). If necessary, please submit \"Lost your password?\" request."
266
  msgstr ""
267
 
268
+ #: bws_functions.php:547
269
  msgid "Check license key"
270
  msgstr ""
271
 
272
+ #: bws_functions.php:561
273
  msgid "WARNING: Illegal use notification"
274
  msgstr ""
275
 
276
+ #: bws_functions.php:561
277
  msgid "You can use one license of the Pro plugin for one domain only. Please check and edit your license or domain if necessary using you personal Client Area. We strongly recommend you to solve the problem within 24 hours, otherwise the Pro plugin will be deactivated."
278
  msgstr ""
279
 
280
+ #: bws_functions.php:569
281
  msgid "Notice: Your Pro Trial license has expired. To continue using the plugin you should buy a Pro license"
282
  msgstr ""
283
 
284
+ #: bws_functions.php:571
285
  msgid "Your license has expired. To continue getting top-priority support and plugin updates you should extend it."
286
  msgstr ""
287
 
288
+ #: bws_functions.php:571
289
+ #: bws_functions.php:624
290
  #: bws_menu.php:669
291
  #: bws_menu.php:691
292
  #: bws_menu.php:718
296
  msgid "Learn more"
297
  msgstr "Pročitaj više"
298
 
299
+ #: bws_functions.php:581
300
  #, php-format
301
  msgid "Notice: You are using the Pro Trial license of %s plugin."
302
  msgstr ""
303
 
304
+ #: bws_functions.php:583
305
  msgid "Notice: You are using the Pro Trial license of plugin."
306
  msgstr ""
307
 
308
+ #: bws_functions.php:586
309
  msgid "The Pro Trial license will expire on"
310
  msgstr ""
311
 
312
+ #: bws_functions.php:624
313
  msgid "You license for"
314
  msgstr ""
315
 
316
+ #: bws_functions.php:624
317
  msgid "expires on"
318
  msgstr ""
319
 
320
+ #: bws_functions.php:624
321
  msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
322
  msgstr ""
323
 
324
+ #: bws_functions.php:655
325
  #, fuzzy
326
  msgid "Thank you for installing"
327
  msgstr "Hvala što ste nas kontaktirali"
328
 
329
+ #: bws_functions.php:656
330
  msgid "Let's get started"
331
  msgstr ""
332
 
333
+ #: bws_functions.php:657
334
  #, fuzzy
335
  msgid "Configure Settings"
336
  msgstr "na stranici za podešavanje modula ("
337
 
338
+ #: bws_functions.php:660
339
  msgid "Add New"
340
  msgstr "Ajouter"
341
 
342
+ #: bws_functions.php:664
343
  msgid "Close notice"
344
  msgstr ""
345
 
346
+ #: bws_functions.php:677
347
  msgid "Notice"
348
  msgstr ""
349
 
350
+ #: bws_functions.php:677
351
  msgid "The plugin's settings have been changed."
352
  msgstr ""
353
 
354
+ #: bws_functions.php:678
355
  msgid "Save Changes"
356
  msgstr "Sačuvaj izmene"
357
 
358
+ #: bws_functions.php:693
359
+ msgid "You can always look at premium options by clicking on the \"Show Pro features\" in the \"Go PRO\" tab"
360
+ msgstr ""
361
+
362
+ #: bws_functions.php:773
363
  msgid "Add BWS Plugins Shortcode"
364
  msgstr ""
365
 
366
+ #: bws_functions.php:793
367
+ #, fuzzy
368
+ msgid "Add shortcode"
369
+ msgstr "Kratak kod za Galeriju"
370
+
371
+ #: bws_functions.php:793
372
+ msgid "Add BestWebSoft plugins' shortcodes using this button."
373
+ msgstr ""
374
+
375
+ #: bws_functions.php:833
376
  msgid "Close"
377
  msgstr ""
378
 
379
+ #: bws_functions.php:925
380
  msgid "Restore all plugin settings to defaults"
381
  msgstr ""
382
 
383
+ #: bws_functions.php:927
384
  #, fuzzy
385
  msgid "Restore settings"
386
  msgstr "na stranici za podešavanje modula ("
387
 
388
+ #: bws_functions.php:938
389
  msgid "Are you sure you want to restore all settings by default?"
390
  msgstr ""
391
 
392
+ #: bws_functions.php:941
393
  msgid "Yes, restore all settings"
394
  msgstr ""
395
 
396
+ #: bws_functions.php:942
397
  #, fuzzy
398
  msgid "No, go back to the settings page"
399
  msgstr "na stranici za podešavanje modula ("
400
 
401
+ #: bws_functions.php:986
402
  #, fuzzy
403
  msgid "Plugin"
404
  msgstr "Pro moduli"
405
 
406
+ #: bws_functions.php:995
407
  #, fuzzy
408
  msgid "Shortcode settings"
409
  msgstr "na stranici za podešavanje modula ("
410
 
411
+ #: bws_functions.php:1000
412
  msgid "The shortcode will be inserted"
413
  msgstr ""
414
 
415
+ #: bws_functions.php:1005
416
  msgid "Insert"
417
  msgstr ""
418
 
419
+ #: bws_functions.php:1036
420
+ msgid "Visit Help Center"
421
+ msgstr ""
422
+
423
+ #: bws_functions.php:1041
424
+ msgid "FAQ"
425
+ msgstr "FAQ"
426
+
427
+ #: bws_functions.php:1047
428
+ msgid "For more information:"
429
+ msgstr ""
430
+
431
+ #: bws_functions.php:1048
432
+ msgid "Documentation"
433
+ msgstr ""
434
+
435
+ #: bws_functions.php:1049
436
+ msgid "Video Instructions"
437
+ msgstr ""
438
+
439
+ #: bws_functions.php:1050
440
+ msgid "Submit a Request"
441
+ msgstr ""
442
+
443
  #: bws_menu.php:506
444
  msgid "Not set"
445
  msgstr "Nije podešeno"
809
  #~ msgid "Upload File"
810
  #~ msgstr "Učitaj fajl"
811
 
 
 
 
812
  #~ msgid ""
813
  #~ "The gallery temp directory (gallery-plugin/upload/files) is not available "
814
  #~ "for record on your webserver. Please use the standard WP functionality to "
1082
  #~ msgid "Google +1"
1083
  #~ msgstr "Google +1"
1084
 
 
 
 
1085
  #~ msgid "Support"
1086
  #~ msgstr "Podrška"
1087
 
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-09-17 16:00+0300\n"
6
- "PO-Revision-Date: 2015-09-17 16:00+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,268 +16,276 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: bws_functions.php:29
20
- #: bws_functions.php:53
21
  msgid "requires"
22
  msgstr ""
23
 
24
- #: bws_functions.php:31
25
  msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
26
  msgstr ""
27
 
28
- #: bws_functions.php:32
29
  msgid "Back to the WordPress"
30
  msgstr ""
31
 
32
- #: bws_functions.php:34
33
  #, fuzzy
34
  msgid "Plugins page"
35
  msgstr "Betaltillägg"
36
 
37
- #: bws_functions.php:55
38
  msgid "or higher! We do not guarantee that our plugin will work correctly. Please upgrade to WordPress latest version."
39
  msgstr ""
40
 
41
- #: bws_functions.php:112
42
  msgid "It’s time to upgrade your"
43
  msgstr ""
44
 
45
- #: bws_functions.php:112
46
  #, fuzzy
47
  msgid "to"
48
  msgstr "två"
49
 
50
- #: bws_functions.php:112
51
  #, fuzzy
52
  msgid "version!"
53
  msgstr "PHP-version"
54
 
55
- #: bws_functions.php:113
56
  msgid "Extend standard plugin functionality with new great options."
57
  msgstr ""
58
 
59
- #: bws_functions.php:116
60
- #: bws_functions.php:513
61
  #, fuzzy
62
  msgid "Learn More"
63
  msgstr "Läs mer"
64
 
65
- #: bws_functions.php:133
66
  msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
67
  msgstr ""
68
 
69
- #: bws_functions.php:134
70
  #, fuzzy
71
  msgid "Rate the plugin"
72
  msgstr "Aktiverade tillägg"
73
 
74
- #: bws_functions.php:137
75
  #, fuzzy
76
  msgid "If there is something wrong about it, please contact us"
77
  msgstr "Om du har några frågor, kontakta oss via"
78
 
79
- #: bws_functions.php:154
80
- #: bws_functions.php:190
 
 
 
 
81
  msgid "Wrong license key"
82
  msgstr ""
83
 
84
- #: bws_functions.php:184
85
- #: bws_functions.php:426
86
- #: bws_functions.php:477
87
  msgid "Something went wrong. Please try again later. If the error appears again, please contact us"
88
  msgstr ""
89
 
90
- #: bws_functions.php:184
91
- #: bws_functions.php:426
92
- #: bws_functions.php:477
93
  msgid "We are sorry for inconvenience."
94
  msgstr ""
95
 
96
- #: bws_functions.php:192
97
  msgid "This license key is bind to another site"
98
  msgstr ""
99
 
100
- #: bws_functions.php:194
101
- #: bws_functions.php:336
102
  msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
103
  msgstr ""
104
 
105
- #: bws_functions.php:196
106
  msgid "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates you should extend it in your"
107
  msgstr ""
108
 
109
- #: bws_functions.php:198
110
  msgid "Unfortunately, the Pro licence was already installed to this domain. The Pro Trial license can be installed only once."
111
  msgstr ""
112
 
113
- #: bws_functions.php:219
114
- #: bws_functions.php:241
115
- #: bws_functions.php:263
116
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
117
  msgstr ""
118
 
119
- #: bws_functions.php:231
120
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
121
  msgstr ""
122
 
123
- #: bws_functions.php:237
124
  msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
125
  msgstr ""
126
 
127
- #: bws_functions.php:244
128
  msgid "UploadDir is not writable. Please, upload the plugin manually"
129
  msgstr ""
130
 
131
- #: bws_functions.php:267
132
  msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvenience."
133
  msgstr ""
134
 
135
- #: bws_functions.php:292
136
  msgid "Please, enter Your license key"
137
  msgstr ""
138
 
139
- #: bws_functions.php:309
140
  msgid "Congratulations! The Pro version of the plugin is successfully download and activated."
141
  msgstr ""
142
 
143
- #: bws_functions.php:311
144
- #: bws_functions.php:393
145
  msgid "Please, go to"
146
  msgstr ""
147
 
148
- #: bws_functions.php:311
149
- #: bws_functions.php:393
150
  msgid "the setting page"
151
  msgstr ""
152
 
153
- #: bws_functions.php:312
154
- #: bws_functions.php:394
155
  msgid "You will be redirected automatically in 5 seconds."
156
  msgstr ""
157
 
158
- #: bws_functions.php:317
 
 
 
 
159
  msgid "You can download and activate"
160
  msgstr ""
161
 
162
- #: bws_functions.php:319
163
  msgid "version of this plugin by entering Your license key."
164
  msgstr ""
165
 
166
- #: bws_functions.php:321
167
- #: bws_functions.php:362
168
  msgid "You can find your license key on your personal page Client area, by clicking on the link"
169
  msgstr ""
170
 
171
- #: bws_functions.php:323
172
- #: bws_functions.php:364
173
  msgid "(your username is the email you specify when purchasing the product)."
174
  msgstr ""
175
 
176
- #: bws_functions.php:327
177
- #: bws_functions.php:630
178
  #, fuzzy
179
  msgid "or"
180
  msgstr "fyra"
181
 
182
- #: bws_functions.php:327
183
  #, php-format
184
  msgid "Start Your Free %s-Day Trial Now"
185
  msgstr ""
186
 
187
- #: bws_functions.php:333
188
- #: bws_functions.php:342
189
- #: bws_functions.php:372
190
- #: bws_functions.php:380
191
  #: bws_menu.php:693
192
  #: bws_menu.php:750
193
  #, fuzzy
194
  msgid "Activate"
195
  msgstr "Aktiverade tillägg"
196
 
197
- #: bws_functions.php:359
198
- #: bws_functions.php:452
199
  #, php-format
200
  msgid "In order to continue using the plugin it is necessary to buy a %s license."
201
  msgstr ""
202
 
203
- #: bws_functions.php:360
204
  msgid "After that you can activate it by entering your license key."
205
  msgstr ""
206
 
207
- #: bws_functions.php:374
208
  msgid "Unfortunately, you have exceeded the number of available tries per day."
209
  msgstr ""
210
 
211
- #: bws_functions.php:391
212
  msgid "Congratulations! The Pro license of the plugin is successfully activated."
213
  msgstr ""
214
 
215
- #: bws_functions.php:432
216
  msgid "Wrong license key."
217
  msgstr ""
218
 
219
- #: bws_functions.php:434
220
  msgid "This license key is bind to another site."
221
  msgstr ""
222
 
223
- #: bws_functions.php:436
224
  msgid "This license key is valid, but Your license has expired. If you want to update our plugin in future, you should extend the license."
225
  msgstr ""
226
 
227
- #: bws_functions.php:438
228
  msgid "Unfortunately, you have exceeded the number of available tries."
229
  msgstr ""
230
 
231
- #: bws_functions.php:440
232
  msgid "Unfortunately, the Pro Trial licence was already installed to this domain. The Pro Trial license can be installed only once."
233
  msgstr ""
234
 
235
- #: bws_functions.php:444
236
  msgid "The Pro Trial license key is valid."
237
  msgstr ""
238
 
239
- #: bws_functions.php:446
240
  msgid "The license key is valid."
241
  msgstr ""
242
 
243
- #: bws_functions.php:449
244
  msgid "Your license will expire on"
245
  msgstr ""
246
 
247
- #: bws_functions.php:482
248
  msgid "Please, enter your license key"
249
  msgstr ""
250
 
251
- #: bws_functions.php:495
252
  msgid "If needed you can check if the license key is correct or reenter it in the field below. You can find your license key on your personal page - Client area - on our website"
253
  msgstr ""
254
 
255
- #: bws_functions.php:495
256
  msgid "(your username is the email you specify when purchasing the product). If necessary, please submit \"Lost your password?\" request."
257
  msgstr ""
258
 
259
- #: bws_functions.php:499
260
  msgid "Check license key"
261
  msgstr ""
262
 
263
- #: bws_functions.php:513
264
  msgid "WARNING: Illegal use notification"
265
  msgstr ""
266
 
267
- #: bws_functions.php:513
268
  msgid "You can use one license of the Pro plugin for one domain only. Please check and edit your license or domain if necessary using you personal Client Area. We strongly recommend you to solve the problem within 24 hours, otherwise the Pro plugin will be deactivated."
269
  msgstr ""
270
 
271
- #: bws_functions.php:521
272
  msgid "Notice: Your Pro Trial license has expired. To continue using the plugin you should buy a Pro license"
273
  msgstr ""
274
 
275
- #: bws_functions.php:523
276
  msgid "Your license has expired. To continue getting top-priority support and plugin updates you should extend it."
277
  msgstr ""
278
 
279
- #: bws_functions.php:523
280
- #: bws_functions.php:576
281
  #: bws_menu.php:669
282
  #: bws_menu.php:691
283
  #: bws_menu.php:718
@@ -287,111 +295,147 @@ msgstr ""
287
  msgid "Learn more"
288
  msgstr "Läs mer"
289
 
290
- #: bws_functions.php:533
291
  #, php-format
292
  msgid "Notice: You are using the Pro Trial license of %s plugin."
293
  msgstr ""
294
 
295
- #: bws_functions.php:535
296
  msgid "Notice: You are using the Pro Trial license of plugin."
297
  msgstr ""
298
 
299
- #: bws_functions.php:538
300
  msgid "The Pro Trial license will expire on"
301
  msgstr ""
302
 
303
- #: bws_functions.php:576
304
  msgid "You license for"
305
  msgstr ""
306
 
307
- #: bws_functions.php:576
308
  msgid "expires on"
309
  msgstr ""
310
 
311
- #: bws_functions.php:576
312
  msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
313
  msgstr ""
314
 
315
- #: bws_functions.php:626
316
  #, fuzzy
317
  msgid "Thank you for installing"
318
  msgstr "Tack för att du kontaktade oss."
319
 
320
- #: bws_functions.php:627
321
  msgid "Let's get started"
322
  msgstr ""
323
 
324
- #: bws_functions.php:628
325
  #, fuzzy
326
  msgid "Configure Settings"
327
  msgstr "Inställningar"
328
 
329
- #: bws_functions.php:631
330
  msgid "Add New"
331
  msgstr ""
332
 
333
- #: bws_functions.php:635
334
  msgid "Close notice"
335
  msgstr ""
336
 
337
- #: bws_functions.php:648
338
  msgid "Notice"
339
  msgstr ""
340
 
341
- #: bws_functions.php:648
342
  msgid "The plugin's settings have been changed."
343
  msgstr ""
344
 
345
- #: bws_functions.php:649
346
  msgid "Save Changes"
347
  msgstr "Spara ändringar"
348
 
349
- #: bws_functions.php:694
 
 
 
 
350
  msgid "Add BWS Plugins Shortcode"
351
  msgstr ""
352
 
353
- #: bws_functions.php:738
 
 
 
 
 
 
 
 
354
  msgid "Close"
355
  msgstr ""
356
 
357
- #: bws_functions.php:829
358
  msgid "Restore all plugin settings to defaults"
359
  msgstr ""
360
 
361
- #: bws_functions.php:831
362
  msgid "Restore settings"
363
  msgstr ""
364
 
365
- #: bws_functions.php:842
366
  msgid "Are you sure you want to restore all settings by default?"
367
  msgstr ""
368
 
369
- #: bws_functions.php:845
370
  msgid "Yes, restore all settings"
371
  msgstr ""
372
 
373
- #: bws_functions.php:846
374
  msgid "No, go back to the settings page"
375
  msgstr ""
376
 
377
- #: bws_functions.php:890
378
  #, fuzzy
379
  msgid "Plugin"
380
  msgstr "Betaltillägg"
381
 
382
- #: bws_functions.php:899
383
  #, fuzzy
384
  msgid "Shortcode settings"
385
  msgstr "Inställningar"
386
 
387
- #: bws_functions.php:904
388
  msgid "The shortcode will be inserted"
389
  msgstr ""
390
 
391
- #: bws_functions.php:909
392
  msgid "Insert"
393
  msgstr ""
394
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
395
  #: bws_menu.php:506
396
  msgid "Not set"
397
  msgstr "Inte angiven"
@@ -764,9 +808,6 @@ msgstr "Skicka till anpassad epost &#187;"
764
  #~ msgid "Captcha"
765
  #~ msgstr "Captcha"
766
 
767
- #~ msgid "FAQ"
768
- #~ msgstr "FAQ"
769
-
770
  #~ msgid "Support"
771
  #~ msgstr "Support"
772
 
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-10-09 14:46+0300\n"
6
+ "PO-Revision-Date: 2015-10-09 14:46+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:39
20
+ #: bws_functions.php:63
21
  msgid "requires"
22
  msgstr ""
23
 
24
+ #: bws_functions.php:41
25
  msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
26
  msgstr ""
27
 
28
+ #: bws_functions.php:42
29
  msgid "Back to the WordPress"
30
  msgstr ""
31
 
32
+ #: bws_functions.php:44
33
  #, fuzzy
34
  msgid "Plugins page"
35
  msgstr "Betaltillägg"
36
 
37
+ #: bws_functions.php:65
38
  msgid "or higher! We do not guarantee that our plugin will work correctly. Please upgrade to WordPress latest version."
39
  msgstr ""
40
 
41
+ #: bws_functions.php:122
42
  msgid "It’s time to upgrade your"
43
  msgstr ""
44
 
45
+ #: bws_functions.php:122
46
  #, fuzzy
47
  msgid "to"
48
  msgstr "två"
49
 
50
+ #: bws_functions.php:122
51
  #, fuzzy
52
  msgid "version!"
53
  msgstr "PHP-version"
54
 
55
+ #: bws_functions.php:123
56
  msgid "Extend standard plugin functionality with new great options."
57
  msgstr ""
58
 
59
+ #: bws_functions.php:126
60
+ #: bws_functions.php:561
61
  #, fuzzy
62
  msgid "Learn More"
63
  msgstr "Läs mer"
64
 
65
+ #: bws_functions.php:143
66
  msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
67
  msgstr ""
68
 
69
+ #: bws_functions.php:144
70
  #, fuzzy
71
  msgid "Rate the plugin"
72
  msgstr "Aktiverade tillägg"
73
 
74
+ #: bws_functions.php:147
75
  #, fuzzy
76
  msgid "If there is something wrong about it, please contact us"
77
  msgstr "Om du har några frågor, kontakta oss via"
78
 
79
+ #: bws_functions.php:179
80
+ msgid "Check premium options on the plugin settings page!"
81
+ msgstr ""
82
+
83
+ #: bws_functions.php:186
84
+ #: bws_functions.php:222
85
  msgid "Wrong license key"
86
  msgstr ""
87
 
88
+ #: bws_functions.php:216
89
+ #: bws_functions.php:474
90
+ #: bws_functions.php:525
91
  msgid "Something went wrong. Please try again later. If the error appears again, please contact us"
92
  msgstr ""
93
 
94
+ #: bws_functions.php:216
95
+ #: bws_functions.php:474
96
+ #: bws_functions.php:525
97
  msgid "We are sorry for inconvenience."
98
  msgstr ""
99
 
100
+ #: bws_functions.php:224
101
  msgid "This license key is bind to another site"
102
  msgstr ""
103
 
104
+ #: bws_functions.php:226
105
+ #: bws_functions.php:384
106
  msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
107
  msgstr ""
108
 
109
+ #: bws_functions.php:228
110
  msgid "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates you should extend it in your"
111
  msgstr ""
112
 
113
+ #: bws_functions.php:230
114
  msgid "Unfortunately, the Pro licence was already installed to this domain. The Pro Trial license can be installed only once."
115
  msgstr ""
116
 
117
+ #: bws_functions.php:251
118
+ #: bws_functions.php:273
119
+ #: bws_functions.php:295
120
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
121
  msgstr ""
122
 
123
+ #: bws_functions.php:263
124
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
125
  msgstr ""
126
 
127
+ #: bws_functions.php:269
128
  msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
129
  msgstr ""
130
 
131
+ #: bws_functions.php:276
132
  msgid "UploadDir is not writable. Please, upload the plugin manually"
133
  msgstr ""
134
 
135
+ #: bws_functions.php:299
136
  msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvenience."
137
  msgstr ""
138
 
139
+ #: bws_functions.php:324
140
  msgid "Please, enter Your license key"
141
  msgstr ""
142
 
143
+ #: bws_functions.php:348
144
  msgid "Congratulations! The Pro version of the plugin is successfully download and activated."
145
  msgstr ""
146
 
147
+ #: bws_functions.php:350
148
+ #: bws_functions.php:441
149
  msgid "Please, go to"
150
  msgstr ""
151
 
152
+ #: bws_functions.php:350
153
+ #: bws_functions.php:441
154
  msgid "the setting page"
155
  msgstr ""
156
 
157
+ #: bws_functions.php:351
158
+ #: bws_functions.php:442
159
  msgid "You will be redirected automatically in 5 seconds."
160
  msgstr ""
161
 
162
+ #: bws_functions.php:358
163
+ msgid "Show Pro features"
164
+ msgstr ""
165
+
166
+ #: bws_functions.php:365
167
  msgid "You can download and activate"
168
  msgstr ""
169
 
170
+ #: bws_functions.php:367
171
  msgid "version of this plugin by entering Your license key."
172
  msgstr ""
173
 
174
+ #: bws_functions.php:369
175
+ #: bws_functions.php:410
176
  msgid "You can find your license key on your personal page Client area, by clicking on the link"
177
  msgstr ""
178
 
179
+ #: bws_functions.php:371
180
+ #: bws_functions.php:412
181
  msgid "(your username is the email you specify when purchasing the product)."
182
  msgstr ""
183
 
184
+ #: bws_functions.php:375
185
+ #: bws_functions.php:659
186
  #, fuzzy
187
  msgid "or"
188
  msgstr "fyra"
189
 
190
+ #: bws_functions.php:375
191
  #, php-format
192
  msgid "Start Your Free %s-Day Trial Now"
193
  msgstr ""
194
 
195
+ #: bws_functions.php:381
196
+ #: bws_functions.php:390
197
+ #: bws_functions.php:420
198
+ #: bws_functions.php:428
199
  #: bws_menu.php:693
200
  #: bws_menu.php:750
201
  #, fuzzy
202
  msgid "Activate"
203
  msgstr "Aktiverade tillägg"
204
 
205
+ #: bws_functions.php:407
206
+ #: bws_functions.php:500
207
  #, php-format
208
  msgid "In order to continue using the plugin it is necessary to buy a %s license."
209
  msgstr ""
210
 
211
+ #: bws_functions.php:408
212
  msgid "After that you can activate it by entering your license key."
213
  msgstr ""
214
 
215
+ #: bws_functions.php:422
216
  msgid "Unfortunately, you have exceeded the number of available tries per day."
217
  msgstr ""
218
 
219
+ #: bws_functions.php:439
220
  msgid "Congratulations! The Pro license of the plugin is successfully activated."
221
  msgstr ""
222
 
223
+ #: bws_functions.php:480
224
  msgid "Wrong license key."
225
  msgstr ""
226
 
227
+ #: bws_functions.php:482
228
  msgid "This license key is bind to another site."
229
  msgstr ""
230
 
231
+ #: bws_functions.php:484
232
  msgid "This license key is valid, but Your license has expired. If you want to update our plugin in future, you should extend the license."
233
  msgstr ""
234
 
235
+ #: bws_functions.php:486
236
  msgid "Unfortunately, you have exceeded the number of available tries."
237
  msgstr ""
238
 
239
+ #: bws_functions.php:488
240
  msgid "Unfortunately, the Pro Trial licence was already installed to this domain. The Pro Trial license can be installed only once."
241
  msgstr ""
242
 
243
+ #: bws_functions.php:492
244
  msgid "The Pro Trial license key is valid."
245
  msgstr ""
246
 
247
+ #: bws_functions.php:494
248
  msgid "The license key is valid."
249
  msgstr ""
250
 
251
+ #: bws_functions.php:497
252
  msgid "Your license will expire on"
253
  msgstr ""
254
 
255
+ #: bws_functions.php:530
256
  msgid "Please, enter your license key"
257
  msgstr ""
258
 
259
+ #: bws_functions.php:543
260
  msgid "If needed you can check if the license key is correct or reenter it in the field below. You can find your license key on your personal page - Client area - on our website"
261
  msgstr ""
262
 
263
+ #: bws_functions.php:543
264
  msgid "(your username is the email you specify when purchasing the product). If necessary, please submit \"Lost your password?\" request."
265
  msgstr ""
266
 
267
+ #: bws_functions.php:547
268
  msgid "Check license key"
269
  msgstr ""
270
 
271
+ #: bws_functions.php:561
272
  msgid "WARNING: Illegal use notification"
273
  msgstr ""
274
 
275
+ #: bws_functions.php:561
276
  msgid "You can use one license of the Pro plugin for one domain only. Please check and edit your license or domain if necessary using you personal Client Area. We strongly recommend you to solve the problem within 24 hours, otherwise the Pro plugin will be deactivated."
277
  msgstr ""
278
 
279
+ #: bws_functions.php:569
280
  msgid "Notice: Your Pro Trial license has expired. To continue using the plugin you should buy a Pro license"
281
  msgstr ""
282
 
283
+ #: bws_functions.php:571
284
  msgid "Your license has expired. To continue getting top-priority support and plugin updates you should extend it."
285
  msgstr ""
286
 
287
+ #: bws_functions.php:571
288
+ #: bws_functions.php:624
289
  #: bws_menu.php:669
290
  #: bws_menu.php:691
291
  #: bws_menu.php:718
295
  msgid "Learn more"
296
  msgstr "Läs mer"
297
 
298
+ #: bws_functions.php:581
299
  #, php-format
300
  msgid "Notice: You are using the Pro Trial license of %s plugin."
301
  msgstr ""
302
 
303
+ #: bws_functions.php:583
304
  msgid "Notice: You are using the Pro Trial license of plugin."
305
  msgstr ""
306
 
307
+ #: bws_functions.php:586
308
  msgid "The Pro Trial license will expire on"
309
  msgstr ""
310
 
311
+ #: bws_functions.php:624
312
  msgid "You license for"
313
  msgstr ""
314
 
315
+ #: bws_functions.php:624
316
  msgid "expires on"
317
  msgstr ""
318
 
319
+ #: bws_functions.php:624
320
  msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
321
  msgstr ""
322
 
323
+ #: bws_functions.php:655
324
  #, fuzzy
325
  msgid "Thank you for installing"
326
  msgstr "Tack för att du kontaktade oss."
327
 
328
+ #: bws_functions.php:656
329
  msgid "Let's get started"
330
  msgstr ""
331
 
332
+ #: bws_functions.php:657
333
  #, fuzzy
334
  msgid "Configure Settings"
335
  msgstr "Inställningar"
336
 
337
+ #: bws_functions.php:660
338
  msgid "Add New"
339
  msgstr ""
340
 
341
+ #: bws_functions.php:664
342
  msgid "Close notice"
343
  msgstr ""
344
 
345
+ #: bws_functions.php:677
346
  msgid "Notice"
347
  msgstr ""
348
 
349
+ #: bws_functions.php:677
350
  msgid "The plugin's settings have been changed."
351
  msgstr ""
352
 
353
+ #: bws_functions.php:678
354
  msgid "Save Changes"
355
  msgstr "Spara ändringar"
356
 
357
+ #: bws_functions.php:693
358
+ msgid "You can always look at premium options by clicking on the \"Show Pro features\" in the \"Go PRO\" tab"
359
+ msgstr ""
360
+
361
+ #: bws_functions.php:773
362
  msgid "Add BWS Plugins Shortcode"
363
  msgstr ""
364
 
365
+ #: bws_functions.php:793
366
+ msgid "Add shortcode"
367
+ msgstr ""
368
+
369
+ #: bws_functions.php:793
370
+ msgid "Add BestWebSoft plugins' shortcodes using this button."
371
+ msgstr ""
372
+
373
+ #: bws_functions.php:833
374
  msgid "Close"
375
  msgstr ""
376
 
377
+ #: bws_functions.php:925
378
  msgid "Restore all plugin settings to defaults"
379
  msgstr ""
380
 
381
+ #: bws_functions.php:927
382
  msgid "Restore settings"
383
  msgstr ""
384
 
385
+ #: bws_functions.php:938
386
  msgid "Are you sure you want to restore all settings by default?"
387
  msgstr ""
388
 
389
+ #: bws_functions.php:941
390
  msgid "Yes, restore all settings"
391
  msgstr ""
392
 
393
+ #: bws_functions.php:942
394
  msgid "No, go back to the settings page"
395
  msgstr ""
396
 
397
+ #: bws_functions.php:986
398
  #, fuzzy
399
  msgid "Plugin"
400
  msgstr "Betaltillägg"
401
 
402
+ #: bws_functions.php:995
403
  #, fuzzy
404
  msgid "Shortcode settings"
405
  msgstr "Inställningar"
406
 
407
+ #: bws_functions.php:1000
408
  msgid "The shortcode will be inserted"
409
  msgstr ""
410
 
411
+ #: bws_functions.php:1005
412
  msgid "Insert"
413
  msgstr ""
414
 
415
+ #: bws_functions.php:1036
416
+ msgid "Visit Help Center"
417
+ msgstr ""
418
+
419
+ #: bws_functions.php:1041
420
+ msgid "FAQ"
421
+ msgstr "FAQ"
422
+
423
+ #: bws_functions.php:1047
424
+ msgid "For more information:"
425
+ msgstr ""
426
+
427
+ #: bws_functions.php:1048
428
+ msgid "Documentation"
429
+ msgstr ""
430
+
431
+ #: bws_functions.php:1049
432
+ msgid "Video Instructions"
433
+ msgstr ""
434
+
435
+ #: bws_functions.php:1050
436
+ msgid "Submit a Request"
437
+ msgstr ""
438
+
439
  #: bws_menu.php:506
440
  msgid "Not set"
441
  msgstr "Inte angiven"
808
  #~ msgid "Captcha"
809
  #~ msgstr "Captcha"
810
 
 
 
 
811
  #~ msgid "Support"
812
  #~ msgstr "Support"
813
 
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-09-17 16:00+0300\n"
6
- "PO-Revision-Date: 2015-09-17 16:02+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,260 +16,268 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: bws_functions.php:29
20
- #: bws_functions.php:53
21
  msgid "requires"
22
  msgstr "потребує"
23
 
24
- #: bws_functions.php:31
25
  msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
26
  msgstr "чи вище, тому його було деактивовано! Будь ласка оновіть WordPress та спробуйте ще раз."
27
 
28
- #: bws_functions.php:32
29
  msgid "Back to the WordPress"
30
  msgstr "Повернутися на WordPress на"
31
 
32
- #: bws_functions.php:34
33
  msgid "Plugins page"
34
  msgstr "Сторінку Плагінів"
35
 
36
- #: bws_functions.php:55
37
  msgid "or higher! We do not guarantee that our plugin will work correctly. Please upgrade to WordPress latest version."
38
  msgstr "чи вище! Ми не гарантуємо, що наш плагін буде працювати правильно. Будь ласка, оновіть WordPress до останньої версії."
39
 
40
- #: bws_functions.php:112
41
  msgid "It’s time to upgrade your"
42
  msgstr "Настав час модернізувати Ваш"
43
 
44
- #: bws_functions.php:112
45
  msgid "to"
46
  msgstr "до"
47
 
48
- #: bws_functions.php:112
49
  msgid "version!"
50
  msgstr "версії!"
51
 
52
- #: bws_functions.php:113
53
  msgid "Extend standard plugin functionality with new great options."
54
  msgstr "Розширює можливості стандартного функціоналу плагіна."
55
 
56
- #: bws_functions.php:116
57
- #: bws_functions.php:513
58
  msgid "Learn More"
59
  msgstr "Дізнатись більше"
60
 
61
- #: bws_functions.php:133
62
  msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
63
  msgstr "Якщо вам сподобався плагін, будь ласка, поставте нам 5 зірочок на WordPress"
64
 
65
- #: bws_functions.php:134
66
  msgid "Rate the plugin"
67
  msgstr "Оцінити плагін"
68
 
69
- #: bws_functions.php:137
70
  msgid "If there is something wrong about it, please contact us"
71
  msgstr "Якщо щось не так, будь ласка, повідомте нам"
72
 
73
- #: bws_functions.php:154
74
- #: bws_functions.php:190
 
 
 
 
75
  msgid "Wrong license key"
76
  msgstr "Невірний ключ ліцензії"
77
 
78
- #: bws_functions.php:184
79
- #: bws_functions.php:426
80
- #: bws_functions.php:477
81
  msgid "Something went wrong. Please try again later. If the error appears again, please contact us"
82
  msgstr "Щось не так, спробуйте пізніше. Якщо помилка повториться, будь ласка, повідомте нам"
83
 
84
- #: bws_functions.php:184
85
- #: bws_functions.php:426
86
- #: bws_functions.php:477
87
  msgid "We are sorry for inconvenience."
88
  msgstr "Просимо вибачення за незручності."
89
 
90
- #: bws_functions.php:192
91
  msgid "This license key is bind to another site"
92
  msgstr "Цей ліцензійний ключ прив'язано до іншого сайту"
93
 
94
- #: bws_functions.php:194
95
- #: bws_functions.php:336
96
  msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
97
  msgstr "На жаль, ви перевищили кількість доступних спроб на день. Будь ласка, завантажте плагін вручну"
98
 
99
- #: bws_functions.php:196
100
  msgid "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates you should extend it in your"
101
  msgstr "На жаль, ваша ліцензія скінчилась. Для того, щоб і надалі отримувати першочергову техпідтримку і оновлення, будь ласка, продовжте ліцензію"
102
 
103
- #: bws_functions.php:198
104
  msgid "Unfortunately, the Pro licence was already installed to this domain. The Pro Trial license can be installed only once."
105
  msgstr "На жаль, Pro ліцензія уже використовувалась на цьому домені. Тріал Pro версії плагіну можна використати лише один раз."
106
 
107
- #: bws_functions.php:219
108
- #: bws_functions.php:241
109
- #: bws_functions.php:263
110
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
111
  msgstr "Помилка при завантаженні zip-архіву. Будь ласка, завантажте плагін вручну"
112
 
113
- #: bws_functions.php:231
114
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
115
  msgstr "Помилка при відкритті zip-архіву. Будь ласка, завантажте плагін вручну"
116
 
117
- #: bws_functions.php:237
118
  msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
119
  msgstr "Ваш сервер не підтримує формати Zip і Phar. Будь ласка, завантажте плагін вручну"
120
 
121
- #: bws_functions.php:244
122
  msgid "UploadDir is not writable. Please, upload the plugin manually"
123
  msgstr "Немає доступу до теки завантажень WordPress. Будь ласка, завантажте плагін вручну"
124
 
125
- #: bws_functions.php:267
126
  msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvenience."
127
  msgstr "Виникли певні проблеми. Спробуйте ще раз пізніше або завантажте плагін вручну. Просимо вибачення за незручності."
128
 
129
- #: bws_functions.php:292
130
  msgid "Please, enter Your license key"
131
  msgstr "Будь ласка, впишіть ваш ліцензійний ключ"
132
 
133
- #: bws_functions.php:309
134
  msgid "Congratulations! The Pro version of the plugin is successfully download and activated."
135
  msgstr "Вітаємо! Pro версію плагіну успішно завантажено та активовано."
136
 
137
- #: bws_functions.php:311
138
- #: bws_functions.php:393
139
  msgid "Please, go to"
140
  msgstr "Будь ласка, перейдіть на"
141
 
142
- #: bws_functions.php:311
143
- #: bws_functions.php:393
144
  msgid "the setting page"
145
  msgstr "сторінку установок"
146
 
147
- #: bws_functions.php:312
148
- #: bws_functions.php:394
149
  msgid "You will be redirected automatically in 5 seconds."
150
  msgstr "Вас буде перенаправлено автоматично через 5 секунд."
151
 
152
- #: bws_functions.php:317
 
 
 
 
153
  msgid "You can download and activate"
154
  msgstr "Ви можете завантажити та активувати"
155
 
156
- #: bws_functions.php:319
157
  msgid "version of this plugin by entering Your license key."
158
  msgstr "версію цього плагіну, якщо впишете ваш ліцензійний ключ."
159
 
160
- #: bws_functions.php:321
161
- #: bws_functions.php:362
162
  msgid "You can find your license key on your personal page Client area, by clicking on the link"
163
  msgstr "Ви можете знайти ваш ліцензійний ключ на вашій персональній сторінці у Client area, перейшовши за посиланням"
164
 
165
- #: bws_functions.php:323
166
- #: bws_functions.php:364
167
  msgid "(your username is the email you specify when purchasing the product)."
168
  msgstr "(ваше ім'я - це емейл, який ви вказували при купівлі плагіну)"
169
 
170
- #: bws_functions.php:327
171
- #: bws_functions.php:630
172
  msgid "or"
173
  msgstr "або"
174
 
175
- #: bws_functions.php:327
176
  #, php-format
177
  msgid "Start Your Free %s-Day Trial Now"
178
  msgstr "Спробуйте %s-денну тріал версію безкоштовно"
179
 
180
- #: bws_functions.php:333
181
- #: bws_functions.php:342
182
- #: bws_functions.php:372
183
- #: bws_functions.php:380
184
  #: bws_menu.php:693
185
  #: bws_menu.php:750
186
  msgid "Activate"
187
  msgstr "Активувати"
188
 
189
- #: bws_functions.php:359
190
- #: bws_functions.php:452
191
  #, php-format
192
  msgid "In order to continue using the plugin it is necessary to buy a %s license."
193
  msgstr "Щоб продовжити користуватись плагіном, потрібно придбати %s ліцензію."
194
 
195
- #: bws_functions.php:360
196
  msgid "After that you can activate it by entering your license key."
197
  msgstr "Після цього ви зможете активувати його ввівши ліцензійний ключ."
198
 
199
- #: bws_functions.php:374
200
  msgid "Unfortunately, you have exceeded the number of available tries per day."
201
  msgstr "На жаль, ви перевищили кількість допустимих спроб."
202
 
203
- #: bws_functions.php:391
204
  msgid "Congratulations! The Pro license of the plugin is successfully activated."
205
  msgstr "Вітаємо! Pro версію плагіну успішно активовано."
206
 
207
- #: bws_functions.php:432
208
  msgid "Wrong license key."
209
  msgstr "Неправильний ліцензійний ключ."
210
 
211
- #: bws_functions.php:434
212
  msgid "This license key is bind to another site."
213
  msgstr "Цей ліцензійний ключ прив'язано до іншого сайту."
214
 
215
- #: bws_functions.php:436
216
  msgid "This license key is valid, but Your license has expired. If you want to update our plugin in future, you should extend the license."
217
  msgstr "Даний ліцензійний ключ дійсний, але строк вашої ліцензії витік. Якщо ви хочете оновлювати наш плагін у майбутньому, вам слід подовжити ліцензію."
218
 
219
- #: bws_functions.php:438
220
  msgid "Unfortunately, you have exceeded the number of available tries."
221
  msgstr "На жаль, ви перевищили кількість допустимих спроб."
222
 
223
- #: bws_functions.php:440
224
  msgid "Unfortunately, the Pro Trial licence was already installed to this domain. The Pro Trial license can be installed only once."
225
  msgstr "На жаль, тріал Pro версія плагіну уже встановлювалась на цей домен. Тріал Pro версію можна встановлювати лише один раз."
226
 
227
- #: bws_functions.php:444
228
  msgid "The Pro Trial license key is valid."
229
  msgstr "Ключ тріал Pro версії вірний."
230
 
231
- #: bws_functions.php:446
232
  msgid "The license key is valid."
233
  msgstr "Ліцензійний ключ дійсний."
234
 
235
- #: bws_functions.php:449
236
  msgid "Your license will expire on"
237
  msgstr "Ваша ліцензія закінчується"
238
 
239
- #: bws_functions.php:482
240
  msgid "Please, enter your license key"
241
  msgstr "Будь ласка, введіть ваш ліцензійний ключ"
242
 
243
- #: bws_functions.php:495
244
  msgid "If needed you can check if the license key is correct or reenter it in the field below. You can find your license key on your personal page - Client area - on our website"
245
  msgstr "При необхідності ви можете перевірити правильність вашого ліцензійного ключа або знову ввести його у полі, що знаходиться нижче. Ви можете знайти свій ліцензійний ключ на вашій персональній сторінці - Client area - на нашому сайті."
246
 
247
- #: bws_functions.php:495
248
  msgid "(your username is the email you specify when purchasing the product). If necessary, please submit \"Lost your password?\" request."
249
  msgstr "(ім'я користувача - це електронна адреса, яку ви вказуєте при купівлі продукту). При необхідності, будь ласка, відправте запит на відновлення вашого паролю."
250
 
251
- #: bws_functions.php:499
252
  msgid "Check license key"
253
  msgstr "Перевірте ліцензійний ключ"
254
 
255
- #: bws_functions.php:513
256
  msgid "WARNING: Illegal use notification"
257
  msgstr "УВАГА: виявлено несанкціоноване використання плагіну"
258
 
259
- #: bws_functions.php:513
260
  msgid "You can use one license of the Pro plugin for one domain only. Please check and edit your license or domain if necessary using you personal Client Area. We strongly recommend you to solve the problem within 24 hours, otherwise the Pro plugin will be deactivated."
261
  msgstr "Ви можете використовувати одну ліцензію Про-плагіну для одного домену. Будь ласка, переконайтесь, що інформацію щодо ліцензії і домену введено вірно, у вкладці Client Area. Ми настійливо рекомендуємо Вам вирішити це питання протягом 24 годин, інакше плагін буде деактивовано."
262
 
263
- #: bws_functions.php:521
264
  msgid "Notice: Your Pro Trial license has expired. To continue using the plugin you should buy a Pro license"
265
  msgstr "Увага: Термін дії тріал періоду Pro версії плагіну скінчився. Щоб продовжити користуватись плагіном, будь ласка, придбайте ліцензію Pro"
266
 
267
- #: bws_functions.php:523
268
  msgid "Your license has expired. To continue getting top-priority support and plugin updates you should extend it."
269
  msgstr "Строк вашої ліцензії витік. Якщо ви хочете оновлювати наш плагін у майбутньому, вам слід подовжити ліцензію."
270
 
271
- #: bws_functions.php:523
272
- #: bws_functions.php:576
273
  #: bws_menu.php:669
274
  #: bws_menu.php:691
275
  #: bws_menu.php:718
@@ -278,107 +286,143 @@ msgstr "Строк вашої ліцензії витік. Якщо ви хоч
278
  msgid "Learn more"
279
  msgstr "Дізнатись більше"
280
 
281
- #: bws_functions.php:533
282
  #, php-format
283
  msgid "Notice: You are using the Pro Trial license of %s plugin."
284
  msgstr "Увага: Ви використовуєте тріал Pro версію плагіну %s."
285
 
286
- #: bws_functions.php:535
287
  msgid "Notice: You are using the Pro Trial license of plugin."
288
  msgstr "Увага: Ви використовуєте тріал Pro версію плагіну."
289
 
290
- #: bws_functions.php:538
291
  msgid "The Pro Trial license will expire on"
292
  msgstr "Тріал період Pro версії плагіну закінчується"
293
 
294
- #: bws_functions.php:576
295
  msgid "You license for"
296
  msgstr "Ваша ліцензія для"
297
 
298
- #: bws_functions.php:576
299
  msgid "expires on"
300
  msgstr "витікає"
301
 
302
- #: bws_functions.php:576
303
  msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
304
  msgstr "та ви більше не будете отримувати першочергову технічну підтримку та оновлення."
305
 
306
- #: bws_functions.php:626
307
  msgid "Thank you for installing"
308
  msgstr "Дякуємо, що встановили"
309
 
310
- #: bws_functions.php:627
311
  msgid "Let's get started"
312
  msgstr "Розпочнемо"
313
 
314
- #: bws_functions.php:628
315
  msgid "Configure Settings"
316
  msgstr "Налаштувати плагін"
317
 
318
- #: bws_functions.php:631
319
  msgid "Add New"
320
  msgstr "Додати"
321
 
322
- #: bws_functions.php:635
323
  msgid "Close notice"
324
  msgstr "Закрити"
325
 
326
- #: bws_functions.php:648
327
  msgid "Notice"
328
  msgstr "Зауважте"
329
 
330
- #: bws_functions.php:648
331
  msgid "The plugin's settings have been changed."
332
  msgstr "Налаштування плагіну змінено."
333
 
334
- #: bws_functions.php:649
335
  msgid "Save Changes"
336
- msgstr "Сохранить изменения"
337
 
338
- #: bws_functions.php:694
 
 
 
 
339
  msgid "Add BWS Plugins Shortcode"
340
  msgstr "Додати BWS шорткод"
341
 
342
- #: bws_functions.php:738
 
 
 
 
 
 
 
 
343
  msgid "Close"
344
  msgstr "Закрити"
345
 
346
- #: bws_functions.php:829
347
  msgid "Restore all plugin settings to defaults"
348
  msgstr "Скинути налаштування плагіну до стандартних"
349
 
350
- #: bws_functions.php:831
351
  msgid "Restore settings"
352
  msgstr "Скинути налаштування"
353
 
354
- #: bws_functions.php:842
355
  msgid "Are you sure you want to restore all settings by default?"
356
  msgstr "Ви впевнені, що хочете скинути налаштування плагіну до стандартних?"
357
 
358
- #: bws_functions.php:845
359
  msgid "Yes, restore all settings"
360
  msgstr "Так, скинути налаштування"
361
 
362
- #: bws_functions.php:846
363
  msgid "No, go back to the settings page"
364
  msgstr "Ні, повернутись назад на сторінку налаштувань"
365
 
366
- #: bws_functions.php:890
367
  msgid "Plugin"
368
  msgstr "Плагін"
369
 
370
- #: bws_functions.php:899
371
  msgid "Shortcode settings"
372
  msgstr "Налаштування шорткоду"
373
 
374
- #: bws_functions.php:904
375
  msgid "The shortcode will be inserted"
376
  msgstr "Буде вставлено шорткод"
377
 
378
- #: bws_functions.php:909
379
  msgid "Insert"
380
  msgstr "Вставити"
381
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
382
  #: bws_menu.php:506
383
  msgid "Not set"
384
  msgstr "Не задано"
@@ -752,9 +796,6 @@ msgstr "Відправити на електронну адресу &#187;"
752
  #~ msgid "Captcha"
753
  #~ msgstr "КАПЧА"
754
 
755
- #~ msgid "FAQ"
756
- #~ msgstr "FAQ"
757
-
758
  #~ msgid "Support"
759
  #~ msgstr "Поддержка"
760
 
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-10-09 17:02+0300\n"
6
+ "PO-Revision-Date: 2015-10-09 17:02+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:39
20
+ #: bws_functions.php:63
21
  msgid "requires"
22
  msgstr "потребує"
23
 
24
+ #: bws_functions.php:41
25
  msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
26
  msgstr "чи вище, тому його було деактивовано! Будь ласка оновіть WordPress та спробуйте ще раз."
27
 
28
+ #: bws_functions.php:42
29
  msgid "Back to the WordPress"
30
  msgstr "Повернутися на WordPress на"
31
 
32
+ #: bws_functions.php:44
33
  msgid "Plugins page"
34
  msgstr "Сторінку Плагінів"
35
 
36
+ #: bws_functions.php:65
37
  msgid "or higher! We do not guarantee that our plugin will work correctly. Please upgrade to WordPress latest version."
38
  msgstr "чи вище! Ми не гарантуємо, що наш плагін буде працювати правильно. Будь ласка, оновіть WordPress до останньої версії."
39
 
40
+ #: bws_functions.php:122
41
  msgid "It’s time to upgrade your"
42
  msgstr "Настав час модернізувати Ваш"
43
 
44
+ #: bws_functions.php:122
45
  msgid "to"
46
  msgstr "до"
47
 
48
+ #: bws_functions.php:122
49
  msgid "version!"
50
  msgstr "версії!"
51
 
52
+ #: bws_functions.php:123
53
  msgid "Extend standard plugin functionality with new great options."
54
  msgstr "Розширює можливості стандартного функціоналу плагіна."
55
 
56
+ #: bws_functions.php:126
57
+ #: bws_functions.php:561
58
  msgid "Learn More"
59
  msgstr "Дізнатись більше"
60
 
61
+ #: bws_functions.php:143
62
  msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
63
  msgstr "Якщо вам сподобався плагін, будь ласка, поставте нам 5 зірочок на WordPress"
64
 
65
+ #: bws_functions.php:144
66
  msgid "Rate the plugin"
67
  msgstr "Оцінити плагін"
68
 
69
+ #: bws_functions.php:147
70
  msgid "If there is something wrong about it, please contact us"
71
  msgstr "Якщо щось не так, будь ласка, повідомте нам"
72
 
73
+ #: bws_functions.php:179
74
+ msgid "Check premium options on the plugin settings page!"
75
+ msgstr "Подивіться преміум опції на сторінці налаштувань плагіна!"
76
+
77
+ #: bws_functions.php:186
78
+ #: bws_functions.php:222
79
  msgid "Wrong license key"
80
  msgstr "Невірний ключ ліцензії"
81
 
82
+ #: bws_functions.php:216
83
+ #: bws_functions.php:474
84
+ #: bws_functions.php:525
85
  msgid "Something went wrong. Please try again later. If the error appears again, please contact us"
86
  msgstr "Щось не так, спробуйте пізніше. Якщо помилка повториться, будь ласка, повідомте нам"
87
 
88
+ #: bws_functions.php:216
89
+ #: bws_functions.php:474
90
+ #: bws_functions.php:525
91
  msgid "We are sorry for inconvenience."
92
  msgstr "Просимо вибачення за незручності."
93
 
94
+ #: bws_functions.php:224
95
  msgid "This license key is bind to another site"
96
  msgstr "Цей ліцензійний ключ прив'язано до іншого сайту"
97
 
98
+ #: bws_functions.php:226
99
+ #: bws_functions.php:384
100
  msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
101
  msgstr "На жаль, ви перевищили кількість доступних спроб на день. Будь ласка, завантажте плагін вручну"
102
 
103
+ #: bws_functions.php:228
104
  msgid "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates you should extend it in your"
105
  msgstr "На жаль, ваша ліцензія скінчилась. Для того, щоб і надалі отримувати першочергову техпідтримку і оновлення, будь ласка, продовжте ліцензію"
106
 
107
+ #: bws_functions.php:230
108
  msgid "Unfortunately, the Pro licence was already installed to this domain. The Pro Trial license can be installed only once."
109
  msgstr "На жаль, Pro ліцензія уже використовувалась на цьому домені. Тріал Pro версії плагіну можна використати лише один раз."
110
 
111
+ #: bws_functions.php:251
112
+ #: bws_functions.php:273
113
+ #: bws_functions.php:295
114
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
115
  msgstr "Помилка при завантаженні zip-архіву. Будь ласка, завантажте плагін вручну"
116
 
117
+ #: bws_functions.php:263
118
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
119
  msgstr "Помилка при відкритті zip-архіву. Будь ласка, завантажте плагін вручну"
120
 
121
+ #: bws_functions.php:269
122
  msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
123
  msgstr "Ваш сервер не підтримує формати Zip і Phar. Будь ласка, завантажте плагін вручну"
124
 
125
+ #: bws_functions.php:276
126
  msgid "UploadDir is not writable. Please, upload the plugin manually"
127
  msgstr "Немає доступу до теки завантажень WordPress. Будь ласка, завантажте плагін вручну"
128
 
129
+ #: bws_functions.php:299
130
  msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvenience."
131
  msgstr "Виникли певні проблеми. Спробуйте ще раз пізніше або завантажте плагін вручну. Просимо вибачення за незручності."
132
 
133
+ #: bws_functions.php:324
134
  msgid "Please, enter Your license key"
135
  msgstr "Будь ласка, впишіть ваш ліцензійний ключ"
136
 
137
+ #: bws_functions.php:348
138
  msgid "Congratulations! The Pro version of the plugin is successfully download and activated."
139
  msgstr "Вітаємо! Pro версію плагіну успішно завантажено та активовано."
140
 
141
+ #: bws_functions.php:350
142
+ #: bws_functions.php:441
143
  msgid "Please, go to"
144
  msgstr "Будь ласка, перейдіть на"
145
 
146
+ #: bws_functions.php:350
147
+ #: bws_functions.php:441
148
  msgid "the setting page"
149
  msgstr "сторінку установок"
150
 
151
+ #: bws_functions.php:351
152
+ #: bws_functions.php:442
153
  msgid "You will be redirected automatically in 5 seconds."
154
  msgstr "Вас буде перенаправлено автоматично через 5 секунд."
155
 
156
+ #: bws_functions.php:358
157
+ msgid "Show Pro features"
158
+ msgstr "Показати Pro опції"
159
+
160
+ #: bws_functions.php:365
161
  msgid "You can download and activate"
162
  msgstr "Ви можете завантажити та активувати"
163
 
164
+ #: bws_functions.php:367
165
  msgid "version of this plugin by entering Your license key."
166
  msgstr "версію цього плагіну, якщо впишете ваш ліцензійний ключ."
167
 
168
+ #: bws_functions.php:369
169
+ #: bws_functions.php:410
170
  msgid "You can find your license key on your personal page Client area, by clicking on the link"
171
  msgstr "Ви можете знайти ваш ліцензійний ключ на вашій персональній сторінці у Client area, перейшовши за посиланням"
172
 
173
+ #: bws_functions.php:371
174
+ #: bws_functions.php:412
175
  msgid "(your username is the email you specify when purchasing the product)."
176
  msgstr "(ваше ім'я - це емейл, який ви вказували при купівлі плагіну)"
177
 
178
+ #: bws_functions.php:375
179
+ #: bws_functions.php:659
180
  msgid "or"
181
  msgstr "або"
182
 
183
+ #: bws_functions.php:375
184
  #, php-format
185
  msgid "Start Your Free %s-Day Trial Now"
186
  msgstr "Спробуйте %s-денну тріал версію безкоштовно"
187
 
188
+ #: bws_functions.php:381
189
+ #: bws_functions.php:390
190
+ #: bws_functions.php:420
191
+ #: bws_functions.php:428
192
  #: bws_menu.php:693
193
  #: bws_menu.php:750
194
  msgid "Activate"
195
  msgstr "Активувати"
196
 
197
+ #: bws_functions.php:407
198
+ #: bws_functions.php:500
199
  #, php-format
200
  msgid "In order to continue using the plugin it is necessary to buy a %s license."
201
  msgstr "Щоб продовжити користуватись плагіном, потрібно придбати %s ліцензію."
202
 
203
+ #: bws_functions.php:408
204
  msgid "After that you can activate it by entering your license key."
205
  msgstr "Після цього ви зможете активувати його ввівши ліцензійний ключ."
206
 
207
+ #: bws_functions.php:422
208
  msgid "Unfortunately, you have exceeded the number of available tries per day."
209
  msgstr "На жаль, ви перевищили кількість допустимих спроб."
210
 
211
+ #: bws_functions.php:439
212
  msgid "Congratulations! The Pro license of the plugin is successfully activated."
213
  msgstr "Вітаємо! Pro версію плагіну успішно активовано."
214
 
215
+ #: bws_functions.php:480
216
  msgid "Wrong license key."
217
  msgstr "Неправильний ліцензійний ключ."
218
 
219
+ #: bws_functions.php:482
220
  msgid "This license key is bind to another site."
221
  msgstr "Цей ліцензійний ключ прив'язано до іншого сайту."
222
 
223
+ #: bws_functions.php:484
224
  msgid "This license key is valid, but Your license has expired. If you want to update our plugin in future, you should extend the license."
225
  msgstr "Даний ліцензійний ключ дійсний, але строк вашої ліцензії витік. Якщо ви хочете оновлювати наш плагін у майбутньому, вам слід подовжити ліцензію."
226
 
227
+ #: bws_functions.php:486
228
  msgid "Unfortunately, you have exceeded the number of available tries."
229
  msgstr "На жаль, ви перевищили кількість допустимих спроб."
230
 
231
+ #: bws_functions.php:488
232
  msgid "Unfortunately, the Pro Trial licence was already installed to this domain. The Pro Trial license can be installed only once."
233
  msgstr "На жаль, тріал Pro версія плагіну уже встановлювалась на цей домен. Тріал Pro версію можна встановлювати лише один раз."
234
 
235
+ #: bws_functions.php:492
236
  msgid "The Pro Trial license key is valid."
237
  msgstr "Ключ тріал Pro версії вірний."
238
 
239
+ #: bws_functions.php:494
240
  msgid "The license key is valid."
241
  msgstr "Ліцензійний ключ дійсний."
242
 
243
+ #: bws_functions.php:497
244
  msgid "Your license will expire on"
245
  msgstr "Ваша ліцензія закінчується"
246
 
247
+ #: bws_functions.php:530
248
  msgid "Please, enter your license key"
249
  msgstr "Будь ласка, введіть ваш ліцензійний ключ"
250
 
251
+ #: bws_functions.php:543
252
  msgid "If needed you can check if the license key is correct or reenter it in the field below. You can find your license key on your personal page - Client area - on our website"
253
  msgstr "При необхідності ви можете перевірити правильність вашого ліцензійного ключа або знову ввести його у полі, що знаходиться нижче. Ви можете знайти свій ліцензійний ключ на вашій персональній сторінці - Client area - на нашому сайті."
254
 
255
+ #: bws_functions.php:543
256
  msgid "(your username is the email you specify when purchasing the product). If necessary, please submit \"Lost your password?\" request."
257
  msgstr "(ім'я користувача - це електронна адреса, яку ви вказуєте при купівлі продукту). При необхідності, будь ласка, відправте запит на відновлення вашого паролю."
258
 
259
+ #: bws_functions.php:547
260
  msgid "Check license key"
261
  msgstr "Перевірте ліцензійний ключ"
262
 
263
+ #: bws_functions.php:561
264
  msgid "WARNING: Illegal use notification"
265
  msgstr "УВАГА: виявлено несанкціоноване використання плагіну"
266
 
267
+ #: bws_functions.php:561
268
  msgid "You can use one license of the Pro plugin for one domain only. Please check and edit your license or domain if necessary using you personal Client Area. We strongly recommend you to solve the problem within 24 hours, otherwise the Pro plugin will be deactivated."
269
  msgstr "Ви можете використовувати одну ліцензію Про-плагіну для одного домену. Будь ласка, переконайтесь, що інформацію щодо ліцензії і домену введено вірно, у вкладці Client Area. Ми настійливо рекомендуємо Вам вирішити це питання протягом 24 годин, інакше плагін буде деактивовано."
270
 
271
+ #: bws_functions.php:569
272
  msgid "Notice: Your Pro Trial license has expired. To continue using the plugin you should buy a Pro license"
273
  msgstr "Увага: Термін дії тріал періоду Pro версії плагіну скінчився. Щоб продовжити користуватись плагіном, будь ласка, придбайте ліцензію Pro"
274
 
275
+ #: bws_functions.php:571
276
  msgid "Your license has expired. To continue getting top-priority support and plugin updates you should extend it."
277
  msgstr "Строк вашої ліцензії витік. Якщо ви хочете оновлювати наш плагін у майбутньому, вам слід подовжити ліцензію."
278
 
279
+ #: bws_functions.php:571
280
+ #: bws_functions.php:624
281
  #: bws_menu.php:669
282
  #: bws_menu.php:691
283
  #: bws_menu.php:718
286
  msgid "Learn more"
287
  msgstr "Дізнатись більше"
288
 
289
+ #: bws_functions.php:581
290
  #, php-format
291
  msgid "Notice: You are using the Pro Trial license of %s plugin."
292
  msgstr "Увага: Ви використовуєте тріал Pro версію плагіну %s."
293
 
294
+ #: bws_functions.php:583
295
  msgid "Notice: You are using the Pro Trial license of plugin."
296
  msgstr "Увага: Ви використовуєте тріал Pro версію плагіну."
297
 
298
+ #: bws_functions.php:586
299
  msgid "The Pro Trial license will expire on"
300
  msgstr "Тріал період Pro версії плагіну закінчується"
301
 
302
+ #: bws_functions.php:624
303
  msgid "You license for"
304
  msgstr "Ваша ліцензія для"
305
 
306
+ #: bws_functions.php:624
307
  msgid "expires on"
308
  msgstr "витікає"
309
 
310
+ #: bws_functions.php:624
311
  msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
312
  msgstr "та ви більше не будете отримувати першочергову технічну підтримку та оновлення."
313
 
314
+ #: bws_functions.php:655
315
  msgid "Thank you for installing"
316
  msgstr "Дякуємо, що встановили"
317
 
318
+ #: bws_functions.php:656
319
  msgid "Let's get started"
320
  msgstr "Розпочнемо"
321
 
322
+ #: bws_functions.php:657
323
  msgid "Configure Settings"
324
  msgstr "Налаштувати плагін"
325
 
326
+ #: bws_functions.php:660
327
  msgid "Add New"
328
  msgstr "Додати"
329
 
330
+ #: bws_functions.php:664
331
  msgid "Close notice"
332
  msgstr "Закрити"
333
 
334
+ #: bws_functions.php:677
335
  msgid "Notice"
336
  msgstr "Зауважте"
337
 
338
+ #: bws_functions.php:677
339
  msgid "The plugin's settings have been changed."
340
  msgstr "Налаштування плагіну змінено."
341
 
342
+ #: bws_functions.php:678
343
  msgid "Save Changes"
344
+ msgstr "Зберегти зміни"
345
 
346
+ #: bws_functions.php:693
347
+ msgid "You can always look at premium options by clicking on the \"Show Pro features\" in the \"Go PRO\" tab"
348
+ msgstr "Ви завжди можете подивитися на преміум опції, натиснувши на кнопку \"Показати Pro особливост\" на вкладці \"Перейти на PRO\""
349
+
350
+ #: bws_functions.php:773
351
  msgid "Add BWS Plugins Shortcode"
352
  msgstr "Додати BWS шорткод"
353
 
354
+ #: bws_functions.php:793
355
+ msgid "Add shortcode"
356
+ msgstr "Додати шорткод"
357
+
358
+ #: bws_functions.php:793
359
+ msgid "Add BestWebSoft plugins' shortcodes using this button."
360
+ msgstr "Додайте шорткоди BestWebSoft плагінів за допомогою цієї кнопки."
361
+
362
+ #: bws_functions.php:833
363
  msgid "Close"
364
  msgstr "Закрити"
365
 
366
+ #: bws_functions.php:926
367
  msgid "Restore all plugin settings to defaults"
368
  msgstr "Скинути налаштування плагіну до стандартних"
369
 
370
+ #: bws_functions.php:928
371
  msgid "Restore settings"
372
  msgstr "Скинути налаштування"
373
 
374
+ #: bws_functions.php:939
375
  msgid "Are you sure you want to restore all settings by default?"
376
  msgstr "Ви впевнені, що хочете скинути налаштування плагіну до стандартних?"
377
 
378
+ #: bws_functions.php:942
379
  msgid "Yes, restore all settings"
380
  msgstr "Так, скинути налаштування"
381
 
382
+ #: bws_functions.php:943
383
  msgid "No, go back to the settings page"
384
  msgstr "Ні, повернутись назад на сторінку налаштувань"
385
 
386
+ #: bws_functions.php:987
387
  msgid "Plugin"
388
  msgstr "Плагін"
389
 
390
+ #: bws_functions.php:996
391
  msgid "Shortcode settings"
392
  msgstr "Налаштування шорткоду"
393
 
394
+ #: bws_functions.php:1001
395
  msgid "The shortcode will be inserted"
396
  msgstr "Буде вставлено шорткод"
397
 
398
+ #: bws_functions.php:1006
399
  msgid "Insert"
400
  msgstr "Вставити"
401
 
402
+ #: bws_functions.php:1037
403
+ msgid "Visit Help Center"
404
+ msgstr "Перейти в Help Center"
405
+
406
+ #: bws_functions.php:1042
407
+ msgid "FAQ"
408
+ msgstr "FAQ"
409
+
410
+ #: bws_functions.php:1048
411
+ msgid "For more information:"
412
+ msgstr "Для отримання додаткової інформації:"
413
+
414
+ #: bws_functions.php:1049
415
+ msgid "Documentation"
416
+ msgstr "Документація"
417
+
418
+ #: bws_functions.php:1050
419
+ msgid "Video Instructions"
420
+ msgstr "Відео інструкції"
421
+
422
+ #: bws_functions.php:1051
423
+ msgid "Submit a Request"
424
+ msgstr "Надіслати запит"
425
+
426
  #: bws_menu.php:506
427
  msgid "Not set"
428
  msgstr "Не задано"
796
  #~ msgid "Captcha"
797
  #~ msgstr "КАПЧА"
798
 
 
 
 
799
  #~ msgid "Support"
800
  #~ msgstr "Поддержка"
801
 
google-sitemap-plugin.php CHANGED
@@ -6,7 +6,7 @@ Description: Plugin to add google sitemap file in Google Webmaster Tools account
6
  Author: BestWebSoft
7
  Text Domain: google-sitemap-plugin
8
  Domain Path: /languages
9
- Version: 3.0.1
10
  Author URI: http://bestwebsoft.com/
11
  License: GPLv2 or later
12
  */
@@ -31,8 +31,9 @@ License: GPLv2 or later
31
  /*============================================ Function for adding menu and submenu ====================*/
32
  if ( ! function_exists( 'gglstmp_admin_menu' ) ) {
33
  function gglstmp_admin_menu() {
34
- bws_add_general_menu( plugin_basename( __FILE__ ) );
35
- add_submenu_page( 'bws_plugins', __( 'Google Sitemap Settings', 'google-sitemap-plugin' ), 'Google Sitemap', 'manage_options', 'google-sitemap-plugin.php', 'gglstmp_settings_page' );
 
36
 
37
  global $gglstmppr_url_home, $gglstmppr_url, $gglstmppr_url_send, $gglstmppr_url_send_sitemap;
38
  $gglstmppr_url_home = home_url( "/" );
@@ -52,7 +53,7 @@ if ( ! function_exists( 'gglstmp_plugins_loaded' ) ) {
52
  /* Function adds language files */
53
  if ( ! function_exists( 'gglstmp_init' ) ) {
54
  function gglstmp_init() {
55
- global $gglstmp_plugin_info;
56
 
57
  if ( empty( $gglstmp_plugin_info ) ) {
58
  if ( ! function_exists( 'get_plugin_data' ) )
@@ -63,7 +64,7 @@ if ( ! function_exists( 'gglstmp_init' ) ) {
63
  /* add general functions */
64
  require_once( dirname( __FILE__ ) . '/bws_menu/bws_include.php' );
65
  bws_include_init( plugin_basename( __FILE__ ) );
66
-
67
  /* check compatible with current WP version */
68
  bws_wp_min_version_check( plugin_basename( __FILE__ ), $gglstmp_plugin_info, '3.8', '3.1' );
69
 
@@ -79,8 +80,8 @@ if ( ! function_exists( 'gglstmp_admin_init' ) ) {
79
  function gglstmp_admin_init() {
80
  /* Add variable for bws_menu */
81
  global $bws_plugin_info, $gglstmp_plugin_info;
82
-
83
- if ( ! isset( $bws_plugin_info ) || empty( $bws_plugin_info ) ) {
84
  $bws_plugin_info = array( 'id' => '83', 'version' => $gglstmp_plugin_info["Version"] );
85
  }
86
 
@@ -88,7 +89,7 @@ if ( ! function_exists( 'gglstmp_admin_init' ) ) {
88
  if ( ! session_id() ) {
89
  session_start();
90
  }
91
- }
92
  }
93
  }
94
 
@@ -102,7 +103,7 @@ if ( ! function_exists( 'gglstmp_register_settings' ) ) {
102
  'post_type' => array( 'page', 'post' ),
103
  'taxonomy' => array(),
104
  'sitemap' => array(),
105
- 'first_install' => strtotime( "now" ),
106
  'display_settings_notice' => 1
107
  );
108
 
@@ -110,7 +111,7 @@ if ( ! function_exists( 'gglstmp_register_settings' ) ) {
110
  add_option( 'gglstmp_settings', $gglstmp_option_defaults );
111
 
112
  $gglstmp_settings = get_option( 'gglstmp_settings' );
113
-
114
  if ( ! isset( $gglstmp_settings['plugin_option_version'] ) || $gglstmp_settings['plugin_option_version'] != $gglstmp_plugin_info['Version'] ) {
115
  if ( ! isset( $gglstmp_settings['post_type'] ) && is_array( $gglstmp_settings ) )
116
  $gglstmp_settings['post_type'] = $gglstmp_settings;
@@ -118,6 +119,8 @@ if ( ! function_exists( 'gglstmp_register_settings' ) ) {
118
  $gglstmp_option_defaults['display_settings_notice'] = 0;
119
  $gglstmp_settings = array_merge( $gglstmp_option_defaults, $gglstmp_settings );
120
  $gglstmp_settings['plugin_option_version'] = $gglstmp_plugin_info["Version"];
 
 
121
  update_option( 'gglstmp_settings', $gglstmp_settings );
122
  }
123
  }
@@ -254,6 +257,37 @@ if ( ! function_exists ( 'gglstmp_client' ) ) {
254
  }
255
  }
256
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
257
  /*============================================ Function for creating setting page ====================*/
258
  if ( ! function_exists ( 'gglstmp_settings_page' ) ) {
259
  function gglstmp_settings_page() {
@@ -264,6 +298,47 @@ if ( ! function_exists ( 'gglstmp_settings_page' ) ) {
264
  $gglstmppr_url_robot = ABSPATH . "robots.txt";
265
  $plugin_basename = plugin_basename( __FILE__ );
266
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
267
  if ( is_multisite() ) {
268
  $home_url = preg_replace( "/[^a-zA-ZА-Яа-я0-9\s]/", "_", str_replace( 'http://', '', str_replace( 'https://', '', home_url() ) ) );
269
  $gglstmppr_url_sitemap = ABSPATH . "sitemap_" . $home_url .".xml";
@@ -272,12 +347,26 @@ if ( ! function_exists ( 'gglstmp_settings_page' ) ) {
272
  }
273
 
274
  if ( isset( $_REQUEST['gglstmp_submit'] ) && check_admin_referer( $plugin_basename, 'gglstmp_nonce_name' ) ) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
275
  $gglstmp_settings['post_type'] = isset( $_REQUEST['gglstmp_post_types'] ) ? $_REQUEST['gglstmp_post_types'] : array();
276
  $gglstmp_settings['taxonomy'] = isset( $_REQUEST['gglstmp_taxonomies'] ) ? $_REQUEST['gglstmp_taxonomies'] : array();
277
  /*============================ Adding location of sitemap file to the robots.txt =============*/
278
  $gglstmp_robots_flag = isset( $_POST['gglstmp_checkbox'] ) ? 1 : 0;
279
  if ( file_exists( $gglstmppr_url_robot ) && ! is_multisite() ) {
280
- if ( ! is_writable( $gglstmppr_url_robot ) )
281
  @chmod( $gglstmppr_url_robot, 0755 );
282
  if ( is_writable( $gglstmppr_url_robot ) ) {
283
  $file_content = file_get_contents( $gglstmppr_url_robot );
@@ -303,6 +392,9 @@ if ( ! function_exists ( 'gglstmp_settings_page' ) ) {
303
  }
304
  }
305
 
 
 
 
306
  if ( isset( $_POST['gglstmp_new'] ) && check_admin_referer( $plugin_basename, 'gglstmp_nonce_name' ) ) {
307
  $message = __( "Your Sitemap file is created in the site root directory.", 'google-sitemap-plugin' );
308
  gglstmp_sitemapcreate();
@@ -317,20 +409,23 @@ if ( ! function_exists ( 'gglstmp_settings_page' ) ) {
317
  $gglstmp_result_taxonomies = array(
318
  'category' => 'Post category',
319
  'post_tag' => 'Post tag'
320
- );
321
 
322
  /* GO PRO */
323
  if ( isset( $_GET['action'] ) && 'go_pro' == $_GET['action'] ) {
324
- $go_pro_result = bws_go_pro_tab_check( $plugin_basename );
325
  if ( ! empty( $go_pro_result['error'] ) )
326
  $error = $go_pro_result['error'];
327
- }
 
 
 
328
  if ( isset( $_REQUEST['bws_restore_confirm'] ) && check_admin_referer( $plugin_basename, 'bws_settings_nonce_name' ) ) {
329
  $gglstmp_settings = $gglstmp_option_defaults;
330
  @unlink( $gglstmppr_url_sitemap );/* remove sitemap.xml */
331
  /* clear robots.txt */
332
  if ( file_exists( $gglstmppr_url_robot ) && ! is_multisite() ) {
333
- if ( ! is_writable( $gglstmppr_url_robot ) )
334
  @chmod( $gglstmppr_url_robot, 0755 );
335
  if ( is_writable( $gglstmppr_url_robot ) ) {
336
  $file_content = file_get_contents( $gglstmppr_url_robot );
@@ -351,25 +446,24 @@ if ( ! function_exists ( 'gglstmp_settings_page' ) ) {
351
  $message = __( 'All plugin settings were restored.', 'google-sitemap-plugin' );
352
  } ?>
353
  <div class="wrap">
354
- <div class="icon32 icon32-bws" id="icon-options-general"></div>
355
- <h2><?php _e( "Google Sitemap Settings", 'google-sitemap-plugin' ); ?></h2>
356
  <h2 class="nav-tab-wrapper">
357
  <a class="nav-tab<?php if ( !isset( $_GET['action'] ) ) echo ' nav-tab-active'; ?>" href="admin.php?page=google-sitemap-plugin.php"><?php _e( 'Settings', 'google-sitemap-plugin' ); ?></a>
358
  <a class="nav-tab<?php if ( isset( $_GET['action'] ) && 'extra' == $_GET['action'] ) echo ' nav-tab-active'; ?>" href="admin.php?page=google-sitemap-plugin.php&amp;action=extra"><?php _e( 'Extra settings', 'google-sitemap-plugin' ); ?></a>
359
- <a class="nav-tab" href="http://bestwebsoft.com/products/google-sitemap/faq/" target="_blank"><?php _e( 'FAQ', 'google-sitemap-plugin' ); ?></a>
360
  <a class="nav-tab bws_go_pro_tab<?php if ( isset( $_GET['action'] ) && 'go_pro' == $_GET['action'] ) echo ' nav-tab-active'; ?>" href="admin.php?page=google-sitemap-plugin.php&amp;action=go_pro"><?php _e( 'Go PRO', 'google-sitemap-plugin' ); ?></a>
361
  </h2>
362
- <?php if ( ! isset( $_GET['action'] ) && is_multisite() && ! is_subdomain_install() ) { ?>
363
  <div id="gglstmp_check_sitemap_block" class="error">
364
  <p>
365
  <?php printf( '<strong>%s</strong> %s',
366
  __( 'Warning:', 'google-sitemap-plugin' ),
367
  sprintf(
368
- __( 'To have an access to subsites XML files, please add the following rule %s to your %s file in %s after line %s.', 'google-sitemap-plugin' ),
369
  '<code>RewriteRule ([^/]+\.xml)$ $1 [L]</code>',
370
  '<strong>.htaccess</strong>',
371
  sprintf( '<strong>"%s"</strong>', ABSPATH ),
372
- '<strong>"RewriteBase"</strong>'
 
373
  )
374
  ); ?>
375
  </p>
@@ -394,7 +488,7 @@ if ( ! function_exists ( 'gglstmp_settings_page' ) ) {
394
  bws_show_settings_notice(); ?>
395
  <div class="updated fade" <?php if ( "" != $error || $message == "" ) echo "style=\"display:none\""; ?>><p><strong><?php echo $message; ?></strong></p></div>
396
  <div class="error" <?php if ( "" == $error ) echo "style=\"display:none\""; ?>><p><strong><?php echo $error; ?></strong></p></div>
397
- <?php if ( ! isset( $_GET['action'] ) ) {
398
  if ( isset( $_REQUEST['bws_restore_default'] ) && check_admin_referer( $plugin_basename, 'bws_settings_nonce_name' ) ) {
399
  bws_form_restore_default_confirm( $plugin_basename );
400
  } else { ?>
@@ -461,36 +555,71 @@ if ( ! function_exists ( 'gglstmp_settings_page' ) ) {
461
  </fieldset>
462
  </td>
463
  </tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
464
  </table>
465
- <div class="bws_pro_version_bloc">
466
- <div class="bws_pro_version_table_bloc">
467
- <div class="bws_table_bg"></div>
468
- <table class="form-table bws_pro_version">
469
- <tr valign="top">
470
- <th><?php _e( 'XML Sitemap "Change Frequency" parameter', 'google-sitemap-plugin' ); ?></th>
471
- <td>
472
- <select name="gglstmp_sitemap_change_frequency">
473
- <option value="always"><?php _e( 'Always', 'google-sitemap-plugin' ); ?></option>
474
- <option value="hourly"><?php _e( 'Hourly', 'google-sitemap-plugin' ); ?></option>
475
- <option value="daily"><?php _e( 'Daily', 'google-sitemap-plugin' ); ?></option>
476
- <option value="weekly"><?php _e( 'Weekly', 'google-sitemap-plugin' ); ?></option>
477
- <option selected value="monthly"><?php _e( 'Monthly', 'google-sitemap-plugin' ); ?></option>
478
- <option value="yearly"><?php _e( 'Yearly', 'google-sitemap-plugin' ); ?></option>
479
- <option value="never"><?php _e( 'Never', 'google-sitemap-plugin' ); ?></option>
480
- </select><br />
481
- <span style="color: #888888;font-size: 10px;"><?php _e( 'This value is used in the sitemap file and provides general information to search engines. The sitemap itself is generated once and will be re-generated when you create or update any post or page.', 'google-sitemap-plugin' ); ?></span>
482
- </td>
483
- </tr>
484
- </table>
485
- </div>
486
- <div class="bws_pro_version_tooltip">
487
- <div class="bws_info">
488
- <?php _e( 'Unlock premium options by upgrading to Pro version', 'google-sitemap-plugin' ); ?>
 
 
 
 
 
489
  </div>
490
- <a class="bws_button" href="http://bestwebsoft.com/products/google-sitemap/?k=28d4cf0b4ab6f56e703f46f60d34d039&pn=83&v=<?php echo $gglstmp_plugin_info["Version"]; ?>&wp_v=<?php echo $wp_version; ?>" target="_blank" title="Google Sitemap Pro"><?php _e( 'Learn More', 'google-sitemap-plugin' ); ?></a>
491
- <div class="clear"></div>
492
  </div>
493
- </div>
494
  <table class="form-table">
495
  <?php if ( ! function_exists( 'curl_init' ) ) { ?>
496
  <tr valign="top">
@@ -500,7 +629,7 @@ if ( ! function_exists ( 'gglstmp_settings_page' ) ) {
500
  </tr>
501
  <?php } else { ?>
502
  <tr id="gglstmp_google_webmaster" valign="top">
503
- <th scope="row"><?php _e( 'Remote work with Google Webmaster Tools', 'google-sitemap-plugin' ); ?></th>
504
  <td>
505
  <?php $gglstmp_client = gglstmp_client();
506
  $gglstmp_blog_prefix = '_' . get_current_blog_id();
@@ -513,7 +642,7 @@ if ( ! function_exists ( 'gglstmp_settings_page' ) ) {
513
  try {
514
  $gglstmp_client->authenticate( $_POST['gglstmp_authorization_code'] );
515
  $gglstmp_settings['authorization_code'] = $_SESSION[ 'gglstmp_authorization_code' . $gglstmp_blog_prefix ] = $gglstmp_client->getAccessToken();
516
- update_option( 'gglstmp_settings', $gglstmp_settings );
517
  } catch ( Exception $e ) {}
518
  }
519
  if ( ! isset( $_SESSION[ 'gglstmp_authorization_code' . $gglstmp_blog_prefix ] ) && isset( $gglstmp_settings['authorization_code'] ) ) {
@@ -558,7 +687,7 @@ if ( ! function_exists ( 'gglstmp_settings_page' ) ) {
558
  } else {
559
  $gglstmp_state = mt_rand();
560
  $gglstmp_client->setState( $gglstmp_state );
561
- $_SESSION[ 'gglstmp_state' . $gglstmp_blog_prefix ] = $gglstmp_client;
562
  $gglstmp_auth_url = $gglstmp_client->createAuthUrl(); ?>
563
  <p><?php _e( "Please authorize via your Google Account in order to add or delete a site and a sitemap file automatically or get information about this site in Google Webmaster Tools.", 'google-sitemap-plugin' ); ?></p>
564
  <a id="gglstmp_authorization_button" class="button-primary" href="<?php echo $gglstmp_auth_url; ?>" target="_blank" onclick="window.open(this.href,'','top='+(screen.height/2-560/2)+',left='+(screen.width/2-640/2)+',width=640,height=560,resizable=0,scrollbars=0,menubar=0,toolbar=0,status=1,location=0').focus(); return false;"><?php _e( 'Get Authorization Code', 'google-sitemap-plugin' ); ?></a>
@@ -582,7 +711,7 @@ if ( ! function_exists ( 'gglstmp_settings_page' ) ) {
582
  </form>
583
  <?php bws_form_restore_default_settings( $plugin_basename ); ?>
584
  <div class="clear"></div>
585
- <?php }
586
  } elseif ( 'extra' == $_GET['action'] ) { ?>
587
  <div class="bws_pro_version_bloc">
588
  <div class="bws_pro_version_table_bloc">
@@ -622,7 +751,7 @@ if ( ! function_exists ( 'gglstmp_settings_page' ) ) {
622
  </div>
623
  </div>
624
  <?php } elseif ( 'go_pro' == $_GET['action'] ) {
625
- bws_go_pro_tab( $gglstmp_plugin_info, $plugin_basename, 'google-sitemap-plugin.php', 'google-sitemap-pro.php', 'google-sitemap-pro/google-sitemap-pro.php', 'google-sitemap', '28d4cf0b4ab6f56e703f46f60d34d039', '83', isset( $go_pro_result['pro_plugin_is_activated'] ) );
626
  }
627
  bws_plugin_reviews_block( $gglstmp_plugin_info['Name'], 'google-sitemap-plugin' ); ?>
628
  </div>
@@ -664,7 +793,7 @@ if ( ! function_exists( 'gglstmp_info_site' ) ) {
664
  $gglstmp_instruction_url = 'https://docs.google.com/document/d/1VOJx_OaasVskCqi9fsAbUmxfsckoagPU5Py97yjha9w/edit';
665
  $gglstmp_wmt_sites_arr = $gglstmp_wmt_sitemaps_arr = array();
666
 
667
- printf( '<h4>' . __( 'I want to get info about site %s in Google Webmaster Tools', 'google-sitemap-plugin' ) . ':</h4>', sprintf( '<a href="%1$s">%1$s</a>', $gglstmppr_url_home ) );
668
  echo '<div class="gglstmp_wmt_content">';
669
 
670
  $gglstmp_wmt_sites = $gglstmp_wmt->sites->listSites()->getSiteEntry();
@@ -679,7 +808,7 @@ if ( ! function_exists( 'gglstmp_info_site' ) ) {
679
  } else {
680
  printf( '<div>%s</div>', __( 'This site is added to the Google Webmaster Tools.', 'google-sitemap-plugin' ) );
681
  printf( '<div><strong>%s</strong> <a href="%s" target="_blank">%2$s</a></div>', __( 'Site URL:', 'google-sitemap-plugin'), $gglstmppr_url_home );
682
- printf( '<div><strong>%s</strong> %s</div>', __( 'Site verification:', 'google-sitemap-plugin' ), ( $gglstmp_wmt_sites_arr[ $gglstmppr_url_home ] == 'siteOwner' ) ? __( 'verified', 'google-sitemap-plugin' ) : __( 'not verified', 'google-sitemap-plugin' ) );
683
 
684
  try {
685
  $gglstmp_wmt_sitemaps = $gglstmp_wmt->sitemaps->listSitemaps( $gglstmppr_url_home )->getSitemap();
@@ -692,7 +821,7 @@ if ( ! function_exists( 'gglstmp_info_site' ) ) {
692
  }
693
  printf( '<div>%s - <a target="_blank" href="%s">%s</a></div>', __( "The site couldn't be verified. Please, verify the site manually", 'google-sitemap-plugin' ), $gglstmp_instruction_url, __( 'View the Instruction', 'google-sitemap-plugin' ) );
694
  echo '</div><!-- .gglstmp_wmt_content -->';
695
- return;
696
  }
697
 
698
  $gglstmp_wmt_sitemaps = $gglstmp_wmt->sitemaps->listSitemaps( $gglstmppr_url_home )->getSitemap();
@@ -725,7 +854,7 @@ if ( ! function_exists( 'gglstmp_del_site' ) ) {
725
  function gglstmp_del_site( $gglstmp_wmt, $gglstmp_sv ) {
726
  global $gglstmp_settings, $gglstmppr_url_home;
727
 
728
- printf( '<h4>' . __( 'I want to delete site %s from Google Webmaster Tools', 'google-sitemap-plugin' ) . '</h4>', sprintf( '<a href="%1$s">%1$s</a>', $gglstmppr_url_home ) );
729
  echo '<div class="gglstmp_wmt_content">';
730
 
731
  try {
@@ -757,7 +886,7 @@ if ( ! function_exists( 'gglstmp_add_site' ) ) {
757
  $gglstmp_sv_type = 'SITE';
758
  $gglstmp_instruction_url = 'https://docs.google.com/document/d/1VOJx_OaasVskCqi9fsAbUmxfsckoagPU5Py97yjha9w/edit';
759
 
760
- printf( '<h4>' . __( 'I want to add site %s in Google Webmaster Tools', 'google-sitemap-plugin' ) . '</h4>', sprintf( '<a href="%1$s">%1$s</a>', $gglstmppr_url_home ) );
761
  echo '<div class="gglstmp_wmt_content">';
762
 
763
  try {
@@ -799,7 +928,7 @@ if ( ! function_exists( 'gglstmp_add_site' ) ) {
799
  }
800
  printf( '<div>%s - <a target="_blank" href="%s">%s</a></div>', __( "The site couldn't be verified. Please, verify the site manually", 'google-sitemap-plugin' ), $gglstmp_instruction_url, __( 'View the Instruction', 'google-sitemap-plugin' ) );
801
  echo '</div><!-- .gglstmp_wmt_content -->';
802
- return;
803
  }
804
 
805
  try {
@@ -819,7 +948,7 @@ if ( ! function_exists( 'gglstmp_add_site' ) ) {
819
  }
820
  printf( '<div>%s - <a target="_blank" href="%s">%s</a></div>', __( "The site couldn't be verified. Please, verify the site manually", 'google-sitemap-plugin' ), $gglstmp_instruction_url, __( 'View the Instruction', 'google-sitemap-plugin' ) );
821
  echo '</div><!-- .gglstmp_wmt_content -->';
822
- return;
823
  }
824
 
825
  if ( isset( $gglstmp_settings['sitemap']['loc'] ) ) {
@@ -918,17 +1047,33 @@ if ( ! function_exists( 'gglstmp_links' ) ) {
918
 
919
  if ( ! function_exists ( 'gglstmp_plugin_banner' ) ) {
920
  function gglstmp_plugin_banner() {
921
- global $hook_suffix;
922
  if ( 'plugins.php' == $hook_suffix ) {
923
- global $gglstmp_plugin_info, $gglstmp_setting;
924
- if ( isset( $gglstmp_setting['first_install'] ) && strtotime( '-1 week' ) > $gglstmp_setting['first_install'] )
 
 
 
 
925
  bws_plugin_banner( $gglstmp_plugin_info, 'gglstmp', 'google-sitemap', '8fbb5d23fd00bdcb213d6c0985d16ec5', '83', '//ps.w.org/google-sitemap-plugin/assets/icon-128x128.png' );
926
-
927
  bws_plugin_banner_to_settings( $gglstmp_plugin_info, 'gglstmp_setting', 'google-sitemap-plugin', 'admin.php?page=google-sitemap-plugin.php' );
928
  }
929
  }
930
  }
931
 
 
 
 
 
 
 
 
 
 
 
 
 
932
  /*============================================ Function for delete of the plugin settings on register_activation_hook ====================*/
933
  if ( ! function_exists( 'gglstmp_delete_settings' ) ) {
934
  function gglstmp_delete_settings() {
@@ -946,7 +1091,7 @@ if ( ! function_exists( 'gglstmp_delete_settings' ) ) {
946
  } else {
947
  delete_option( 'gglstmp_settings' );
948
  delete_option( 'gglstmp_robots' );
949
- }
950
  }
951
  }
952
 
6
  Author: BestWebSoft
7
  Text Domain: google-sitemap-plugin
8
  Domain Path: /languages
9
+ Version: 3.0.2
10
  Author URI: http://bestwebsoft.com/
11
  License: GPLv2 or later
12
  */
31
  /*============================================ Function for adding menu and submenu ====================*/
32
  if ( ! function_exists( 'gglstmp_admin_menu' ) ) {
33
  function gglstmp_admin_menu() {
34
+ bws_general_menu();
35
+ $gglstmp_settings = add_submenu_page( 'bws_plugins', __( 'Google Sitemap Settings', 'google-sitemap-plugin' ), 'Google Sitemap', 'manage_options', 'google-sitemap-plugin.php', 'gglstmp_settings_page' );
36
+ add_action( "load-{$gglstmp_settings}", 'gglstmp_add_tabs' );
37
 
38
  global $gglstmppr_url_home, $gglstmppr_url, $gglstmppr_url_send, $gglstmppr_url_send_sitemap;
39
  $gglstmppr_url_home = home_url( "/" );
53
  /* Function adds language files */
54
  if ( ! function_exists( 'gglstmp_init' ) ) {
55
  function gglstmp_init() {
56
+ global $gglstmp_plugin_info;
57
 
58
  if ( empty( $gglstmp_plugin_info ) ) {
59
  if ( ! function_exists( 'get_plugin_data' ) )
64
  /* add general functions */
65
  require_once( dirname( __FILE__ ) . '/bws_menu/bws_include.php' );
66
  bws_include_init( plugin_basename( __FILE__ ) );
67
+
68
  /* check compatible with current WP version */
69
  bws_wp_min_version_check( plugin_basename( __FILE__ ), $gglstmp_plugin_info, '3.8', '3.1' );
70
 
80
  function gglstmp_admin_init() {
81
  /* Add variable for bws_menu */
82
  global $bws_plugin_info, $gglstmp_plugin_info;
83
+
84
+ if ( ! isset( $bws_plugin_info ) || empty( $bws_plugin_info ) ) {
85
  $bws_plugin_info = array( 'id' => '83', 'version' => $gglstmp_plugin_info["Version"] );
86
  }
87
 
89
  if ( ! session_id() ) {
90
  session_start();
91
  }
92
+ }
93
  }
94
  }
95
 
103
  'post_type' => array( 'page', 'post' ),
104
  'taxonomy' => array(),
105
  'sitemap' => array(),
106
+ 'first_install' => strtotime( "now" ),
107
  'display_settings_notice' => 1
108
  );
109
 
111
  add_option( 'gglstmp_settings', $gglstmp_option_defaults );
112
 
113
  $gglstmp_settings = get_option( 'gglstmp_settings' );
114
+
115
  if ( ! isset( $gglstmp_settings['plugin_option_version'] ) || $gglstmp_settings['plugin_option_version'] != $gglstmp_plugin_info['Version'] ) {
116
  if ( ! isset( $gglstmp_settings['post_type'] ) && is_array( $gglstmp_settings ) )
117
  $gglstmp_settings['post_type'] = $gglstmp_settings;
119
  $gglstmp_option_defaults['display_settings_notice'] = 0;
120
  $gglstmp_settings = array_merge( $gglstmp_option_defaults, $gglstmp_settings );
121
  $gglstmp_settings['plugin_option_version'] = $gglstmp_plugin_info["Version"];
122
+ /* show pro features */
123
+ $gglstmp_settings['hide_premium_options'] = array();
124
  update_option( 'gglstmp_settings', $gglstmp_settings );
125
  }
126
  }
257
  }
258
  }
259
 
260
+ if ( ! function_exists( 'gglstmp_plugin_status' ) ) {
261
+ function gglstmp_plugin_status( $plugins, $all_plugins, $is_network ) {
262
+ $result = array(
263
+ 'status' => '',
264
+ 'plugin' => '',
265
+ 'plugin_info' => array(),
266
+ );
267
+ foreach ( (array)$plugins as $plugin ) {
268
+ if ( array_key_exists( $plugin, $all_plugins ) ) {
269
+ if (
270
+ ( $is_network && is_plugin_active_for_network( $plugin ) ) ||
271
+ ( ! $is_network && is_plugin_active( $plugin ) )
272
+ ) {
273
+ $result['status'] = 'actived';
274
+ $result['plugin'] = $plugin;
275
+ $result['plugin_info'] = $all_plugins[$plugin];
276
+ break;
277
+ } else {
278
+ $result['status'] = 'deactivated';
279
+ $result['plugin'] = $plugin;
280
+ $result['plugin_info'] = $all_plugins[$plugin];
281
+ }
282
+
283
+ }
284
+ }
285
+ if ( empty( $result['status'] ) )
286
+ $result['status'] = 'not_installed';
287
+ return $result;
288
+ }
289
+ }
290
+
291
  /*============================================ Function for creating setting page ====================*/
292
  if ( ! function_exists ( 'gglstmp_settings_page' ) ) {
293
  function gglstmp_settings_page() {
298
  $gglstmppr_url_robot = ABSPATH . "robots.txt";
299
  $plugin_basename = plugin_basename( __FILE__ );
300
 
301
+ /* Check htaccess plugin */
302
+ $gglstmp_htaccess_active = false;
303
+ if ( is_multisite() && ! is_subdomain_install() ) {
304
+ $all_plugins = get_plugins();
305
+ $is_network = is_network_admin();
306
+ $admin_url = $is_network ? network_admin_url( '/' ) : admin_url( '/' );
307
+ $gglstmp_htaccess = gglstmp_plugin_status( array( 'htaccess/htaccess.php', 'htaccess-pro/htaccess-pro.php' ), $all_plugins, $is_network );
308
+ $gglstmp_htaccess_options = false;
309
+
310
+ if ( $gglstmp_htaccess['status'] == 'actived' ) {
311
+
312
+ if ( $gglstmp_htaccess['plugin'] == 'htaccess/htaccess.php' ) {
313
+ global $htccss_options;
314
+ register_htccss_settings();
315
+ $gglstmp_htaccess_options = &$htccss_options;
316
+ $gglstmp_htaccess_prefix = 'htccss';
317
+ }
318
+
319
+ if ( $gglstmp_htaccess['plugin'] == 'htaccess-pro/htaccess-pro.php' ) {
320
+ global $htccsspr_options;
321
+ register_htccsspr_settings();
322
+ $gglstmp_htaccess_options = &$htccsspr_options;
323
+ $gglstmp_htaccess_prefix = 'htccsspr';
324
+ }
325
+
326
+ $gglstmp_htaccess_active = true;
327
+ $gglstmp_htaccess_options_name = "{$gglstmp_htaccess_prefix}_options";
328
+ $gglstmp_htaccess_function_generate = "{$gglstmp_htaccess_prefix}_generate_htaccess";
329
+ $gglstmp_htaccess_function_check = "{$gglstmp_htaccess_prefix}_check_xml_access";
330
+
331
+ if( function_exists( $gglstmp_htaccess_function_check ) ) {
332
+ $gglstmp_htaccess_check = $gglstmp_htaccess_function_check();
333
+ if ( $gglstmp_htaccess_check != $gglstmp_htaccess_options['allow_xml'] ) {
334
+ $gglstmp_htaccess_options['allow_xml'] = $gglstmp_htaccess_check;
335
+ update_site_option( $gglstmp_htaccess_options_name, $gglstmp_htaccess_options );
336
+ }
337
+ }
338
+
339
+ }
340
+ }
341
+
342
  if ( is_multisite() ) {
343
  $home_url = preg_replace( "/[^a-zA-ZА-Яа-я0-9\s]/", "_", str_replace( 'http://', '', str_replace( 'https://', '', home_url() ) ) );
344
  $gglstmppr_url_sitemap = ABSPATH . "sitemap_" . $home_url .".xml";
347
  }
348
 
349
  if ( isset( $_REQUEST['gglstmp_submit'] ) && check_admin_referer( $plugin_basename, 'gglstmp_nonce_name' ) ) {
350
+ if ( isset( $_POST['bws_hide_premium_options'] ) ) {
351
+ $hide_result = bws_hide_premium_options( $gglstmp_settings );
352
+ $gglstmp_settings = $hide_result['options'];
353
+ }
354
+
355
+ if ( $gglstmp_htaccess_active && $gglstmp_htaccess_options && function_exists( $gglstmp_htaccess_function_generate ) ) {
356
+ $gglstmp_allow_xml = ( isset( $_POST[ 'gglstmp_allow_xml' ] ) && $_POST[ 'gglstmp_allow_xml' ] == 1 ) ? 1 : 0;
357
+ if ( $gglstmp_allow_xml != $gglstmp_htaccess_options['allow_xml'] ) {
358
+ $gglstmp_htaccess_options['allow_xml'] = $gglstmp_allow_xml;
359
+ update_site_option( $gglstmp_htaccess_options_name, $gglstmp_htaccess_options );
360
+ $gglstmp_htaccess_function_generate();
361
+ }
362
+ }
363
+
364
  $gglstmp_settings['post_type'] = isset( $_REQUEST['gglstmp_post_types'] ) ? $_REQUEST['gglstmp_post_types'] : array();
365
  $gglstmp_settings['taxonomy'] = isset( $_REQUEST['gglstmp_taxonomies'] ) ? $_REQUEST['gglstmp_taxonomies'] : array();
366
  /*============================ Adding location of sitemap file to the robots.txt =============*/
367
  $gglstmp_robots_flag = isset( $_POST['gglstmp_checkbox'] ) ? 1 : 0;
368
  if ( file_exists( $gglstmppr_url_robot ) && ! is_multisite() ) {
369
+ if ( ! is_writable( $gglstmppr_url_robot ) )
370
  @chmod( $gglstmppr_url_robot, 0755 );
371
  if ( is_writable( $gglstmppr_url_robot ) ) {
372
  $file_content = file_get_contents( $gglstmppr_url_robot );
392
  }
393
  }
394
 
395
+ /*## check banner */
396
+ $bws_hide_premium_options_check = bws_hide_premium_options_check( $gglstmp_settings );
397
+
398
  if ( isset( $_POST['gglstmp_new'] ) && check_admin_referer( $plugin_basename, 'gglstmp_nonce_name' ) ) {
399
  $message = __( "Your Sitemap file is created in the site root directory.", 'google-sitemap-plugin' );
400
  gglstmp_sitemapcreate();
409
  $gglstmp_result_taxonomies = array(
410
  'category' => 'Post category',
411
  'post_tag' => 'Post tag'
412
+ );
413
 
414
  /* GO PRO */
415
  if ( isset( $_GET['action'] ) && 'go_pro' == $_GET['action'] ) {
416
+ $go_pro_result = bws_go_pro_tab_check( $plugin_basename, 'gglstmp_settings' );
417
  if ( ! empty( $go_pro_result['error'] ) )
418
  $error = $go_pro_result['error'];
419
+ elseif ( ! empty( $go_pro_result['message'] ) )
420
+ $message = $go_pro_result['message'];
421
+ }
422
+
423
  if ( isset( $_REQUEST['bws_restore_confirm'] ) && check_admin_referer( $plugin_basename, 'bws_settings_nonce_name' ) ) {
424
  $gglstmp_settings = $gglstmp_option_defaults;
425
  @unlink( $gglstmppr_url_sitemap );/* remove sitemap.xml */
426
  /* clear robots.txt */
427
  if ( file_exists( $gglstmppr_url_robot ) && ! is_multisite() ) {
428
+ if ( ! is_writable( $gglstmppr_url_robot ) )
429
  @chmod( $gglstmppr_url_robot, 0755 );
430
  if ( is_writable( $gglstmppr_url_robot ) ) {
431
  $file_content = file_get_contents( $gglstmppr_url_robot );
446
  $message = __( 'All plugin settings were restored.', 'google-sitemap-plugin' );
447
  } ?>
448
  <div class="wrap">
449
+ <h1 style="line-height: normal;"><?php _e( "Google Sitemap Settings", 'google-sitemap-plugin' ); ?></h1>
 
450
  <h2 class="nav-tab-wrapper">
451
  <a class="nav-tab<?php if ( !isset( $_GET['action'] ) ) echo ' nav-tab-active'; ?>" href="admin.php?page=google-sitemap-plugin.php"><?php _e( 'Settings', 'google-sitemap-plugin' ); ?></a>
452
  <a class="nav-tab<?php if ( isset( $_GET['action'] ) && 'extra' == $_GET['action'] ) echo ' nav-tab-active'; ?>" href="admin.php?page=google-sitemap-plugin.php&amp;action=extra"><?php _e( 'Extra settings', 'google-sitemap-plugin' ); ?></a>
 
453
  <a class="nav-tab bws_go_pro_tab<?php if ( isset( $_GET['action'] ) && 'go_pro' == $_GET['action'] ) echo ' nav-tab-active'; ?>" href="admin.php?page=google-sitemap-plugin.php&amp;action=go_pro"><?php _e( 'Go PRO', 'google-sitemap-plugin' ); ?></a>
454
  </h2>
455
+ <?php if ( ! isset( $_GET['action'] ) && is_multisite() && ! is_subdomain_install() && count( glob( ABSPATH . "sitemap*.xml" ) ) > 0 && ( ! $gglstmp_htaccess_active || $gglstmp_htaccess_options['allow_xml'] == 0 ) ) { ?>
456
  <div id="gglstmp_check_sitemap_block" class="error">
457
  <p>
458
  <?php printf( '<strong>%s</strong> %s',
459
  __( 'Warning:', 'google-sitemap-plugin' ),
460
  sprintf(
461
+ __( 'To have an access to subsites XML files, please add the following rule %s to your %s file in %s after line %s or you can use option %s.', 'google-sitemap-plugin' ),
462
  '<code>RewriteRule ([^/]+\.xml)$ $1 [L]</code>',
463
  '<strong>.htaccess</strong>',
464
  sprintf( '<strong>"%s"</strong>', ABSPATH ),
465
+ '<strong>"RewriteBase"</strong>',
466
+ sprintf( '<strong>"%s"</strong>', __( 'Allow access to XML files', 'google-sitemap-plugin' ) )
467
  )
468
  ); ?>
469
  </p>
488
  bws_show_settings_notice(); ?>
489
  <div class="updated fade" <?php if ( "" != $error || $message == "" ) echo "style=\"display:none\""; ?>><p><strong><?php echo $message; ?></strong></p></div>
490
  <div class="error" <?php if ( "" == $error ) echo "style=\"display:none\""; ?>><p><strong><?php echo $error; ?></strong></p></div>
491
+ <?php if ( ! isset( $_GET['action'] ) ) {
492
  if ( isset( $_REQUEST['bws_restore_default'] ) && check_admin_referer( $plugin_basename, 'bws_settings_nonce_name' ) ) {
493
  bws_form_restore_default_confirm( $plugin_basename );
494
  } else { ?>
555
  </fieldset>
556
  </td>
557
  </tr>
558
+ <?php if ( is_multisite() && ! is_subdomain_install() ) {
559
+ $gglstmp_plugin_name = ( isset( $gglstmp_htaccess['plugin_info']['Name'] ) ) ? $gglstmp_htaccess['plugin_info']['Name'] : 'Htaccess by BestWebSoft';
560
+ $gglstmp_attr_checked = $gglstmp_attr_disabled = '';
561
+ $gglstmp_plugin_notice = sprintf( __( 'This option will be applied to all websites in the network', 'google-sitemap-plugin' ) );
562
+ if ( 'deactivated' == $gglstmp_htaccess['status'] ) {
563
+ $gglstmp_attr_disabled = 'disabled="disabled"';
564
+ $gglstmp_plugin_notice = sprintf( __( 'You should %s to use this functionality', 'google-sitemap-plugin' ),
565
+ sprintf( '<a href="%splugins.php">%s%s %s</a>', $admin_url, __( 'activate', 'google-sitemap-plugin' ), ( is_network_admin() ? ' ' . __( 'for network', 'google-sitemap-plugin' ) : '' ), $gglstmp_plugin_name )
566
+ );
567
+ } elseif ( 'not_installed' == $gglstmp_htaccess['status'] ) {
568
+ $gglstmp_attr_disabled = 'disabled="disabled"';
569
+ $gglstmp_plugin_notice = sprintf( __( 'You should %s to use this functionality', 'google-sitemap-plugin' ),
570
+ sprintf( '<a href="http://bestwebsoft.com/products/htaccess/?k=bc745b0c9d4b19ba95ae2c861418e0df&pn=106&v=%s&wp_v=%s">%s %s</a>', $gglstmp_plugin_info["Version"], $wp_version, __( 'download', 'google-sitemap-plugin' ), $gglstmp_plugin_name )
571
+ );
572
+ }
573
+ if ( '1' == $gglstmp_htaccess_options['allow_xml'] && $gglstmp_attr_disabled == '' ) {
574
+ $gglstmp_attr_checked = 'checked="checked"';
575
+ } ?>
576
+ <tr valign="top" id="gglstmp_allow_xml_block">
577
+ <th scope="row"><?php _e( 'Allow access to XML files', 'google-sitemap-plugin' ); ?></th>
578
+ <td>
579
+ <label><input <?php printf( "%s %s", $gglstmp_attr_checked, $gglstmp_attr_disabled ); ?> type="checkbox" name="gglstmp_allow_xml" value="1" /></label>
580
+ <div class="bws_help_box dashicons dashicons-editor-help">
581
+ <div class="bws_hidden_help_text" style="min-width: 270px;">
582
+ <p><?php _e( 'The following string will be added to your .htaccess file', 'google-sitemap-plugin' ); ?>:</p>
583
+ <code>RewriteRule ([^/]+\.xml)$ $1 [L]</code>
584
+ </div>
585
+ </div>
586
+ <span class="bws_info"><?php echo $gglstmp_plugin_notice; ?></span><br />
587
+ </td>
588
+ </tr>
589
+ <?php } ?>
590
  </table>
591
+ <?php if ( ! $bws_hide_premium_options_check ) { ?>
592
+ <div class="bws_pro_version_bloc">
593
+ <div class="bws_pro_version_table_bloc">
594
+ <button type="submit" name="bws_hide_premium_options" class="notice-dismiss bws_hide_premium_options" title="<?php _e( 'Close', 'google-sitemap-plugin' ); ?>"></button>
595
+ <div class="bws_table_bg"></div>
596
+ <table class="form-table bws_pro_version">
597
+ <tr valign="top">
598
+ <th><?php _e( 'XML Sitemap "Change Frequency" parameter', 'google-sitemap-plugin' ); ?></th>
599
+ <td>
600
+ <select name="gglstmp_sitemap_change_frequency">
601
+ <option value="always"><?php _e( 'Always', 'google-sitemap-plugin' ); ?></option>
602
+ <option value="hourly"><?php _e( 'Hourly', 'google-sitemap-plugin' ); ?></option>
603
+ <option value="daily"><?php _e( 'Daily', 'google-sitemap-plugin' ); ?></option>
604
+ <option value="weekly"><?php _e( 'Weekly', 'google-sitemap-plugin' ); ?></option>
605
+ <option selected value="monthly"><?php _e( 'Monthly', 'google-sitemap-plugin' ); ?></option>
606
+ <option value="yearly"><?php _e( 'Yearly', 'google-sitemap-plugin' ); ?></option>
607
+ <option value="never"><?php _e( 'Never', 'google-sitemap-plugin' ); ?></option>
608
+ </select><br />
609
+ <span style="color: #888888;font-size: 10px;"><?php _e( 'This value is used in the sitemap file and provides general information to search engines. The sitemap itself is generated once and will be re-generated when you create or update any post or page.', 'google-sitemap-plugin' ); ?></span>
610
+ </td>
611
+ </tr>
612
+ </table>
613
+ </div>
614
+ <div class="bws_pro_version_tooltip">
615
+ <div class="bws_info">
616
+ <?php _e( 'Unlock premium options by upgrading to Pro version', 'google-sitemap-plugin' ); ?>
617
+ </div>
618
+ <a class="bws_button" href="http://bestwebsoft.com/products/google-sitemap/?k=28d4cf0b4ab6f56e703f46f60d34d039&pn=83&v=<?php echo $gglstmp_plugin_info["Version"]; ?>&wp_v=<?php echo $wp_version; ?>" target="_blank" title="Google Sitemap Pro"><?php _e( 'Learn More', 'google-sitemap-plugin' ); ?></a>
619
+ <div class="clear"></div>
620
  </div>
 
 
621
  </div>
622
+ <?php } ?>
623
  <table class="form-table">
624
  <?php if ( ! function_exists( 'curl_init' ) ) { ?>
625
  <tr valign="top">
629
  </tr>
630
  <?php } else { ?>
631
  <tr id="gglstmp_google_webmaster" valign="top">
632
+ <th scope="row"><?php _e( 'Remote work with Google Webmaster Tools', 'google-sitemap-plugin' ); ?></th>
633
  <td>
634
  <?php $gglstmp_client = gglstmp_client();
635
  $gglstmp_blog_prefix = '_' . get_current_blog_id();
642
  try {
643
  $gglstmp_client->authenticate( $_POST['gglstmp_authorization_code'] );
644
  $gglstmp_settings['authorization_code'] = $_SESSION[ 'gglstmp_authorization_code' . $gglstmp_blog_prefix ] = $gglstmp_client->getAccessToken();
645
+ update_option( 'gglstmp_settings', $gglstmp_settings );
646
  } catch ( Exception $e ) {}
647
  }
648
  if ( ! isset( $_SESSION[ 'gglstmp_authorization_code' . $gglstmp_blog_prefix ] ) && isset( $gglstmp_settings['authorization_code'] ) ) {
687
  } else {
688
  $gglstmp_state = mt_rand();
689
  $gglstmp_client->setState( $gglstmp_state );
690
+ $_SESSION[ 'gglstmp_state' . $gglstmp_blog_prefix ] = $gglstmp_client;
691
  $gglstmp_auth_url = $gglstmp_client->createAuthUrl(); ?>
692
  <p><?php _e( "Please authorize via your Google Account in order to add or delete a site and a sitemap file automatically or get information about this site in Google Webmaster Tools.", 'google-sitemap-plugin' ); ?></p>
693
  <a id="gglstmp_authorization_button" class="button-primary" href="<?php echo $gglstmp_auth_url; ?>" target="_blank" onclick="window.open(this.href,'','top='+(screen.height/2-560/2)+',left='+(screen.width/2-640/2)+',width=640,height=560,resizable=0,scrollbars=0,menubar=0,toolbar=0,status=1,location=0').focus(); return false;"><?php _e( 'Get Authorization Code', 'google-sitemap-plugin' ); ?></a>
711
  </form>
712
  <?php bws_form_restore_default_settings( $plugin_basename ); ?>
713
  <div class="clear"></div>
714
+ <?php }
715
  } elseif ( 'extra' == $_GET['action'] ) { ?>
716
  <div class="bws_pro_version_bloc">
717
  <div class="bws_pro_version_table_bloc">
751
  </div>
752
  </div>
753
  <?php } elseif ( 'go_pro' == $_GET['action'] ) {
754
+ bws_go_pro_tab_show( $bws_hide_premium_options_check, $gglstmp_plugin_info, $plugin_basename, 'google-sitemap-plugin.php', 'google-sitemap-pro.php', 'google-sitemap-pro/google-sitemap-pro.php', 'google-sitemap', '28d4cf0b4ab6f56e703f46f60d34d039', '83', isset( $go_pro_result['pro_plugin_is_activated'] ) );
755
  }
756
  bws_plugin_reviews_block( $gglstmp_plugin_info['Name'], 'google-sitemap-plugin' ); ?>
757
  </div>
793
  $gglstmp_instruction_url = 'https://docs.google.com/document/d/1VOJx_OaasVskCqi9fsAbUmxfsckoagPU5Py97yjha9w/edit';
794
  $gglstmp_wmt_sites_arr = $gglstmp_wmt_sitemaps_arr = array();
795
 
796
+ printf( '<h3 style="font-size: 1em;">' . __( 'I want to get info about site %s in Google Webmaster Tools', 'google-sitemap-plugin' ) . ':</h3>', sprintf( '<a href="%1$s">%1$s</a>', $gglstmppr_url_home ) );
797
  echo '<div class="gglstmp_wmt_content">';
798
 
799
  $gglstmp_wmt_sites = $gglstmp_wmt->sites->listSites()->getSiteEntry();
808
  } else {
809
  printf( '<div>%s</div>', __( 'This site is added to the Google Webmaster Tools.', 'google-sitemap-plugin' ) );
810
  printf( '<div><strong>%s</strong> <a href="%s" target="_blank">%2$s</a></div>', __( 'Site URL:', 'google-sitemap-plugin'), $gglstmppr_url_home );
811
+ printf( '<div><strong>%s</strong> %s</div>', __( 'Site verification:', 'google-sitemap-plugin' ), ( $gglstmp_wmt_sites_arr[ $gglstmppr_url_home ] == 'siteOwner' ) ? __( 'verified', 'google-sitemap-plugin' ) : __( 'not verified', 'google-sitemap-plugin' ) );
812
 
813
  try {
814
  $gglstmp_wmt_sitemaps = $gglstmp_wmt->sitemaps->listSitemaps( $gglstmppr_url_home )->getSitemap();
821
  }
822
  printf( '<div>%s - <a target="_blank" href="%s">%s</a></div>', __( "The site couldn't be verified. Please, verify the site manually", 'google-sitemap-plugin' ), $gglstmp_instruction_url, __( 'View the Instruction', 'google-sitemap-plugin' ) );
823
  echo '</div><!-- .gglstmp_wmt_content -->';
824
+ return;
825
  }
826
 
827
  $gglstmp_wmt_sitemaps = $gglstmp_wmt->sitemaps->listSitemaps( $gglstmppr_url_home )->getSitemap();
854
  function gglstmp_del_site( $gglstmp_wmt, $gglstmp_sv ) {
855
  global $gglstmp_settings, $gglstmppr_url_home;
856
 
857
+ printf( '<h3 style="font-size: 1em;">' . __( 'I want to delete site %s from Google Webmaster Tools', 'google-sitemap-plugin' ) . '</h3>', sprintf( '<a href="%1$s">%1$s</a>', $gglstmppr_url_home ) );
858
  echo '<div class="gglstmp_wmt_content">';
859
 
860
  try {
886
  $gglstmp_sv_type = 'SITE';
887
  $gglstmp_instruction_url = 'https://docs.google.com/document/d/1VOJx_OaasVskCqi9fsAbUmxfsckoagPU5Py97yjha9w/edit';
888
 
889
+ printf( '<h3 style="font-size: 1em;">' . __( 'I want to add site %s in Google Webmaster Tools', 'google-sitemap-plugin' ) . '</h3>', sprintf( '<a href="%1$s">%1$s</a>', $gglstmppr_url_home ) );
890
  echo '<div class="gglstmp_wmt_content">';
891
 
892
  try {
928
  }
929
  printf( '<div>%s - <a target="_blank" href="%s">%s</a></div>', __( "The site couldn't be verified. Please, verify the site manually", 'google-sitemap-plugin' ), $gglstmp_instruction_url, __( 'View the Instruction', 'google-sitemap-plugin' ) );
930
  echo '</div><!-- .gglstmp_wmt_content -->';
931
+ return;
932
  }
933
 
934
  try {
948
  }
949
  printf( '<div>%s - <a target="_blank" href="%s">%s</a></div>', __( "The site couldn't be verified. Please, verify the site manually", 'google-sitemap-plugin' ), $gglstmp_instruction_url, __( 'View the Instruction', 'google-sitemap-plugin' ) );
950
  echo '</div><!-- .gglstmp_wmt_content -->';
951
+ return;
952
  }
953
 
954
  if ( isset( $gglstmp_settings['sitemap']['loc'] ) ) {
1047
 
1048
  if ( ! function_exists ( 'gglstmp_plugin_banner' ) ) {
1049
  function gglstmp_plugin_banner() {
1050
+ global $hook_suffix;
1051
  if ( 'plugins.php' == $hook_suffix ) {
1052
+ global $gglstmp_plugin_info;
1053
+ if ( ! $gglstmp_settings = get_option( 'gglstmp_settings' ) ) {
1054
+ gglstmp_register_settings();
1055
+ $gglstmp_settings = get_option( 'gglstmp_settings' );
1056
+ }
1057
+ if ( isset( $gglstmp_settings['first_install'] ) && strtotime( '-1 week' ) > $gglstmp_settings['first_install'] )
1058
  bws_plugin_banner( $gglstmp_plugin_info, 'gglstmp', 'google-sitemap', '8fbb5d23fd00bdcb213d6c0985d16ec5', '83', '//ps.w.org/google-sitemap-plugin/assets/icon-128x128.png' );
1059
+
1060
  bws_plugin_banner_to_settings( $gglstmp_plugin_info, 'gglstmp_setting', 'google-sitemap-plugin', 'admin.php?page=google-sitemap-plugin.php' );
1061
  }
1062
  }
1063
  }
1064
 
1065
+ /* add help tab */
1066
+ if ( ! function_exists( 'gglstmp_add_tabs' ) ) {
1067
+ function gglstmp_add_tabs() {
1068
+ $screen = get_current_screen();
1069
+ $args = array(
1070
+ 'id' => 'gglstmp',
1071
+ 'section' => '200538869'
1072
+ );
1073
+ bws_help_tab( $screen, $args );
1074
+ }
1075
+ }
1076
+
1077
  /*============================================ Function for delete of the plugin settings on register_activation_hook ====================*/
1078
  if ( ! function_exists( 'gglstmp_delete_settings' ) ) {
1079
  function gglstmp_delete_settings() {
1091
  } else {
1092
  delete_option( 'gglstmp_settings' );
1093
  delete_option( 'gglstmp_robots' );
1094
+ }
1095
  }
1096
  }
1097
 
languages/google-sitemap-plugin-ru_RU.mo CHANGED
Binary file
languages/google-sitemap-plugin-ru_RU.po CHANGED
@@ -1,9 +1,9 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: google-sitemap-plugin\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-09-21 10:41+0300\n"
6
- "PO-Revision-Date: 2015-09-21 10:41+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: BestWebSoft <plugin@bestwebsoft.com>\n"
9
  "Language: ru_RU\n"
@@ -16,361 +16,439 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: google-sitemap-plugin.php:35
20
- #: google-sitemap-plugin.php:355
21
  msgid "Google Sitemap Settings"
22
  msgstr "Настройки Google Sitemap"
23
 
24
- #: google-sitemap-plugin.php:291
25
  msgid "Cannot edit \"robots.txt\". Check your permissions."
26
  msgstr "Невозможно отредактировать файл \"robots.txt\". Проверьте свои права."
27
 
28
- #: google-sitemap-plugin.php:302
29
  msgid "Settings saved."
30
  msgstr "Настройки сохранены."
31
 
32
- #: google-sitemap-plugin.php:307
33
  msgid "Your Sitemap file is created in the site root directory."
34
  msgstr "Файл Sitemap создан в корне основной директории."
35
 
36
- #: google-sitemap-plugin.php:342
37
  msgid "Cannot edit \"robot.txt\". Check your permissions."
38
  msgstr "Невозможно отредактировать файл \"robot.txt\". Проверьте свои права."
39
 
40
- #: google-sitemap-plugin.php:351
41
  msgid "All plugin settings were restored."
42
  msgstr "Настройки плагина были восстановлены."
43
 
44
- #: google-sitemap-plugin.php:357
45
- #: google-sitemap-plugin.php:898
46
- #: google-sitemap-plugin.php:911
47
  msgid "Settings"
48
  msgstr "Настройки"
49
 
50
- #: google-sitemap-plugin.php:358
51
  msgid "Extra settings"
52
  msgstr "Экстра настройки"
53
 
54
- #: google-sitemap-plugin.php:359
55
- #: google-sitemap-plugin.php:912
56
- msgid "FAQ"
57
- msgstr "FAQ"
58
-
59
- #: google-sitemap-plugin.php:360
60
  msgid "Go PRO"
61
  msgstr "Перейти на PRO версию"
62
 
63
- #: google-sitemap-plugin.php:366
64
  msgid "Warning:"
65
  msgstr "Внимание:"
66
 
67
- #: google-sitemap-plugin.php:368
68
  #, php-format
69
- msgid "To have an access to subsites XML files, please add the following rule %s to your %s file in %s after line %s."
70
- msgstr "Чтобы иметь доступ к XML файлам подсайта, пожалуйста, добавьте следующее правило %s в ваш %s файл %s после строчки %s."
 
 
 
 
 
 
 
 
 
71
 
72
- #: google-sitemap-plugin.php:378
73
  msgid "Сheck Access"
74
  msgstr "Проверить Доступ"
75
 
76
- #: google-sitemap-plugin.php:405
77
- #: google-sitemap-plugin.php:407
78
  msgid "The Sitemap file"
79
  msgstr "Файл Sitemap"
80
 
81
- #: google-sitemap-plugin.php:405
82
- #: google-sitemap-plugin.php:407
83
- msgid "already exists. If you would like to replace it with a new one, please choose the necessary box below."
84
- msgstr "уже существует. Если вы хотите изменить его на новый, выберите соответствующее действие внизу."
 
 
 
85
 
86
- #: google-sitemap-plugin.php:412
87
- #: google-sitemap-plugin.php:414
88
  msgid "Your Sitemap file"
89
  msgstr "Ваш файл Sitemap"
90
 
91
- #: google-sitemap-plugin.php:412
92
- #: google-sitemap-plugin.php:414
93
  msgid "is created in the site root directory."
94
  msgstr "создана в корне основной директории."
95
 
96
- #: google-sitemap-plugin.php:419
97
- #: google-sitemap-plugin.php:421
98
- msgid "If you do not want a sitemap file to be added to Google Webmaster Tools automatically, you can do it using"
99
- msgstr "Если вы не хотите добавить файл sitemap автоматически в Google Webmaster Tools, Вы можете сделать это через"
 
 
 
100
 
101
- #: google-sitemap-plugin.php:419
102
- #: google-sitemap-plugin.php:421
103
  msgid "this"
104
  msgstr "эту"
105
 
106
- #: google-sitemap-plugin.php:419
107
- #: google-sitemap-plugin.php:421
108
- msgid "link - sign in, choose the necessary site, go to 'Sitemaps' and fill out the mandatory field"
109
- msgstr "ссылку, залогиниться, выбрать сайт, выбрать 'Sitemaps' и заполнить обязательное поле"
 
 
 
110
 
111
- #: google-sitemap-plugin.php:426
112
  msgid "I want to create a new sitemap file or update the existing one"
113
  msgstr "Я хочу создать новый файл sitemap или обновить существующий"
114
 
115
- #: google-sitemap-plugin.php:432
116
  msgid "I want to add sitemap file path in robots.txt"
117
  msgstr "Я хочу добавить путь файла sitemap в robots.txt"
118
 
119
- #: google-sitemap-plugin.php:433
120
- msgid "Since you are using multisiting, the plugin does not allow to add a sitemap to robots.txt"
121
- msgstr "Т.к. вы используете мультисайтинг, плагин не имеет возможности добавить sitemap в robots.txt"
 
 
 
 
122
 
123
- #: google-sitemap-plugin.php:439
124
  msgid "I want to add sitemap file path in"
125
  msgstr "Я хочу добавить путь файла sitemap в"
126
 
127
- #: google-sitemap-plugin.php:444
128
- #: google-sitemap-plugin.php:593
129
- msgid "Please choose the necessary post types and taxonomies the links to which are to be added to the sitemap:"
130
- msgstr "Пожалуйста, выберите необходимые типы постов и таксономии, ссылки на которые будут добавлены в sitemap:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
131
 
132
- #: google-sitemap-plugin.php:470
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
133
  msgid "XML Sitemap \"Change Frequency\" parameter"
134
  msgstr "Параметр XML Sitemap \"Change Frequency\""
135
 
136
- #: google-sitemap-plugin.php:473
137
  msgid "Always"
138
  msgstr "Всегда"
139
 
140
- #: google-sitemap-plugin.php:474
141
  msgid "Hourly"
142
  msgstr "Ежечасно"
143
 
144
- #: google-sitemap-plugin.php:475
145
  msgid "Daily"
146
  msgstr "Ежедневно"
147
 
148
- #: google-sitemap-plugin.php:476
149
  msgid "Weekly"
150
  msgstr "Еженедельно"
151
 
152
- #: google-sitemap-plugin.php:477
153
  msgid "Monthly"
154
  msgstr "Ежемесячно"
155
 
156
- #: google-sitemap-plugin.php:478
157
  msgid "Yearly"
158
  msgstr "Ежегодно"
159
 
160
- #: google-sitemap-plugin.php:479
161
  msgid "Never"
162
  msgstr "Никогда"
163
 
164
- #: google-sitemap-plugin.php:481
165
- msgid "This value is used in the sitemap file and provides general information to search engines. The sitemap itself is generated once and will be re-generated when you create or update any post or page."
166
- msgstr "Это значение используется в файле sitemap и предоставляет общую информацию для поисковых систем. Sitemap создается один раз и будет перезаписана вновь при создании или обновлении какой-либо страницы или поста."
 
 
 
 
 
 
167
 
168
- #: google-sitemap-plugin.php:488
169
- #: google-sitemap-plugin.php:618
170
  msgid "Unlock premium options by upgrading to Pro version"
171
  msgstr "Активируйте премиум опции обновившись до Pro версии"
172
 
173
- #: google-sitemap-plugin.php:490
174
- #: google-sitemap-plugin.php:620
175
  msgid "Learn More"
176
  msgstr "Подробнее"
177
 
178
- #: google-sitemap-plugin.php:498
179
- msgid "This hosting does not support сURL, so you cannot add a sitemap file automatically."
180
- msgstr "Ваш хостинг не поддерживает сURL, поэтому вы не можете добавить sitemap в Google аккаунт автоматически."
 
 
 
 
181
 
182
- #: google-sitemap-plugin.php:503
183
  msgid "Remote work with Google Webmaster Tools"
184
  msgstr "Удаленная работа с Google Webmaster Tools"
185
 
186
- #: google-sitemap-plugin.php:527
187
  msgid "Log out from Google Webmaster Tools"
188
  msgstr "Выйти из Google Webmaster Tools"
189
 
190
- #: google-sitemap-plugin.php:529
191
  msgid "I want to add this site to Google Webmaster Tools"
192
  msgstr "Я хочу добавить этот сайт в Google Webmaster Tools"
193
 
194
- #: google-sitemap-plugin.php:530
195
  msgid "I want to delete this site from Google Webmaster Tools"
196
  msgstr "Я хочу удалить этот сайт из Google Webmaster Tools"
197
 
198
- #: google-sitemap-plugin.php:531
199
  msgid "I want to get info about this site in Google Webmaster Tools"
200
  msgstr "Я хочу получить информацию об этом сайте из Google Webmaster Tools"
201
 
202
- #: google-sitemap-plugin.php:537
203
- msgid "In case you failed to add a sitemap to Google automatically using this plugin, it is possible to do it manually"
204
- msgstr "В случае ошибки при добавлении sitemap в Google автоматически с помощью этого плагина, Вы можете сделать это вручную"
 
 
 
 
205
 
206
- #: google-sitemap-plugin.php:538
207
- #: google-sitemap-plugin.php:693
208
- #: google-sitemap-plugin.php:716
209
- #: google-sitemap-plugin.php:773
210
- #: google-sitemap-plugin.php:800
211
- #: google-sitemap-plugin.php:820
212
- #: google-sitemap-plugin.php:839
213
  msgid "View the Instruction"
214
  msgstr "Просмотреть Инструкцию"
215
 
216
- #: google-sitemap-plugin.php:563
217
- msgid "Please authorize via your Google Account in order to add or delete a site and a sitemap file automatically or get information about this site in Google Webmaster Tools."
218
- msgstr "Пожалуйста, авторизуйтесь используя ваш Google аккаунт, чтобы иметь возможность добавлять или удалять сайты и файл sitemap автоматически или получать информацию из Google Webmaster Tools."
 
 
 
 
 
 
219
 
220
- #: google-sitemap-plugin.php:564
221
  msgid "Get Authorization Code"
222
  msgstr "Получить код авторизации"
223
 
224
- #: google-sitemap-plugin.php:567
225
  msgid "Authorize"
226
  msgstr "Авторизироваться"
227
 
228
- #: google-sitemap-plugin.php:570
229
  msgid "Invalid authorization code. Please, try again."
230
  msgstr "Неверный код авторизации. Пожалуйста, попробуйте еще раз."
231
 
232
- #: google-sitemap-plugin.php:579
233
- #: google-sitemap-plugin.php:611
234
  msgid "Save Changes"
235
  msgstr "Сохранить изменения"
236
 
237
- #: google-sitemap-plugin.php:600
238
  msgid "Show URL for pages"
239
  msgstr "Отображать URL для страниц"
240
 
241
- #: google-sitemap-plugin.php:606
242
  msgid "Example of site pages' tree"
243
  msgstr "Пример дерева страниц сайта"
244
 
245
- #: google-sitemap-plugin.php:667
246
  #, php-format
247
  msgid "I want to get info about site %s in Google Webmaster Tools"
248
  msgstr "Я хочу получить информацию об сайте %s из Google Webmaster Tools"
249
 
250
- #: google-sitemap-plugin.php:676
251
- #: google-sitemap-plugin.php:746
252
  msgid "This site is not added to the Google Webmaster Tools."
253
  msgstr "Этот сайт не добавлен в Google Webmaster Tools."
254
 
255
- #: google-sitemap-plugin.php:680
256
  msgid "This site is added to the Google Webmaster Tools."
257
  msgstr "Этот сайт добавлен в Google Webmaster Tools."
258
 
259
- #: google-sitemap-plugin.php:681
260
  msgid "Site URL:"
261
  msgstr "URL сайта:"
262
 
263
- #: google-sitemap-plugin.php:682
264
  msgid "Site verification:"
265
  msgstr "Верификация сайта:"
266
 
267
- #: google-sitemap-plugin.php:682
268
  msgid "verified"
269
  msgstr "верифицрован"
270
 
271
- #: google-sitemap-plugin.php:682
272
  msgid "not verified"
273
  msgstr "не верифицирован"
274
 
275
- #: google-sitemap-plugin.php:691
276
- #: google-sitemap-plugin.php:818
277
- msgid "An unexpected error occurred when verifying site in the Google Webmaster Tools."
 
278
  msgstr "Ошибка при верификации сайта в Google Webmaster Tools."
279
 
280
- #: google-sitemap-plugin.php:693
281
- #: google-sitemap-plugin.php:800
282
- #: google-sitemap-plugin.php:820
283
  msgid "The site couldn't be verified. Please, verify the site manually"
284
- msgstr "Сайт не может быть верифицрован. Пожалуйста, верифицируйте сайт вручную"
 
285
 
286
- #: google-sitemap-plugin.php:706
287
  msgid "The sitemap file is not added to the Google Webmaster Tools."
288
  msgstr "Этот файл sitemap не добавлен в Google Webmaster Tools."
289
 
290
- #: google-sitemap-plugin.php:709
291
  msgid "The sitemap file is added to the Google Webmaster Tools."
292
  msgstr "Этот файл sitemap добавлен в Google Webmaster Tools."
293
 
294
- #: google-sitemap-plugin.php:711
295
- msgid "The sitemap file is added to the Google Webmaster Tools, but has some errors or warnings."
296
- msgstr "Этот файл sitemap добавлен в Google Webmaster Tools, но при добавлении возникли ошибки."
 
 
 
 
297
 
298
- #: google-sitemap-plugin.php:711
299
  msgid "Please, see them in the Google Webmaster Tools."
300
  msgstr "Посмотреть ошибки в Google Webmaster Tools."
301
 
302
- #: google-sitemap-plugin.php:714
303
  msgid "Sitemap URL:"
304
  msgstr "URL Sitemap:"
305
 
306
- #: google-sitemap-plugin.php:716
307
- msgid "When checking the sitemap file an unexpected error occurred. Please, check the sitemap file manually"
308
- msgstr "При проверке обнаружена ошибка файла sitemap. Пожалуйста, проверьте файл вручную"
 
 
 
 
309
 
310
- #: google-sitemap-plugin.php:728
311
  #, php-format
312
  msgid "I want to delete site %s from Google Webmaster Tools"
313
  msgstr "Я хочу удалить сайт %s из Google Webmaster Tools"
314
 
315
- #: google-sitemap-plugin.php:741
316
  msgid "This site has been successfully deleted from Google Webmaster Tools"
317
  msgstr "Этот сайт был успешно удален из Google Webmaster Tools"
318
 
319
- #: google-sitemap-plugin.php:760
320
  #, php-format
321
  msgid "I want to add site %s in Google Webmaster Tools"
322
  msgstr "Я хочу добавить сайт %s в Google Webmaster Tools"
323
 
324
- #: google-sitemap-plugin.php:765
325
  msgid "The site is added to the Google Webmaster Tools."
326
  msgstr "Этот сайт добавлен в Google Webmaster Tools."
327
 
328
- #: google-sitemap-plugin.php:771
329
- msgid "When you add a site in the Google Webmaster Tools unexpected error occurred."
 
330
  msgstr "Ошибка при добавлении сайта в Google Webmaster Tools."
331
 
332
- #: google-sitemap-plugin.php:773
333
  msgid "The site couldn't be added. Please, add the site manually"
334
  msgstr "Сайт не может быть добавлен. Пожалуйста, добавьте сайт вручную"
335
 
336
- #: google-sitemap-plugin.php:789
337
  msgid "Verification code has been successfully received and added to the site."
338
  msgstr "Код верификации получен и добавлен на сайт."
339
 
340
- #: google-sitemap-plugin.php:791
341
- msgid "Verification code has been successfully received but has not been added to the site."
 
 
342
  msgstr "Код верификации получен, но не добавлен на сайт."
343
 
344
- #: google-sitemap-plugin.php:798
345
- msgid "An error has occurred when receiving the verification code site in the Google Webmaster."
 
 
346
  msgstr "Ошибка Google Webmaster при получении кода верификации."
347
 
348
- #: google-sitemap-plugin.php:812
349
  msgid "The site has been successfully verified in the Google Webmaster Tools."
350
  msgstr "Этот сайт был успешно верифицирован в Google Webmaster Tools."
351
 
352
- #: google-sitemap-plugin.php:831
353
- msgid "The sitemap file has been successfully added to the Google Webmaster Tools."
 
354
  msgstr "Файл sitemap был успешно добавлен в Google Webmaster Tools."
355
 
356
- #: google-sitemap-plugin.php:837
357
- msgid "When you add a sitemap file in the Google Webmaster Tools unexpected error occurred."
 
 
358
  msgstr "Ошибка при добавлении файла sitemap в Google Webmaster Tools."
359
 
360
- #: google-sitemap-plugin.php:839
361
- msgid "The sitemap file couldn't be added. Please, add the sitemap file manually"
 
362
  msgstr "Файл sitemap не может быть добавлен. Пожалуйста, добавьте файл вручную"
363
 
364
- #: google-sitemap-plugin.php:842
365
  #, php-format
366
  msgid "Error 404. The sitemap file %s not found."
367
  msgstr "Ошибка 404. Файл sitemap %s не найден."
368
 
369
- #: google-sitemap-plugin.php:845
370
  msgid "The sitemap file not found."
371
  msgstr "Файл sitemap не найден."
372
 
373
- #: google-sitemap-plugin.php:913
 
 
 
 
374
  msgid "Support"
375
  msgstr "Тех.поддержка"
376
 
@@ -540,9 +618,6 @@ msgstr "Тех.поддержка"
540
  #~ "(ваше имя пользователя - это электронный адрес, указанный при покупке "
541
  #~ "продукта)."
542
 
543
- #~ msgid "Activate"
544
- #~ msgstr "Активировать"
545
-
546
  #~ msgid "Sitemap file:"
547
  #~ msgstr "Файл Sitemap:"
548
 
@@ -587,6 +662,3 @@ msgstr "Тех.поддержка"
587
 
588
  #~ msgid "Google Sitemap options"
589
  #~ msgstr "Опции карты сайта Google"
590
-
591
- #~ msgid "You should choose at least one action"
592
- #~ msgstr "Вы должны выбрать одно из действий"
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Google Sitemap\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-12-08 16:39+0300\n"
6
+ "PO-Revision-Date: 2015-12-08 16:39+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: BestWebSoft <plugin@bestwebsoft.com>\n"
9
  "Language: ru_RU\n"
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: google-sitemap-plugin.php:35 google-sitemap-plugin.php:449
 
20
  msgid "Google Sitemap Settings"
21
  msgstr "Настройки Google Sitemap"
22
 
23
+ #: google-sitemap-plugin.php:380
24
  msgid "Cannot edit \"robots.txt\". Check your permissions."
25
  msgstr "Невозможно отредактировать файл \"robots.txt\". Проверьте свои права."
26
 
27
+ #: google-sitemap-plugin.php:391
28
  msgid "Settings saved."
29
  msgstr "Настройки сохранены."
30
 
31
+ #: google-sitemap-plugin.php:399
32
  msgid "Your Sitemap file is created in the site root directory."
33
  msgstr "Файл Sitemap создан в корне основной директории."
34
 
35
+ #: google-sitemap-plugin.php:437
36
  msgid "Cannot edit \"robot.txt\". Check your permissions."
37
  msgstr "Невозможно отредактировать файл \"robot.txt\". Проверьте свои права."
38
 
39
+ #: google-sitemap-plugin.php:446
40
  msgid "All plugin settings were restored."
41
  msgstr "Настройки плагина были восстановлены."
42
 
43
+ #: google-sitemap-plugin.php:451 google-sitemap-plugin.php:1027
44
+ #: google-sitemap-plugin.php:1040
 
45
  msgid "Settings"
46
  msgstr "Настройки"
47
 
48
+ #: google-sitemap-plugin.php:452
49
  msgid "Extra settings"
50
  msgstr "Экстра настройки"
51
 
52
+ #: google-sitemap-plugin.php:453
 
 
 
 
 
53
  msgid "Go PRO"
54
  msgstr "Перейти на PRO версию"
55
 
56
+ #: google-sitemap-plugin.php:459
57
  msgid "Warning:"
58
  msgstr "Внимание:"
59
 
60
+ #: google-sitemap-plugin.php:461
61
  #, php-format
62
+ msgid ""
63
+ "To have an access to subsites XML files, please add the following rule %s to "
64
+ "your %s file in %s after line %s or you can use option %s."
65
+ msgstr ""
66
+ "Чтобы иметь доступ к XML файлам подсайта, пожалуйста, добавьте следующее "
67
+ "правило %s в ваш %s файл %s после строки %s или вы можете использовать опцию "
68
+ "%s."
69
+
70
+ #: google-sitemap-plugin.php:466 google-sitemap-plugin.php:577
71
+ msgid "Allow access to XML files"
72
+ msgstr "Разрешить доступ к XML файлам"
73
 
74
+ #: google-sitemap-plugin.php:472
75
  msgid "Сheck Access"
76
  msgstr "Проверить Доступ"
77
 
78
+ #: google-sitemap-plugin.php:499 google-sitemap-plugin.php:501
 
79
  msgid "The Sitemap file"
80
  msgstr "Файл Sitemap"
81
 
82
+ #: google-sitemap-plugin.php:499 google-sitemap-plugin.php:501
83
+ msgid ""
84
+ "already exists. If you would like to replace it with a new one, please "
85
+ "choose the necessary box below."
86
+ msgstr ""
87
+ "уже существует. Если вы хотите изменить его на новый, выберите "
88
+ "соответствующее действие внизу."
89
 
90
+ #: google-sitemap-plugin.php:506 google-sitemap-plugin.php:508
 
91
  msgid "Your Sitemap file"
92
  msgstr "Ваш файл Sitemap"
93
 
94
+ #: google-sitemap-plugin.php:506 google-sitemap-plugin.php:508
 
95
  msgid "is created in the site root directory."
96
  msgstr "создана в корне основной директории."
97
 
98
+ #: google-sitemap-plugin.php:513 google-sitemap-plugin.php:515
99
+ msgid ""
100
+ "If you do not want a sitemap file to be added to Google Webmaster Tools "
101
+ "automatically, you can do it using"
102
+ msgstr ""
103
+ "Если вы не хотите добавить файл sitemap автоматически в Google Webmaster "
104
+ "Tools, Вы можете сделать это через"
105
 
106
+ #: google-sitemap-plugin.php:513 google-sitemap-plugin.php:515
 
107
  msgid "this"
108
  msgstr "эту"
109
 
110
+ #: google-sitemap-plugin.php:513 google-sitemap-plugin.php:515
111
+ msgid ""
112
+ "link - sign in, choose the necessary site, go to 'Sitemaps' and fill out the "
113
+ "mandatory field"
114
+ msgstr ""
115
+ "ссылку, залогиниться, выбрать сайт, выбрать 'Sitemaps' и заполнить "
116
+ "обязательное поле"
117
 
118
+ #: google-sitemap-plugin.php:520
119
  msgid "I want to create a new sitemap file or update the existing one"
120
  msgstr "Я хочу создать новый файл sitemap или обновить существующий"
121
 
122
+ #: google-sitemap-plugin.php:526
123
  msgid "I want to add sitemap file path in robots.txt"
124
  msgstr "Я хочу добавить путь файла sitemap в robots.txt"
125
 
126
+ #: google-sitemap-plugin.php:527
127
+ msgid ""
128
+ "Since you are using multisiting, the plugin does not allow to add a sitemap "
129
+ "to robots.txt"
130
+ msgstr ""
131
+ "Т.к. вы используете мультисайтинг, плагин не имеет возможности добавить "
132
+ "sitemap в robots.txt"
133
 
134
+ #: google-sitemap-plugin.php:533
135
  msgid "I want to add sitemap file path in"
136
  msgstr "Я хочу добавить путь файла sitemap в"
137
 
138
+ #: google-sitemap-plugin.php:538 google-sitemap-plugin.php:722
139
+ msgid ""
140
+ "Please choose the necessary post types and taxonomies the links to which are "
141
+ "to be added to the sitemap:"
142
+ msgstr ""
143
+ "Пожалуйста, выберите необходимые типы постов и таксономии, ссылки на которые "
144
+ "будут добавлены в sitemap:"
145
+
146
+ #: google-sitemap-plugin.php:561
147
+ msgid "This option will be applied to all websites in the network"
148
+ msgstr "Эта опция будет применена ко всем сайтам сети"
149
+
150
+ #: google-sitemap-plugin.php:564 google-sitemap-plugin.php:569
151
+ #, php-format
152
+ msgid "You should %s to use this functionality"
153
+ msgstr "Чтобы использовать этот функционал %s"
154
+
155
+ #: google-sitemap-plugin.php:565
156
+ msgid "activate"
157
+ msgstr "активируйте"
158
 
159
+ #: google-sitemap-plugin.php:565
160
+ msgid "for network"
161
+ msgstr "для сети"
162
+
163
+ #: google-sitemap-plugin.php:570
164
+ msgid "download"
165
+ msgstr "загрузитe"
166
+
167
+ #: google-sitemap-plugin.php:582
168
+ msgid "The following string will be added to your .htaccess file"
169
+ msgstr "В ваш .htaccess файл будет добавлена следующая строка"
170
+
171
+ #: google-sitemap-plugin.php:594
172
+ msgid "Close"
173
+ msgstr "Закрыть"
174
+
175
+ #: google-sitemap-plugin.php:598
176
  msgid "XML Sitemap \"Change Frequency\" parameter"
177
  msgstr "Параметр XML Sitemap \"Change Frequency\""
178
 
179
+ #: google-sitemap-plugin.php:601
180
  msgid "Always"
181
  msgstr "Всегда"
182
 
183
+ #: google-sitemap-plugin.php:602
184
  msgid "Hourly"
185
  msgstr "Ежечасно"
186
 
187
+ #: google-sitemap-plugin.php:603
188
  msgid "Daily"
189
  msgstr "Ежедневно"
190
 
191
+ #: google-sitemap-plugin.php:604
192
  msgid "Weekly"
193
  msgstr "Еженедельно"
194
 
195
+ #: google-sitemap-plugin.php:605
196
  msgid "Monthly"
197
  msgstr "Ежемесячно"
198
 
199
+ #: google-sitemap-plugin.php:606
200
  msgid "Yearly"
201
  msgstr "Ежегодно"
202
 
203
+ #: google-sitemap-plugin.php:607
204
  msgid "Never"
205
  msgstr "Никогда"
206
 
207
+ #: google-sitemap-plugin.php:609
208
+ msgid ""
209
+ "This value is used in the sitemap file and provides general information to "
210
+ "search engines. The sitemap itself is generated once and will be re-"
211
+ "generated when you create or update any post or page."
212
+ msgstr ""
213
+ "Это значение используется в файле sitemap и предоставляет общую информацию "
214
+ "для поисковых систем. Sitemap создается один раз и будет перезаписана вновь "
215
+ "при создании или обновлении какой-либо страницы или поста."
216
 
217
+ #: google-sitemap-plugin.php:616 google-sitemap-plugin.php:747
 
218
  msgid "Unlock premium options by upgrading to Pro version"
219
  msgstr "Активируйте премиум опции обновившись до Pro версии"
220
 
221
+ #: google-sitemap-plugin.php:618 google-sitemap-plugin.php:749
 
222
  msgid "Learn More"
223
  msgstr "Подробнее"
224
 
225
+ #: google-sitemap-plugin.php:627
226
+ msgid ""
227
+ "This hosting does not support сURL, so you cannot add a sitemap file "
228
+ "automatically."
229
+ msgstr ""
230
+ "Ваш хостинг не поддерживает сURL, поэтому вы не можете добавить sitemap в "
231
+ "Google аккаунт автоматически."
232
 
233
+ #: google-sitemap-plugin.php:632
234
  msgid "Remote work with Google Webmaster Tools"
235
  msgstr "Удаленная работа с Google Webmaster Tools"
236
 
237
+ #: google-sitemap-plugin.php:656
238
  msgid "Log out from Google Webmaster Tools"
239
  msgstr "Выйти из Google Webmaster Tools"
240
 
241
+ #: google-sitemap-plugin.php:658
242
  msgid "I want to add this site to Google Webmaster Tools"
243
  msgstr "Я хочу добавить этот сайт в Google Webmaster Tools"
244
 
245
+ #: google-sitemap-plugin.php:659
246
  msgid "I want to delete this site from Google Webmaster Tools"
247
  msgstr "Я хочу удалить этот сайт из Google Webmaster Tools"
248
 
249
+ #: google-sitemap-plugin.php:660
250
  msgid "I want to get info about this site in Google Webmaster Tools"
251
  msgstr "Я хочу получить информацию об этом сайте из Google Webmaster Tools"
252
 
253
+ #: google-sitemap-plugin.php:666
254
+ msgid ""
255
+ "In case you failed to add a sitemap to Google automatically using this "
256
+ "plugin, it is possible to do it manually"
257
+ msgstr ""
258
+ "В случае ошибки при добавлении sitemap в Google автоматически с помощью "
259
+ "этого плагина, Вы можете сделать это вручную"
260
 
261
+ #: google-sitemap-plugin.php:667 google-sitemap-plugin.php:822
262
+ #: google-sitemap-plugin.php:845 google-sitemap-plugin.php:902
263
+ #: google-sitemap-plugin.php:929 google-sitemap-plugin.php:949
264
+ #: google-sitemap-plugin.php:968
 
 
 
265
  msgid "View the Instruction"
266
  msgstr "Просмотреть Инструкцию"
267
 
268
+ #: google-sitemap-plugin.php:692
269
+ msgid ""
270
+ "Please authorize via your Google Account in order to add or delete a site "
271
+ "and a sitemap file automatically or get information about this site in "
272
+ "Google Webmaster Tools."
273
+ msgstr ""
274
+ "Пожалуйста, авторизуйтесь используя ваш Google аккаунт, чтобы иметь "
275
+ "возможность добавлять или удалять сайты и файл sitemap автоматически или "
276
+ "получать информацию из Google Webmaster Tools."
277
 
278
+ #: google-sitemap-plugin.php:693
279
  msgid "Get Authorization Code"
280
  msgstr "Получить код авторизации"
281
 
282
+ #: google-sitemap-plugin.php:696
283
  msgid "Authorize"
284
  msgstr "Авторизироваться"
285
 
286
+ #: google-sitemap-plugin.php:699
287
  msgid "Invalid authorization code. Please, try again."
288
  msgstr "Неверный код авторизации. Пожалуйста, попробуйте еще раз."
289
 
290
+ #: google-sitemap-plugin.php:708 google-sitemap-plugin.php:740
 
291
  msgid "Save Changes"
292
  msgstr "Сохранить изменения"
293
 
294
+ #: google-sitemap-plugin.php:729
295
  msgid "Show URL for pages"
296
  msgstr "Отображать URL для страниц"
297
 
298
+ #: google-sitemap-plugin.php:735
299
  msgid "Example of site pages' tree"
300
  msgstr "Пример дерева страниц сайта"
301
 
302
+ #: google-sitemap-plugin.php:796
303
  #, php-format
304
  msgid "I want to get info about site %s in Google Webmaster Tools"
305
  msgstr "Я хочу получить информацию об сайте %s из Google Webmaster Tools"
306
 
307
+ #: google-sitemap-plugin.php:805 google-sitemap-plugin.php:875
 
308
  msgid "This site is not added to the Google Webmaster Tools."
309
  msgstr "Этот сайт не добавлен в Google Webmaster Tools."
310
 
311
+ #: google-sitemap-plugin.php:809
312
  msgid "This site is added to the Google Webmaster Tools."
313
  msgstr "Этот сайт добавлен в Google Webmaster Tools."
314
 
315
+ #: google-sitemap-plugin.php:810
316
  msgid "Site URL:"
317
  msgstr "URL сайта:"
318
 
319
+ #: google-sitemap-plugin.php:811
320
  msgid "Site verification:"
321
  msgstr "Верификация сайта:"
322
 
323
+ #: google-sitemap-plugin.php:811
324
  msgid "verified"
325
  msgstr "верифицрован"
326
 
327
+ #: google-sitemap-plugin.php:811
328
  msgid "not verified"
329
  msgstr "не верифицирован"
330
 
331
+ #: google-sitemap-plugin.php:820 google-sitemap-plugin.php:947
332
+ msgid ""
333
+ "An unexpected error occurred when verifying site in the Google Webmaster "
334
+ "Tools."
335
  msgstr "Ошибка при верификации сайта в Google Webmaster Tools."
336
 
337
+ #: google-sitemap-plugin.php:822 google-sitemap-plugin.php:929
338
+ #: google-sitemap-plugin.php:949
 
339
  msgid "The site couldn't be verified. Please, verify the site manually"
340
+ msgstr ""
341
+ "Сайт не может быть верифицрован. Пожалуйста, верифицируйте сайт вручную"
342
 
343
+ #: google-sitemap-plugin.php:835
344
  msgid "The sitemap file is not added to the Google Webmaster Tools."
345
  msgstr "Этот файл sitemap не добавлен в Google Webmaster Tools."
346
 
347
+ #: google-sitemap-plugin.php:838
348
  msgid "The sitemap file is added to the Google Webmaster Tools."
349
  msgstr "Этот файл sitemap добавлен в Google Webmaster Tools."
350
 
351
+ #: google-sitemap-plugin.php:840
352
+ msgid ""
353
+ "The sitemap file is added to the Google Webmaster Tools, but has some errors "
354
+ "or warnings."
355
+ msgstr ""
356
+ "Этот файл sitemap добавлен в Google Webmaster Tools, но при добавлении "
357
+ "возникли ошибки."
358
 
359
+ #: google-sitemap-plugin.php:840
360
  msgid "Please, see them in the Google Webmaster Tools."
361
  msgstr "Посмотреть ошибки в Google Webmaster Tools."
362
 
363
+ #: google-sitemap-plugin.php:843
364
  msgid "Sitemap URL:"
365
  msgstr "URL Sitemap:"
366
 
367
+ #: google-sitemap-plugin.php:845
368
+ msgid ""
369
+ "When checking the sitemap file an unexpected error occurred. Please, check "
370
+ "the sitemap file manually"
371
+ msgstr ""
372
+ "При проверке обнаружена ошибка файла sitemap. Пожалуйста, проверьте файл "
373
+ "вручную"
374
 
375
+ #: google-sitemap-plugin.php:857
376
  #, php-format
377
  msgid "I want to delete site %s from Google Webmaster Tools"
378
  msgstr "Я хочу удалить сайт %s из Google Webmaster Tools"
379
 
380
+ #: google-sitemap-plugin.php:870
381
  msgid "This site has been successfully deleted from Google Webmaster Tools"
382
  msgstr "Этот сайт был успешно удален из Google Webmaster Tools"
383
 
384
+ #: google-sitemap-plugin.php:889
385
  #, php-format
386
  msgid "I want to add site %s in Google Webmaster Tools"
387
  msgstr "Я хочу добавить сайт %s в Google Webmaster Tools"
388
 
389
+ #: google-sitemap-plugin.php:894
390
  msgid "The site is added to the Google Webmaster Tools."
391
  msgstr "Этот сайт добавлен в Google Webmaster Tools."
392
 
393
+ #: google-sitemap-plugin.php:900
394
+ msgid ""
395
+ "When you add a site in the Google Webmaster Tools unexpected error occurred."
396
  msgstr "Ошибка при добавлении сайта в Google Webmaster Tools."
397
 
398
+ #: google-sitemap-plugin.php:902
399
  msgid "The site couldn't be added. Please, add the site manually"
400
  msgstr "Сайт не может быть добавлен. Пожалуйста, добавьте сайт вручную"
401
 
402
+ #: google-sitemap-plugin.php:918
403
  msgid "Verification code has been successfully received and added to the site."
404
  msgstr "Код верификации получен и добавлен на сайт."
405
 
406
+ #: google-sitemap-plugin.php:920
407
+ msgid ""
408
+ "Verification code has been successfully received but has not been added to "
409
+ "the site."
410
  msgstr "Код верификации получен, но не добавлен на сайт."
411
 
412
+ #: google-sitemap-plugin.php:927
413
+ msgid ""
414
+ "An error has occurred when receiving the verification code site in the "
415
+ "Google Webmaster."
416
  msgstr "Ошибка Google Webmaster при получении кода верификации."
417
 
418
+ #: google-sitemap-plugin.php:941
419
  msgid "The site has been successfully verified in the Google Webmaster Tools."
420
  msgstr "Этот сайт был успешно верифицирован в Google Webmaster Tools."
421
 
422
+ #: google-sitemap-plugin.php:960
423
+ msgid ""
424
+ "The sitemap file has been successfully added to the Google Webmaster Tools."
425
  msgstr "Файл sitemap был успешно добавлен в Google Webmaster Tools."
426
 
427
+ #: google-sitemap-plugin.php:966
428
+ msgid ""
429
+ "When you add a sitemap file in the Google Webmaster Tools unexpected error "
430
+ "occurred."
431
  msgstr "Ошибка при добавлении файла sitemap в Google Webmaster Tools."
432
 
433
+ #: google-sitemap-plugin.php:968
434
+ msgid ""
435
+ "The sitemap file couldn't be added. Please, add the sitemap file manually"
436
  msgstr "Файл sitemap не может быть добавлен. Пожалуйста, добавьте файл вручную"
437
 
438
+ #: google-sitemap-plugin.php:971
439
  #, php-format
440
  msgid "Error 404. The sitemap file %s not found."
441
  msgstr "Ошибка 404. Файл sitemap %s не найден."
442
 
443
+ #: google-sitemap-plugin.php:974
444
  msgid "The sitemap file not found."
445
  msgstr "Файл sitemap не найден."
446
 
447
+ #: google-sitemap-plugin.php:1041
448
+ msgid "FAQ"
449
+ msgstr "FAQ"
450
+
451
+ #: google-sitemap-plugin.php:1042
452
  msgid "Support"
453
  msgstr "Тех.поддержка"
454
 
618
  #~ "(ваше имя пользователя - это электронный адрес, указанный при покупке "
619
  #~ "продукта)."
620
 
 
 
 
621
  #~ msgid "Sitemap file:"
622
  #~ msgstr "Файл Sitemap:"
623
 
662
 
663
  #~ msgid "Google Sitemap options"
664
  #~ msgstr "Опции карты сайта Google"
 
 
 
languages/google-sitemap-plugin-uk.mo CHANGED
Binary file
languages/google-sitemap-plugin-uk.po CHANGED
@@ -1,9 +1,9 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: google-sitemap-plugin\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-09-21 10:41+0300\n"
6
- "PO-Revision-Date: 2015-09-21 10:41+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: BestWebSoft <plugin@bestwebsoft.com>\n"
9
  "Language: ru_RU\n"
@@ -12,365 +12,439 @@ msgstr ""
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
- "X-Poedit-SourceCharset: utf-8\n"
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: google-sitemap-plugin.php:35
20
- #: google-sitemap-plugin.php:355
21
  msgid "Google Sitemap Settings"
22
  msgstr "Налаштування Google Sitemap"
23
 
24
- #: google-sitemap-plugin.php:291
25
  msgid "Cannot edit \"robots.txt\". Check your permissions."
26
  msgstr "Неможливо відредагувати файл \"robots.txt\". Перевірте свої права."
27
 
28
- #: google-sitemap-plugin.php:302
29
  msgid "Settings saved."
30
  msgstr "Налаштування збережено."
31
 
32
- #: google-sitemap-plugin.php:307
33
  msgid "Your Sitemap file is created in the site root directory."
34
  msgstr "Файл Sitemap створено у кореневій директорії сайту."
35
 
36
- #: google-sitemap-plugin.php:342
37
  msgid "Cannot edit \"robot.txt\". Check your permissions."
38
  msgstr "Неможливо відредагувати файл \"robot.txt\". Перевірте свої права."
39
 
40
- #: google-sitemap-plugin.php:351
41
  msgid "All plugin settings were restored."
42
  msgstr "Налаштування плагіну були відновлені."
43
 
44
- #: google-sitemap-plugin.php:357
45
- #: google-sitemap-plugin.php:898
46
- #: google-sitemap-plugin.php:911
47
  msgid "Settings"
48
  msgstr "Налаштування"
49
 
50
- #: google-sitemap-plugin.php:358
51
  msgid "Extra settings"
52
  msgstr "Додаткові налаштування"
53
 
54
- #: google-sitemap-plugin.php:359
55
- #: google-sitemap-plugin.php:912
56
- msgid "FAQ"
57
- msgstr "FAQ"
58
-
59
- #: google-sitemap-plugin.php:360
60
  msgid "Go PRO"
61
  msgstr "Перейти на PRO"
62
 
63
- #: google-sitemap-plugin.php:366
64
  msgid "Warning:"
65
  msgstr "Увага:"
66
 
67
- #: google-sitemap-plugin.php:368
68
  #, php-format
69
- msgid "To have an access to subsites XML files, please add the following rule %s to your %s file in %s after line %s."
70
- msgstr "Щоб мати доступ до XML файлів підсайту, будь ласка, додайте наступне правило %s у ваш %s файл %s після строчки %s."
 
 
 
 
 
 
 
 
71
 
72
- #: google-sitemap-plugin.php:378
73
  msgid "Сheck Access"
74
  msgstr "Перевірити Доступ"
75
 
76
- #: google-sitemap-plugin.php:405
77
- #: google-sitemap-plugin.php:407
78
  msgid "The Sitemap file"
79
  msgstr "Файл Sitemap"
80
 
81
- #: google-sitemap-plugin.php:405
82
- #: google-sitemap-plugin.php:407
83
- msgid "already exists. If you would like to replace it with a new one, please choose the necessary box below."
84
- msgstr "вже існує. Якщо ви хочете замінити його на новий, виберіть потрібну дію внизу."
 
 
 
85
 
86
- #: google-sitemap-plugin.php:412
87
- #: google-sitemap-plugin.php:414
88
  msgid "Your Sitemap file"
89
  msgstr "Ваш файл Sitemap"
90
 
91
- #: google-sitemap-plugin.php:412
92
- #: google-sitemap-plugin.php:414
93
  msgid "is created in the site root directory."
94
  msgstr "створений у кореневій директорії сайту."
95
 
96
- #: google-sitemap-plugin.php:419
97
- #: google-sitemap-plugin.php:421
98
- msgid "If you do not want a sitemap file to be added to Google Webmaster Tools automatically, you can do it using"
99
- msgstr "Якщо ви не хочете додати файл sitemap до Google Webmaster Tools автоматично, ви можете зробити це через"
 
 
 
100
 
101
- #: google-sitemap-plugin.php:419
102
- #: google-sitemap-plugin.php:421
103
  msgid "this"
104
  msgstr "це"
105
 
106
- #: google-sitemap-plugin.php:419
107
- #: google-sitemap-plugin.php:421
108
- msgid "link - sign in, choose the necessary site, go to 'Sitemaps' and fill out the mandatory field"
109
- msgstr "посилання. Авторизуйтеся, виберіть сайт, виберіть 'Sitemaps' та заповніть потрібне поле"
 
 
 
110
 
111
- #: google-sitemap-plugin.php:426
112
  msgid "I want to create a new sitemap file or update the existing one"
113
  msgstr "Я хочу створити новий файл sitemap або оновити існуючий"
114
 
115
- #: google-sitemap-plugin.php:432
116
  msgid "I want to add sitemap file path in robots.txt"
117
  msgstr "Я хочу додати шлях до файлу sitemap у robots.txt"
118
 
119
- #: google-sitemap-plugin.php:433
120
- msgid "Since you are using multisiting, the plugin does not allow to add a sitemap to robots.txt"
121
- msgstr "Оскільки ви використовуєте мультисайтинг, плагін не може додати файл sitemap до robots.txt"
 
 
 
 
122
 
123
- #: google-sitemap-plugin.php:439
124
  msgid "I want to add sitemap file path in"
125
  msgstr "Я хочу додати шлях файлу sitemap у"
126
 
127
- #: google-sitemap-plugin.php:444
128
- #: google-sitemap-plugin.php:593
129
- msgid "Please choose the necessary post types and taxonomies the links to which are to be added to the sitemap:"
130
- msgstr "Будь ласка виберіть необхідні типи постів і таксономії, посилання на які мають бути додані до файлу sitemap:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
131
 
132
- #: google-sitemap-plugin.php:470
 
 
 
 
 
 
 
 
 
 
 
 
133
  msgid "XML Sitemap \"Change Frequency\" parameter"
134
  msgstr "Параметр XML Sitemap \"Change Frequency\""
135
 
136
- #: google-sitemap-plugin.php:473
137
  msgid "Always"
138
  msgstr "завжди"
139
 
140
- #: google-sitemap-plugin.php:474
141
  msgid "Hourly"
142
  msgstr "щогодини"
143
 
144
- #: google-sitemap-plugin.php:475
145
  msgid "Daily"
146
  msgstr "щодня"
147
 
148
- #: google-sitemap-plugin.php:476
149
  msgid "Weekly"
150
  msgstr "щотижня"
151
 
152
- #: google-sitemap-plugin.php:477
153
  msgid "Monthly"
154
  msgstr "щомісяця"
155
 
156
- #: google-sitemap-plugin.php:478
157
  msgid "Yearly"
158
  msgstr "щороку"
159
 
160
- #: google-sitemap-plugin.php:479
161
  msgid "Never"
162
  msgstr "ніколи"
163
 
164
- #: google-sitemap-plugin.php:481
165
- msgid "This value is used in the sitemap file and provides general information to search engines. The sitemap itself is generated once and will be re-generated when you create or update any post or page."
166
- msgstr "Це значення використовується у файлі sitemap та надає загальну інформацію для пошукових систем. Сам файл генерується один раз і буде регенеруватись при створенні або оновленні будь-якого посту чи сторінки."
 
 
 
 
 
 
167
 
168
- #: google-sitemap-plugin.php:488
169
- #: google-sitemap-plugin.php:618
170
  msgid "Unlock premium options by upgrading to Pro version"
171
  msgstr "Відкрити додаткові опції, перейшовши на Pro версію"
172
 
173
- #: google-sitemap-plugin.php:490
174
- #: google-sitemap-plugin.php:620
175
  msgid "Learn More"
176
  msgstr "Дізнатись більше"
177
 
178
- #: google-sitemap-plugin.php:498
179
- msgid "This hosting does not support сURL, so you cannot add a sitemap file automatically."
180
- msgstr "Цей хостинг не підтримує сURL, тому ви не можете автоматично додати файл sitemap."
 
 
 
 
181
 
182
- #: google-sitemap-plugin.php:503
183
  msgid "Remote work with Google Webmaster Tools"
184
  msgstr "Віддалена робота з Google Webmaster Tools"
185
 
186
- #: google-sitemap-plugin.php:527
187
  msgid "Log out from Google Webmaster Tools"
188
  msgstr "Вийти з Google Webmaster Tools"
189
 
190
- #: google-sitemap-plugin.php:529
191
  msgid "I want to add this site to Google Webmaster Tools"
192
  msgstr "Я хочу додати цей сайт до Google Webmaster Tools"
193
 
194
- #: google-sitemap-plugin.php:530
195
  msgid "I want to delete this site from Google Webmaster Tools"
196
  msgstr "Я хочу видалити цей сайт з Google Webmaster Tools"
197
 
198
- #: google-sitemap-plugin.php:531
199
  msgid "I want to get info about this site in Google Webmaster Tools"
200
  msgstr "Я хочу отримувати інформацію про цей сайт з Google Webmaster Tools"
201
 
202
- #: google-sitemap-plugin.php:537
203
- msgid "In case you failed to add a sitemap to Google automatically using this plugin, it is possible to do it manually"
204
- msgstr "Якщо ви не зможете автоматично додати sitemap файл в Google за допомогою цього плагіну, ви завжди зможете зробити це вручну"
 
 
 
 
205
 
206
- #: google-sitemap-plugin.php:538
207
- #: google-sitemap-plugin.php:693
208
- #: google-sitemap-plugin.php:716
209
- #: google-sitemap-plugin.php:773
210
- #: google-sitemap-plugin.php:800
211
- #: google-sitemap-plugin.php:820
212
- #: google-sitemap-plugin.php:839
213
  msgid "View the Instruction"
214
  msgstr "Переглянути інструкцію"
215
 
216
- #: google-sitemap-plugin.php:563
217
- msgid "Please authorize via your Google Account in order to add or delete a site and a sitemap file automatically or get information about this site in Google Webmaster Tools."
218
- msgstr "Будь ласка, авторизуйтесь використовуючи ваш Google акаунт, щоб мати можливість додавати або видаляти сайти та файл sitemap у вашому акаунті автоматично або отримувати інформацію про цей сайт з Google Webmaster Tools."
 
 
 
 
 
 
219
 
220
- #: google-sitemap-plugin.php:564
221
  msgid "Get Authorization Code"
222
  msgstr "Отримати Код Авторизації"
223
 
224
- #: google-sitemap-plugin.php:567
225
  msgid "Authorize"
226
  msgstr "Авторизуватись"
227
 
228
- #: google-sitemap-plugin.php:570
229
  msgid "Invalid authorization code. Please, try again."
230
  msgstr "Невірний код авторизації. Будь ласка, спробуйте ще раз."
231
 
232
- #: google-sitemap-plugin.php:579
233
- #: google-sitemap-plugin.php:611
234
  msgid "Save Changes"
235
  msgstr "Зберегти зміни"
236
 
237
- #: google-sitemap-plugin.php:600
238
  msgid "Show URL for pages"
239
  msgstr "Показати посилання для сторінок"
240
 
241
- #: google-sitemap-plugin.php:606
242
  msgid "Example of site pages' tree"
243
  msgstr "Приклад дерева сторінок сайту"
244
 
245
- #: google-sitemap-plugin.php:667
246
  #, php-format
247
  msgid "I want to get info about site %s in Google Webmaster Tools"
248
  msgstr "Я хочу отримати інформацію про сайт %s в Google Webmaster Tools"
249
 
250
- #: google-sitemap-plugin.php:676
251
- #: google-sitemap-plugin.php:746
252
  msgid "This site is not added to the Google Webmaster Tools."
253
  msgstr "Даний сайт не додано до Google Webmaster Tools."
254
 
255
- #: google-sitemap-plugin.php:680
256
  msgid "This site is added to the Google Webmaster Tools."
257
  msgstr "Цей сайт додано до Google Webmaster Tools."
258
 
259
- #: google-sitemap-plugin.php:681
260
  msgid "Site URL:"
261
  msgstr "URL сайту:"
262
 
263
- #: google-sitemap-plugin.php:682
264
  msgid "Site verification:"
265
  msgstr "Верифікація сайту:"
266
 
267
- #: google-sitemap-plugin.php:682
268
  msgid "verified"
269
  msgstr "верифіковано"
270
 
271
- #: google-sitemap-plugin.php:682
272
  msgid "not verified"
273
  msgstr "не верифіковано"
274
 
275
- #: google-sitemap-plugin.php:691
276
- #: google-sitemap-plugin.php:818
277
- msgid "An unexpected error occurred when verifying site in the Google Webmaster Tools."
 
278
  msgstr "Помилка при перевірці сайту в Google Webmaster Tools."
279
 
280
- #: google-sitemap-plugin.php:693
281
- #: google-sitemap-plugin.php:800
282
- #: google-sitemap-plugin.php:820
283
  msgid "The site couldn't be verified. Please, verify the site manually"
284
  msgstr "Сайт неможна перевірити. Будь ласка, перевірте його вручну"
285
 
286
- #: google-sitemap-plugin.php:706
287
  msgid "The sitemap file is not added to the Google Webmaster Tools."
288
  msgstr "Файл sitemap не додано до Google Webmaster Tools."
289
 
290
- #: google-sitemap-plugin.php:709
291
  msgid "The sitemap file is added to the Google Webmaster Tools."
292
  msgstr "Файл sitemap додано до Google Webmaster Tools."
293
 
294
- #: google-sitemap-plugin.php:711
295
- msgid "The sitemap file is added to the Google Webmaster Tools, but has some errors or warnings."
296
- msgstr "Файл sitemap додано до акаунту Google Webmaster Tools, але під час додавання виникли помилки."
 
 
 
 
297
 
298
- #: google-sitemap-plugin.php:711
299
  msgid "Please, see them in the Google Webmaster Tools."
300
  msgstr "Перегляньте їх в Google Webmaster Tools."
301
 
302
- #: google-sitemap-plugin.php:714
303
  msgid "Sitemap URL:"
304
  msgstr "URL Sitemap:"
305
 
306
- #: google-sitemap-plugin.php:716
307
- msgid "When checking the sitemap file an unexpected error occurred. Please, check the sitemap file manually"
 
 
308
  msgstr "Помилка при перевірці файлу sitemap. Будь ласка, перевірте файл вручну"
309
 
310
- #: google-sitemap-plugin.php:728
311
  #, php-format
312
  msgid "I want to delete site %s from Google Webmaster Tools"
313
  msgstr "Я хочу видалити сайт %s з Google Webmaster Tools"
314
 
315
- #: google-sitemap-plugin.php:741
316
  msgid "This site has been successfully deleted from Google Webmaster Tools"
317
  msgstr "Даний сайт було видалено з Google Webmaster Tools"
318
 
319
- #: google-sitemap-plugin.php:760
320
  #, php-format
321
  msgid "I want to add site %s in Google Webmaster Tools"
322
  msgstr "Я хочу додати сайт %s до Google Webmaster Tools"
323
 
324
- #: google-sitemap-plugin.php:765
325
  msgid "The site is added to the Google Webmaster Tools."
326
  msgstr "Сайт додано до Google Webmaster Tools."
327
 
328
- #: google-sitemap-plugin.php:771
329
- msgid "When you add a site in the Google Webmaster Tools unexpected error occurred."
 
330
  msgstr "Помилка при додаванні сайту до Google Webmaster Tools."
331
 
332
- #: google-sitemap-plugin.php:773
333
  msgid "The site couldn't be added. Please, add the site manually"
334
  msgstr "Неможна додати сайт. Будь ласка, додайте його вручну"
335
 
336
- #: google-sitemap-plugin.php:789
337
  msgid "Verification code has been successfully received and added to the site."
338
  msgstr "Код верифікації успішно отримано та додано на сайт."
339
 
340
- #: google-sitemap-plugin.php:791
341
- msgid "Verification code has been successfully received but has not been added to the site."
 
 
342
  msgstr "Код верифікації успішно отримано, але не додано на сайт."
343
 
344
- #: google-sitemap-plugin.php:798
345
- msgid "An error has occurred when receiving the verification code site in the Google Webmaster."
 
 
346
  msgstr "Помилка при отриманні верифікаційного коду Google Webmaster."
347
 
348
- #: google-sitemap-plugin.php:812
349
  msgid "The site has been successfully verified in the Google Webmaster Tools."
350
  msgstr "Сайт успішно перевірено в Google Webmaster Tools."
351
 
352
- #: google-sitemap-plugin.php:831
353
- msgid "The sitemap file has been successfully added to the Google Webmaster Tools."
 
354
  msgstr "Файл sitemap успішно додано до Google Webmaster Tools."
355
 
356
- #: google-sitemap-plugin.php:837
357
- msgid "When you add a sitemap file in the Google Webmaster Tools unexpected error occurred."
 
 
358
  msgstr "Помилка при додаванні файлу sitemap до Google Webmaster Tools."
359
 
360
- #: google-sitemap-plugin.php:839
361
- msgid "The sitemap file couldn't be added. Please, add the sitemap file manually"
 
362
  msgstr "Файл sitemap не може бути доданий. Будь ласка, додайте його вручну"
363
 
364
- #: google-sitemap-plugin.php:842
365
  #, php-format
366
  msgid "Error 404. The sitemap file %s not found."
367
  msgstr "Помилка 404. Файл sitemap %s не знайдено."
368
 
369
- #: google-sitemap-plugin.php:845
370
  msgid "The sitemap file not found."
371
  msgstr "Файл sitemap не знайдено."
372
 
373
- #: google-sitemap-plugin.php:913
 
 
 
 
374
  msgid "Support"
375
  msgstr "Підтримка"
376
 
@@ -538,9 +612,6 @@ msgstr "Підтримка"
538
  #~ "(your username is the email you specify when purchasing the product)."
539
  #~ msgstr "(ваше ім'я - це емейл, який ви вказували при купівлі продукту)."
540
 
541
- #~ msgid "Activate"
542
- #~ msgstr "Активувати"
543
-
544
  #~ msgid "Sitemap file:"
545
  #~ msgstr "Файл Sitemap:"
546
 
@@ -577,6 +648,3 @@ msgstr "Підтримка"
577
 
578
  #~ msgid "Google Sitemap options"
579
  #~ msgstr "Опції карти сайту Google"
580
-
581
- #~ msgid "You should choose at least one action"
582
- #~ msgstr "Ви повинні вибрати щонайменше одну з дій"
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Google Sitemap\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-12-08 16:39+0300\n"
6
+ "PO-Revision-Date: 2015-12-08 16:39+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: BestWebSoft <plugin@bestwebsoft.com>\n"
9
  "Language: ru_RU\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
+ "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: google-sitemap-plugin.php:35 google-sitemap-plugin.php:449
 
20
  msgid "Google Sitemap Settings"
21
  msgstr "Налаштування Google Sitemap"
22
 
23
+ #: google-sitemap-plugin.php:380
24
  msgid "Cannot edit \"robots.txt\". Check your permissions."
25
  msgstr "Неможливо відредагувати файл \"robots.txt\". Перевірте свої права."
26
 
27
+ #: google-sitemap-plugin.php:391
28
  msgid "Settings saved."
29
  msgstr "Налаштування збережено."
30
 
31
+ #: google-sitemap-plugin.php:399
32
  msgid "Your Sitemap file is created in the site root directory."
33
  msgstr "Файл Sitemap створено у кореневій директорії сайту."
34
 
35
+ #: google-sitemap-plugin.php:437
36
  msgid "Cannot edit \"robot.txt\". Check your permissions."
37
  msgstr "Неможливо відредагувати файл \"robot.txt\". Перевірте свої права."
38
 
39
+ #: google-sitemap-plugin.php:446
40
  msgid "All plugin settings were restored."
41
  msgstr "Налаштування плагіну були відновлені."
42
 
43
+ #: google-sitemap-plugin.php:451 google-sitemap-plugin.php:1027
44
+ #: google-sitemap-plugin.php:1040
 
45
  msgid "Settings"
46
  msgstr "Налаштування"
47
 
48
+ #: google-sitemap-plugin.php:452
49
  msgid "Extra settings"
50
  msgstr "Додаткові налаштування"
51
 
52
+ #: google-sitemap-plugin.php:453
 
 
 
 
 
53
  msgid "Go PRO"
54
  msgstr "Перейти на PRO"
55
 
56
+ #: google-sitemap-plugin.php:459
57
  msgid "Warning:"
58
  msgstr "Увага:"
59
 
60
+ #: google-sitemap-plugin.php:461
61
  #, php-format
62
+ msgid ""
63
+ "To have an access to subsites XML files, please add the following rule %s to "
64
+ "your %s file in %s after line %s or you can use option %s."
65
+ msgstr ""
66
+ "Щоб мати доступ до XML файлів підсайту, будь ласка, додайте наступне правило "
67
+ "%s у ваш %s файл %s після строки %s або ви можете використовувати опцію %s."
68
+
69
+ #: google-sitemap-plugin.php:466 google-sitemap-plugin.php:577
70
+ msgid "Allow access to XML files"
71
+ msgstr "Дозволити доступ до XML файлів"
72
 
73
+ #: google-sitemap-plugin.php:472
74
  msgid "Сheck Access"
75
  msgstr "Перевірити Доступ"
76
 
77
+ #: google-sitemap-plugin.php:499 google-sitemap-plugin.php:501
 
78
  msgid "The Sitemap file"
79
  msgstr "Файл Sitemap"
80
 
81
+ #: google-sitemap-plugin.php:499 google-sitemap-plugin.php:501
82
+ msgid ""
83
+ "already exists. If you would like to replace it with a new one, please "
84
+ "choose the necessary box below."
85
+ msgstr ""
86
+ "вже існує. Якщо ви хочете замінити його на новий, виберіть потрібну дію "
87
+ "внизу."
88
 
89
+ #: google-sitemap-plugin.php:506 google-sitemap-plugin.php:508
 
90
  msgid "Your Sitemap file"
91
  msgstr "Ваш файл Sitemap"
92
 
93
+ #: google-sitemap-plugin.php:506 google-sitemap-plugin.php:508
 
94
  msgid "is created in the site root directory."
95
  msgstr "створений у кореневій директорії сайту."
96
 
97
+ #: google-sitemap-plugin.php:513 google-sitemap-plugin.php:515
98
+ msgid ""
99
+ "If you do not want a sitemap file to be added to Google Webmaster Tools "
100
+ "automatically, you can do it using"
101
+ msgstr ""
102
+ "Якщо ви не хочете додати файл sitemap до Google Webmaster Tools автоматично, "
103
+ "ви можете зробити це через"
104
 
105
+ #: google-sitemap-plugin.php:513 google-sitemap-plugin.php:515
 
106
  msgid "this"
107
  msgstr "це"
108
 
109
+ #: google-sitemap-plugin.php:513 google-sitemap-plugin.php:515
110
+ msgid ""
111
+ "link - sign in, choose the necessary site, go to 'Sitemaps' and fill out the "
112
+ "mandatory field"
113
+ msgstr ""
114
+ "посилання. Авторизуйтеся, виберіть сайт, виберіть 'Sitemaps' та заповніть "
115
+ "потрібне поле"
116
 
117
+ #: google-sitemap-plugin.php:520
118
  msgid "I want to create a new sitemap file or update the existing one"
119
  msgstr "Я хочу створити новий файл sitemap або оновити існуючий"
120
 
121
+ #: google-sitemap-plugin.php:526
122
  msgid "I want to add sitemap file path in robots.txt"
123
  msgstr "Я хочу додати шлях до файлу sitemap у robots.txt"
124
 
125
+ #: google-sitemap-plugin.php:527
126
+ msgid ""
127
+ "Since you are using multisiting, the plugin does not allow to add a sitemap "
128
+ "to robots.txt"
129
+ msgstr ""
130
+ "Оскільки ви використовуєте мультисайтинг, плагін не може додати файл sitemap "
131
+ "до robots.txt"
132
 
133
+ #: google-sitemap-plugin.php:533
134
  msgid "I want to add sitemap file path in"
135
  msgstr "Я хочу додати шлях файлу sitemap у"
136
 
137
+ #: google-sitemap-plugin.php:538 google-sitemap-plugin.php:722
138
+ msgid ""
139
+ "Please choose the necessary post types and taxonomies the links to which are "
140
+ "to be added to the sitemap:"
141
+ msgstr ""
142
+ "Будь ласка виберіть необхідні типи постів і таксономії, посилання на які "
143
+ "мають бути додані до файлу sitemap:"
144
+
145
+ #: google-sitemap-plugin.php:561
146
+ msgid "This option will be applied to all websites in the network"
147
+ msgstr "Ця опція буде застосована до всіх сайтів мережі"
148
+
149
+ #: google-sitemap-plugin.php:564 google-sitemap-plugin.php:569
150
+ #, php-format
151
+ msgid "You should %s to use this functionality"
152
+ msgstr "Щоб використовувати цей функціонал %s"
153
+
154
+ #: google-sitemap-plugin.php:565
155
+ msgid "activate"
156
+ msgstr "aктивуйте"
157
+
158
+ #: google-sitemap-plugin.php:565
159
+ msgid "for network"
160
+ msgstr "для мережі"
161
 
162
+ #: google-sitemap-plugin.php:570
163
+ msgid "download"
164
+ msgstr "завантажте"
165
+
166
+ #: google-sitemap-plugin.php:582
167
+ msgid "The following string will be added to your .htaccess file"
168
+ msgstr "До вашого .htaccess файл буде додано наступну строку"
169
+
170
+ #: google-sitemap-plugin.php:594
171
+ msgid "Close"
172
+ msgstr "Закрити"
173
+
174
+ #: google-sitemap-plugin.php:598
175
  msgid "XML Sitemap \"Change Frequency\" parameter"
176
  msgstr "Параметр XML Sitemap \"Change Frequency\""
177
 
178
+ #: google-sitemap-plugin.php:601
179
  msgid "Always"
180
  msgstr "завжди"
181
 
182
+ #: google-sitemap-plugin.php:602
183
  msgid "Hourly"
184
  msgstr "щогодини"
185
 
186
+ #: google-sitemap-plugin.php:603
187
  msgid "Daily"
188
  msgstr "щодня"
189
 
190
+ #: google-sitemap-plugin.php:604
191
  msgid "Weekly"
192
  msgstr "щотижня"
193
 
194
+ #: google-sitemap-plugin.php:605
195
  msgid "Monthly"
196
  msgstr "щомісяця"
197
 
198
+ #: google-sitemap-plugin.php:606
199
  msgid "Yearly"
200
  msgstr "щороку"
201
 
202
+ #: google-sitemap-plugin.php:607
203
  msgid "Never"
204
  msgstr "ніколи"
205
 
206
+ #: google-sitemap-plugin.php:609
207
+ msgid ""
208
+ "This value is used in the sitemap file and provides general information to "
209
+ "search engines. The sitemap itself is generated once and will be re-"
210
+ "generated when you create or update any post or page."
211
+ msgstr ""
212
+ "Це значення використовується у файлі sitemap та надає загальну інформацію "
213
+ "для пошукових систем. Сам файл генерується один раз і буде регенеруватись "
214
+ "при створенні або оновленні будь-якого посту чи сторінки."
215
 
216
+ #: google-sitemap-plugin.php:616 google-sitemap-plugin.php:747
 
217
  msgid "Unlock premium options by upgrading to Pro version"
218
  msgstr "Відкрити додаткові опції, перейшовши на Pro версію"
219
 
220
+ #: google-sitemap-plugin.php:618 google-sitemap-plugin.php:749
 
221
  msgid "Learn More"
222
  msgstr "Дізнатись більше"
223
 
224
+ #: google-sitemap-plugin.php:627
225
+ msgid ""
226
+ "This hosting does not support сURL, so you cannot add a sitemap file "
227
+ "automatically."
228
+ msgstr ""
229
+ "Цей хостинг не підтримує сURL, тому ви не можете автоматично додати файл "
230
+ "sitemap."
231
 
232
+ #: google-sitemap-plugin.php:632
233
  msgid "Remote work with Google Webmaster Tools"
234
  msgstr "Віддалена робота з Google Webmaster Tools"
235
 
236
+ #: google-sitemap-plugin.php:656
237
  msgid "Log out from Google Webmaster Tools"
238
  msgstr "Вийти з Google Webmaster Tools"
239
 
240
+ #: google-sitemap-plugin.php:658
241
  msgid "I want to add this site to Google Webmaster Tools"
242
  msgstr "Я хочу додати цей сайт до Google Webmaster Tools"
243
 
244
+ #: google-sitemap-plugin.php:659
245
  msgid "I want to delete this site from Google Webmaster Tools"
246
  msgstr "Я хочу видалити цей сайт з Google Webmaster Tools"
247
 
248
+ #: google-sitemap-plugin.php:660
249
  msgid "I want to get info about this site in Google Webmaster Tools"
250
  msgstr "Я хочу отримувати інформацію про цей сайт з Google Webmaster Tools"
251
 
252
+ #: google-sitemap-plugin.php:666
253
+ msgid ""
254
+ "In case you failed to add a sitemap to Google automatically using this "
255
+ "plugin, it is possible to do it manually"
256
+ msgstr ""
257
+ "Якщо ви не зможете автоматично додати sitemap файл в Google за допомогою "
258
+ "цього плагіну, ви завжди зможете зробити це вручну"
259
 
260
+ #: google-sitemap-plugin.php:667 google-sitemap-plugin.php:822
261
+ #: google-sitemap-plugin.php:845 google-sitemap-plugin.php:902
262
+ #: google-sitemap-plugin.php:929 google-sitemap-plugin.php:949
263
+ #: google-sitemap-plugin.php:968
 
 
 
264
  msgid "View the Instruction"
265
  msgstr "Переглянути інструкцію"
266
 
267
+ #: google-sitemap-plugin.php:692
268
+ msgid ""
269
+ "Please authorize via your Google Account in order to add or delete a site "
270
+ "and a sitemap file automatically or get information about this site in "
271
+ "Google Webmaster Tools."
272
+ msgstr ""
273
+ "Будь ласка, авторизуйтесь використовуючи ваш Google акаунт, щоб мати "
274
+ "можливість додавати або видаляти сайти та файл sitemap у вашому акаунті "
275
+ "автоматично або отримувати інформацію про цей сайт з Google Webmaster Tools."
276
 
277
+ #: google-sitemap-plugin.php:693
278
  msgid "Get Authorization Code"
279
  msgstr "Отримати Код Авторизації"
280
 
281
+ #: google-sitemap-plugin.php:696
282
  msgid "Authorize"
283
  msgstr "Авторизуватись"
284
 
285
+ #: google-sitemap-plugin.php:699
286
  msgid "Invalid authorization code. Please, try again."
287
  msgstr "Невірний код авторизації. Будь ласка, спробуйте ще раз."
288
 
289
+ #: google-sitemap-plugin.php:708 google-sitemap-plugin.php:740
 
290
  msgid "Save Changes"
291
  msgstr "Зберегти зміни"
292
 
293
+ #: google-sitemap-plugin.php:729
294
  msgid "Show URL for pages"
295
  msgstr "Показати посилання для сторінок"
296
 
297
+ #: google-sitemap-plugin.php:735
298
  msgid "Example of site pages' tree"
299
  msgstr "Приклад дерева сторінок сайту"
300
 
301
+ #: google-sitemap-plugin.php:796
302
  #, php-format
303
  msgid "I want to get info about site %s in Google Webmaster Tools"
304
  msgstr "Я хочу отримати інформацію про сайт %s в Google Webmaster Tools"
305
 
306
+ #: google-sitemap-plugin.php:805 google-sitemap-plugin.php:875
 
307
  msgid "This site is not added to the Google Webmaster Tools."
308
  msgstr "Даний сайт не додано до Google Webmaster Tools."
309
 
310
+ #: google-sitemap-plugin.php:809
311
  msgid "This site is added to the Google Webmaster Tools."
312
  msgstr "Цей сайт додано до Google Webmaster Tools."
313
 
314
+ #: google-sitemap-plugin.php:810
315
  msgid "Site URL:"
316
  msgstr "URL сайту:"
317
 
318
+ #: google-sitemap-plugin.php:811
319
  msgid "Site verification:"
320
  msgstr "Верифікація сайту:"
321
 
322
+ #: google-sitemap-plugin.php:811
323
  msgid "verified"
324
  msgstr "верифіковано"
325
 
326
+ #: google-sitemap-plugin.php:811
327
  msgid "not verified"
328
  msgstr "не верифіковано"
329
 
330
+ #: google-sitemap-plugin.php:820 google-sitemap-plugin.php:947
331
+ msgid ""
332
+ "An unexpected error occurred when verifying site in the Google Webmaster "
333
+ "Tools."
334
  msgstr "Помилка при перевірці сайту в Google Webmaster Tools."
335
 
336
+ #: google-sitemap-plugin.php:822 google-sitemap-plugin.php:929
337
+ #: google-sitemap-plugin.php:949
 
338
  msgid "The site couldn't be verified. Please, verify the site manually"
339
  msgstr "Сайт неможна перевірити. Будь ласка, перевірте його вручну"
340
 
341
+ #: google-sitemap-plugin.php:835
342
  msgid "The sitemap file is not added to the Google Webmaster Tools."
343
  msgstr "Файл sitemap не додано до Google Webmaster Tools."
344
 
345
+ #: google-sitemap-plugin.php:838
346
  msgid "The sitemap file is added to the Google Webmaster Tools."
347
  msgstr "Файл sitemap додано до Google Webmaster Tools."
348
 
349
+ #: google-sitemap-plugin.php:840
350
+ msgid ""
351
+ "The sitemap file is added to the Google Webmaster Tools, but has some errors "
352
+ "or warnings."
353
+ msgstr ""
354
+ "Файл sitemap додано до акаунту Google Webmaster Tools, але під час додавання "
355
+ "виникли помилки."
356
 
357
+ #: google-sitemap-plugin.php:840
358
  msgid "Please, see them in the Google Webmaster Tools."
359
  msgstr "Перегляньте їх в Google Webmaster Tools."
360
 
361
+ #: google-sitemap-plugin.php:843
362
  msgid "Sitemap URL:"
363
  msgstr "URL Sitemap:"
364
 
365
+ #: google-sitemap-plugin.php:845
366
+ msgid ""
367
+ "When checking the sitemap file an unexpected error occurred. Please, check "
368
+ "the sitemap file manually"
369
  msgstr "Помилка при перевірці файлу sitemap. Будь ласка, перевірте файл вручну"
370
 
371
+ #: google-sitemap-plugin.php:857
372
  #, php-format
373
  msgid "I want to delete site %s from Google Webmaster Tools"
374
  msgstr "Я хочу видалити сайт %s з Google Webmaster Tools"
375
 
376
+ #: google-sitemap-plugin.php:870
377
  msgid "This site has been successfully deleted from Google Webmaster Tools"
378
  msgstr "Даний сайт було видалено з Google Webmaster Tools"
379
 
380
+ #: google-sitemap-plugin.php:889
381
  #, php-format
382
  msgid "I want to add site %s in Google Webmaster Tools"
383
  msgstr "Я хочу додати сайт %s до Google Webmaster Tools"
384
 
385
+ #: google-sitemap-plugin.php:894
386
  msgid "The site is added to the Google Webmaster Tools."
387
  msgstr "Сайт додано до Google Webmaster Tools."
388
 
389
+ #: google-sitemap-plugin.php:900
390
+ msgid ""
391
+ "When you add a site in the Google Webmaster Tools unexpected error occurred."
392
  msgstr "Помилка при додаванні сайту до Google Webmaster Tools."
393
 
394
+ #: google-sitemap-plugin.php:902
395
  msgid "The site couldn't be added. Please, add the site manually"
396
  msgstr "Неможна додати сайт. Будь ласка, додайте його вручну"
397
 
398
+ #: google-sitemap-plugin.php:918
399
  msgid "Verification code has been successfully received and added to the site."
400
  msgstr "Код верифікації успішно отримано та додано на сайт."
401
 
402
+ #: google-sitemap-plugin.php:920
403
+ msgid ""
404
+ "Verification code has been successfully received but has not been added to "
405
+ "the site."
406
  msgstr "Код верифікації успішно отримано, але не додано на сайт."
407
 
408
+ #: google-sitemap-plugin.php:927
409
+ msgid ""
410
+ "An error has occurred when receiving the verification code site in the "
411
+ "Google Webmaster."
412
  msgstr "Помилка при отриманні верифікаційного коду Google Webmaster."
413
 
414
+ #: google-sitemap-plugin.php:941
415
  msgid "The site has been successfully verified in the Google Webmaster Tools."
416
  msgstr "Сайт успішно перевірено в Google Webmaster Tools."
417
 
418
+ #: google-sitemap-plugin.php:960
419
+ msgid ""
420
+ "The sitemap file has been successfully added to the Google Webmaster Tools."
421
  msgstr "Файл sitemap успішно додано до Google Webmaster Tools."
422
 
423
+ #: google-sitemap-plugin.php:966
424
+ msgid ""
425
+ "When you add a sitemap file in the Google Webmaster Tools unexpected error "
426
+ "occurred."
427
  msgstr "Помилка при додаванні файлу sitemap до Google Webmaster Tools."
428
 
429
+ #: google-sitemap-plugin.php:968
430
+ msgid ""
431
+ "The sitemap file couldn't be added. Please, add the sitemap file manually"
432
  msgstr "Файл sitemap не може бути доданий. Будь ласка, додайте його вручну"
433
 
434
+ #: google-sitemap-plugin.php:971
435
  #, php-format
436
  msgid "Error 404. The sitemap file %s not found."
437
  msgstr "Помилка 404. Файл sitemap %s не знайдено."
438
 
439
+ #: google-sitemap-plugin.php:974
440
  msgid "The sitemap file not found."
441
  msgstr "Файл sitemap не знайдено."
442
 
443
+ #: google-sitemap-plugin.php:1041
444
+ msgid "FAQ"
445
+ msgstr "FAQ"
446
+
447
+ #: google-sitemap-plugin.php:1042
448
  msgid "Support"
449
  msgstr "Підтримка"
450
 
612
  #~ "(your username is the email you specify when purchasing the product)."
613
  #~ msgstr "(ваше ім'я - це емейл, який ви вказували при купівлі продукту)."
614
 
 
 
 
615
  #~ msgid "Sitemap file:"
616
  #~ msgstr "Файл Sitemap:"
617
 
648
 
649
  #~ msgid "Google Sitemap options"
650
  #~ msgstr "Опції карти сайту Google"
 
 
 
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: bestwebsoft
3
  Donate link: http://bestwebsoft.com/donate/
4
  Tags: add page to sitemap, add post to sitemap, add pages to sitemap, add posts to sitemap, add site to google webmaster tools, add sitemap, best sitemap plugin, best google sitemap plugin, create a map, free google sitemap plugin, free sitemap plugin, gogle, gogole, googel, googgle, google, google sitemap, google sitemap plugin, google webmaster tools, simple sitemap plugin, simple site map plugin, site map, site mep, sitemap, sitemap file path, sitemaps, sitemep, update sitemap, webmaster tools, wp plugin, wordpress plugin, wp sitemap plugin, wordpress sitemap plugin, wp google sitemap plugin, wordpress google sitemap plugin
5
  Requires at least: 3.8
6
- Tested up to: 4.3.1
7
- Stable tag: 3.0.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -14,7 +14,7 @@ This plugin allows you to add a Sitemap file to Google Webmaster Tools.
14
 
15
  With the Google Sitemap Plugin you can create and add a Sitemap file to Google Webmaster Tools, and get the info about your site in Google Webmaster Tools.
16
 
17
- http://www.youtube.com/watch?v=3Qv-ad_aEPg
18
 
19
  <a href="http://www.youtube.com/watch?v=NKlAnFTzNrQ" target="_blank">Google Sitemap by BestWebSoft Video instruction on Installation</a>
20
 
@@ -102,6 +102,10 @@ Please make sure that the problem hasn't been discussed yet on our forum (http:/
102
 
103
  == Changelog ==
104
 
 
 
 
 
105
  = V3.0.1 - 21.09.2015 =
106
  * Update : Textdomain was changed.
107
  * Update : We updated all functionality for wordpress 4.3.1.
@@ -249,6 +253,9 @@ Please make sure that the problem hasn't been discussed yet on our forum (http:/
249
 
250
  == Upgrade Notice ==
251
 
 
 
 
252
  = V3.0.1 =
253
  Textdomain was changed. We updated all functionality for wordpress 4.3.1.
254
 
3
  Donate link: http://bestwebsoft.com/donate/
4
  Tags: add page to sitemap, add post to sitemap, add pages to sitemap, add posts to sitemap, add site to google webmaster tools, add sitemap, best sitemap plugin, best google sitemap plugin, create a map, free google sitemap plugin, free sitemap plugin, gogle, gogole, googel, googgle, google, google sitemap, google sitemap plugin, google webmaster tools, simple sitemap plugin, simple site map plugin, site map, site mep, sitemap, sitemap file path, sitemaps, sitemep, update sitemap, webmaster tools, wp plugin, wordpress plugin, wp sitemap plugin, wordpress sitemap plugin, wp google sitemap plugin, wordpress google sitemap plugin
5
  Requires at least: 3.8
6
+ Tested up to: 4.4
7
+ Stable tag: 3.0.2
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
14
 
15
  With the Google Sitemap Plugin you can create and add a Sitemap file to Google Webmaster Tools, and get the info about your site in Google Webmaster Tools.
16
 
17
+ http://www.youtube.com/watch?v=CgYXKRXpj_0
18
 
19
  <a href="http://www.youtube.com/watch?v=NKlAnFTzNrQ" target="_blank">Google Sitemap by BestWebSoft Video instruction on Installation</a>
20
 
102
 
103
  == Changelog ==
104
 
105
+ = V3.0.2 - 28.12.2015 =
106
+ * NEW : Compatibility with Htaccess by BestWebSoft was added. This allows to get an access to the xml files (for network which is based on sub-directories).
107
+ * Bugfix : The bug with plugin menu duplicating was fixed.
108
+
109
  = V3.0.1 - 21.09.2015 =
110
  * Update : Textdomain was changed.
111
  * Update : We updated all functionality for wordpress 4.3.1.
253
 
254
  == Upgrade Notice ==
255
 
256
+ = V3.0.2 =
257
+ Compatibility with Htaccess by BestWebSoft was added. This allows to get an access to the xml files (for network which is based on sub-directories). The bug with plugin menu duplicating was fixed.
258
+
259
  = V3.0.1 =
260
  Textdomain was changed. We updated all functionality for wordpress 4.3.1.
261
 
screenshot-1.png CHANGED
Binary file
screenshot-2.png CHANGED
Binary file
screenshot-3.png CHANGED
Binary file
screenshot-4.png CHANGED
Binary file