Google Sitemap by BestWebSoft - Version 3.1.2

Version Description

  • 28.12.2017 =
  • Bugfix : Sitemap file updating issue has been fixed.
Download this release

Release Info

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

Code changes from version 3.1.1 to 3.1.2

Files changed (39) hide show
  1. bws_menu/bws_functions.php +41 -33
  2. bws_menu/bws_menu.php +58 -51
  3. bws_menu/class-bws-settings.php +32 -30
  4. bws_menu/css/modal.css +25 -25
  5. bws_menu/deactivation-form.php +16 -10
  6. bws_menu/deprecated.php +30 -26
  7. bws_menu/icons/plugins/captcha.png +0 -0
  8. bws_menu/languages/bestwebsoft-cs_CZ.mo +0 -0
  9. bws_menu/languages/bestwebsoft-cs_CZ.po +331 -279
  10. bws_menu/languages/bestwebsoft-es_ES.mo +0 -0
  11. bws_menu/languages/bestwebsoft-es_ES.po +303 -259
  12. bws_menu/languages/bestwebsoft-fr_FR.mo +0 -0
  13. bws_menu/languages/bestwebsoft-fr_FR.po +297 -257
  14. bws_menu/languages/bestwebsoft-id_ID.mo +0 -0
  15. bws_menu/languages/bestwebsoft-id_ID.po +296 -257
  16. bws_menu/languages/bestwebsoft-nl_NL.mo +0 -0
  17. bws_menu/languages/bestwebsoft-nl_NL.po +297 -257
  18. bws_menu/languages/bestwebsoft-pl_PL.mo +0 -0
  19. bws_menu/languages/bestwebsoft-pl_PL.po +243 -206
  20. bws_menu/languages/bestwebsoft-ru_RU.mo +0 -0
  21. bws_menu/languages/bestwebsoft-ru_RU.po +316 -260
  22. bws_menu/languages/bestwebsoft-uk.mo +0 -0
  23. bws_menu/languages/bestwebsoft-uk.po +315 -261
  24. bws_menu/product_list.php +5 -8
  25. google-sitemap-plugin.php +89 -57
  26. includes/class-gglstmp-settings.php +48 -30
  27. includes/deprecated.php +0 -44
  28. languages/google-sitemap-plugin-cs_CZ.mo +0 -0
  29. languages/google-sitemap-plugin-cs_CZ.po +50 -50
  30. languages/google-sitemap-plugin-es_ES.mo +0 -0
  31. languages/google-sitemap-plugin-es_ES.po +182 -182
  32. languages/google-sitemap-plugin-ru_RU.mo +0 -0
  33. languages/google-sitemap-plugin-ru_RU.po +251 -241
  34. languages/google-sitemap-plugin-uk.mo +0 -0
  35. languages/google-sitemap-plugin-uk.po +251 -241
  36. readme.txt +10 -2
  37. screenshot-1.png +0 -0
  38. screenshot-2.png +0 -0
  39. screenshot-3.png +0 -0
bws_menu/bws_functions.php CHANGED
@@ -90,7 +90,7 @@ if ( ! function_exists( 'bws_plugin_reviews_block' ) ) {
90
  <div class="bws-plugin-reviews">
91
  <div class="bws-plugin-reviews-rate">
92
  <?php _e( 'Like the plugin?', 'bestwebsoft' ); ?>
93
- <a href="http://wordpress.org/support/view/plugin-reviews/<?php echo $plugin_slug; ?>?filter=5" target="_blank" title="<?php echo $plugin_name; ?> reviews">
94
  <?php _e( 'Rate it', 'bestwebsoft' ); ?>
95
  <span class="dashicons dashicons-star-filled"></span>
96
  <span class="dashicons dashicons-star-filled"></span>
@@ -120,8 +120,8 @@ if ( ! function_exists ( 'bws_plugin_update_row' ) ) {
120
  $class = ( $wp_version >= 4.6 ) ? 'active' : '';
121
  $style = ( $wp_version < 4.6 ) ? ' style="background-color: #FFEBE8;border-color: #CC0000;"' : '';
122
  $div_class = ( $wp_version >= 4.6 ) ? ' notice inline notice-warning notice-alt' : '';
123
- echo '<tr class="bws-plugin-update-tr plugin-update-tr ' . $class . '" id="' . $explode_plugin_key[0] . '-update" data-slug="' . $explode_plugin_key[0] . '" data-plugin="' . $plugin_key . '">
124
- <td colspan="' . $wp_list_table->get_column_count() . '" class="plugin-update colspanchange">
125
  <div class="update-message' . $div_class . '"' . $style . '>';
126
  if ( $wp_version >= 4.6 )
127
  echo '<p>';
@@ -136,13 +136,13 @@ if ( ! function_exists ( 'bws_plugin_update_row' ) ) {
136
  $class = ( $wp_version >= 4.6 ) ? 'active' : '';
137
  $style = ( $wp_version < 4.6 ) ? ' style="color: #8C0000;"' : '';
138
  $div_class = ( $wp_version >= 4.6 ) ? ' notice inline notice-warning notice-alt' : '';
139
- echo '<tr class="bws-plugin-update-tr plugin-update-tr ' . $class . '" id="' . $explode_plugin_key[0] . '-update" data-slug="' . $explode_plugin_key[0] . '" data-plugin="' . $plugin_key . '">
140
- <td colspan="' . $wp_list_table->get_column_count() . '" class="plugin-update colspanchange">
141
  <div class="update-message' . $div_class . '"' . $style . '>';
142
  if ( $wp_version >= 4.6 )
143
  echo '<p>';
144
  if ( isset( $bstwbsftwppdtplgns_options['trial'][ $plugin_key ] ) && $link_slug != false ) {
145
- echo __( 'Notice: Your Pro Trial license has expired. To continue using the plugin, you should buy a Pro license', 'bestwebsoft' ) . ' - <a href="https://bestwebsoft.com/products/wordpress/plugins/' . $link_slug .'/">https://bestwebsoft.com/products/wordpress/plugins/' . $link_slug . '/</a>';
146
  } else {
147
  echo __( 'Your license has expired. To continue getting top-priority support and plugin updates, you should extend it.', 'bestwebsoft' ) . ' <a target="_new" href="https://support.bestwebsoft.com/entries/53487136">' . __( "Learn more", 'bestwebsoft' ) . '</a>';
148
  }
@@ -156,18 +156,18 @@ if ( ! function_exists ( 'bws_plugin_update_row' ) ) {
156
  $class = ( $wp_version >= 4.6 ) ? 'active' : '';
157
  $style = ( $wp_version < 4.6 ) ? ' style="color: #8C0000;"' : '';
158
  $div_class = ( $wp_version >= 4.6 ) ? ' notice inline notice-warning notice-alt' : '';
159
- echo '<tr class="bws-plugin-update-tr plugin-update-tr ' . $class . '" id="' . $explode_plugin_key[0] . '-update" data-slug="' . $explode_plugin_key[0] . '" data-plugin="' . $plugin_key . '">
160
- <td colspan="' . $wp_list_table->get_column_count() . '" class="plugin-update colspanchange">
161
  <div class="update-message' . $div_class . '"' . $style . '>';
162
  if ( $wp_version >= 4.6 )
163
  echo '<p>';
164
  if ( $free_plugin_name != false ) {
165
- echo sprintf( __( 'Notice: You are using the Pro Trial license of %s plugin.', 'bestwebsoft' ), $free_plugin_name );
166
  } else {
167
  _e( 'Notice: You are using the Pro Trial license of plugin.', 'bestwebsoft' );
168
  }
169
  if ( isset( $bstwbsftwppdtplgns_options['time_out'][ $plugin_key ] ) )
170
- echo ' ' . __( "The Pro Trial license will expire on", 'bestwebsoft' ) . ' ' . $bstwbsftwppdtplgns_options['time_out'][ $plugin_key ] . '.';
171
  if ( $wp_version >= 4.6 )
172
  echo '</p>';
173
  echo '</div>
@@ -184,15 +184,15 @@ if ( ! function_exists( 'bws_admin_notices' ) ) {
184
  /* versions notice */
185
  if ( ! empty( $bws_versions_notice_array ) ) {
186
  foreach ( $bws_versions_notice_array as $key => $value ) { ?>
187
- <div class="update-nag"><?php
188
- echo sprintf(
189
- "<strong>%s</strong> %s <strong>WordPress %s</strong> %s",
190
- $value['name'],
191
- __( 'requires', 'bestwebsoft' ),
192
- $value['version'],
193
- __( 'or higher! We do not guarantee that our plugin will work correctly. Please upgrade to WordPress latest version.', 'bestwebsoft' )
194
- );
195
- ?></div>
196
  <?php }
197
  }
198
 
@@ -205,12 +205,13 @@ if ( ! function_exists( 'bws_admin_notices' ) ) {
205
  <img title="" src="<?php echo esc_attr( $bws_plugin_banner_to_settings[0]['banner_url'] ); ?>" alt="" />
206
  </div>
207
  <div class="text">
208
- <strong><?php printf( __( 'Thank you for installing %s plugin!', 'bestwebsoft' ), $bws_plugin_banner_to_settings[0]['plugin_info']['Name'] ); ?> </strong><br />
 
209
  <?php _e( "Let's get started", 'bestwebsoft' ); ?>:
210
- <a href="<?php echo $bws_plugin_banner_to_settings[0]['settings_url']; ?>"><?php _e( 'Settings', 'bestwebsoft' ); ?></a>
211
  <?php if ( false != $bws_plugin_banner_to_settings[0]['post_type_url'] ) { ?>
212
  <?php _e( 'or', 'bestwebsoft' ); ?>
213
- <a href="<?php echo $bws_plugin_banner_to_settings[0]['post_type_url']; ?>"><?php _e( 'Add New', 'bestwebsoft' ); ?></a>
214
  <?php } ?>
215
  </div>
216
  <form action="" method="post">
@@ -240,9 +241,9 @@ if ( ! function_exists( 'bws_admin_notices' ) ) {
240
  <div class="bws-details hide-if-js">
241
  <?php foreach ( $bws_plugin_banner_to_settings as $value ) { ?>
242
  <div>
243
- <strong><?php echo str_replace( ' by BestWebSoft', '', $value['plugin_info']['Name'] ); ?></strong>&ensp;<a href="<?php echo $value['settings_url']; ?>"><?php _e( 'Settings', 'bestwebsoft' ); ?></a>
244
  <?php if ( false != $value['post_type_url'] ) { ?>
245
- &ensp;|&ensp;<a target="_blank" href="<?php echo $value['post_type_url']; ?>"><?php _e( 'Add New', 'bestwebsoft' ); ?></a>
246
  <?php } ?>
247
  <input type="hidden" name="bws_hide_settings_notice_<?php echo $value['plugin_options_name']; ?>" value="hide" />
248
  </div>
@@ -332,12 +333,12 @@ if ( ! function_exists( 'bws_plugin_banner' ) ) {
332
  <div class="icon">
333
  <img title="" src="<?php echo esc_attr( $banner_url_or_slug ); ?>" alt="" />
334
  </div>
335
- <div class="text"><?php
336
- _e( 'It’s time to upgrade your', 'bestwebsoft' ); ?> <strong><?php echo $plugin_info['Name']; ?> plugin</strong> <?php _e( 'to', 'bestwebsoft' ); ?> <strong>Pro</strong> <?php _e( 'version!', 'bestwebsoft' ); ?><br />
337
  <span><?php _e( 'Extend standard plugin functionality with new great options.', 'bestwebsoft' ); ?></span>
338
  </div>
339
  <div class="button_div">
340
- <a class="button" target="_blank" href="https://bestwebsoft.com/products/wordpress/plugins/<?php echo $link_slug; ?>/?k=<?php echo $link_key; ?>&amp;pn=<?php echo $link_pn; ?>&amp;v=<?php echo $plugin_info["Version"]; ?>&amp;wp_v=<?php echo $wp_version; ?>"><?php _e( 'Learn More', 'bestwebsoft' ); ?></a>
341
  </div>
342
  </div>
343
  </div>
@@ -351,9 +352,14 @@ if ( ! function_exists( 'bws_plugin_banner' ) ) {
351
  }
352
 
353
  if ( ! function_exists ( 'bws_plugin_banner_timeout' ) ) {
354
- function bws_plugin_banner_timeout( $plugin_key, $plugin_prefix, $plugin_name, $banner_url = false ) {
355
  global $bstwbsftwppdtplgns_options, $bstwbsftwppdtplgns_cookie_add;
356
  if ( isset( $bstwbsftwppdtplgns_options['time_out'][ $plugin_key ] ) && ( strtotime( $bstwbsftwppdtplgns_options['time_out'][ $plugin_key ] ) < strtotime( date("m/d/Y") . '+1 month' ) ) && ( strtotime( $bstwbsftwppdtplgns_options['time_out'][ $plugin_key ] ) > strtotime( date("m/d/Y") ) ) ) {
 
 
 
 
 
357
  if ( ! isset( $bstwbsftwppdtplgns_cookie_add ) ) {
358
  echo '<script type="text/javascript" src="' . bws_menu_url( 'js/c_o_o_k_i_e.js' ) . '"></script>';
359
  $bstwbsftwppdtplgns_cookie_add = true;
@@ -378,7 +384,7 @@ if ( ! function_exists ( 'bws_plugin_banner_timeout' ) ) {
378
  <div class="<?php echo $plugin_prefix; ?>_message_timeout bws_banner_on_plugin_page bws_banner_timeout" style="display:none;">
379
  <button class="<?php echo $plugin_prefix; ?>_close_icon close_icon notice-dismiss bws_hide_settings_notice" title="<?php _e( 'Close notice', 'bestwebsoft' ); ?>"></button>
380
  <div class="icon">
381
- <img title="" src="<?php echo $banner_url; ?>" alt="" />
382
  </div>
383
  <div class="text"><?php printf( __( "Your license key for %s expires on %s and you won't be granted TOP-PRIORITY SUPPORT or UPDATES.", 'bestwebsoft' ), '<strong>' . $plugin_name . '</strong>', $bstwbsftwppdtplgns_options['time_out'][ $plugin_key ] ); ?> <a target="_new" href="https://support.bestwebsoft.com/entries/53487136"><?php _e( "Learn more", 'bestwebsoft' ); ?></a></div>
384
  </div>
@@ -524,7 +530,7 @@ if ( ! function_exists ( 'bws_plugins_admin_init' ) ) {
524
  function bws_plugins_admin_init() {
525
  if ( isset( $_GET['bws_activate_plugin'] ) && check_admin_referer( 'bws_activate_plugin' . $_GET['bws_activate_plugin'] ) ) {
526
 
527
- $plugin = isset( $_GET['bws_activate_plugin'] ) ? $_GET['bws_activate_plugin'] : '';
528
  $result = activate_plugin( $plugin, '', is_network_admin() );
529
  if ( is_wp_error( $result ) ) {
530
  if ( 'unexpected_output' == $result->get_error_code() ) {
@@ -562,7 +568,7 @@ if ( ! function_exists ( 'bws_plugins_admin_init' ) ) {
562
  exit();
563
  }
564
 
565
- if ( isset( $_GET['page'] ) && $_GET['page'] == 'bws_panel' ) {
566
  if ( ! session_id() )
567
  @session_start();
568
  }
@@ -861,7 +867,7 @@ if ( ! function_exists( 'bws_shortcode_media_button_popup' ) ) {
861
  <h4><?php _e( 'Plugin', 'bestwebsoft' ); ?></h4>
862
  <select name="bws_shortcode_select" id="bws_shortcode_select">
863
  <?php foreach ( $bws_shortcode_list as $key => $value ) { ?>
864
- <option value="<?php echo $key; ?>"><?php echo $value['name']; ?></option>
865
  <?php } ?>
866
  </select>
867
  </div>
@@ -894,6 +900,8 @@ if ( ! function_exists( 'bws_shortcode_output' ) ) {
894
  /**
895
  * output tooltip
896
  * @since 1.9.8
 
 
897
  */
898
  if ( ! function_exists( 'bws_add_help_box' ) ) {
899
  function bws_add_help_box( $content, $class = '' ) {
@@ -908,7 +916,7 @@ if ( ! function_exists( 'bws_help_tab' ) ) {
908
  function bws_help_tab( $screen, $args ) {
909
  $url = ( ! empty( $args['section'] ) ) ? 'https://support.bestwebsoft.com/hc/en-us/sections/' . $args['section'] : 'https://support.bestwebsoft.com/';
910
 
911
- $content = '<p><a href="' . $url . '" target="_blank">' . __( 'Visit Help Center', 'bestwebsoft' ) . '</a></p>';
912
 
913
  $screen->add_help_tab(
914
  array(
90
  <div class="bws-plugin-reviews">
91
  <div class="bws-plugin-reviews-rate">
92
  <?php _e( 'Like the plugin?', 'bestwebsoft' ); ?>
93
+ <a href="https://wordpress.org/support/view/plugin-reviews/<?php echo esc_attr( $plugin_slug ); ?>?filter=5" target="_blank" title="<?php printf( __( '%s reviews', 'bestwebsoft' ), sanitize_text_field( $plugin_name ) ); ?>">
94
  <?php _e( 'Rate it', 'bestwebsoft' ); ?>
95
  <span class="dashicons dashicons-star-filled"></span>
96
  <span class="dashicons dashicons-star-filled"></span>
120
  $class = ( $wp_version >= 4.6 ) ? 'active' : '';
121
  $style = ( $wp_version < 4.6 ) ? ' style="background-color: #FFEBE8;border-color: #CC0000;"' : '';
122
  $div_class = ( $wp_version >= 4.6 ) ? ' notice inline notice-warning notice-alt' : '';
123
+ echo '<tr class="bws-plugin-update-tr plugin-update-tr ' . $class . '" id="' . esc_attr( $explode_plugin_key[0] ) . '-update" data-slug="' . esc_attr( $explode_plugin_key[0] ) . '" data-plugin="' . esc_attr( $plugin_key ) . '">
124
+ <td colspan="' . esc_attr( $wp_list_table->get_column_count() ) . '" class="plugin-update colspanchange">
125
  <div class="update-message' . $div_class . '"' . $style . '>';
126
  if ( $wp_version >= 4.6 )
127
  echo '<p>';
136
  $class = ( $wp_version >= 4.6 ) ? 'active' : '';
137
  $style = ( $wp_version < 4.6 ) ? ' style="color: #8C0000;"' : '';
138
  $div_class = ( $wp_version >= 4.6 ) ? ' notice inline notice-warning notice-alt' : '';
139
+ echo '<tr class="bws-plugin-update-tr plugin-update-tr ' . $class . '" id="' . esc_attr( $explode_plugin_key[0] ) . '-update" data-slug="' . esc_attr( $explode_plugin_key[0] ) . '" data-plugin="' . esc_attr( $plugin_key ) . '">
140
+ <td colspan="' . esc_attr( $wp_list_table->get_column_count() ) . '" class="plugin-update colspanchange">
141
  <div class="update-message' . $div_class . '"' . $style . '>';
142
  if ( $wp_version >= 4.6 )
143
  echo '<p>';
144
  if ( isset( $bstwbsftwppdtplgns_options['trial'][ $plugin_key ] ) && $link_slug != false ) {
145
+ echo __( 'Notice: Your Pro Trial license has expired. To continue using the plugin, you should buy a Pro license', 'bestwebsoft' ) . ' - <a href="https://bestwebsoft.com/products/wordpress/plugins/' . esc_attr( $link_slug ) . '/">https://bestwebsoft.com/products/wordpress/plugins/' . esc_attr( $link_slug ) . '/</a>';
146
  } else {
147
  echo __( 'Your license has expired. To continue getting top-priority support and plugin updates, you should extend it.', 'bestwebsoft' ) . ' <a target="_new" href="https://support.bestwebsoft.com/entries/53487136">' . __( "Learn more", 'bestwebsoft' ) . '</a>';
148
  }
156
  $class = ( $wp_version >= 4.6 ) ? 'active' : '';
157
  $style = ( $wp_version < 4.6 ) ? ' style="color: #8C0000;"' : '';
158
  $div_class = ( $wp_version >= 4.6 ) ? ' notice inline notice-warning notice-alt' : '';
159
+ echo '<tr class="bws-plugin-update-tr plugin-update-tr ' . $class . '" id="' . esc_attr( $explode_plugin_key[0] ) . '-update" data-slug="' . esc_attr( $explode_plugin_key[0] ) . '" data-plugin="' . esc_attr( $plugin_key ) . '">
160
+ <td colspan="' . esc_attr( $wp_list_table->get_column_count() ) . '" class="plugin-update colspanchange">
161
  <div class="update-message' . $div_class . '"' . $style . '>';
162
  if ( $wp_version >= 4.6 )
163
  echo '<p>';
164
  if ( $free_plugin_name != false ) {
165
+ printf( __( 'Notice: You are using the Pro Trial license of %s plugin.', 'bestwebsoft' ), $free_plugin_name );
166
  } else {
167
  _e( 'Notice: You are using the Pro Trial license of plugin.', 'bestwebsoft' );
168
  }
169
  if ( isset( $bstwbsftwppdtplgns_options['time_out'][ $plugin_key ] ) )
170
+ echo ' ' . __( 'The Pro Trial license will expire on', 'bestwebsoft' ) . ' ' . $bstwbsftwppdtplgns_options['time_out'][ $plugin_key ] . '.';
171
  if ( $wp_version >= 4.6 )
172
  echo '</p>';
173
  echo '</div>
184
  /* versions notice */
185
  if ( ! empty( $bws_versions_notice_array ) ) {
186
  foreach ( $bws_versions_notice_array as $key => $value ) { ?>
187
+ <div class="update-nag">
188
+ <?php printf(
189
+ "<strong>%s</strong> %s <strong>WordPress %s</strong> %s",
190
+ $value['name'],
191
+ __( 'requires', 'bestwebsoft' ),
192
+ $value['version'],
193
+ __( 'or higher! We do not guarantee that our plugin will work correctly. Please upgrade to WordPress latest version.', 'bestwebsoft' )
194
+ ); ?>
195
+ </div>
196
  <?php }
197
  }
198
 
205
  <img title="" src="<?php echo esc_attr( $bws_plugin_banner_to_settings[0]['banner_url'] ); ?>" alt="" />
206
  </div>
207
  <div class="text">
208
+ <strong><?php printf( __( 'Thank you for installing %s plugin!', 'bestwebsoft' ), $bws_plugin_banner_to_settings[0]['plugin_info']['Name'] ); ?></strong>
209
+ <br />
210
  <?php _e( "Let's get started", 'bestwebsoft' ); ?>:
211
+ <a href="<?php echo esc_url( self_admin_url( $bws_plugin_banner_to_settings[0]['settings_url'] ) ); ?>"><?php _e( 'Settings', 'bestwebsoft' ); ?></a>
212
  <?php if ( false != $bws_plugin_banner_to_settings[0]['post_type_url'] ) { ?>
213
  <?php _e( 'or', 'bestwebsoft' ); ?>
214
+ <a href="<?php echo esc_url( self_admin_url( $bws_plugin_banner_to_settings[0]['post_type_url'] ) ); ?>"><?php _e( 'Add New', 'bestwebsoft' ); ?></a>
215
  <?php } ?>
216
  </div>
217
  <form action="" method="post">
241
  <div class="bws-details hide-if-js">
242
  <?php foreach ( $bws_plugin_banner_to_settings as $value ) { ?>
243
  <div>
244
+ <strong><?php echo str_replace( ' by BestWebSoft', '', $value['plugin_info']['Name'] ); ?></strong>&ensp;<a href="<?php echo esc_url( self_admin_url( $value['settings_url'] ) ); ?>"><?php _e( 'Settings', 'bestwebsoft' ); ?></a>
245
  <?php if ( false != $value['post_type_url'] ) { ?>
246
+ &ensp;|&ensp;<a target="_blank" href="<?php echo esc_url( self_admin_url( $value['post_type_url'] ) ); ?>"><?php _e( 'Add New', 'bestwebsoft' ); ?></a>
247
  <?php } ?>
248
  <input type="hidden" name="bws_hide_settings_notice_<?php echo $value['plugin_options_name']; ?>" value="hide" />
249
  </div>
333
  <div class="icon">
334
  <img title="" src="<?php echo esc_attr( $banner_url_or_slug ); ?>" alt="" />
335
  </div>
336
+ <div class="text">
337
+ <?php _e( 'It’s time to upgrade your', 'bestwebsoft' ); ?> <strong><?php echo $plugin_info['Name']; ?> plugin</strong> <?php _e( 'to', 'bestwebsoft' ); ?> <strong>Pro</strong> <?php _e( 'version!', 'bestwebsoft' ); ?><br />
338
  <span><?php _e( 'Extend standard plugin functionality with new great options.', 'bestwebsoft' ); ?></span>
339
  </div>
340
  <div class="button_div">
341
+ <a class="button" target="_blank" href="<?php echo esc_url( 'https://bestwebsoft.com/products/wordpress/plugins/' . $link_slug . '/?k=' . $link_key . '&pn=' . $link_pn . '&v=' . $plugin_info["Version"] . '&wp_v=' . $wp_version ); ?>"><?php _e( 'Learn More', 'bestwebsoft' ); ?></a>
342
  </div>
343
  </div>
344
  </div>
352
  }
353
 
354
  if ( ! function_exists ( 'bws_plugin_banner_timeout' ) ) {
355
+ function bws_plugin_banner_timeout( $plugin_key, $plugin_prefix, $plugin_name, $banner_url_or_slug = false ) {
356
  global $bstwbsftwppdtplgns_options, $bstwbsftwppdtplgns_cookie_add;
357
  if ( isset( $bstwbsftwppdtplgns_options['time_out'][ $plugin_key ] ) && ( strtotime( $bstwbsftwppdtplgns_options['time_out'][ $plugin_key ] ) < strtotime( date("m/d/Y") . '+1 month' ) ) && ( strtotime( $bstwbsftwppdtplgns_options['time_out'][ $plugin_key ] ) > strtotime( date("m/d/Y") ) ) ) {
358
+
359
+ if ( $banner_url_or_slug && false == strrpos( $banner_url_or_slug, '/' ) ) {
360
+ $banner_url_or_slug = '//ps.w.org/' . $banner_url_or_slug . '/assets/icon-128x128.png';
361
+ }
362
+
363
  if ( ! isset( $bstwbsftwppdtplgns_cookie_add ) ) {
364
  echo '<script type="text/javascript" src="' . bws_menu_url( 'js/c_o_o_k_i_e.js' ) . '"></script>';
365
  $bstwbsftwppdtplgns_cookie_add = true;
384
  <div class="<?php echo $plugin_prefix; ?>_message_timeout bws_banner_on_plugin_page bws_banner_timeout" style="display:none;">
385
  <button class="<?php echo $plugin_prefix; ?>_close_icon close_icon notice-dismiss bws_hide_settings_notice" title="<?php _e( 'Close notice', 'bestwebsoft' ); ?>"></button>
386
  <div class="icon">
387
+ <img title="" src="<?php echo esc_attr( $banner_url_or_slug ); ?>" alt="" />
388
  </div>
389
  <div class="text"><?php printf( __( "Your license key for %s expires on %s and you won't be granted TOP-PRIORITY SUPPORT or UPDATES.", 'bestwebsoft' ), '<strong>' . $plugin_name . '</strong>', $bstwbsftwppdtplgns_options['time_out'][ $plugin_key ] ); ?> <a target="_new" href="https://support.bestwebsoft.com/entries/53487136"><?php _e( "Learn more", 'bestwebsoft' ); ?></a></div>
390
  </div>
530
  function bws_plugins_admin_init() {
531
  if ( isset( $_GET['bws_activate_plugin'] ) && check_admin_referer( 'bws_activate_plugin' . $_GET['bws_activate_plugin'] ) ) {
532
 
533
+ $plugin = isset( $_GET['bws_activate_plugin'] ) ? sanitize_text_field( $_GET['bws_activate_plugin'] ) : '';
534
  $result = activate_plugin( $plugin, '', is_network_admin() );
535
  if ( is_wp_error( $result ) ) {
536
  if ( 'unexpected_output' == $result->get_error_code() ) {
568
  exit();
569
  }
570
 
571
+ if ( isset( $_GET['page'] ) && ( $_GET['page'] == 'bws_panel' || strpos( $_GET['page'], '-bws-panel' ) ) ) {
572
  if ( ! session_id() )
573
  @session_start();
574
  }
867
  <h4><?php _e( 'Plugin', 'bestwebsoft' ); ?></h4>
868
  <select name="bws_shortcode_select" id="bws_shortcode_select">
869
  <?php foreach ( $bws_shortcode_list as $key => $value ) { ?>
870
+ <option value="<?php echo esc_attr( $key ); ?>"><?php echo $value['name']; ?></option>
871
  <?php } ?>
872
  </select>
873
  </div>
900
  /**
901
  * output tooltip
902
  * @since 1.9.8
903
+ * @param string $content - HTML content for the tooltip
904
+ * @param string $class - Can be standart "bws-hide-for-mobile" (tooltip will be hidden in 782px) and "bws-auto-width" (need for img) or some custom class.
905
  */
906
  if ( ! function_exists( 'bws_add_help_box' ) ) {
907
  function bws_add_help_box( $content, $class = '' ) {
916
  function bws_help_tab( $screen, $args ) {
917
  $url = ( ! empty( $args['section'] ) ) ? 'https://support.bestwebsoft.com/hc/en-us/sections/' . $args['section'] : 'https://support.bestwebsoft.com/';
918
 
919
+ $content = '<p><a href="' . esc_url( $url ) . '" target="_blank">' . __( 'Visit Help Center', 'bestwebsoft' ) . '</a></p>';
920
 
921
  $screen->add_help_tab(
922
  array(
bws_menu/bws_menu.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  * Function for displaying BestWebSoft menu
4
- * Version: 2.1.4
5
  */
6
 
7
  if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) )
@@ -10,7 +10,7 @@ if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) )
10
  if ( ! function_exists( 'bws_add_menu_render' ) ) {
11
  function bws_add_menu_render() {
12
  global $wpdb, $wp_version, $bws_plugin_info, $bstwbsftwppdtplgns_options;
13
- $error = $message = $bwsmn_form_email = '';
14
 
15
  /**
16
  * @deprecated 1.9.8 (15.12.2016)
@@ -37,7 +37,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
37
  $sitewide_active_plugins = ( function_exists( 'is_multisite' ) && is_multisite() ) ? get_site_option( 'active_sitewide_plugins' ) : array();
38
  $update_availible_all = get_site_transient( 'update_plugins' );
39
 
40
- $plugin_category = isset( $_GET['category'] ) ? esc_html( $_GET['category'] ) : 'all';
41
 
42
  if ( ( isset( $_GET['sub'] ) && 'installed' == $_GET['sub'] ) || ! isset( $_GET['sub'] ) ) {
43
  $bws_plugins_update_availible = $bws_plugins_expired = array();
@@ -87,7 +87,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
87
  $update_membership_list = true;
88
 
89
  if ( isset( $_POST['bws_license_key'] ) )
90
- $bws_license_key = stripslashes( esc_html( trim( $_POST['bws_license_key'] ) ) );
91
 
92
  if ( isset( $_SESSION['bws_membership_time_check'] ) && isset( $_SESSION['bws_membership_list'] ) && $_SESSION['bws_membership_time_check'] < strtotime( '+12 hours' ) ) {
93
  $update_membership_list = false;
@@ -143,7 +143,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
143
  if ( isset( $value->time_out ) && $value->time_out != '' )
144
  $message .= ' ' . __( 'Your license will expire on', 'bestwebsoft' ) . ' ' . $value->time_out . '.';
145
  } else {
146
- $message = __( 'Congratulations! Pro Membership license is activated successfully.', 'bestwebsoft' );
147
  }
148
 
149
  $bstwbsftwppdtplgns_options[ $bws_license_plugin ] = $bws_license_key;
@@ -255,13 +255,11 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
255
 
256
  if ( ( isset( $_REQUEST['bwsmn_form_submit'] ) && check_admin_referer( plugin_basename(__FILE__), 'bwsmn_nonce_submit' ) ) || ( isset( $_REQUEST['bwsmn_form_submit_custom_email'] ) && check_admin_referer( plugin_basename(__FILE__), 'bwsmn_nonce_submit_custom_email' ) ) ) {
257
  if ( isset( $_REQUEST['bwsmn_form_email'] ) ) {
258
- $bwsmn_form_email = esc_html( trim( $_REQUEST['bwsmn_form_email'] ) );
259
- if ( $bwsmn_form_email == "" || ! is_email( $bwsmn_form_email ) ) {
260
- $error = __( "Please enter a valid email address.", 'bestwebsoft' );
261
  } else {
262
- $email = $bwsmn_form_email;
263
- $bwsmn_form_email = '';
264
- $message = __( 'Email with system info is sent to', 'bestwebsoft' ) . ' ' . $email;
265
  }
266
  } else {
267
  $email = 'plugin_system_status@bestwebsoft.com';
@@ -280,7 +278,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
280
  $message_text .= ' (' . $info['count'] . ')';
281
  $message_text .= '</h4><table>';
282
  foreach ( $info['data'] as $key => $value ) {
283
- $message_text .= '<tr><td>'. $key .'</td><td>'. $value .'</td></tr>';
284
  }
285
  $message_text .= '</table>';
286
  }
@@ -295,7 +293,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
295
  <div class="bws-wrap">
296
  <div class="bws-header">
297
  <div class="bws-title">
298
- <a href="<?php echo ( $is_main_page ) ? self_admin_url( 'admin.php?page=bws_panel' ) : self_admin_url( 'admin.php?page=' . $page ); ?>">
299
  <span class="bws-logo bwsicons bwsicons-bws-logo"></span>
300
  BestWebSoft
301
  <span>panel</span>
@@ -308,14 +306,14 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
308
  <a class="bws-nav-tab<?php if ( 'bws_themes' == $page ) echo ' bws-nav-tab-active'; ?>" href="<?php echo self_admin_url( 'admin.php?page=bws_themes' ); ?>"><?php _e( 'Themes', 'bestwebsoft' ); ?></a>
309
  <a class="bws-nav-tab<?php if ( 'bws_system_status' == $page ) echo ' bws-nav-tab-active'; ?>" href="<?php echo self_admin_url( 'admin.php?page=bws_system_status' ); ?>"><?php _e( 'System status', 'bestwebsoft' ); ?></a>
310
  <?php } else { ?>
311
- <a class="bws-nav-tab<?php if ( ! isset( $_GET['tab'] ) ) echo ' bws-nav-tab-active'; ?>" href="<?php echo self_admin_url( 'admin.php?page=' . $page ); ?>"><?php _e( 'Plugins', 'bestwebsoft' ); ?></a>
312
- <a class="bws-nav-tab<?php if ( 'themes' == $tab ) echo ' bws-nav-tab-active'; ?>" href="<?php echo self_admin_url( 'admin.php?page=' . $page . '&tab=themes' ); ?>"><?php _e( 'Themes', 'bestwebsoft' ); ?></a>
313
- <a class="bws-nav-tab<?php if ( 'system-status' == $tab ) echo ' bws-nav-tab-active'; ?>" href="<?php echo self_admin_url( 'admin.php?page=' . $page . '&tab=system-status' ); ?>"><?php _e( 'System status', 'bestwebsoft' ); ?></a>
314
  <?php } ?>
315
  </div>
316
  <div class="bws-help-links-wrapper">
317
- <a href="<?php echo esc_url( 'https://support.bestwebsoft.com' ); ?>" target="_blank"><?php _e( 'Support', 'bestwebsoft' ); ?></a>
318
- <a href="<?php echo esc_url( 'https://bestwebsoft.com/client-area' ); ?>" target="_blank" title="<?php _e( 'Manage purchased licenses & subscriptions', 'bestwebsoft' ); ?>">Client Area</a>
319
  </div>
320
  <div class="clear"></div>
321
  </div>
@@ -330,16 +328,16 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
330
  '5' < $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] &&
331
  $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['time'] > ( time() - ( 24 * 60 * 60 ) ) ) { ?>
332
  <div class="bws_form_input_wrap">
333
- <input disabled="disabled" type="text" name="bws_license_key" value="<?php echo $bws_license_key; ?>" />
334
  <div class="bws_error"><?php _e( "Unfortunately, you have exceeded the number of available tries per day.", 'bestwebsoft' ); ?></div>
335
  </div>
336
  <input disabled="disabled" type="submit" class="bws-button" value="<?php _e( 'Check license key', 'bestwebsoft' ); ?>" />
337
  <?php } else { ?>
338
  <div class="bws_form_input_wrap">
339
- <input <?php if ( "" != $error ) echo "class=\"bws_input_error\""; ?> type="text" placeholder="<?php _e( 'Enter your license key', 'bestwebsoft' ); ?>" maxlength="100" name="bws_license_key" value="<?php echo $bws_license_key; ?>" />
340
- <div class="bws_error" <?php if ( "" == $error ) echo "style=\"display:none\""; ?>><?php echo $error; ?></div>
341
  </div>
342
- <input type="hidden" name="bws_license_plugin" value="<?php echo $bws_license_plugin; ?>" />
343
  <input type="hidden" name="bws_license_submit" value="submit" />
344
  <?php if ( empty( $plugins_array ) ) { ?>
345
  <input type="submit" class="bws-button" value="<?php _e( 'Activate', 'bestwebsoft' ); ?>" />
@@ -355,14 +353,14 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
355
  <?php } ?>
356
  <div class="bws-wrap-content wrap">
357
  <?php if ( 'bws_panel' == $page || ( ! isset( $_GET['tab'] ) && ! $is_main_page ) ) { ?>
358
- <div class="updated notice is-dismissible inline" <?php if ( '' == $message || '' != $error ) echo "style=\"display:none\""; ?>><p><?php echo $message; ?></p></div>
359
  <h1>
360
  <?php _e( 'Plugins', 'bestwebsoft' ); ?>
361
  <a href="<?php echo self_admin_url( 'plugin-install.php?tab=upload' ); ?>" class="upload page-title-action add-new-h2"><?php _e( 'Upload Plugin', 'bestwebsoft' ); ?></a>
362
  </h1>
363
  <?php if ( isset( $_GET['error'] ) ) {
364
  if ( isset( $_GET['charsout'] ) )
365
- $errmsg = sprintf(__( 'The plugin generated %d characters of <strong>unexpected output</strong> during activation. If you notice &#8220;headers already sent&#8221; messages, problems with syndication feeds or other issues, try deactivating or removing this plugin.' ), $_GET['charsout'] );
366
  else
367
  $errmsg = __( 'Plugin could not be activated because it triggered a <strong>fatal error</strong>.' ); ?>
368
  <div id="message" class="error is-dismissible"><p><?php echo $errmsg; ?></p></div>
@@ -372,7 +370,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
372
 
373
  if ( isset( $_POST['bws_plugin_action_submit'] ) && isset( $_POST['bws_install_plugin'] ) && check_admin_referer( plugin_basename(__FILE__), 'bws_license_install_nonce_name' ) ) {
374
 
375
- $bws_license_plugin = esc_html( $_POST['bws_install_plugin'] );
376
 
377
  echo '<h2>' . __( 'Installing Plugin', 'bestwebsoft' ) . ': ' . $plugins_array[ $bws_license_plugin ]['name'] . '</h2>';
378
 
@@ -436,19 +434,28 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
436
  }
437
 
438
  if ( file_exists( WP_PLUGIN_DIR . '/' . $zip_name[0] ) ) {
439
- echo '<p><a href="' . wp_nonce_url( $current_page . '&amp;bws_activate_plugin=' . $bws_license_plugin, 'bws_activate_plugin' . $bws_license_plugin ) . '" target="_parent">' . __( 'Activate Plugin', 'bestwebsoft' ) . '</a> | <a href="' . self_admin_url( $current_page ) . '" target="_parent">' . __( 'Return to BestWebSoft Panel', 'bestwebsoft' ) . '</a></p>';
440
  } else {
441
  if ( empty( $error ) )
442
  $error = __( "Failed to download the zip archive. Please, upload the plugin manually", 'bestwebsoft' );
443
 
444
  echo '<p class="error">' . $error . '</p>';
445
- echo '<p><a href="' . self_admin_url( $current_page ) . '" target="_parent">' . __( 'Return to BestWebSoft Panel', 'bestwebsoft' ) . '</a></p>';
446
  }
447
- } else { ?>
 
 
 
448
  <ul class="subsubsub">
449
- <li><a <?php if ( ! isset( $_GET['sub'] ) ) echo 'class="current" '; ?>href="<?php echo $current_page; if ( 'all' != $plugin_category ) echo '&amp;category=' . $plugin_category; ?>"><?php _e( 'All', 'bestwebsoft' ); ?></a></li> |
450
- <li><a <?php if ( isset( $_GET['sub'] ) && 'installed' == $_GET['sub'] ) echo 'class="current" '; ?>href="<?php echo $current_page; ?>&amp;sub=installed<?php if ( 'all' != $plugin_category ) echo '&amp;category=' . $plugin_category; ?>"><?php _e( 'Installed', 'bestwebsoft' ); ?></a></li> |
451
- <li><a <?php if ( isset( $_GET['sub'] ) && 'not_installed' == $_GET['sub'] ) echo 'class="current" '; ?>href="<?php echo $current_page; ?>&amp;sub=not_installed<?php if ( 'all' != $plugin_category ) echo '&amp;category=' . $plugin_category; ?>"><?php _e( 'Not Installed', 'bestwebsoft' ); ?></a></li>
 
 
 
 
 
 
452
  </ul>
453
  <div class="clear"></div>
454
  <div class="bws-filter-top">
@@ -460,14 +467,14 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
460
  <div class="bws-filter-title"><?php _e( 'Category', 'bestwebsoft' ); ?></div>
461
  <ul class="bws-category">
462
  <li>
463
- <?php $sub_in_url = ( isset( $_GET['sub'] ) && in_array( $_GET['sub'], array( 'installed', 'not_installed' ) ) ) ? '&amp;sub=' . $_GET['sub'] : ''; ?>
464
- <a <?php if ( 'all' == $plugin_category ) echo ' class="bws-active"'; ?> href="<?php echo self_admin_url( $current_page . $sub_in_url ); ?>"><?php _e( 'All', 'bestwebsoft' ); ?>
465
  <span>(<?php echo count( $bws_plugins ); ?>)</span>
466
  </a>
467
  </li>
468
  <?php foreach ( $bws_plugins_category as $category_key => $category_value ) { ?>
469
  <li>
470
- <a <?php if ( $category_key == $plugin_category ) echo ' class="bws-active"'; ?> href="<?php echo esc_url( self_admin_url( $current_page . $sub_in_url . '&amp;category=' . $category_key ) ); ?>"><?php echo $category_value['name']; ?>
471
  <span>(<?php echo $category_value['count']; ?>)</span>
472
  </a>
473
  </li>
@@ -499,7 +506,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
499
  ( isset( $_GET['sub'] ) && 'not_installed' == $_GET['sub'] && ( $is_pro_installed || $is_installed ) ) )
500
  continue;
501
 
502
- $link_attr = isset( $value_plugin['install_url'] ) ? 'href="' . $value_plugin['install_url'] . '" target="_blank"' : 'href="' . esc_url( self_admin_url( 'plugin-install.php?tab=plugin-information&plugin=' . $key_plugin_explode[0] . '&from=import&TB_iframe=true&width=600&height=550' ) ) . '" class="thickbox open-plugin-details-modal"';
503
 
504
  $nothing_found = false; ?>
505
  <div class="bws_product_box<?php if ( $is_active || $is_pro_active ) echo ' bws_product_active'; ?>">
@@ -528,7 +535,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
528
  echo ' - <a class="bws-update-now" href="https://support.bestwebsoft.com/hc/en-us/articles/202356359" target="_blank">' . __( 'Renew to get updates', 'bestwebsoft' ) . '</a>';
529
  } elseif ( ! empty( $value_plugin['update_availible'] ) ) {
530
  $r = $update_availible_all->response[ $value_plugin['update_availible'] ];
531
- echo ' - <a class="bws-update-now" href="' . wp_nonce_url( self_admin_url( 'update.php?action=upgrade-plugin&plugin=' ) . $value_plugin['update_availible'], 'upgrade-plugin_' . $value_plugin['update_availible'] ) . '" class="update-link" aria-label="' . sprintf( __( 'Update to v %s', 'bestwebsoft' ), $r->new_version ) . '">' . sprintf( __( 'Update to v %s', 'bestwebsoft' ), $r->new_version ) . '</a>';
532
  } ?>
533
  </div>
534
  <div class="bws_product_description">
@@ -546,7 +553,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
546
  <?php wp_nonce_field( plugin_basename(__FILE__), 'bws_license_install_nonce_name' ); ?>
547
  </form>
548
  <?php } else { ?>
549
- <a class="button button-secondary bws_upgrade_button" href="<?php echo $bws_plugins[ $key_plugin ]['purchase']; ?>" target="_blank"><?php _e( 'Upgrade to Pro', 'bestwebsoft' ); ?></a>
550
  <?php }
551
  }
552
  } else { ?>
@@ -554,13 +561,13 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
554
  <?php }
555
 
556
  if ( $is_pro_active ) { ?>
557
- <a class="bws_settings" href="<?php echo $bws_plugins[ $key_plugin ]["pro_settings"]; ?>"><?php _e( 'Settings', 'bestwebsoft' ); ?></a>
558
  <?php } else { ?>
559
- <a class="bws_settings" href="<?php echo $bws_plugins[ $key_plugin ]["settings"]; ?>"><?php _e( 'Settings', 'bestwebsoft' ); ?></a>
560
  <?php }
561
  } else {
562
  if ( $is_pro_installed ) { ?>
563
- <a class="button button-secondary" href="<?php echo wp_nonce_url( $current_page . '&amp;bws_activate_plugin=' . $value_plugin['pro_version'], 'bws_activate_plugin' . $value_plugin['pro_version'] ); ?>" title="<?php _e( 'Activate this plugin', 'bestwebsoft' ); ?>"><?php _e( 'Activate', 'bestwebsoft' ); ?></a>
564
  <?php } elseif ( ! empty( $plugins_array ) && isset( $value_plugin['pro_version'] ) && array_key_exists( $value_plugin['pro_version'], $plugins_array ) ) { ?>
565
  <form method="post" action="">
566
  <input type="submit" class="button button-secondary" value="<?php _e( 'Install Now', 'bestwebsoft' ); ?>" />
@@ -569,10 +576,10 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
569
  <?php wp_nonce_field( plugin_basename(__FILE__), 'bws_license_install_nonce_name' ); ?>
570
  </form>
571
  <?php } elseif ( $is_installed ) { ?>
572
- <a class="button button-secondary" href="<?php echo wp_nonce_url( $current_page . '&amp;bws_activate_plugin=' . $key_plugin, 'bws_activate_plugin' . $key_plugin ); ?>" title="<?php _e( 'Activate this plugin', 'bestwebsoft' ); ?>"><?php _e( 'Activate', 'bestwebsoft' ); ?></a>
573
  <?php } else {
574
- $install_url = isset( $value_plugin['install_url'] ) ? $value_plugin['install_url'] : esc_url( self_admin_url( 'plugin-install.php?tab=search&type=term&s=' . str_replace( ' ', '+', str_replace( '-', '', $value_plugin['name'] ) ) . '+BestWebSoft&plugin-search-input=Search+Plugins' ) ); ?>
575
- <a class="button button-secondary" href="<?php echo $install_url; ?>" title="<?php _e( 'Install this plugin', 'bestwebsoft' ); ?>" target="_blank"><?php _e( 'Install Now', 'bestwebsoft' ); ?></a>
576
  <?php }
577
  } ?>
578
  </div>
@@ -589,14 +596,14 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
589
  <div class="bws-filter-title"><?php _e( 'Category', 'bestwebsoft' ); ?></div>
590
  <ul class="bws-category">
591
  <li>
592
- <?php $sub_in_url = ( isset( $_GET['sub'] ) && in_array( $_GET['sub'], array( 'installed', 'not_installed' ) ) ) ? '&amp;sub=' . $_GET['sub'] : ''; ?>
593
- <a <?php if ( 'all' == $plugin_category ) echo ' class="bws-active"'; ?> href="<?php echo self_admin_url( $current_page . $sub_in_url ); ?>"><?php _e( 'All', 'bestwebsoft' ); ?>
594
  <span>(<?php echo count( $bws_plugins ); ?>)</span>
595
  </a>
596
  </li>
597
  <?php foreach ( $bws_plugins_category as $category_key => $category_value ) { ?>
598
  <li>
599
- <a <?php if ( $category_key == $plugin_category ) echo ' class="bws-active"'; ?> href="<?php echo esc_url( self_admin_url( $current_page . $sub_in_url . '&amp;category=' . $category_key ) ); ?>"><?php echo $category_value['name']; ?>
600
  <span>(<?php echo $category_value['count']; ?>)</span>
601
  </a>
602
  </li>
@@ -621,7 +628,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
621
  <div class="theme-author"><?php printf( __( 'By %s', 'bestwebsoft' ), 'BestWebSoft' ); ?></div>
622
  <h3 class="theme-name"><?php echo $theme->name; ?></h3>
623
  <div class="theme-actions">
624
- <a class="button button-secondary preview install-theme-preview" href="<?php echo $theme->href; ?>" target="_blank"><?php esc_html_e( 'Learn More', 'bestwebsoft' ); ?></a>
625
  </div>
626
  <?php if ( $installed_theme->exists() ) {
627
  if ( $wp_version < '4.6' ) { ?>
@@ -635,12 +642,12 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
635
  <br class="clear" />
636
  </div>
637
  </div>
638
- <p><a class="bws_browse_link" href="http://bestweblayout.com/categories/themes/" target="_blank"><?php _e( 'Browse Free WordPress Themes', 'bestwebsoft' ); ?> <span class="dashicons dashicons-arrow-right-alt2"></span></a></p>
639
  </div>
640
  <?php } elseif ( 'bws_system_status' == $page || 'system-status' == $tab ) { ?>
641
  <h1><?php _e( 'System status', 'bestwebsoft' ); ?></h1>
642
- <div class="updated fade notice is-dismissible inline" <?php if ( ! ( isset( $_REQUEST['bwsmn_form_submit'] ) || isset( $_REQUEST['bwsmn_form_submit_custom_email'] ) ) || $error != "" ) echo "style=\"display:none\""; ?>><p><strong><?php echo $message; ?></strong></p></div>
643
- <div class="error" <?php if ( "" == $error ) echo "style=\"display:none\""; ?>><p><strong><?php echo $error; ?></strong></p></div>
644
  <form method="post" action="">
645
  <p>
646
  <input type="hidden" name="bwsmn_form_submit" value="submit" />
@@ -652,7 +659,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
652
  <p>
653
  <input type="hidden" name="bwsmn_form_submit_custom_email" value="submit" />
654
  <input type="submit" class="button" value="<?php _e( 'Send to custom email &#187;', 'bestwebsoft' ) ?>" />
655
- <input type="text" maxlength="250" value="<?php echo $bwsmn_form_email; ?>" name="bwsmn_form_email" />
656
  <?php wp_nonce_field( plugin_basename(__FILE__), 'bwsmn_nonce_submit_custom_email' ); ?>
657
  </p>
658
  </form>
1
  <?php
2
  /*
3
  * Function for displaying BestWebSoft menu
4
+ * Version: 2.1.5
5
  */
6
 
7
  if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) )
10
  if ( ! function_exists( 'bws_add_menu_render' ) ) {
11
  function bws_add_menu_render() {
12
  global $wpdb, $wp_version, $bws_plugin_info, $bstwbsftwppdtplgns_options;
13
+ $error = $message = '';
14
 
15
  /**
16
  * @deprecated 1.9.8 (15.12.2016)
37
  $sitewide_active_plugins = ( function_exists( 'is_multisite' ) && is_multisite() ) ? get_site_option( 'active_sitewide_plugins' ) : array();
38
  $update_availible_all = get_site_transient( 'update_plugins' );
39
 
40
+ $plugin_category = isset( $_GET['category'] ) ? esc_attr( $_GET['category'] ) : 'all';
41
 
42
  if ( ( isset( $_GET['sub'] ) && 'installed' == $_GET['sub'] ) || ! isset( $_GET['sub'] ) ) {
43
  $bws_plugins_update_availible = $bws_plugins_expired = array();
87
  $update_membership_list = true;
88
 
89
  if ( isset( $_POST['bws_license_key'] ) )
90
+ $bws_license_key = sanitize_text_field( $_POST['bws_license_key'] );
91
 
92
  if ( isset( $_SESSION['bws_membership_time_check'] ) && isset( $_SESSION['bws_membership_list'] ) && $_SESSION['bws_membership_time_check'] < strtotime( '+12 hours' ) ) {
93
  $update_membership_list = false;
143
  if ( isset( $value->time_out ) && $value->time_out != '' )
144
  $message .= ' ' . __( 'Your license will expire on', 'bestwebsoft' ) . ' ' . $value->time_out . '.';
145
  } else {
146
+ $message = __( 'Congratulations! Pro Membership license is activated successfully.', 'bestwebsoft' );
147
  }
148
 
149
  $bstwbsftwppdtplgns_options[ $bws_license_plugin ] = $bws_license_key;
255
 
256
  if ( ( isset( $_REQUEST['bwsmn_form_submit'] ) && check_admin_referer( plugin_basename(__FILE__), 'bwsmn_nonce_submit' ) ) || ( isset( $_REQUEST['bwsmn_form_submit_custom_email'] ) && check_admin_referer( plugin_basename(__FILE__), 'bwsmn_nonce_submit_custom_email' ) ) ) {
257
  if ( isset( $_REQUEST['bwsmn_form_email'] ) ) {
258
+ $email = sanitize_email( $_REQUEST['bwsmn_form_email'] );
259
+ if ( '' == $email ) {
260
+ $error = __( 'Please enter a valid email address.', 'bestwebsoft' );
261
  } else {
262
+ $message = sprintf( __( 'Email with system info is sent to %s.', 'bestwebsoft' ), $email );
 
 
263
  }
264
  } else {
265
  $email = 'plugin_system_status@bestwebsoft.com';
278
  $message_text .= ' (' . $info['count'] . ')';
279
  $message_text .= '</h4><table>';
280
  foreach ( $info['data'] as $key => $value ) {
281
+ $message_text .= '<tr><td>' . $key . '</td><td>' . $value . '</td></tr>';
282
  }
283
  $message_text .= '</table>';
284
  }
293
  <div class="bws-wrap">
294
  <div class="bws-header">
295
  <div class="bws-title">
296
+ <a href="<?php echo ( $is_main_page ) ? self_admin_url( 'admin.php?page=bws_panel' ) : esc_url( self_admin_url( 'admin.php?page=' . $page ) ); ?>">
297
  <span class="bws-logo bwsicons bwsicons-bws-logo"></span>
298
  BestWebSoft
299
  <span>panel</span>
306
  <a class="bws-nav-tab<?php if ( 'bws_themes' == $page ) echo ' bws-nav-tab-active'; ?>" href="<?php echo self_admin_url( 'admin.php?page=bws_themes' ); ?>"><?php _e( 'Themes', 'bestwebsoft' ); ?></a>
307
  <a class="bws-nav-tab<?php if ( 'bws_system_status' == $page ) echo ' bws-nav-tab-active'; ?>" href="<?php echo self_admin_url( 'admin.php?page=bws_system_status' ); ?>"><?php _e( 'System status', 'bestwebsoft' ); ?></a>
308
  <?php } else { ?>
309
+ <a class="bws-nav-tab<?php if ( ! isset( $_GET['tab'] ) ) echo ' bws-nav-tab-active'; ?>" href="<?php echo esc_url( self_admin_url( 'admin.php?page=' . $page ) ); ?>"><?php _e( 'Plugins', 'bestwebsoft' ); ?></a>
310
+ <a class="bws-nav-tab<?php if ( 'themes' == $tab ) echo ' bws-nav-tab-active'; ?>" href="<?php echo esc_url( self_admin_url( 'admin.php?page=' . $page . '&tab=themes' ) ); ?>"><?php _e( 'Themes', 'bestwebsoft' ); ?></a>
311
+ <a class="bws-nav-tab<?php if ( 'system-status' == $tab ) echo ' bws-nav-tab-active'; ?>" href="<?php echo esc_url( self_admin_url( 'admin.php?page=' . $page . '&tab=system-status' ) ); ?>"><?php _e( 'System status', 'bestwebsoft' ); ?></a>
312
  <?php } ?>
313
  </div>
314
  <div class="bws-help-links-wrapper">
315
+ <a href="https://support.bestwebsoft.com" target="_blank"><?php _e( 'Support', 'bestwebsoft' ); ?></a>
316
+ <a href="https://bestwebsoft.com/client-area" target="_blank" title="<?php _e( 'Manage purchased licenses & subscriptions', 'bestwebsoft' ); ?>">Client Area</a>
317
  </div>
318
  <div class="clear"></div>
319
  </div>
328
  '5' < $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] &&
329
  $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['time'] > ( time() - ( 24 * 60 * 60 ) ) ) { ?>
330
  <div class="bws_form_input_wrap">
331
+ <input disabled="disabled" type="text" name="bws_license_key" value="<?php echo esc_attr( $bws_license_key); ?>" />
332
  <div class="bws_error"><?php _e( "Unfortunately, you have exceeded the number of available tries per day.", 'bestwebsoft' ); ?></div>
333
  </div>
334
  <input disabled="disabled" type="submit" class="bws-button" value="<?php _e( 'Check license key', 'bestwebsoft' ); ?>" />
335
  <?php } else { ?>
336
  <div class="bws_form_input_wrap">
337
+ <input <?php if ( "" != $error ) echo 'class="bws_input_error"'; ?> type="text" placeholder="<?php _e( 'Enter your license key', 'bestwebsoft' ); ?>" maxlength="100" name="bws_license_key" value="<?php echo esc_attr( $bws_license_key ); ?>" />
338
+ <div class="bws_error" <?php if ( "" == $error ) echo 'style="display:none"'; ?>><?php echo $error; ?></div>
339
  </div>
340
+ <input type="hidden" name="bws_license_plugin" value="<?php echo esc_attr( $bws_license_plugin ); ?>" />
341
  <input type="hidden" name="bws_license_submit" value="submit" />
342
  <?php if ( empty( $plugins_array ) ) { ?>
343
  <input type="submit" class="bws-button" value="<?php _e( 'Activate', 'bestwebsoft' ); ?>" />
353
  <?php } ?>
354
  <div class="bws-wrap-content wrap">
355
  <?php if ( 'bws_panel' == $page || ( ! isset( $_GET['tab'] ) && ! $is_main_page ) ) { ?>
356
+ <div class="updated notice is-dismissible inline" <?php if ( '' == $message || '' != $error ) echo 'style="display:none"'; ?>><p><?php echo $message; ?></p></div>
357
  <h1>
358
  <?php _e( 'Plugins', 'bestwebsoft' ); ?>
359
  <a href="<?php echo self_admin_url( 'plugin-install.php?tab=upload' ); ?>" class="upload page-title-action add-new-h2"><?php _e( 'Upload Plugin', 'bestwebsoft' ); ?></a>
360
  </h1>
361
  <?php if ( isset( $_GET['error'] ) ) {
362
  if ( isset( $_GET['charsout'] ) )
363
+ $errmsg = sprintf( __( 'The plugin generated %d characters of <strong>unexpected output</strong> during activation. If you notice &#8220;headers already sent&#8221; messages, problems with syndication feeds or other issues, try deactivating or removing this plugin.' ), $_GET['charsout'] );
364
  else
365
  $errmsg = __( 'Plugin could not be activated because it triggered a <strong>fatal error</strong>.' ); ?>
366
  <div id="message" class="error is-dismissible"><p><?php echo $errmsg; ?></p></div>
370
 
371
  if ( isset( $_POST['bws_plugin_action_submit'] ) && isset( $_POST['bws_install_plugin'] ) && check_admin_referer( plugin_basename(__FILE__), 'bws_license_install_nonce_name' ) ) {
372
 
373
+ $bws_license_plugin = sanitize_text_field( $_POST['bws_install_plugin'] );
374
 
375
  echo '<h2>' . __( 'Installing Plugin', 'bestwebsoft' ) . ': ' . $plugins_array[ $bws_license_plugin ]['name'] . '</h2>';
376
 
434
  }
435
 
436
  if ( file_exists( WP_PLUGIN_DIR . '/' . $zip_name[0] ) ) {
437
+ echo '<p><a href="' . esc_url( wp_nonce_url( self_admin_url( $current_page . '&bws_activate_plugin=' . $bws_license_plugin ), 'bws_activate_plugin' . $bws_license_plugin ) ) . '" target="_parent">' . __( 'Activate Plugin', 'bestwebsoft' ) . '</a> | <a href="' . esc_url( self_admin_url( $current_page ) ) . '" target="_parent">' . __( 'Return to BestWebSoft Panel', 'bestwebsoft' ) . '</a></p>';
438
  } else {
439
  if ( empty( $error ) )
440
  $error = __( "Failed to download the zip archive. Please, upload the plugin manually", 'bestwebsoft' );
441
 
442
  echo '<p class="error">' . $error . '</p>';
443
+ echo '<p><a href="' . esc_url( self_admin_url( $current_page ) ) . '" target="_parent">' . __( 'Return to BestWebSoft Panel', 'bestwebsoft' ) . '</a></p>';
444
  }
445
+ } else {
446
+ $category_href = $current_page;
447
+ if ( 'all' != $plugin_category )
448
+ $category_href .= '&category=' . $plugin_category; ?>
449
  <ul class="subsubsub">
450
+ <li>
451
+ <a <?php if ( ! isset( $_GET['sub'] ) ) echo 'class="current" '; ?>href="<?php echo esc_url( self_admin_url( $category_href ) ); ?>"><?php _e( 'All', 'bestwebsoft' ); ?></a>
452
+ </li> |
453
+ <li>
454
+ <a <?php if ( isset( $_GET['sub'] ) && 'installed' == $_GET['sub'] ) echo 'class="current" '; ?>href="<?php echo esc_url( self_admin_url( $category_href . '&sub=installed' ) ); ?>"><?php _e( 'Installed', 'bestwebsoft' ); ?></a>
455
+ </li> |
456
+ <li>
457
+ <a <?php if ( isset( $_GET['sub'] ) && 'not_installed' == $_GET['sub'] ) echo 'class="current" '; ?>href="<?php echo esc_url( self_admin_url( $category_href . '&sub=not_installed' ) ); ?>"><?php _e( 'Not Installed', 'bestwebsoft' ); ?></a>
458
+ </li>
459
  </ul>
460
  <div class="clear"></div>
461
  <div class="bws-filter-top">
467
  <div class="bws-filter-title"><?php _e( 'Category', 'bestwebsoft' ); ?></div>
468
  <ul class="bws-category">
469
  <li>
470
+ <?php $sub_in_url = ( isset( $_GET['sub'] ) && in_array( $_GET['sub'], array( 'installed', 'not_installed' ) ) ) ? '&sub=' . $_GET['sub'] : ''; ?>
471
+ <a <?php if ( 'all' == $plugin_category ) echo ' class="bws-active"'; ?> href="<?php echo esc_url(self_admin_url( $current_page . $sub_in_url ) ); ?>"><?php _e( 'All', 'bestwebsoft' ); ?>
472
  <span>(<?php echo count( $bws_plugins ); ?>)</span>
473
  </a>
474
  </li>
475
  <?php foreach ( $bws_plugins_category as $category_key => $category_value ) { ?>
476
  <li>
477
+ <a <?php if ( $category_key == $plugin_category ) echo ' class="bws-active"'; ?> href="<?php echo esc_url( self_admin_url( $current_page . $sub_in_url . '&category=' . $category_key ) ); ?>"><?php echo $category_value['name']; ?>
478
  <span>(<?php echo $category_value['count']; ?>)</span>
479
  </a>
480
  </li>
506
  ( isset( $_GET['sub'] ) && 'not_installed' == $_GET['sub'] && ( $is_pro_installed || $is_installed ) ) )
507
  continue;
508
 
509
+ $link_attr = isset( $value_plugin['install_url'] ) ? 'href="' . esc_url( $value_plugin['install_url'] ) . '" target="_blank"' : 'href="' . esc_url( self_admin_url( 'plugin-install.php?tab=plugin-information&plugin=' . $key_plugin_explode[0] . '&from=import&TB_iframe=true&width=600&height=550' ) ) . '" class="thickbox open-plugin-details-modal"';
510
 
511
  $nothing_found = false; ?>
512
  <div class="bws_product_box<?php if ( $is_active || $is_pro_active ) echo ' bws_product_active'; ?>">
535
  echo ' - <a class="bws-update-now" href="https://support.bestwebsoft.com/hc/en-us/articles/202356359" target="_blank">' . __( 'Renew to get updates', 'bestwebsoft' ) . '</a>';
536
  } elseif ( ! empty( $value_plugin['update_availible'] ) ) {
537
  $r = $update_availible_all->response[ $value_plugin['update_availible'] ];
538
+ echo ' - <a class="bws-update-now" href="' . esc_url( wp_nonce_url( self_admin_url( 'update.php?action=upgrade-plugin&plugin=' . $value_plugin['update_availible'] ), 'upgrade-plugin_' . $value_plugin['update_availible'] ) ) . '" class="update-link" aria-label="' . sprintf( __( 'Update to v %s', 'bestwebsoft' ), $r->new_version ) . '">' . sprintf( __( 'Update to v %s', 'bestwebsoft' ), $r->new_version ) . '</a>';
539
  } ?>
540
  </div>
541
  <div class="bws_product_description">
553
  <?php wp_nonce_field( plugin_basename(__FILE__), 'bws_license_install_nonce_name' ); ?>
554
  </form>
555
  <?php } else { ?>
556
+ <a class="button button-secondary bws_upgrade_button" href="<?php echo esc_url( $bws_plugins[ $key_plugin ]['purchase'] ); ?>" target="_blank"><?php _e( 'Upgrade to Pro', 'bestwebsoft' ); ?></a>
557
  <?php }
558
  }
559
  } else { ?>
561
  <?php }
562
 
563
  if ( $is_pro_active ) { ?>
564
+ <a class="bws_settings" href="<?php echo esc_url( self_admin_url( $bws_plugins[ $key_plugin ]["pro_settings"] ) ); ?>"><?php _e( 'Settings', 'bestwebsoft' ); ?></a>
565
  <?php } else { ?>
566
+ <a class="bws_settings" href="<?php echo esc_url( self_admin_url( $bws_plugins[ $key_plugin ]["settings"] ) ); ?>"><?php _e( 'Settings', 'bestwebsoft' ); ?></a>
567
  <?php }
568
  } else {
569
  if ( $is_pro_installed ) { ?>
570
+ <a class="button button-secondary" href="<?php echo esc_url( wp_nonce_url( self_admin_url( $current_page . '&bws_activate_plugin=' . $value_plugin['pro_version'] ), 'bws_activate_plugin' . $value_plugin['pro_version'] ) ); ?>" title="<?php _e( 'Activate this plugin', 'bestwebsoft' ); ?>"><?php _e( 'Activate', 'bestwebsoft' ); ?></a>
571
  <?php } elseif ( ! empty( $plugins_array ) && isset( $value_plugin['pro_version'] ) && array_key_exists( $value_plugin['pro_version'], $plugins_array ) ) { ?>
572
  <form method="post" action="">
573
  <input type="submit" class="button button-secondary" value="<?php _e( 'Install Now', 'bestwebsoft' ); ?>" />
576
  <?php wp_nonce_field( plugin_basename(__FILE__), 'bws_license_install_nonce_name' ); ?>
577
  </form>
578
  <?php } elseif ( $is_installed ) { ?>
579
+ <a class="button button-secondary" href="<?php echo esc_url( wp_nonce_url( self_admin_url( $current_page . '&bws_activate_plugin=' . $key_plugin ), 'bws_activate_plugin' . $key_plugin ) ); ?>" title="<?php _e( 'Activate this plugin', 'bestwebsoft' ); ?>"><?php _e( 'Activate', 'bestwebsoft' ); ?></a>
580
  <?php } else {
581
+ $install_url = isset( $value_plugin['install_url'] ) ? $value_plugin['install_url'] : self_admin_url( 'plugin-install.php?tab=search&type=term&s=' . str_replace( ' ', '+', str_replace( '-', '', $value_plugin['name'] ) ) . '+BestWebSoft&plugin-search-input=Search+Plugins' ); ?>
582
+ <a class="button button-secondary" href="<?php echo esc_url( $install_url ); ?>" title="<?php _e( 'Install this plugin', 'bestwebsoft' ); ?>" target="_blank"><?php _e( 'Install Now', 'bestwebsoft' ); ?></a>
583
  <?php }
584
  } ?>
585
  </div>
596
  <div class="bws-filter-title"><?php _e( 'Category', 'bestwebsoft' ); ?></div>
597
  <ul class="bws-category">
598
  <li>
599
+ <?php $sub_in_url = ( isset( $_GET['sub'] ) && in_array( $_GET['sub'], array( 'installed', 'not_installed' ) ) ) ? '&sub=' . $_GET['sub'] : ''; ?>
600
+ <a <?php if ( 'all' == $plugin_category ) echo ' class="bws-active"'; ?> href="<?php echo esc_url( self_admin_url( $current_page . $sub_in_url ) ); ?>"><?php _e( 'All', 'bestwebsoft' ); ?>
601
  <span>(<?php echo count( $bws_plugins ); ?>)</span>
602
  </a>
603
  </li>
604
  <?php foreach ( $bws_plugins_category as $category_key => $category_value ) { ?>
605
  <li>
606
+ <a <?php if ( $category_key == $plugin_category ) echo ' class="bws-active"'; ?> href="<?php echo esc_url( self_admin_url( $current_page . $sub_in_url . '&category=' . $category_key ) ); ?>"><?php echo $category_value['name']; ?>
607
  <span>(<?php echo $category_value['count']; ?>)</span>
608
  </a>
609
  </li>
628
  <div class="theme-author"><?php printf( __( 'By %s', 'bestwebsoft' ), 'BestWebSoft' ); ?></div>
629
  <h3 class="theme-name"><?php echo $theme->name; ?></h3>
630
  <div class="theme-actions">
631
+ <a class="button button-secondary preview install-theme-preview" href="<?php echo esc_url( $theme->href ); ?>" target="_blank"><?php _e( 'Learn More', 'bestwebsoft' ); ?></a>
632
  </div>
633
  <?php if ( $installed_theme->exists() ) {
634
  if ( $wp_version < '4.6' ) { ?>
642
  <br class="clear" />
643
  </div>
644
  </div>
645
+ <p><a class="bws_browse_link" href="https://bestwebsoft.com/products/wordpress/themes/" target="_blank"><?php _e( 'Browse More WordPress Themes', 'bestwebsoft' ); ?> <span class="dashicons dashicons-arrow-right-alt2"></span></a></p>
646
  </div>
647
  <?php } elseif ( 'bws_system_status' == $page || 'system-status' == $tab ) { ?>
648
  <h1><?php _e( 'System status', 'bestwebsoft' ); ?></h1>
649
+ <div class="updated fade notice is-dismissible inline" <?php if ( ! ( isset( $_REQUEST['bwsmn_form_submit'] ) || isset( $_REQUEST['bwsmn_form_submit_custom_email'] ) ) || $error != "" ) echo 'style="display:none"'; ?>><p><strong><?php echo $message; ?></strong></p></div>
650
+ <div class="error" <?php if ( "" == $error ) echo 'style="display:none"'; ?>><p><strong><?php echo $error; ?></strong></p></div>
651
  <form method="post" action="">
652
  <p>
653
  <input type="hidden" name="bwsmn_form_submit" value="submit" />
659
  <p>
660
  <input type="hidden" name="bwsmn_form_submit_custom_email" value="submit" />
661
  <input type="submit" class="button" value="<?php _e( 'Send to custom email &#187;', 'bestwebsoft' ) ?>" />
662
+ <input type="text" maxlength="250" value="" name="bwsmn_form_email" />
663
  <?php wp_nonce_field( plugin_basename(__FILE__), 'bwsmn_nonce_submit_custom_email' ); ?>
664
  </p>
665
  </form>
bws_menu/class-bws-settings.php CHANGED
@@ -7,7 +7,7 @@
7
 
8
  if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
9
  class Bws_Settings_Tabs {
10
- private $tabs;
11
  private $pro_plugin_is_activated = false;
12
  private $custom_code_args = array();
13
 
@@ -129,7 +129,7 @@ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
129
  <div id="post-body" class="metabox-holder columns-2">
130
  <div id="post-body-content" style="position: relative;">
131
  <?php $this->display_tabs(); ?>
132
- </div><!-- /post-body-content -->
133
  <div id="postbox-container-1" class="postbox-container">
134
  <div class="meta-box-sortables ui-sortable">
135
  <div id="submitdiv" class="postbox">
@@ -154,7 +154,7 @@ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
154
  $daysleft = floor( ( $finish - $today ) / ( 60*60*24 ) );
155
  $license_status = sprintf( __( '%s day(-s) left', 'bestwebsoft' ), $daysleft );
156
  }
157
- $license_status .= '. <a target="_blank" href="' . $this->plugins_info['PluginURI'] . '">' . __( 'Upgrade to Pro', 'bestwebsoft' ) . '</a>';
158
  } else {
159
  $license_type = isset( $bstwbsftwppdtplgns_options['nonprofit'][ $this->plugin_basename ] ) ? 'Nonprofit Pro' : 'Pro';
160
  if ( $finish < $today ) {
@@ -261,7 +261,7 @@ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
261
  foreach ( $this->tabs as $tab_slug => $data ) {
262
  if ( ! empty( $data['is_pro'] ) && $this->hide_pro_tabs )
263
  continue; ?>
264
- <div class="bws_tab ui-tabs-panel ui-widget-content ui-corner-bottom" id="<?php echo $this->prefix . '_' . $tab_slug; ?>_tab" aria-labelledby="ui-id-2" role="tabpanel" aria-hidden="false" style="display: block;">
265
  <?php $tab_slug = str_replace( '-', '_', $tab_slug );
266
  if ( method_exists( $this, 'tab_' . $tab_slug ) ) {
267
  call_user_func( array( $this, 'tab_' . $tab_slug ) );
@@ -400,7 +400,7 @@ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
400
 
401
  if ( file_exists( $real_file ) ) {
402
  update_recently_edited( $real_file );
403
- $this->custom_code_args["content_{$extension}"] = esc_textarea( file_get_contents( $real_file ) );
404
  if ( ( $this->is_multisite && isset( $bstwbsftwppdtplgns_options['custom_code'][ $this->custom_code_args['blog_id'] ][ $file ] ) ) ||
405
  ( ! $this->is_multisite && isset( $bstwbsftwppdtplgns_options['custom_code'][ $file ] ) ) ) {
406
  $this->custom_code_args["is_{$extension}_active"] = true;
@@ -432,7 +432,7 @@ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
432
  'css' => array( 'description' => __( 'These styles will be added to the header on all pages of your site.', 'bestwebsoft' ),
433
  'learn_more_link' => 'https://developer.mozilla.org/en-US/docs/Web/Guide/CSS/Getting_started'
434
  ),
435
- 'php' => array( 'description' => sprintf( __( 'This PHP code will be hooked to the %s action and will be printed on front end only.', 'bestwebsoft' ), '<a href="http://codex.wordpress.org/Plugin_API/Action_Reference/init" target="_blank"><code>init</code></a>' ),
436
  'learn_more_link' => 'http://php.net/'
437
  ),
438
  'js' => array( 'description' => __( 'These code will be added to the header on all pages of your site.', 'bestwebsoft' ),
@@ -461,11 +461,11 @@ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
461
  <?php printf( __( 'Activate custom %s code.', 'bestwebsoft' ), $name ); ?>
462
  </label>
463
  </p>
464
- <textarea cols="70" rows="25" name="bws_newcontent_<?php echo $extension; ?>" id="bws_newcontent_<?php echo $extension; ?>"><?php if ( isset( $this->custom_code_args["content_{$extension}"] ) ) echo $this->custom_code_args["content_{$extension}"]; ?></textarea>
465
  <p class="bws_info">
466
  <?php echo $extension_data['description']; ?>
467
  <br>
468
- <a href="<?php echo $extension_data['learn_more_link']; ?>" target="_blank">
469
  <?php printf( __( 'Learn more about %s', 'bestwebsoft' ), $name ); ?>
470
  </a>
471
  </p>
@@ -488,6 +488,8 @@ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
488
  if ( isset( $_POST["bws_newcontent_{$extension}"] ) &&
489
  $this->custom_code_args["{$extension}_writeable"] ) {
490
  $newcontent = trim( wp_unslash( $_POST["bws_newcontent_{$extension}"] ) );
 
 
491
 
492
  if ( ! empty( $newcontent ) && isset( $_POST["bws_custom_{$extension}_active"] ) ) {
493
  $this->custom_code_args["is_{$extension}_active"] = true;
@@ -701,7 +703,7 @@ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
701
  <?php $this->help_phrase(); ?>
702
  <hr>
703
  <?php if ( ! empty( $this->pro_page ) ) {
704
- $bws_license_key = ( isset( $_POST['bws_license_key'] ) ) ? stripslashes( esc_html( trim( $_POST['bws_license_key'] ) ) ) : "";
705
 
706
  if ( $this->pro_plugin_is_activated ) {
707
  deactivate_plugins( $this->plugin_basename ); ?>
@@ -711,7 +713,7 @@ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
711
  function bws_set_timeout() {
712
  i--;
713
  if ( 0 == i ) {
714
- window.location.href = '<?php echo $this->pro_page; ?>';
715
  } else {
716
  $( '#bws_timeout_counter' ).text( i );
717
  window.setTimeout( bws_set_timeout, 1000 );
@@ -721,7 +723,7 @@ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
721
  })(jQuery);
722
  </script>
723
  <p><strong><?php _e( 'Congratulations! Pro license is activated successfully.', 'bestwebsoft' ); ?></strong></p>
724
- <p><?php printf( __( 'You will be automatically redirected to the %s in %s seconds.', 'bestwebsoft' ), '<a href="' . $this->pro_page . '">' . __( 'Settings page', 'bestwebsoft' ) . '</a>', '<span id="bws_timeout_counter">7</span>' ); ?></p>
725
  <?php } else {
726
  $attr = '';
727
  if ( isset( $bstwbsftwppdtplgns_options['go_pro'][ $this->bws_license_plugin ]['count'] ) &&
@@ -732,17 +734,17 @@ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
732
  <tr>
733
  <th scope="row"><?php _e( 'License Key', 'bestwebsoft' ); ?></th>
734
  <td>
735
- <input <?php echo $attr; ?> type="text" name="bws_license_key" value="<?php echo $bws_license_key; ?>" />
736
- <input <?php echo $attr; ?> type="hidden" name="bws_license_plugin" value="<?php echo $this->bws_license_plugin; ?>" />
737
  <input <?php echo $attr; ?> type="submit" class="button button-secondary" name="bws_license_submit" value="<?php _e( 'Activate', 'bestwebsoft' ); ?>" />
738
  <div class="bws_info">
739
- <?php printf( __( 'Enter your license key to activate %s and get premium plugin features.', 'bestwebsoft' ), '<a href="' . $this->plugins_info['PluginURI'] . '?k=' . $this->link_key . '&pn=' . $this->link_pn . '&v=' . $this->plugins_info["Version"] . '&wp_v=' . $wp_version . '" target="_blank" title="' . $this->plugins_info["Name"] . ' Pro">' . $this->plugins_info["Name"] . ' Pro</a>' ); ?>
740
  </div>
741
  <?php if ( '' != $attr ) { ?>
742
  <p><?php _e( "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually.", 'bestwebsoft' ); ?></p>
743
  <?php }
744
  if ( $this->trial_days !== false )
745
- echo '<p>' . __( 'or', 'bestwebsoft' ) . ' <a href="' . $this->plugins_info['PluginURI'] . 'trial/?k=' . $this->link_key . '&pn=' . $this->link_pn . '&v=' . $this->plugins_info["Version"] . '&wp_v=' . $wp_version . '" target="_blank">' . sprintf( __( 'Start Your Free %s-Day Trial Now', 'bestwebsoft' ), $this->trial_days ) . '</a></p>'; ?>
746
  </td>
747
  </tr>
748
  </table>
@@ -754,7 +756,7 @@ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
754
  <tr>
755
  <th scope="row"><?php _e( 'License Key', 'bestwebsoft' ); ?></th>
756
  <td>
757
- <input type="text" maxlength="100" name="bws_license_key" value="<?php echo $license_key; ?>" />
758
  <input type="submit" class="button button-secondary" name="bws_license_submit" value="<?php _e( 'Check license key', 'bestwebsoft' ); ?>" />
759
  <div class="bws_info">
760
  <?php _e( 'If necessary, you can check if the license key is correct or reenter it in the field below.', 'bestwebsoft' ); ?>
@@ -783,7 +785,7 @@ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
783
  private function save_options_license_key() {
784
  global $wp_version, $bstwbsftwppdtplgns_options;
785
 
786
- $bws_license_key = ( isset( $_POST['bws_license_key'] ) ) ? stripslashes( esc_html( trim( $_POST['bws_license_key'] ) ) ) : '';
787
 
788
  if ( '' != $bws_license_key ) {
789
  if ( strlen( $bws_license_key ) != 18 ) {
@@ -840,7 +842,7 @@ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
840
  $message .= ' ' . __( 'Your license will expire on', 'bestwebsoft' ) . ' ' . $single_response->time_out . '.';
841
 
842
  if ( isset( $single_response->trial ) && $this->is_trial )
843
- $message .= ' ' . sprintf( __( 'In order to continue using the plugin it is necessary to buy a %s license.', 'bestwebsoft' ), '<a href="' . $this->plugins_info['PluginURI'] . '?k=' . $this->link_key . '&pn=' . $this->link_pn . '&v=' . $this->plugins_info["Version"] . '&wp_v=' . $wp_version . '" target="_blank" title="' . $this->plugins_info["Name"] . '">Pro</a>' );
844
  }
845
 
846
  if ( isset( $single_response->trial ) ) {
@@ -887,7 +889,7 @@ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
887
  /* Go Pro */
888
  } else {
889
 
890
- $bws_license_plugin = stripslashes( esc_html( $_POST['bws_license_plugin'] ) );
891
  if ( isset( $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] ) && $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['time'] > ( time() - (24 * 60 * 60) ) ) {
892
  $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] = $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] + 1;
893
  } else {
@@ -928,7 +930,7 @@ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
928
  } elseif ( "you_are_banned" == $single_response->package ) {
929
  $error = __( "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually.", 'bestwebsoft' );
930
  } elseif ( "time_out" == $single_response->package ) {
931
- $error = sprintf( __( "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates, you should extend it in your %s", 'bestwebsoft' ), ' <a href="https://bestwebsoft.com/client-area">Client Area</a>' );
932
  } elseif ( "duplicate_domen_for_trial" == $single_response->package ) {
933
  $error = __( "Unfortunately, the Pro licence was already installed to this domain. The Pro Trial license can be installed only once.", 'bestwebsoft' );
934
  }
@@ -954,7 +956,7 @@ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
954
  }
955
 
956
  if ( ! $received_content ) {
957
- $error = __( "Failed to download the zip archive. Please, upload the plugin manually", 'bestwebsoft' );
958
  } else {
959
  if ( is_writable( $this->upload_dir["path"] ) ) {
960
  $file_put_contents = $this->upload_dir["path"] . "/" . $zip_name[0] . ".zip";
@@ -966,20 +968,20 @@ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
966
  $zip->extractTo( WP_PLUGIN_DIR );
967
  $zip->close();
968
  } else {
969
- $error = __( "Failed to open the zip archive. Please, upload the plugin manually", 'bestwebsoft' );
970
  }
971
  } elseif ( class_exists( 'Phar' ) ) {
972
  $phar = new PharData( $file_put_contents );
973
  $phar->extractTo( WP_PLUGIN_DIR );
974
  } else {
975
- $error = __( "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually", 'bestwebsoft' );
976
  }
977
  @unlink( $file_put_contents );
978
  } else {
979
- $error = __( "Failed to download the zip archive. Please, upload the plugin manually", 'bestwebsoft' );
980
  }
981
  } else {
982
- $error = __( "UploadDir is not writable. Please, upload the plugin manually", 'bestwebsoft' );
983
  }
984
  }
985
 
@@ -998,7 +1000,7 @@ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
998
  }
999
  $this->pro_plugin_is_activated = true;
1000
  } elseif ( empty( $error ) ) {
1001
- $error = __( "Failed to download the zip archive. Please, upload the plugin manually", 'bestwebsoft' );
1002
  }
1003
  }
1004
  } else {
@@ -1051,22 +1053,22 @@ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
1051
  public function help_phrase() {
1052
  echo '<div class="bws_tab_description">' . __( 'Need Help?', 'bestwebsoft' ) . ' ';
1053
  if ( '' != $this->doc_link )
1054
- echo '<a href="' . $this->doc_link . '" target="_blank">' . __( 'Read the Instruction', 'bestwebsoft' );
1055
  else
1056
  echo '<a href="https://support.bestwebsoft.com/hc/en-us/" target="_blank">' . __( 'Visit Help Center', 'bestwebsoft' );
1057
  if ( '' != $this->doc_video_link )
1058
- echo '</a>' . ' ' . __( 'or', 'bestwebsoft' ) . ' ' . '<a href="' . $this->doc_video_link . '" target="_blank">' . __( 'Watch the Video', 'bestwebsoft' );
1059
  echo '</a></div>';
1060
  }
1061
 
1062
  public function bws_pro_block_links() {
1063
  global $wp_version; ?>
1064
  <div class="bws_pro_version_tooltip">
1065
- <a class="bws_button" href="<?php echo $this->plugins_info['PluginURI']; ?>?k=<?php echo $this->link_key; ?>&amp;pn=<?php echo $this->link_pn; ?>&amp;v=<?php echo $this->plugins_info["Version"]; ?>&amp;wp_v=<?php echo $wp_version; ?>" target="_blank" title="<?php echo $this->plugins_info["Name"]; ?>"><?php _e( 'Upgrade to Pro', 'bestwebsoft' ); ?></a>
1066
  <?php if ( $this->trial_days !== false ) { ?>
1067
  <span class="bws_trial_info">
1068
  <?php _e( 'or', 'bestwebsoft' ); ?>
1069
- <a href="<?php echo $this->plugins_info['PluginURI']; ?>?k=<?php echo $this->link_key; ?>&amp;pn=<?php echo $this->link_pn; ?>&amp;v=<?php echo $this->plugins_info["Version"]; ?>&amp;wp_v=<?php echo $wp_version; ?>" target="_blank" title="<?php echo $this->plugins_info["Name"]; ?>"><?php _e( 'Start Your Free Trial', 'bestwebsoft' ); ?></a>
1070
  </span>
1071
  <?php } ?>
1072
  <div class="clear"></div>
7
 
8
  if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
9
  class Bws_Settings_Tabs {
10
+ private $tabs;
11
  private $pro_plugin_is_activated = false;
12
  private $custom_code_args = array();
13
 
129
  <div id="post-body" class="metabox-holder columns-2">
130
  <div id="post-body-content" style="position: relative;">
131
  <?php $this->display_tabs(); ?>
132
+ </div><!-- #post-body-content -->
133
  <div id="postbox-container-1" class="postbox-container">
134
  <div class="meta-box-sortables ui-sortable">
135
  <div id="submitdiv" class="postbox">
154
  $daysleft = floor( ( $finish - $today ) / ( 60*60*24 ) );
155
  $license_status = sprintf( __( '%s day(-s) left', 'bestwebsoft' ), $daysleft );
156
  }
157
+ $license_status .= '. <a target="_blank" href="' . esc_url( $this->plugins_info['PluginURI'] ) . '">' . __( 'Upgrade to Pro', 'bestwebsoft' ) . '</a>';
158
  } else {
159
  $license_type = isset( $bstwbsftwppdtplgns_options['nonprofit'][ $this->plugin_basename ] ) ? 'Nonprofit Pro' : 'Pro';
160
  if ( $finish < $today ) {
261
  foreach ( $this->tabs as $tab_slug => $data ) {
262
  if ( ! empty( $data['is_pro'] ) && $this->hide_pro_tabs )
263
  continue; ?>
264
+ <div class="bws_tab ui-tabs-panel ui-widget-content ui-corner-bottom" id="<?php echo esc_attr( $this->prefix . '_' . $tab_slug . '_tab' ); ?>" aria-labelledby="ui-id-2" role="tabpanel" aria-hidden="false" style="display: block;">
265
  <?php $tab_slug = str_replace( '-', '_', $tab_slug );
266
  if ( method_exists( $this, 'tab_' . $tab_slug ) ) {
267
  call_user_func( array( $this, 'tab_' . $tab_slug ) );
400
 
401
  if ( file_exists( $real_file ) ) {
402
  update_recently_edited( $real_file );
403
+ $this->custom_code_args["content_{$extension}"] = file_get_contents( $real_file );
404
  if ( ( $this->is_multisite && isset( $bstwbsftwppdtplgns_options['custom_code'][ $this->custom_code_args['blog_id'] ][ $file ] ) ) ||
405
  ( ! $this->is_multisite && isset( $bstwbsftwppdtplgns_options['custom_code'][ $file ] ) ) ) {
406
  $this->custom_code_args["is_{$extension}_active"] = true;
432
  'css' => array( 'description' => __( 'These styles will be added to the header on all pages of your site.', 'bestwebsoft' ),
433
  'learn_more_link' => 'https://developer.mozilla.org/en-US/docs/Web/Guide/CSS/Getting_started'
434
  ),
435
+ 'php' => array( 'description' => sprintf( __( 'This PHP code will be hooked to the %s action and will be printed on front end only.', 'bestwebsoft' ), '<a href="https://codex.wordpress.org/Plugin_API/Action_Reference/init" target="_blank"><code>init</code></a>' ),
436
  'learn_more_link' => 'http://php.net/'
437
  ),
438
  'js' => array( 'description' => __( 'These code will be added to the header on all pages of your site.', 'bestwebsoft' ),
461
  <?php printf( __( 'Activate custom %s code.', 'bestwebsoft' ), $name ); ?>
462
  </label>
463
  </p>
464
+ <textarea cols="70" rows="25" name="bws_newcontent_<?php echo $extension; ?>" id="bws_newcontent_<?php echo $extension; ?>"><?php if ( isset( $this->custom_code_args["content_{$extension}"] ) ) echo esc_textarea( $this->custom_code_args["content_{$extension}"] ); ?></textarea>
465
  <p class="bws_info">
466
  <?php echo $extension_data['description']; ?>
467
  <br>
468
+ <a href="<?php echo esc_url( $extension_data['learn_more_link'] ); ?>" target="_blank">
469
  <?php printf( __( 'Learn more about %s', 'bestwebsoft' ), $name ); ?>
470
  </a>
471
  </p>
488
  if ( isset( $_POST["bws_newcontent_{$extension}"] ) &&
489
  $this->custom_code_args["{$extension}_writeable"] ) {
490
  $newcontent = trim( wp_unslash( $_POST["bws_newcontent_{$extension}"] ) );
491
+ if ( 'css' == $extension )
492
+ $newcontent = wp_kses( $newcontent, 'strip' );
493
 
494
  if ( ! empty( $newcontent ) && isset( $_POST["bws_custom_{$extension}_active"] ) ) {
495
  $this->custom_code_args["is_{$extension}_active"] = true;
703
  <?php $this->help_phrase(); ?>
704
  <hr>
705
  <?php if ( ! empty( $this->pro_page ) ) {
706
+ $bws_license_key = ( isset( $_POST['bws_license_key'] ) ) ? stripslashes( sanitize_text_field( $_POST['bws_license_key'] ) ) : "";
707
 
708
  if ( $this->pro_plugin_is_activated ) {
709
  deactivate_plugins( $this->plugin_basename ); ?>
713
  function bws_set_timeout() {
714
  i--;
715
  if ( 0 == i ) {
716
+ window.location.href = '<?php echo esc_url( self_admin_url( $this->pro_page ) ); ?>';
717
  } else {
718
  $( '#bws_timeout_counter' ).text( i );
719
  window.setTimeout( bws_set_timeout, 1000 );
723
  })(jQuery);
724
  </script>
725
  <p><strong><?php _e( 'Congratulations! Pro license is activated successfully.', 'bestwebsoft' ); ?></strong></p>
726
+ <p><?php printf( __( 'You will be automatically redirected to the %s in %s seconds.', 'bestwebsoft' ), '<a href="' . esc_url( self_admin_url( $this->pro_page ) ) . '">' . __( 'Settings page', 'bestwebsoft' ) . '</a>', '<span id="bws_timeout_counter">7</span>' ); ?></p>
727
  <?php } else {
728
  $attr = '';
729
  if ( isset( $bstwbsftwppdtplgns_options['go_pro'][ $this->bws_license_plugin ]['count'] ) &&
734
  <tr>
735
  <th scope="row"><?php _e( 'License Key', 'bestwebsoft' ); ?></th>
736
  <td>
737
+ <input <?php echo $attr; ?> type="text" name="bws_license_key" value="<?php echo esc_attr( $bws_license_key ); ?>" />
738
+ <input <?php echo $attr; ?> type="hidden" name="bws_license_plugin" value="<?php echo esc_attr( $this->bws_license_plugin ); ?>" />
739
  <input <?php echo $attr; ?> type="submit" class="button button-secondary" name="bws_license_submit" value="<?php _e( 'Activate', 'bestwebsoft' ); ?>" />
740
  <div class="bws_info">
741
+ <?php printf( __( 'Enter your license key to activate %s and get premium plugin features.', 'bestwebsoft' ), '<a href="' . esc_url( $this->plugins_info['PluginURI'] . '?k=' . $this->link_key . '&pn=' . $this->link_pn . '&v=' . $this->plugins_info["Version"] . '&wp_v=' . $wp_version ) . '" target="_blank" title="' . $this->plugins_info["Name"] . ' Pro">' . $this->plugins_info["Name"] . ' Pro</a>' ); ?>
742
  </div>
743
  <?php if ( '' != $attr ) { ?>
744
  <p><?php _e( "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually.", 'bestwebsoft' ); ?></p>
745
  <?php }
746
  if ( $this->trial_days !== false )
747
+ echo '<p>' . __( 'or', 'bestwebsoft' ) . ' <a href="' . esc_url( $this->plugins_info['PluginURI'] . 'trial/?k=' . $this->link_key . '&pn=' . $this->link_pn . '&v=' . $this->plugins_info["Version"] . '&wp_v=' . $wp_version ) . '" target="_blank">' . sprintf( __( 'Start Your Free %s-Day Trial Now', 'bestwebsoft' ), $this->trial_days ) . '</a></p>'; ?>
748
  </td>
749
  </tr>
750
  </table>
756
  <tr>
757
  <th scope="row"><?php _e( 'License Key', 'bestwebsoft' ); ?></th>
758
  <td>
759
+ <input type="text" maxlength="100" name="bws_license_key" value="<?php echo esc_attr( $license_key ); ?>" />
760
  <input type="submit" class="button button-secondary" name="bws_license_submit" value="<?php _e( 'Check license key', 'bestwebsoft' ); ?>" />
761
  <div class="bws_info">
762
  <?php _e( 'If necessary, you can check if the license key is correct or reenter it in the field below.', 'bestwebsoft' ); ?>
785
  private function save_options_license_key() {
786
  global $wp_version, $bstwbsftwppdtplgns_options;
787
 
788
+ $bws_license_key = ( isset( $_POST['bws_license_key'] ) ) ? stripslashes( sanitize_text_field( $_POST['bws_license_key'] ) ) : '';
789
 
790
  if ( '' != $bws_license_key ) {
791
  if ( strlen( $bws_license_key ) != 18 ) {
842
  $message .= ' ' . __( 'Your license will expire on', 'bestwebsoft' ) . ' ' . $single_response->time_out . '.';
843
 
844
  if ( isset( $single_response->trial ) && $this->is_trial )
845
+ $message .= ' ' . sprintf( __( 'In order to continue using the plugin it is necessary to buy a %s license.', 'bestwebsoft' ), '<a href="' . esc_url( $this->plugins_info['PluginURI'] . '?k=' . $this->link_key . '&pn=' . $this->link_pn . '&v=' . $this->plugins_info["Version"] . '&wp_v=' . $wp_version ) . '" target="_blank" title="' . $this->plugins_info["Name"] . '">Pro</a>' );
846
  }
847
 
848
  if ( isset( $single_response->trial ) ) {
889
  /* Go Pro */
890
  } else {
891
 
892
+ $bws_license_plugin = stripslashes( sanitize_text_field( $_POST['bws_license_plugin'] ) );
893
  if ( isset( $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] ) && $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['time'] > ( time() - (24 * 60 * 60) ) ) {
894
  $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] = $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] + 1;
895
  } else {
930
  } elseif ( "you_are_banned" == $single_response->package ) {
931
  $error = __( "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually.", 'bestwebsoft' );
932
  } elseif ( "time_out" == $single_response->package ) {
933
+ $error = sprintf( __( "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates, you should extend it in your %s.", 'bestwebsoft' ), ' <a href="https://bestwebsoft.com/client-area">Client Area</a>' );
934
  } elseif ( "duplicate_domen_for_trial" == $single_response->package ) {
935
  $error = __( "Unfortunately, the Pro licence was already installed to this domain. The Pro Trial license can be installed only once.", 'bestwebsoft' );
936
  }
956
  }
957
 
958
  if ( ! $received_content ) {
959
+ $error = __( "Failed to download the zip archive. Please, upload the plugin manually.", 'bestwebsoft' );
960
  } else {
961
  if ( is_writable( $this->upload_dir["path"] ) ) {
962
  $file_put_contents = $this->upload_dir["path"] . "/" . $zip_name[0] . ".zip";
968
  $zip->extractTo( WP_PLUGIN_DIR );
969
  $zip->close();
970
  } else {
971
+ $error = __( "Failed to open the zip archive. Please, upload the plugin manually.", 'bestwebsoft' );
972
  }
973
  } elseif ( class_exists( 'Phar' ) ) {
974
  $phar = new PharData( $file_put_contents );
975
  $phar->extractTo( WP_PLUGIN_DIR );
976
  } else {
977
+ $error = __( "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually.", 'bestwebsoft' );
978
  }
979
  @unlink( $file_put_contents );
980
  } else {
981
+ $error = __( "Failed to download the zip archive. Please, upload the plugin manually.", 'bestwebsoft' );
982
  }
983
  } else {
984
+ $error = __( "UploadDir is not writable. Please, upload the plugin manually.", 'bestwebsoft' );
985
  }
986
  }
987
 
1000
  }
1001
  $this->pro_plugin_is_activated = true;
1002
  } elseif ( empty( $error ) ) {
1003
+ $error = __( "Failed to download the zip archive. Please, upload the plugin manually.", 'bestwebsoft' );
1004
  }
1005
  }
1006
  } else {
1053
  public function help_phrase() {
1054
  echo '<div class="bws_tab_description">' . __( 'Need Help?', 'bestwebsoft' ) . ' ';
1055
  if ( '' != $this->doc_link )
1056
+ echo '<a href="' . esc_url( $this->doc_link ) . '" target="_blank">' . __( 'Read the Instruction', 'bestwebsoft' );
1057
  else
1058
  echo '<a href="https://support.bestwebsoft.com/hc/en-us/" target="_blank">' . __( 'Visit Help Center', 'bestwebsoft' );
1059
  if ( '' != $this->doc_video_link )
1060
+ echo '</a>' . ' ' . __( 'or', 'bestwebsoft' ) . ' ' . '<a href="' . esc_url( $this->doc_video_link ) . '" target="_blank">' . __( 'Watch the Video', 'bestwebsoft' );
1061
  echo '</a></div>';
1062
  }
1063
 
1064
  public function bws_pro_block_links() {
1065
  global $wp_version; ?>
1066
  <div class="bws_pro_version_tooltip">
1067
+ <a class="bws_button" href="<?php echo esc_url( $this->plugins_info['PluginURI'] ); ?>?k=<?php echo $this->link_key; ?>&amp;pn=<?php echo $this->link_pn; ?>&amp;v=<?php echo $this->plugins_info["Version"]; ?>&amp;wp_v=<?php echo $wp_version; ?>" target="_blank" title="<?php echo $this->plugins_info["Name"]; ?>"><?php _e( 'Upgrade to Pro', 'bestwebsoft' ); ?></a>
1068
  <?php if ( $this->trial_days !== false ) { ?>
1069
  <span class="bws_trial_info">
1070
  <?php _e( 'or', 'bestwebsoft' ); ?>
1071
+ <a href="<?php echo esc_url( $this->plugins_info['PluginURI'] . '?k=' . $this->link_key . '&pn=' . $this->link_pn . '&v=' . $this->plugins_info["Version"] . '&wp_v=' . $wp_version ); ?>" target="_blank" title="<?php echo $this->plugins_info["Name"]; ?>"><?php _e( 'Start Your Free Trial', 'bestwebsoft' ); ?></a>
1072
  </span>
1073
  <?php } ?>
1074
  <div class="clear"></div>
bws_menu/css/modal.css CHANGED
@@ -6,13 +6,13 @@
6
  top: 0;
7
  z-index: 100000;
8
  display: none;
9
- background: rgba(0, 0, 0, 0.6)
10
  }
11
  .bws-modal.active {
12
- display: block
13
  }
14
  .bws-modal.active:before {
15
- display: block
16
  }
17
  .bws-modal .bws-modal-dialog {
18
  background: transparent;
@@ -22,10 +22,10 @@
22
  padding-bottom: 30px;
23
  top: -100%;
24
  z-index: 100001;
25
- width: 596px
26
  }
27
  .bws-modal.active .bws-modal-dialog {
28
- top: 10%
29
  }
30
  .bws-modal .bws-modal-body,
31
  .bws-modal .bws-modal-footer {
@@ -34,7 +34,7 @@
34
  padding: 25px 25px 15px;
35
  }
36
  .bws-modal .bws-modal-body {
37
- border-bottom: 0
38
  }
39
  .bws-modal .bws-modal-body p {
40
  font-size: 1.3em;
@@ -46,44 +46,44 @@
46
  }
47
  .bws-modal .bws-modal-footer {
48
  border-top: #eeeeee solid 1px;
49
- text-align: right
50
  }
51
- .bws-modal .bws-modal-footer>.button {
52
- margin: 0 7px
53
  }
54
- .bws-modal .bws-modal-footer>.button:first-child {
55
- margin: 0
56
  }
57
  .bws-modal .bws-modal-panel>.notice.inline {
58
  margin: 0;
59
- display: none
60
  }
61
  .bws-modal .bws-modal-panel:not(.active) {
62
- display: none
63
  }
64
  body.has-bws-modal {
65
- overflow: hidden
66
  }
67
  .bws-modal.bws-modal-deactivation-feedback .bws-modal-reason-input,
68
  .bws-modal.bws-modal-deactivation-feedback .bws-modal-internal-message {
69
- margin: 3px 0 3px 22px
70
  }
71
  .bws-modal.bws-modal-deactivation-feedback .bws-modal-reason-input input,
72
  .bws-modal.bws-modal-deactivation-feedback .bws-modal-reason-input textarea,
73
  .bws-modal.bws-modal-deactivation-feedback .bws-modal-internal-message input,
74
  .bws-modal.bws-modal-deactivation-feedback .bws-modal-internal-message textarea {
75
- width: 100%
76
  }
77
  .bws-modal.bws-modal-deactivation-feedback li.bws-modal-reason.has-internal-message .bws-modal-internal-message {
78
  border: 1px solid #ccc;
79
  padding: 7px;
80
- display: none
81
  }
82
  .bws-modal.bws-modal-deactivation-feedback .bws-modal-anonymous-label {
83
- float: left
84
  }
85
  .bws-modal.bws-modal-deactivation-feedback .bws-modal-panel {
86
- margin-top: 0 !important
87
  }
88
 
89
  @media (max-width: 650px) {
@@ -92,23 +92,23 @@ body.has-bws-modal {
92
  box-sizing: border-box;
93
  padding-left: 10px;
94
  padding-right: 10px;
95
- width: 100%
96
  }
97
  .bws-modal .bws-modal-dialog .bws-modal-panel>h3>strong {
98
- font-size: 1.3em
99
  }
100
  .bws-modal.bws-modal-deactivation-feedback li.bws-modal-reason li.bws-modal-reason {
101
- margin-bottom: 10px
102
  }
103
  .bws-modal.bws-modal-deactivation-feedback li.bws-modal-reason li.bws-modal-reason .bws-modal-reason-input,
104
  .bws-modal.bws-modal-deactivation-feedback li.bws-modal-reason li.bws-modal-reason .bws-modal-internal-message {
105
- margin-left: 29px
106
  }
107
  .bws-modal.bws-modal-deactivation-feedback li.bws-modal-reason li.bws-modal-reason label {
108
- display: table
109
  }
110
  .bws-modal.bws-modal-deactivation-feedback li.bws-modal-reason li.bws-modal-reason label>span {
111
  display: table-cell;
112
- font-size: 1.3em
113
  }
114
  }
6
  top: 0;
7
  z-index: 100000;
8
  display: none;
9
+ background: rgba(0, 0, 0, 0.6);
10
  }
11
  .bws-modal.active {
12
+ display: block;
13
  }
14
  .bws-modal.active:before {
15
+ display: block;
16
  }
17
  .bws-modal .bws-modal-dialog {
18
  background: transparent;
22
  padding-bottom: 30px;
23
  top: -100%;
24
  z-index: 100001;
25
+ width: 596px;
26
  }
27
  .bws-modal.active .bws-modal-dialog {
28
+ top: 10%;
29
  }
30
  .bws-modal .bws-modal-body,
31
  .bws-modal .bws-modal-footer {
34
  padding: 25px 25px 15px;
35
  }
36
  .bws-modal .bws-modal-body {
37
+ border-bottom: 0;
38
  }
39
  .bws-modal .bws-modal-body p {
40
  font-size: 1.3em;
46
  }
47
  .bws-modal .bws-modal-footer {
48
  border-top: #eeeeee solid 1px;
49
+ text-align: right;
50
  }
51
+ .bws-modal .bws-modal-footer .button {
52
+ margin: 0 7px;
53
  }
54
+ .bws-modal .bws-modal-footer .button:first-child {
55
+ margin: 0;
56
  }
57
  .bws-modal .bws-modal-panel>.notice.inline {
58
  margin: 0;
59
+ display: none;
60
  }
61
  .bws-modal .bws-modal-panel:not(.active) {
62
+ display: none;
63
  }
64
  body.has-bws-modal {
65
+ overflow: hidden;
66
  }
67
  .bws-modal.bws-modal-deactivation-feedback .bws-modal-reason-input,
68
  .bws-modal.bws-modal-deactivation-feedback .bws-modal-internal-message {
69
+ margin: 3px 0 3px 22px;
70
  }
71
  .bws-modal.bws-modal-deactivation-feedback .bws-modal-reason-input input,
72
  .bws-modal.bws-modal-deactivation-feedback .bws-modal-reason-input textarea,
73
  .bws-modal.bws-modal-deactivation-feedback .bws-modal-internal-message input,
74
  .bws-modal.bws-modal-deactivation-feedback .bws-modal-internal-message textarea {
75
+ width: 100%;
76
  }
77
  .bws-modal.bws-modal-deactivation-feedback li.bws-modal-reason.has-internal-message .bws-modal-internal-message {
78
  border: 1px solid #ccc;
79
  padding: 7px;
80
+ display: none;
81
  }
82
  .bws-modal.bws-modal-deactivation-feedback .bws-modal-anonymous-label {
83
+ padding-top: 15px;
84
  }
85
  .bws-modal.bws-modal-deactivation-feedback .bws-modal-panel {
86
+ margin-top: 0 !important;
87
  }
88
 
89
  @media (max-width: 650px) {
92
  box-sizing: border-box;
93
  padding-left: 10px;
94
  padding-right: 10px;
95
+ width: 100%;
96
  }
97
  .bws-modal .bws-modal-dialog .bws-modal-panel>h3>strong {
98
+ font-size: 1.3em;
99
  }
100
  .bws-modal.bws-modal-deactivation-feedback li.bws-modal-reason li.bws-modal-reason {
101
+ margin-bottom: 10px;
102
  }
103
  .bws-modal.bws-modal-deactivation-feedback li.bws-modal-reason li.bws-modal-reason .bws-modal-reason-input,
104
  .bws-modal.bws-modal-deactivation-feedback li.bws-modal-reason li.bws-modal-reason .bws-modal-internal-message {
105
+ margin-left: 29px;
106
  }
107
  .bws-modal.bws-modal-deactivation-feedback li.bws-modal-reason li.bws-modal-reason label {
108
+ display: table;
109
  }
110
  .bws-modal.bws-modal-deactivation-feedback li.bws-modal-reason li.bws-modal-reason label>span {
111
  display: table-cell;
112
+ font-size: 1.3em;
113
  }
114
  }
bws_menu/deactivation-form.php CHANGED
@@ -121,15 +121,17 @@ if ( ! function_exists( 'bws_add_deactivation_feedback_dialog_box' ) ) {
121
  + ' <div class="bws-modal-dialog">'
122
  + ' <div class="bws-modal-body">'
123
  + ' <h2><?php _e( 'Quick Feedback', 'bestwebsoft' ); ?></h2>'
124
- + ' <div class="bws-modal-panel active"><p><?php _e( 'If you have a moment, please let us know why you are deactivating', 'bestwebsoft' ); ?>:</p><ul>' + <?php echo json_encode( $reasons_list_items_html ); ?> + '</ul></div>'
 
 
 
 
 
125
  + ' </div>'
126
  + ' <div class="bws-modal-footer">'
127
- + ' <label class="bws-modal-anonymous-label">'
128
- + ' <input type="checkbox" />'
129
- + ' <?php _e( 'Anonymous feedback', 'bestwebsoft' ); ?>'
130
- + ' </label>'
131
  + ' <a href="#" class="button button-secondary bws-modal-button-close"><?php _e( 'Cancel', 'bestwebsoft' ); ?></a>'
132
  + ' <a href="#" class="button button-primary bws-modal-button-deactivate"></a>'
 
133
  + ' </div>'
134
  + ' </div>'
135
  + '</div>',
@@ -205,7 +207,7 @@ if ( ! function_exists( 'bws_add_deactivation_feedback_dialog_box' ) ) {
205
  return;
206
  }
207
 
208
- var $selected_reason = $radio.parents('li:first'),
209
  $input = $selected_reason.find( 'textarea, input[type="text"]' ),
210
  userReason = ( 0 !== $input.length ) ? $input.val().trim() : '';
211
 
@@ -213,6 +215,8 @@ if ( ! function_exists( 'bws_add_deactivation_feedback_dialog_box' ) ) {
213
  return;
214
  }
215
 
 
 
216
  $.ajax({
217
  url : ajaxurl,
218
  method : 'POST',
@@ -221,7 +225,7 @@ if ( ! function_exists( 'bws_add_deactivation_feedback_dialog_box' ) ) {
221
  'plugin' : '<?php echo $basename; ?>',
222
  'reason_id' : $radio.val(),
223
  'reason_info' : userReason,
224
- 'is_anonymous' : ( $anonymousFeedback.find( 'input' ).prop( 'checked' ) ),
225
  'bws_ajax_nonce' : '<?php echo wp_create_nonce( 'bws_ajax_nonce' ); ?>'
226
  },
227
  beforeSend: function() {
@@ -316,7 +320,7 @@ if ( ! function_exists( 'bws_add_deactivation_feedback_dialog_box' ) ) {
316
 
317
  $modal.find( '.message' ).hide();
318
 
319
- $anonymousFeedback.find( 'input' ).prop( 'checked', false );
320
 
321
  /* Hide, since by default there is no selected reason.*/
322
  $anonymousFeedback.hide();
@@ -353,7 +357,7 @@ if ( ! function_exists( 'bws_add_deactivation_feedback_dialog_box' ) ) {
353
  */
354
  if ( ! function_exists( 'bws_submit_uninstall_reason_action' ) ) {
355
  function bws_submit_uninstall_reason_action() {
356
- global $bstwbsftwppdtplgns_options, $wp_version, $bstwbsftwppdtplgns_active_plugins;
357
 
358
  wp_verify_nonce( $_REQUEST['bws_ajax_nonce'], 'bws_ajax_nonce' );
359
 
@@ -368,7 +372,7 @@ if ( ! function_exists( 'bws_submit_uninstall_reason_action' ) ) {
368
  if ( ! empty( $reason_info ) ) {
369
  $reason_info = substr( $reason_info, 0, 255 );
370
  }
371
- $is_anonymous = isset( $_REQUEST['is_anonymous'] ) && ( 1 == $_REQUEST['is_anonymous'] || 'true' == strtolower( $_REQUEST['is_anonymous'] ) );
372
 
373
  $options = array(
374
  'product' => $basename,
@@ -389,6 +393,8 @@ if ( ! function_exists( 'bws_submit_uninstall_reason_action' ) ) {
389
  $options['is_active'] = false;
390
  $options['version'] = $bstwbsftwppdtplgns_active_plugins[ $basename ]['Version'];
391
  }
 
 
392
  }
393
 
394
  /* send data */
121
  + ' <div class="bws-modal-dialog">'
122
  + ' <div class="bws-modal-body">'
123
  + ' <h2><?php _e( 'Quick Feedback', 'bestwebsoft' ); ?></h2>'
124
+ + ' <div class="bws-modal-panel active"><p><?php _e( 'If you have a moment, please let us know why you are deactivating', 'bestwebsoft' ); ?>:</p><ul>' + <?php echo json_encode( $reasons_list_items_html ); ?> + '</ul>'
125
+ + ' <label class="bws-modal-anonymous-label">'
126
+ + ' <input type="checkbox" checked="checked" />'
127
+ + ' <?php _e( 'Send website data and allow to contact me back', 'bestwebsoft' ); ?>'
128
+ + ' </label>'
129
+ + ' </div>'
130
  + ' </div>'
131
  + ' <div class="bws-modal-footer">'
 
 
 
 
132
  + ' <a href="#" class="button button-secondary bws-modal-button-close"><?php _e( 'Cancel', 'bestwebsoft' ); ?></a>'
133
  + ' <a href="#" class="button button-primary bws-modal-button-deactivate"></a>'
134
+ + ' <div class="clear"></div>'
135
  + ' </div>'
136
  + ' </div>'
137
  + '</div>',
207
  return;
208
  }
209
 
210
+ var $selected_reason = $radio.parents( 'li:first' ),
211
  $input = $selected_reason.find( 'textarea, input[type="text"]' ),
212
  userReason = ( 0 !== $input.length ) ? $input.val().trim() : '';
213
 
215
  return;
216
  }
217
 
218
+ var is_anonymous = ( $anonymousFeedback.find( 'input' ).is( ':checked' ) ) ? 0 : 1;
219
+
220
  $.ajax({
221
  url : ajaxurl,
222
  method : 'POST',
225
  'plugin' : '<?php echo $basename; ?>',
226
  'reason_id' : $radio.val(),
227
  'reason_info' : userReason,
228
+ 'is_anonymous' : is_anonymous,
229
  'bws_ajax_nonce' : '<?php echo wp_create_nonce( 'bws_ajax_nonce' ); ?>'
230
  },
231
  beforeSend: function() {
320
 
321
  $modal.find( '.message' ).hide();
322
 
323
+ $anonymousFeedback.find( 'input' ).prop( 'checked', true );
324
 
325
  /* Hide, since by default there is no selected reason.*/
326
  $anonymousFeedback.hide();
357
  */
358
  if ( ! function_exists( 'bws_submit_uninstall_reason_action' ) ) {
359
  function bws_submit_uninstall_reason_action() {
360
+ global $bstwbsftwppdtplgns_options, $wp_version, $bstwbsftwppdtplgns_active_plugins, $current_user;
361
 
362
  wp_verify_nonce( $_REQUEST['bws_ajax_nonce'], 'bws_ajax_nonce' );
363
 
372
  if ( ! empty( $reason_info ) ) {
373
  $reason_info = substr( $reason_info, 0, 255 );
374
  }
375
+ $is_anonymous = isset( $_REQUEST['is_anonymous'] ) && 1 == $_REQUEST['is_anonymous'];
376
 
377
  $options = array(
378
  'product' => $basename,
393
  $options['is_active'] = false;
394
  $options['version'] = $bstwbsftwppdtplgns_active_plugins[ $basename ]['Version'];
395
  }
396
+
397
+ $options['email'] = $current_user->data->user_email;
398
  }
399
 
400
  /* send data */
bws_menu/deprecated.php CHANGED
@@ -107,7 +107,7 @@ if ( ! function_exists( 'bws_check_pro_license' ) ) {
107
  $result = array();
108
 
109
  if ( isset( $_POST['bws_license_submit'] ) && check_admin_referer( $plugin_basename, 'bws_license_nonce_name' ) ) {
110
- $license_key = isset( $_POST['bws_license_key'] ) ? stripslashes( esc_html( trim( $_POST['bws_license_key'] ) ) ) : '';
111
 
112
  if ( '' != $license_key ) {
113
 
@@ -222,7 +222,7 @@ if ( ! function_exists ( 'bws_check_pro_license_form' ) ) {
222
  <form method="post" action="">
223
  <p><?php echo _e( 'If necessary, you can check if the license key is correct or reenter it in the field below. You can find your license key on your personal page - Client Area - on our website', 'bestwebsoft' ) . ' <a href="https://bestwebsoft.com/client-area">https://bestwebsoft.com/client-area</a> ' . __( '(your username is the email address specified during the purchase). If necessary, please submit "Lost your password?" request.', 'bestwebsoft' ); ?></p>
224
  <p>
225
- <input type="text" maxlength="100" name="bws_license_key" value="<?php echo $license_key; ?>" />
226
  <input type="hidden" name="bws_license_submit" value="submit" />
227
  <input type="submit" class="button" value="<?php _e( 'Check license key', 'bestwebsoft' ) ?>" />
228
  <?php wp_nonce_field( $plugin_basename, 'bws_license_nonce_name' ); ?>
@@ -239,12 +239,12 @@ if ( ! function_exists ( 'bws_check_pro_license_form' ) ) {
239
  if ( ! function_exists( 'bws_go_pro_from_trial_tab' ) ) {
240
  function bws_go_pro_from_trial_tab( $plugin_info, $plugin_basename, $page, $link_slug, $link_key, $link_pn, $trial_license_is_set = true ) {
241
  global $wp_version, $bstwbsftwppdtplgns_options;
242
- $bws_license_key = ( isset( $_POST['bws_license_key'] ) ) ? stripslashes( esc_html( trim( $_POST['bws_license_key'] ) ) ) : "";
243
  if ( $trial_license_is_set ) { ?>
244
  <form method="post" action="">
245
  <p>
246
- <?php echo sprintf( __( 'In order to continue using the plugin it is necessary to buy a %s license.', 'bestwebsoft' ), '<a href="https://bestwebsoft.com/products/wordpress/plugins/' . $link_slug . '/?k=' . $link_key . '&amp;pn=' . $link_pn . '&amp;v=' . $plugin_info["Version"] . '&amp;wp_v=' . $wp_version .'" target="_blank" title="' . $plugin_info["Name"] . '">Pro</a>' ) . ' ';
247
- _e( 'After that, you can activate it by entering your license key.', 'bestwebsoft' ); ?><br />
248
  <span class="bws_info">
249
  <?php _e( 'License key can be found in the', 'bestwebsoft' ); ?>
250
  <a href="https://bestwebsoft.com/wp-login.php">Client Area</a>
@@ -262,22 +262,23 @@ if ( ! function_exists( 'bws_go_pro_from_trial_tab' ) ) {
262
  <?php } else { ?>
263
  <p>
264
  <input type="text" maxlength="100" name="bws_license_key" value="" />
265
- <input type="hidden" name="bws_license_plugin" value="<?php echo $plugin_basename; ?>" />
266
  <input type="hidden" name="bws_license_submit" value="submit" />
267
  <input type="submit" class="button-primary" value="<?php _e( 'Activate', 'bestwebsoft' ); ?>" />
268
  <?php wp_nonce_field( $plugin_basename, 'bws_license_nonce_name' ); ?>
269
  </p>
270
  <?php } ?>
271
  </form>
272
- <?php } else { ?>
 
273
  <script type="text/javascript">
274
  window.setTimeout( function() {
275
- window.location.href = 'admin.php?page=<?php echo $page; ?>';
276
  }, 5000 );
277
  </script>
278
  <p><?php _e( "Congratulations! The Pro license of the plugin is activated successfully.", 'bestwebsoft' ); ?></p>
279
  <p>
280
- <?php _e( "Please, go to", 'bestwebsoft' ); ?> <a href="admin.php?page=<?php echo $page; ?>"><?php _e( 'the setting page', 'bestwebsoft' ); ?></a>
281
  (<?php _e( "You will be redirected automatically in 5 seconds.", 'bestwebsoft' ); ?>)
282
  </p>
283
  <?php }
@@ -294,7 +295,7 @@ if ( ! function_exists( 'bws_go_pro_tab_check' ) ) {
294
  global $wp_version, $bstwbsftwppdtplgns_options;
295
  $result = array();
296
 
297
- $bws_license_key = ( isset( $_POST['bws_license_key'] ) ) ? stripslashes( esc_html( trim( $_POST['bws_license_key'] ) ) ) : "";
298
 
299
  if ( ! empty( $plugin_options_name ) && isset( $_POST['bws_hide_premium_options_submit'] ) && check_admin_referer( $plugin_basename, 'bws_license_nonce_name' ) ) {
300
 
@@ -321,7 +322,7 @@ if ( ! function_exists( 'bws_go_pro_tab_check' ) ) {
321
  if ( strlen( $bws_license_key ) != 18 ) {
322
  $result['error'] = __( "Wrong license key", 'bestwebsoft' );
323
  } else {
324
- $bws_license_plugin = stripslashes( esc_html( $_POST['bws_license_plugin'] ) );
325
  if ( isset( $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] ) && $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['time'] > ( time() - (24 * 60 * 60) ) ) {
326
  $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] = $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] + 1;
327
  } else {
@@ -527,7 +528,8 @@ if ( ! function_exists( 'bws_custom_code_tab' ) ) {
527
  if ( isset( $_REQUEST['bws_update_custom_code'] ) && check_admin_referer( 'bws_update_' . $css_file ) ) {
528
 
529
  /* CSS */
530
- $newcontent_css = wp_unslash( $_POST['bws_newcontent_css'] );
 
531
  if ( ! empty( $newcontent_css ) && isset( $_REQUEST['bws_custom_css_active'] ) ) {
532
  if ( $is_multisite )
533
  $bstwbsftwppdtplgns_options['custom_code'][ $blog_id ][ $css_file ] = $upload_dir['baseurl'] . '/bws-custom-code/' . $css_file;
@@ -551,7 +553,7 @@ if ( ! function_exists( 'bws_custom_code_tab' ) ) {
551
  }
552
 
553
  /* PHP */
554
- $newcontent_php = wp_unslash( trim( $_POST['bws_newcontent_php'] ) );
555
  if ( file_exists( $index_file ) ) {
556
  if ( ! empty( $newcontent_php ) && isset( $_REQUEST['bws_custom_php_active'] ) ) {
557
  if ( $is_multisite )
@@ -591,7 +593,7 @@ if ( ! function_exists( 'bws_custom_code_tab' ) ) {
591
 
592
  if ( file_exists( $real_css_file ) ) {
593
  update_recently_edited( $real_css_file );
594
- $content_css = esc_textarea( file_get_contents( $real_css_file ) );
595
  if ( ( $is_multisite && isset( $bstwbsftwppdtplgns_options['custom_code'][ $blog_id ][ $css_file ] ) ) ||
596
  ( ! $is_multisite && isset( $bstwbsftwppdtplgns_options['custom_code'][ $css_file ] ) ) ) {
597
  $is_css_active = true;
@@ -599,7 +601,7 @@ if ( ! function_exists( 'bws_custom_code_tab' ) ) {
599
  }
600
  if ( file_exists( $real_php_file ) ) {
601
  update_recently_edited( $real_php_file );
602
- $content_php = esc_textarea( file_get_contents( $real_php_file ) );
603
  if ( ( $is_multisite && isset( $bstwbsftwppdtplgns_options['custom_code'][ $blog_id ][ $php_file ] ) ) ||
604
  ( ! $is_multisite && isset( $bstwbsftwppdtplgns_options['custom_code'][ $php_file ] ) ) ) {
605
  $is_php_active = true;
@@ -617,7 +619,7 @@ if ( ! function_exists( 'bws_custom_code_tab' ) ) {
617
  <?php if ( 'css' == $extension )
618
  _e( 'These styles will be added to the header on all pages of your site.', 'bestwebsoft' );
619
  else
620
- printf( __( 'This PHP code will be hooked to the %s action and will be printed on front end only.', 'bestwebsoft' ), '<a href="http://codex.wordpress.org/Plugin_API/Action_Reference/init" target="_blank"><code>init</code></a>' ); ?>
621
  </p>
622
  <p><big>
623
  <?php if ( ! file_exists( ${"real_{$extension}_file"} ) || ( is_writeable( ${"real_{$extension}_file"} ) ) ) {
@@ -627,7 +629,7 @@ if ( ! function_exists( 'bws_custom_code_tab' ) ) {
627
  } ?>
628
  </big></p>
629
  <p><label><input type="checkbox" name="bws_custom_<?php echo $extension; ?>_active" value="1" <?php if ( ${"is_{$extension}_active"} ) echo "checked"; ?> /> <?php _e( 'Activate', 'bestwebsoft' ); ?></label></p>
630
- <textarea cols="70" rows="25" name="bws_newcontent_<?php echo $extension; ?>" id="bws_newcontent_<?php echo $extension; ?>"><?php if ( isset( ${"content_{$extension}"} ) ) echo ${"content_{$extension}"}; ?></textarea>
631
  <p class="description">
632
  <a href="<?php echo ( 'css' == $extension ) ? 'https://developer.mozilla.org/en-US/docs/Web/Guide/CSS/Getting_started' : 'http://php.net/' ?>" target="_blank">
633
  <?php printf( __( 'Learn more about %s', 'bestwebsoft' ), strtoupper( $extension ) ); ?>
@@ -657,16 +659,17 @@ if ( ! function_exists( 'bws_custom_code_tab' ) ) {
657
  if ( ! function_exists( 'bws_go_pro_tab_show' ) ) {
658
  function bws_go_pro_tab_show( $bws_hide_premium_options_check, $plugin_info, $plugin_basename, $page, $pro_page, $bws_license_plugin, $link_slug, $link_key, $link_pn, $pro_plugin_is_activated = false, $trial_days_number = false ) {
659
  global $wp_version, $bstwbsftwppdtplgns_options;
660
- $bws_license_key = ( isset( $_POST['bws_license_key'] ) ) ? stripslashes( esc_html( trim( $_POST['bws_license_key'] ) ) ) : "";
661
- if ( $pro_plugin_is_activated ) { ?>
 
662
  <script type="text/javascript">
663
  window.setTimeout( function() {
664
- window.location.href = 'admin.php?page=<?php echo $pro_page; ?>';
665
  }, 5000 );
666
  </script>
667
  <p><?php _e( "Congratulations! Pro version of the plugin is installed and activated successfully.", 'bestwebsoft' ); ?></p>
668
  <p>
669
- <?php _e( "Please, go to", 'bestwebsoft' ); ?> <a href="admin.php?page=<?php echo $pro_page; ?>"><?php _e( 'the setting page', 'bestwebsoft' ); ?></a>
670
  (<?php _e( "You will be redirected automatically in 5 seconds.", 'bestwebsoft' ); ?>)
671
  </p>
672
  <?php } else {
@@ -682,7 +685,7 @@ if ( ! function_exists( 'bws_go_pro_tab_show' ) ) {
682
  <form method="post" action="">
683
  <p>
684
  <?php _e( 'Enter your license key to install and activate', 'bestwebsoft' ); ?>
685
- <a href="https://bestwebsoft.com/products/wordpress/plugins/<?php echo $link_slug; ?>/?k=<?php echo $link_key; ?>&amp;pn=<?php echo $link_pn; ?>&amp;v=<?php echo $plugin_info["Version"]; ?>&amp;wp_v=<?php echo $wp_version; ?>" target="_blank" title="<?php echo $plugin_info["Name"]; ?> Pro">Pro</a>
686
  <?php _e( 'version of the plugin.', 'bestwebsoft' ); ?><br />
687
  <span class="bws_info">
688
  <?php _e( 'License key can be found in the', 'bestwebsoft' ); ?>
@@ -696,18 +699,19 @@ if ( ! function_exists( 'bws_go_pro_tab_show' ) ) {
696
  '5' < $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] &&
697
  $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['time'] > ( time() - ( 24 * 60 * 60 ) ) ) { ?>
698
  <p>
699
- <input disabled="disabled" type="text" name="bws_license_key" value="<?php echo $bws_license_key; ?>" />
700
  <input disabled="disabled" type="submit" class="button-primary" value="<?php _e( 'Activate', 'bestwebsoft' ); ?>" />
701
  <?php if ( $trial_days_number !== false ) echo $trial_days_number; ?>
702
  </p>
703
  <p><?php _e( "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually.", 'bestwebsoft' ); ?></p>
704
  <?php } else { ?>
705
  <p>
706
- <input type="text" maxlength="100" name="bws_license_key" value="<?php echo $bws_license_key; ?>" />
707
- <input type="hidden" name="bws_license_plugin" value="<?php echo $bws_license_plugin; ?>" />
708
  <input type="hidden" name="bws_license_submit" value="submit" />
709
  <input type="submit" class="button-primary" value="<?php _e( 'Activate', 'bestwebsoft' ); ?>" />
710
- <?php if ( $trial_days_number !== false ) echo $trial_days_number;
 
711
  wp_nonce_field( $plugin_basename, 'bws_license_nonce_name' ); ?>
712
  </p>
713
  <?php } ?>
107
  $result = array();
108
 
109
  if ( isset( $_POST['bws_license_submit'] ) && check_admin_referer( $plugin_basename, 'bws_license_nonce_name' ) ) {
110
+ $license_key = isset( $_POST['bws_license_key'] ) ? sanitize_text_field( $_POST['bws_license_key'] ) : '';
111
 
112
  if ( '' != $license_key ) {
113
 
222
  <form method="post" action="">
223
  <p><?php echo _e( 'If necessary, you can check if the license key is correct or reenter it in the field below. You can find your license key on your personal page - Client Area - on our website', 'bestwebsoft' ) . ' <a href="https://bestwebsoft.com/client-area">https://bestwebsoft.com/client-area</a> ' . __( '(your username is the email address specified during the purchase). If necessary, please submit "Lost your password?" request.', 'bestwebsoft' ); ?></p>
224
  <p>
225
+ <input type="text" maxlength="100" name="bws_license_key" value="<?php echo esc_attr( $license_key ); ?>" />
226
  <input type="hidden" name="bws_license_submit" value="submit" />
227
  <input type="submit" class="button" value="<?php _e( 'Check license key', 'bestwebsoft' ) ?>" />
228
  <?php wp_nonce_field( $plugin_basename, 'bws_license_nonce_name' ); ?>
239
  if ( ! function_exists( 'bws_go_pro_from_trial_tab' ) ) {
240
  function bws_go_pro_from_trial_tab( $plugin_info, $plugin_basename, $page, $link_slug, $link_key, $link_pn, $trial_license_is_set = true ) {
241
  global $wp_version, $bstwbsftwppdtplgns_options;
242
+ $bws_license_key = ( isset( $_POST['bws_license_key'] ) ) ? sanitize_text_field( $_POST['bws_license_key'] ) : "";
243
  if ( $trial_license_is_set ) { ?>
244
  <form method="post" action="">
245
  <p>
246
+ <?php printf( __( 'In order to continue using the plugin it is necessary to buy a %s license.', 'bestwebsoft' ), '<a href="https://bestwebsoft.com/products/wordpress/plugins/' . $link_slug . '/?k=' . $link_key . '&amp;pn=' . $link_pn . '&amp;v=' . $plugin_info["Version"] . '&amp;wp_v=' . $wp_version .'" target="_blank" title="' . $plugin_info["Name"] . '">Pro</a>' ); ?> <?php _e( 'After that, you can activate it by entering your license key.', 'bestwebsoft' ); ?>
247
+ <br />
248
  <span class="bws_info">
249
  <?php _e( 'License key can be found in the', 'bestwebsoft' ); ?>
250
  <a href="https://bestwebsoft.com/wp-login.php">Client Area</a>
262
  <?php } else { ?>
263
  <p>
264
  <input type="text" maxlength="100" name="bws_license_key" value="" />
265
+ <input type="hidden" name="bws_license_plugin" value="<?php echo esc_attr( $plugin_basename ); ?>" />
266
  <input type="hidden" name="bws_license_submit" value="submit" />
267
  <input type="submit" class="button-primary" value="<?php _e( 'Activate', 'bestwebsoft' ); ?>" />
268
  <?php wp_nonce_field( $plugin_basename, 'bws_license_nonce_name' ); ?>
269
  </p>
270
  <?php } ?>
271
  </form>
272
+ <?php } else {
273
+ $page_url = esc_url( self_admin_url( 'admin.php?page=' . $page ) ); ?>
274
  <script type="text/javascript">
275
  window.setTimeout( function() {
276
+ window.location.href = '<?php echo $page_url; ?>';
277
  }, 5000 );
278
  </script>
279
  <p><?php _e( "Congratulations! The Pro license of the plugin is activated successfully.", 'bestwebsoft' ); ?></p>
280
  <p>
281
+ <?php _e( "Please, go to", 'bestwebsoft' ); ?> <a href="<?php echo $page_url; ?>"><?php _e( 'the setting page', 'bestwebsoft' ); ?></a>
282
  (<?php _e( "You will be redirected automatically in 5 seconds.", 'bestwebsoft' ); ?>)
283
  </p>
284
  <?php }
295
  global $wp_version, $bstwbsftwppdtplgns_options;
296
  $result = array();
297
 
298
+ $bws_license_key = ( isset( $_POST['bws_license_key'] ) ) ? sanitize_text_field( $_POST['bws_license_key'] ) : "";
299
 
300
  if ( ! empty( $plugin_options_name ) && isset( $_POST['bws_hide_premium_options_submit'] ) && check_admin_referer( $plugin_basename, 'bws_license_nonce_name' ) ) {
301
 
322
  if ( strlen( $bws_license_key ) != 18 ) {
323
  $result['error'] = __( "Wrong license key", 'bestwebsoft' );
324
  } else {
325
+ $bws_license_plugin = sanitize_text_field( $_POST['bws_license_plugin'] );
326
  if ( isset( $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] ) && $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['time'] > ( time() - (24 * 60 * 60) ) ) {
327
  $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] = $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] + 1;
328
  } else {
528
  if ( isset( $_REQUEST['bws_update_custom_code'] ) && check_admin_referer( 'bws_update_' . $css_file ) ) {
529
 
530
  /* CSS */
531
+ $newcontent_css = wp_kses( trim( wp_unslash( $_POST['bws_newcontent_css'] ) ), 'strip' );
532
+
533
  if ( ! empty( $newcontent_css ) && isset( $_REQUEST['bws_custom_css_active'] ) ) {
534
  if ( $is_multisite )
535
  $bstwbsftwppdtplgns_options['custom_code'][ $blog_id ][ $css_file ] = $upload_dir['baseurl'] . '/bws-custom-code/' . $css_file;
553
  }
554
 
555
  /* PHP */
556
+ $newcontent_php = trim( wp_unslash( $_POST['bws_newcontent_php'] ) );
557
  if ( file_exists( $index_file ) ) {
558
  if ( ! empty( $newcontent_php ) && isset( $_REQUEST['bws_custom_php_active'] ) ) {
559
  if ( $is_multisite )
593
 
594
  if ( file_exists( $real_css_file ) ) {
595
  update_recently_edited( $real_css_file );
596
+ $content_css = file_get_contents( $real_css_file );
597
  if ( ( $is_multisite && isset( $bstwbsftwppdtplgns_options['custom_code'][ $blog_id ][ $css_file ] ) ) ||
598
  ( ! $is_multisite && isset( $bstwbsftwppdtplgns_options['custom_code'][ $css_file ] ) ) ) {
599
  $is_css_active = true;
601
  }
602
  if ( file_exists( $real_php_file ) ) {
603
  update_recently_edited( $real_php_file );
604
+ $content_php = file_get_contents( $real_php_file );
605
  if ( ( $is_multisite && isset( $bstwbsftwppdtplgns_options['custom_code'][ $blog_id ][ $php_file ] ) ) ||
606
  ( ! $is_multisite && isset( $bstwbsftwppdtplgns_options['custom_code'][ $php_file ] ) ) ) {
607
  $is_php_active = true;
619
  <?php if ( 'css' == $extension )
620
  _e( 'These styles will be added to the header on all pages of your site.', 'bestwebsoft' );
621
  else
622
+ printf( __( 'This PHP code will be hooked to the %s action and will be printed on front end only.', 'bestwebsoft' ), '<a href="https://codex.wordpress.org/Plugin_API/Action_Reference/init" target="_blank"><code>init</code></a>' ); ?>
623
  </p>
624
  <p><big>
625
  <?php if ( ! file_exists( ${"real_{$extension}_file"} ) || ( is_writeable( ${"real_{$extension}_file"} ) ) ) {
629
  } ?>
630
  </big></p>
631
  <p><label><input type="checkbox" name="bws_custom_<?php echo $extension; ?>_active" value="1" <?php if ( ${"is_{$extension}_active"} ) echo "checked"; ?> /> <?php _e( 'Activate', 'bestwebsoft' ); ?></label></p>
632
+ <textarea cols="70" rows="25" name="bws_newcontent_<?php echo $extension; ?>" id="bws_newcontent_<?php echo $extension; ?>"><?php if ( isset( ${"content_{$extension}"} ) ) echo esc_textarea( ${"content_{$extension}"} ); ?></textarea>
633
  <p class="description">
634
  <a href="<?php echo ( 'css' == $extension ) ? 'https://developer.mozilla.org/en-US/docs/Web/Guide/CSS/Getting_started' : 'http://php.net/' ?>" target="_blank">
635
  <?php printf( __( 'Learn more about %s', 'bestwebsoft' ), strtoupper( $extension ) ); ?>
659
  if ( ! function_exists( 'bws_go_pro_tab_show' ) ) {
660
  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 ) {
661
  global $wp_version, $bstwbsftwppdtplgns_options;
662
+ $bws_license_key = ( isset( $_POST['bws_license_key'] ) ) ? sanitize_text_field( $_POST['bws_license_key'] ) : "";
663
+ if ( $pro_plugin_is_activated ) {
664
+ $page_url = esc_url( self_admin_url( 'admin.php?page=' . $pro_page ) ); ?>
665
  <script type="text/javascript">
666
  window.setTimeout( function() {
667
+ window.location.href = '<?php echo $page_url; ?>';
668
  }, 5000 );
669
  </script>
670
  <p><?php _e( "Congratulations! Pro version of the plugin is installed and activated successfully.", 'bestwebsoft' ); ?></p>
671
  <p>
672
+ <?php _e( "Please, go to", 'bestwebsoft' ); ?> <a href="<?php echo $page_url; ?>"><?php _e( 'the setting page', 'bestwebsoft' ); ?></a>
673
  (<?php _e( "You will be redirected automatically in 5 seconds.", 'bestwebsoft' ); ?>)
674
  </p>
675
  <?php } else {
685
  <form method="post" action="">
686
  <p>
687
  <?php _e( 'Enter your license key to install and activate', 'bestwebsoft' ); ?>
688
+ <a href="<?php echo esc_url( 'https://bestwebsoft.com/products/wordpress/plugins/' . $link_slug . '/?k=' . $link_key . '&pn=' . $link_pn . '&v=' . $plugin_info["Version"] . '&wp_v=' . $wp_version ); ?>" target="_blank" title="<?php echo $plugin_info["Name"]; ?> Pro">Pro</a>
689
  <?php _e( 'version of the plugin.', 'bestwebsoft' ); ?><br />
690
  <span class="bws_info">
691
  <?php _e( 'License key can be found in the', 'bestwebsoft' ); ?>
699
  '5' < $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] &&
700
  $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['time'] > ( time() - ( 24 * 60 * 60 ) ) ) { ?>
701
  <p>
702
+ <input disabled="disabled" type="text" name="bws_license_key" value="<?php echo esc_attr( $bws_license_key ); ?>" />
703
  <input disabled="disabled" type="submit" class="button-primary" value="<?php _e( 'Activate', 'bestwebsoft' ); ?>" />
704
  <?php if ( $trial_days_number !== false ) echo $trial_days_number; ?>
705
  </p>
706
  <p><?php _e( "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually.", 'bestwebsoft' ); ?></p>
707
  <?php } else { ?>
708
  <p>
709
+ <input type="text" maxlength="100" name="bws_license_key" value="<?php echo esc_attr( $bws_license_key ); ?>" />
710
+ <input type="hidden" name="bws_license_plugin" value="<?php echo esc_attr( $bws_license_plugin ); ?>" />
711
  <input type="hidden" name="bws_license_submit" value="submit" />
712
  <input type="submit" class="button-primary" value="<?php _e( 'Activate', 'bestwebsoft' ); ?>" />
713
+ <?php if ( $trial_days_number !== false )
714
+ echo $trial_days_number;
715
  wp_nonce_field( $plugin_basename, 'bws_license_nonce_name' ); ?>
716
  </p>
717
  <?php } ?>
bws_menu/icons/plugins/captcha.png DELETED
Binary file
bws_menu/languages/bestwebsoft-cs_CZ.mo CHANGED
Binary file
bws_menu/languages/bestwebsoft-cs_CZ.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: 2017-08-28 09:55+0300\n"
6
- "PO-Revision-Date: 2017-08-28 09:55+0300\n"
7
  "Last-Translator: Mik013\n"
8
  "Language-Team: Mik013\n"
9
  "Language: cs_CZ\n"
@@ -14,7 +14,6 @@ msgstr ""
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Generator: Poedit 1.8.7.1\n"
17
- "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
  #: bws_functions.php:73 bws_functions.php:191
@@ -41,6 +40,11 @@ msgstr "Stránka pluginů"
41
  msgid "Like the plugin?"
42
  msgstr "Líbí se vám plugin?"
43
 
 
 
 
 
 
44
  #: bws_functions.php:94
45
  msgid "Rate it"
46
  msgstr "Ohodnoťte jej"
@@ -49,7 +53,7 @@ msgstr "Ohodnoťte jej"
49
  msgid "Need help?"
50
  msgstr "Potřebujete pomoc?"
51
 
52
- #: bws_functions.php:104 bws_functions.php:911 class-bws-settings.php:1056
53
  msgid "Visit Help Center"
54
  msgstr "Navštivte Centrum pomoci"
55
 
@@ -57,7 +61,7 @@ msgstr "Navštivte Centrum pomoci"
57
  msgid "Want to support the plugin?"
58
  msgstr "Chcete podpořit plugin?"
59
 
60
- #: bws_functions.php:108 bws_menu.php:553
61
  msgid "Donate"
62
  msgstr "Darujte"
63
 
@@ -72,8 +76,13 @@ msgid ""
72
  "Area. We strongly recommend you to solve the problem within 24 hours, "
73
  "otherwise the Pro plugin will be deactivated."
74
  msgstr ""
 
 
 
 
75
 
76
- #: bws_functions.php:128 bws_functions.php:340 class-bws-settings.php:144
 
77
  msgid "Learn More"
78
  msgstr "Dozvědět se více"
79
 
@@ -93,7 +102,7 @@ msgstr ""
93
  "Vaše licence vypršela. Pro přístup k top-prioritní podpoře a aktualizacím "
94
  "pluginu ji budete muset prodloužit."
95
 
96
- #: bws_functions.php:147 bws_functions.php:383 deprecated.php:584
97
  msgid "Learn more"
98
  msgstr "Dozvědět se více"
99
 
@@ -123,68 +132,68 @@ msgstr ""
123
  msgid "Thank you for installing %s plugin!"
124
  msgstr "Děkujeme vám za instalaci %s pluginu!"
125
 
126
- #: bws_functions.php:209
127
  msgid "Let's get started"
128
  msgstr "Začněme"
129
 
130
- #: bws_functions.php:210 bws_functions.php:243 bws_menu.php:557
131
- #: bws_menu.php:559
132
  msgid "Settings"
133
  msgstr "Nastavení"
134
 
135
- #: bws_functions.php:212 bws_menu.php:328 class-bws-settings.php:745
136
- #: class-bws-settings.php:1058 class-bws-settings.php:1068 deprecated.php:694
137
  msgid "or"
138
  msgstr "nebo"
139
 
140
- #: bws_functions.php:213 bws_functions.php:245
141
  msgid "Add New"
142
  msgstr "Přidat nový"
143
 
144
- #: bws_functions.php:217 bws_functions.php:227 bws_functions.php:331
145
- #: bws_functions.php:379 bws_functions.php:481
146
  msgid "Close notice"
147
  msgstr "Zavřít poznámku"
148
 
149
- #: bws_functions.php:232
150
  msgid "Thank you for installing plugins by BestWebSoft!"
151
  msgstr "Děkujeme vám za instalaci pluginů od BestWebSoft!"
152
 
153
- #: bws_functions.php:234
154
  msgid "More Details"
155
  msgstr "Více detailů"
156
 
157
- #: bws_functions.php:235
158
  msgid "Less Details"
159
  msgstr "Méně detailů"
160
 
161
- #: bws_functions.php:263
162
  msgid "Deprecated function(-s) is used on the site here:"
163
  msgstr "Zastaralé funkce se používají na stránkách zde:"
164
 
165
- #: bws_functions.php:277
166
  msgid ""
167
  "This function(-s) will be removed over time. Please update the product(-s)."
168
  msgstr ""
169
  "Tato funkce, bude v průběhu času odstraněna. Prosím aktualizujte produkt."
170
 
171
- #: bws_functions.php:336
172
  msgid "It’s time to upgrade your"
173
  msgstr "Je čas na aktualizaci vašeho"
174
 
175
- #: bws_functions.php:336
176
  msgid "to"
177
  msgstr "na"
178
 
179
- #: bws_functions.php:336
180
  msgid "version!"
181
  msgstr "verzi!"
182
 
183
- #: bws_functions.php:337
184
  msgid "Extend standard plugin functionality with new great options."
185
  msgstr "Rozšiřuje standardní funkce pluginu novými skvělými možnostmi."
186
 
187
- #: bws_functions.php:383
188
  #, php-format
189
  msgid ""
190
  "Your license key for %s expires on %s and you won't be granted TOP-PRIORITY "
@@ -193,12 +202,12 @@ msgstr ""
193
  "Váš licenční klíč pro %s vyprší dne %s a nebudou vám poskytovány TOP-"
194
  "PRIOROTNÍ PODPORA a AKTUALIZACE."
195
 
196
- #: bws_functions.php:476
197
  #, php-format
198
  msgid "Thank you for choosing %s plugin!"
199
  msgstr "Děkujeme, že jste si vybrali %s plugin!"
200
 
201
- #: bws_functions.php:477
202
  msgid ""
203
  "If you have a feature, suggestion or idea you'd like to see in the plugin, "
204
  "we'd love to hear about it!"
@@ -206,25 +215,25 @@ msgstr ""
206
  "Máte-li nápad, nebo doporučení na novou vlastnost, kterou by jste v pluginu "
207
  "chtěli vidět, rádi o něm uslyšíme!"
208
 
209
- #: bws_functions.php:478
210
  msgid "Suggest a Feature"
211
  msgstr "Navrhnout vlastnost"
212
 
213
- #: bws_functions.php:494 class-bws-settings.php:538 class-bws-settings.php:541
214
- #: class-bws-settings.php:593 class-bws-settings.php:596
215
  msgid "Notice"
216
  msgstr "Poznámka"
217
 
218
- #: bws_functions.php:494
219
  msgid "The plugin's settings have been changed."
220
  msgstr "Nastavení pluginu bylo změněno."
221
 
222
- #: bws_functions.php:495 class-bws-settings.php:183 class-bws-settings.php:203
223
- #: deprecated.php:640
224
  msgid "Save Changes"
225
  msgstr "Uložit změny"
226
 
227
- #: bws_functions.php:509
228
  msgid ""
229
  "You can always look at premium options by checking the \"Pro Options\" in "
230
  "the \"Misc\" tab."
@@ -232,78 +241,78 @@ msgstr ""
232
  "Vždy se můžete podívat na možnosti prémiové verze, kliknutím na \"PRO "
233
  "nastavení\" na \"Go PRO\" záložce."
234
 
235
- #: bws_functions.php:647
236
  msgid "Add BWS Shortcode"
237
  msgstr "Přidávejte zkrácený kód BWS"
238
 
239
- #: bws_functions.php:648
240
  msgid "Add BWS Plugins Shortcode"
241
  msgstr "Přidávejte zkrácený kód BWS pluginů"
242
 
243
- #: bws_functions.php:667
244
  msgid "Add shortcode"
245
  msgstr "Přidat krátký kód"
246
 
247
- #: bws_functions.php:667
248
  msgid "Add BestWebSoft plugins' shortcodes using this button."
249
  msgstr ""
250
  "Pomocí tohoto tlačítka můžete přidávat krátké kódy BestWebSoft pluginu."
251
 
252
- #: bws_functions.php:723
253
  msgid "Close"
254
  msgstr "Zavřít"
255
 
256
- #: bws_functions.php:815
257
  msgid "Are you sure you want to restore default settings?"
258
  msgstr "Jste si jisti, že chcete obnovit výchozí nastavení?"
259
 
260
- #: bws_functions.php:818
261
  msgid "Yes, restore all settings"
262
  msgstr "Ano, obnovit veškerá nastavení"
263
 
264
- #: bws_functions.php:819
265
  msgid "No, go back to the settings page"
266
  msgstr "Ne, vrátit se zpět na stránku nastavení"
267
 
268
- #: bws_functions.php:861
269
  msgid "Plugin"
270
  msgstr "Plugin"
271
 
272
- #: bws_functions.php:870
273
  msgid "Shortcode settings"
274
  msgstr "Nastavení krátkých kódů"
275
 
276
- #: bws_functions.php:875
277
  msgid "The shortcode will be inserted"
278
  msgstr "Bude vložen krátký kód"
279
 
280
- #: bws_functions.php:916
281
  msgid "FAQ"
282
  msgstr "Často kladené otázky (FAQ)"
283
 
284
- #: bws_functions.php:922
285
  msgid "For more information:"
286
  msgstr "Pro více informací:"
287
 
288
- #: bws_functions.php:923
289
  msgid "Documentation"
290
  msgstr "Dokumentace"
291
 
292
- #: bws_functions.php:924
293
  msgid "Video Instructions"
294
  msgstr "Video instrukce"
295
 
296
- #: bws_functions.php:925
297
  msgid "Submit a Request"
298
  msgstr "Odeslat požadavek"
299
 
300
- #: bws_menu.php:101 class-bws-settings.php:790 deprecated.php:322
301
  msgid "Wrong license key"
302
  msgstr "Špatný licenční klíč"
303
 
304
- #: bws_menu.php:122 class-bws-settings.php:816 class-bws-settings.php:883
305
- #: class-bws-settings.php:919 deprecated.php:133 deprecated.php:199
306
- #: deprecated.php:352
307
  msgid ""
308
  "Something went wrong. Please try again later. If the error appears again, "
309
  "please contact us"
@@ -311,14 +320,14 @@ msgstr ""
311
  "Něco se pokazilo. Prosím zkuste to znovu později. Pokud se chyba objeví "
312
  "znovu, obraťte se na nás"
313
 
314
- #: bws_menu.php:122 class-bws-settings.php:816 class-bws-settings.php:883
315
- #: class-bws-settings.php:919 deprecated.php:133 deprecated.php:199
316
- #: deprecated.php:352
317
  msgid "We are sorry for inconvenience."
318
  msgstr "Omlouváme se za nepříjemnosti."
319
 
320
- #: bws_menu.php:128 class-bws-settings.php:822 class-bws-settings.php:925
321
- #: deprecated.php:139 deprecated.php:358
322
  msgid "Wrong license key."
323
  msgstr "Neplatný licenční klíč."
324
 
@@ -334,11 +343,11 @@ msgstr ""
334
  msgid "Log in"
335
  msgstr "Přihlášení"
336
 
337
- #: bws_menu.php:132 bws_menu.php:334 deprecated.php:261
338
  msgid "Unfortunately, you have exceeded the number of available tries per day."
339
  msgstr "Bohužel, překročili jste dostupný počet pokusů pro daný den."
340
 
341
- #: bws_menu.php:134 class-bws-settings.php:931 deprecated.php:364
342
  #, php-format
343
  msgid ""
344
  "Unfortunately, Your license has expired. To continue getting top-priority "
@@ -347,7 +356,7 @@ msgstr ""
347
  "Bohužel, Vaše licence vypršela. Chcete-li pokračovat v získávání top-"
348
  "prioritní podpory a aktualizace pluginu měli byste ji prodloužit ve vašem %s"
349
 
350
- #: bws_menu.php:136 class-bws-settings.php:933 deprecated.php:366
351
  msgid ""
352
  "Unfortunately, the Pro licence was already installed to this domain. The Pro "
353
  "Trial license can be installed only once."
@@ -355,19 +364,19 @@ msgstr ""
355
  "Bohužel, pro tuto doménu již byla použita Pro licence. Zkušební Pro licence "
356
  "může být instalována pouze jedenkrát."
357
 
358
- #: bws_menu.php:142 class-bws-settings.php:837 deprecated.php:153
359
  msgid "The license key is valid."
360
  msgstr "Licenční klíč je platný."
361
 
362
- #: bws_menu.php:144 class-bws-settings.php:840 deprecated.php:156
363
  msgid "Your license will expire on"
364
  msgstr "Vaše licence vyprší"
365
 
366
  #: bws_menu.php:146
367
- msgid "Congratulations! Pro Membership license is activated successfully."
368
- msgstr "Gratulujeme! PRO členství bylo úspěšně aktivováno."
369
 
370
- #: bws_menu.php:153 class-bws-settings.php:1005 deprecated.php:435
371
  msgid ""
372
  "Something went wrong. Try again later or upload the plugin manually. We are "
373
  "sorry for inconvenience."
@@ -526,67 +535,68 @@ msgstr "Neaktivní pluginy"
526
  msgid "Please enter a valid email address."
527
  msgstr "Prosím vložte platnou e-mailovou adresu."
528
 
529
- #: bws_menu.php:264
530
- msgid "Email with system info is sent to"
531
- msgstr "E-mail se systémovým nastavením byl odeslán na"
 
532
 
533
- #: bws_menu.php:268
534
  msgid "Thank you for contacting us."
535
  msgstr "Děkujeme, že jste nás kontaktovali."
536
 
537
- #: bws_menu.php:291
538
  msgid "Sorry, email message could not be delivered."
539
  msgstr "Je nám líto, ale e-mail nemohl být doručen."
540
 
541
- #: bws_menu.php:307 bws_menu.php:311 bws_menu.php:360 deprecated.php:91
542
  msgid "Plugins"
543
  msgstr "Pluginy"
544
 
545
- #: bws_menu.php:308 bws_menu.php:312 bws_menu.php:611 deprecated.php:92
546
  msgid "Themes"
547
  msgstr "Šablony"
548
 
549
- #: bws_menu.php:309 bws_menu.php:313 bws_menu.php:641
550
  msgid "System status"
551
  msgstr "Stav systému"
552
 
553
- #: bws_menu.php:317
554
  msgid "Support"
555
  msgstr "Podpora"
556
 
557
- #: bws_menu.php:318
558
  msgid "Manage purchased licenses & subscriptions"
559
  msgstr "Spravovat zakoupené licence a předplatné"
560
 
561
- #: bws_menu.php:326
562
  #, php-format
563
  msgid "Get Access to %s+ Premium Plugins"
564
  msgstr "Získejte přístup k %s+ Premiovým pluginům"
565
 
566
- #: bws_menu.php:328
567
  msgid "Subscribe to Pro Membership"
568
  msgstr "Přihlásit se k Pro členství"
569
 
570
- #: bws_menu.php:336 bws_menu.php:347 class-bws-settings.php:758
571
  #: deprecated.php:227
572
  msgid "Check license key"
573
  msgstr "Zkontrolovat licenční klíč"
574
 
575
- #: bws_menu.php:339
576
  msgid "Enter your license key"
577
  msgstr "Vložte váš licenční klíč"
578
 
579
- #: bws_menu.php:345 bws_menu.php:563 bws_menu.php:572
580
- #: class-bws-settings.php:737 deprecated.php:259 deprecated.php:267
581
- #: deprecated.php:629 deprecated.php:700 deprecated.php:709
582
  msgid "Activate"
583
  msgstr "Aktivovat"
584
 
585
- #: bws_menu.php:361
586
  msgid "Upload Plugin"
587
  msgstr "Nahrát plugin"
588
 
589
- #: bws_menu.php:365
590
  #, php-format
591
  msgid ""
592
  "The plugin generated %d characters of <strong>unexpected output</strong> "
@@ -599,45 +609,43 @@ msgstr ""
599
  "problems with syndication feeds or other issues, pokuste se deaktivovat, "
600
  "nebo odstranit tento plugin."
601
 
602
- #: bws_menu.php:367
603
  msgid ""
604
  "Plugin could not be activated because it triggered a <strong>fatal error</"
605
  "strong>."
606
  msgstr ""
607
  "Plugin nemůže být aktivován, neboť způsobil <strong>závažnou chybu</strong>."
608
 
609
- #: bws_menu.php:370
610
  msgid "Plugin <strong>activated</strong>."
611
  msgstr "Plugin <strong>aktivován</strong>."
612
 
613
- #: bws_menu.php:377
614
  msgid "Installing Plugin"
615
  msgstr "Instalace pluginu"
616
 
617
- #: bws_menu.php:383
618
  msgid "Downloading install package from"
619
  msgstr "Stahování instalačního balíčku z"
620
 
621
- #: bws_menu.php:400 bws_menu.php:431 bws_menu.php:442
622
- #: class-bws-settings.php:957 class-bws-settings.php:979
623
- #: class-bws-settings.php:1001 deprecated.php:387 deprecated.php:409
624
- #: deprecated.php:431
625
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
626
  msgstr "Stažení zip archivu selhalo. Prosíme, nahrajte plugin ručně"
627
 
628
- #: bws_menu.php:408
629
  msgid "Unpacking the package"
630
  msgstr "Rozbalování balíčku"
631
 
632
- #: bws_menu.php:413 bws_menu.php:421
633
  msgid "Installing the plugin"
634
  msgstr "Instalace pluginu"
635
 
636
- #: bws_menu.php:417 class-bws-settings.php:969 deprecated.php:399
637
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
638
  msgstr "Otevření zip archivu selhalo. Prosíme, nahrajte plugin ručně"
639
 
640
- #: bws_menu.php:424 class-bws-settings.php:975 deprecated.php:405
641
  msgid ""
642
  "Your server does not support either ZipArchive or Phar. Please, upload the "
643
  "plugin manually"
@@ -645,95 +653,95 @@ msgstr ""
645
  "Váš server nepodporuje buď ZipArchive nebo Phar. Prosím, nahrajte plugin "
646
  "ručně"
647
 
648
- #: bws_menu.php:427
649
  #, php-format
650
  msgid "The plugin %s is successfully installed."
651
  msgstr "Plugin %s úspěšně nainstalován."
652
 
653
- #: bws_menu.php:434 class-bws-settings.php:982 deprecated.php:412
654
  msgid "UploadDir is not writable. Please, upload the plugin manually"
655
  msgstr "Nelze zapisovat do UploadDir. Prosím, nahrajte plugin ručně"
656
 
657
- #: bws_menu.php:439
658
  msgid "Activate Plugin"
659
  msgstr "Aktivovat plugin"
660
 
661
- #: bws_menu.php:439 bws_menu.php:445
662
  msgid "Return to BestWebSoft Panel"
663
  msgstr "Návrat na BestWebSoft panel"
664
 
665
- #: bws_menu.php:449 bws_menu.php:464 bws_menu.php:593
666
  msgid "All"
667
  msgstr "Vše"
668
 
669
- #: bws_menu.php:450 bws_menu.php:630
670
  msgid "Installed"
671
  msgstr "Instalováno"
672
 
673
- #: bws_menu.php:451
674
  msgid "Not Installed"
675
  msgstr "Neninstalováno"
676
 
677
- #: bws_menu.php:457
678
  msgid "Filter results"
679
  msgstr "Výsledky filtrování"
680
 
681
- #: bws_menu.php:460 bws_menu.php:589
682
  msgid "Category"
683
  msgstr "Rubriky"
684
 
685
- #: bws_menu.php:524
686
  msgid "Not installed"
687
  msgstr "Neninstalováno"
688
 
689
- #: bws_menu.php:528
690
  msgid "Renew to get updates"
691
  msgstr "Obnovit pro získání aktualizací"
692
 
693
- #: bws_menu.php:531
694
  #, php-format
695
  msgid "Update to v %s"
696
  msgstr "Aktualizovat na %s"
697
 
698
- #: bws_menu.php:543 bws_menu.php:566 bws_menu.php:575
699
  msgid "Install Now"
700
  msgstr "Instalovat nyní"
701
 
702
- #: bws_menu.php:549 class-bws-settings.php:157 class-bws-settings.php:1065
703
  msgid "Upgrade to Pro"
704
  msgstr "Aktualizovat na Pro"
705
 
706
- #: bws_menu.php:563 bws_menu.php:572
707
  msgid "Activate this plugin"
708
  msgstr "Aktivovat tento plugin"
709
 
710
- #: bws_menu.php:575
711
  msgid "Install this plugin"
712
  msgstr "Instalovat tento plugin"
713
 
714
- #: bws_menu.php:584
715
  msgid "Nothing found. Try another criteria."
716
  msgstr "Nic nenalezeno. Zkuste jiná kritéria."
717
 
718
  # podle, nebo taky od
719
- #: bws_menu.php:621
720
  #, php-format
721
  msgid "By %s"
722
  msgstr "podle %s"
723
 
724
- #: bws_menu.php:628
725
  msgid "Already Installed"
726
  msgstr "Již instalováno"
727
 
728
- #: bws_menu.php:638
729
- msgid "Browse Free WordPress Themes"
730
- msgstr "Procházet WordPress šablony zdarma"
731
 
732
- #: bws_menu.php:647
733
  msgid "Send to support"
734
  msgstr "Odeslat podpoře"
735
 
736
- #: bws_menu.php:654
737
  msgid "Send to custom email &#187;"
738
  msgstr "Odeslat na vlastní e-mail &#187;"
739
 
@@ -787,15 +795,15 @@ msgstr "Všechna nastavení pluginu byla obnovena."
787
  msgid "Custom Code"
788
  msgstr "Vlastní kód"
789
 
790
- #: class-bws-settings.php:427 deprecated.php:497
791
  msgid "You do not have sufficient permissions to edit plugins for this site."
792
  msgstr "Nemáte dostatečná oprávnění pro úpravu pluginů tohoto webu."
793
 
794
- #: class-bws-settings.php:432 deprecated.php:618
795
  msgid "These styles will be added to the header on all pages of your site."
796
  msgstr "Tyto styly budou přidány do hlaviček všech stránek vašeho webu."
797
 
798
- #: class-bws-settings.php:435 deprecated.php:620
799
  #, php-format
800
  msgid ""
801
  "This PHP code will be hooked to the %s action and will be printed on front "
@@ -807,7 +815,7 @@ msgstr ""
807
  msgid "These code will be added to the header on all pages of your site."
808
  msgstr "Tento kód bude přidán do záhlaví všech stránek vašeho webu."
809
 
810
- #: class-bws-settings.php:446 deprecated.php:644
811
  #, php-format
812
  msgid ""
813
  "You need to make this files writable before you can save your changes. See "
@@ -816,7 +824,7 @@ msgstr ""
816
  "Před tím, než budete moci vaše změny uložit, nastavte těmto souborům "
817
  "oprávnění pro zápis. Podívejte se %s na Kodex %s pro více informací."
818
 
819
- #: class-bws-settings.php:456 deprecated.php:626
820
  msgid "Browsing"
821
  msgstr "Procházení"
822
 
@@ -825,88 +833,88 @@ msgstr "Procházení"
825
  msgid "Activate custom %s code."
826
  msgstr "Aktivovat vlastní %s kód."
827
 
828
- #: class-bws-settings.php:469 deprecated.php:633
829
  #, php-format
830
  msgid "Learn more about %s"
831
  msgstr "Dozvědět se více o %s"
832
 
833
- #: class-bws-settings.php:529
834
  msgid "Miscellaneous Settings"
835
  msgstr "Různá nastavení"
836
 
837
- #: class-bws-settings.php:538 class-bws-settings.php:593
838
  #, php-format
839
  msgid ""
840
  "It is prohibited to change %s settings on this site in the %s network "
841
  "settings."
842
  msgstr "Je zakázáno měnit nastavení %s na této stránce v %s nastavení sítě."
843
 
844
- #: class-bws-settings.php:541 class-bws-settings.php:596
845
  #, php-format
846
  msgid ""
847
  "It is prohibited to view %s settings on this site in the %s network settings."
848
  msgstr "Je zobrazit nastavení %s na této stránce v %s nastavení sítě."
849
 
850
- #: class-bws-settings.php:550
851
  msgid "Pro Options"
852
  msgstr "PRO nastavení"
853
 
854
- #: class-bws-settings.php:554
855
  msgid "Enable to display plugin Pro options."
856
  msgstr "Povolit zobrazení PRO voleb pluginu."
857
 
858
- #: class-bws-settings.php:560
859
  msgid "Track Usage"
860
  msgstr "Sběr statistik"
861
 
862
- #: class-bws-settings.php:564
863
  msgid ""
864
  "Enable to allow tracking plugin usage anonymously in order to make it better."
865
  msgstr ""
866
  "Umožnit anonymní sledování využití pluginu tak, aby mohl být dále vylepšován."
867
 
868
- #: class-bws-settings.php:569
869
  msgid "Default Settings"
870
  msgstr "Výchozí nastavení"
871
 
872
- #: class-bws-settings.php:571
873
  msgid "Restore Settings"
874
  msgstr "Obnovit nastavení"
875
 
876
- #: class-bws-settings.php:572
877
  msgid "This will restore plugin settings to defaults."
878
  msgstr "Toto obnoví veškerá nastavení pluginu na výchozí hodnoty."
879
 
880
- #: class-bws-settings.php:584
881
  msgid "Import / Export"
882
  msgstr "Import / Export"
883
 
884
- #: class-bws-settings.php:700 class-bws-settings.php:733
885
- #: class-bws-settings.php:755
886
  msgid "License Key"
887
  msgstr "Licenční klíč"
888
 
889
- #: class-bws-settings.php:723
890
  msgid "Congratulations! Pro license is activated successfully."
891
  msgstr "Gratulujeme! PRO licence byla úspěšně aktivována."
892
 
893
- #: class-bws-settings.php:724
894
  #, php-format
895
  msgid "You will be automatically redirected to the %s in %s seconds."
896
  msgstr "Za %s sekund budete automaticky přesměrováni na %s."
897
 
898
- #: class-bws-settings.php:724
899
  msgid "Settings page"
900
  msgstr "Stránka nastavení"
901
 
902
- #: class-bws-settings.php:739
903
  #, php-format
904
  msgid "Enter your license key to activate %s and get premium plugin features."
905
  msgstr ""
906
  "Vložte váš licenční klíč pro aktivaci %s a získání prémiových fukcí pluginu."
907
 
908
- #: class-bws-settings.php:742 class-bws-settings.php:929 deprecated.php:362
909
- #: deprecated.php:703
910
  msgid ""
911
  "Unfortunately, you have exceeded the number of available tries per day. "
912
  "Please, upload the plugin manually."
@@ -914,12 +922,12 @@ msgstr ""
914
  "Bohužel, jste překročili počet dostupných pokusů za den. Prosím, nahrejte "
915
  "plugin ručně."
916
 
917
- #: class-bws-settings.php:745 deprecated.php:694
918
  #, php-format
919
  msgid "Start Your Free %s-Day Trial Now"
920
  msgstr "Vyzkoušejte vaší %s-denní zkušební verzi zdarma nyní"
921
 
922
- #: class-bws-settings.php:760
923
  msgid ""
924
  "If necessary, you can check if the license key is correct or reenter it in "
925
  "the field below."
@@ -927,15 +935,15 @@ msgstr ""
927
  "V případě potřeby zkontrolujte, je-li licenční klíč správně zadán, případně "
928
  "jej do pole níže vložte znova."
929
 
930
- #: class-bws-settings.php:765
931
  msgid "Manage License Settings"
932
  msgstr "Správa nastavení licencí"
933
 
934
- #: class-bws-settings.php:767
935
  msgid "Login to Client Area"
936
  msgstr "Přihlášení do klientská zóny"
937
 
938
- #: class-bws-settings.php:769
939
  msgid ""
940
  "Manage active licenses, download BWS products, and view your payment history "
941
  "using BestWebSoft Client Area."
@@ -943,12 +951,12 @@ msgstr ""
943
  "Správa aktivních licencí, stahování BWS produktů a zobrazení historie plateb "
944
  "v BestWebSoft klientské zóně."
945
 
946
- #: class-bws-settings.php:824 class-bws-settings.php:927 deprecated.php:141
947
- #: deprecated.php:360
948
  msgid "This license key is bound to another site."
949
  msgstr "Tento licenční klíč je přidružen k jinému webu."
950
 
951
- #: class-bws-settings.php:826 deprecated.php:143
952
  msgid ""
953
  "This license key is valid, but Your license has expired. If you want to "
954
  "update our plugin in future, you should extend the license."
@@ -956,11 +964,11 @@ msgstr ""
956
  "Tento licenční klíč je platný, ale vaše licence vypršela. Chcete-li náš "
957
  "plugin v budoucnosti aktualizovat, měli by jste licenci prodloužit."
958
 
959
- #: class-bws-settings.php:828 deprecated.php:145
960
  msgid "Unfortunately, you have exceeded the number of available tries."
961
  msgstr "Bohužel, překročili jste dostupný počet pokusů."
962
 
963
- #: class-bws-settings.php:830 deprecated.php:147
964
  msgid ""
965
  "Unfortunately, the Pro Trial licence was already installed to this domain. "
966
  "The Pro Trial license can be installed only once."
@@ -968,132 +976,161 @@ msgstr ""
968
  "Bohužel, tato zkušební Pro licence již pro tuto doménu byla použita. "
969
  "Zkušební Pro licence může být instalována pouze jedenkrát."
970
 
971
- #: class-bws-settings.php:835 deprecated.php:151
972
  msgid "The Pro Trial license key is valid."
973
  msgstr "Licenční klíč zkušební Pro verze je platný."
974
 
975
- #: class-bws-settings.php:843 deprecated.php:159 deprecated.php:246
976
  #, php-format
977
  msgid ""
978
  "In order to continue using the plugin it is necessary to buy a %s license."
979
  msgstr ""
980
  "Pokud chcete nadále využívat tento plugin, je nutné zakoupit %s licenci."
981
 
982
- #: class-bws-settings.php:1040 deprecated.php:463
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
983
  msgid "Please, enter Your license key"
984
  msgstr "Prosím, vložte váš licenční klíč"
985
 
986
- #: class-bws-settings.php:1052
987
  msgid "Need Help?"
988
  msgstr "Potřebujete pomoc?"
989
 
990
- #: class-bws-settings.php:1054
991
  msgid "Read the Instruction"
992
  msgstr "Přečíst si instrukce"
993
 
994
- #: class-bws-settings.php:1058
995
  msgid "Watch the Video"
996
  msgstr "Přehrát video"
997
 
998
- #: class-bws-settings.php:1069
999
  msgid "Start Your Free Trial"
1000
  msgstr "Vyzkoušejte po omezenou dobu"
1001
 
1002
- #: deactivation-form.php:26
1003
  msgid "Need help? We are ready to answer your questions."
1004
- msgstr ""
1005
 
1006
- #: deactivation-form.php:26
1007
  msgid "Contact Support"
1008
- msgstr ""
1009
 
1010
- #: deactivation-form.php:31
1011
  msgid "The plugin is not working"
1012
- msgstr ""
1013
 
1014
- #: deactivation-form.php:33
1015
  msgid "Kindly share what didn't work so we can fix it in future updates..."
1016
  msgstr ""
 
 
1017
 
1018
- #: deactivation-form.php:37
1019
  msgid "The plugin didn't work as expected"
1020
- msgstr ""
1021
 
1022
- #: deactivation-form.php:39
1023
  msgid "What did you expect?"
1024
- msgstr ""
1025
 
1026
- #: deactivation-form.php:43
1027
  msgid "The plugin suddenly stopped working"
1028
- msgstr ""
1029
 
1030
- #: deactivation-form.php:50
1031
  msgid "The plugin broke my site"
1032
- msgstr ""
1033
 
1034
- #: deactivation-form.php:57
1035
  msgid "I couldn't understand how to get it work"
1036
- msgstr ""
1037
 
1038
- #: deactivation-form.php:64
1039
  msgid "I found a better plugin"
1040
- msgstr ""
1041
 
1042
- #: deactivation-form.php:66
1043
  msgid "What's the plugin name?"
1044
- msgstr ""
1045
 
1046
- #: deactivation-form.php:70
1047
  msgid "The plugin is great, but I need specific feature that you don't support"
1048
  msgstr ""
 
1049
 
1050
- #: deactivation-form.php:72
1051
  msgid "What feature?"
1052
- msgstr ""
1053
 
1054
- #: deactivation-form.php:76
1055
  msgid "I no longer need the plugin"
1056
- msgstr ""
1057
 
1058
- #: deactivation-form.php:82
1059
  msgid "It's a temporary deactivation, I'm just debugging an issue"
1060
- msgstr ""
1061
 
1062
- #: deactivation-form.php:88
1063
  msgid "Other"
1064
  msgstr "Ostatní"
1065
 
1066
- #: deactivation-form.php:122
1067
  msgid "Quick Feedback"
1068
- msgstr ""
1069
 
1070
- #: deactivation-form.php:123
1071
  msgid "If you have a moment, please let us know why you are deactivating"
1072
- msgstr ""
1073
 
1074
- #: deactivation-form.php:128
1075
- msgid "Anonymous feedback"
1076
  msgstr ""
1077
 
1078
- #: deactivation-form.php:130
1079
  msgid "Cancel"
1080
- msgstr ""
1081
 
1082
- #: deactivation-form.php:230
1083
  msgid "Processing"
1084
- msgstr ""
1085
 
1086
- #: deactivation-form.php:259
1087
  msgid "Submit & Deactivate"
1088
- msgstr ""
1089
 
1090
- #: deactivation-form.php:276
1091
  msgid "Please tell us the reason so we can improve it."
1092
- msgstr ""
1093
 
1094
- #: deactivation-form.php:344
1095
  msgid "Deactivate"
1096
- msgstr ""
1097
 
1098
  #: deprecated.php:93
1099
  msgid "System Status"
@@ -1121,79 +1158,79 @@ msgstr ""
1121
  "(vaše uživatelské jméno je e-mailová adresa uvedena při nákupu). Pokud je to "
1122
  "nutné, prosím odešlete \"Lost your password?\" požadavek."
1123
 
1124
- #: deprecated.php:247
1125
  msgid "After that, you can activate it by entering your license key."
1126
  msgstr "Poté jej lze snadno aktivovat zadáním licenčního klíče."
1127
 
1128
- #: deprecated.php:249 deprecated.php:688
1129
  msgid "License key can be found in the"
1130
  msgstr "Licenční klíč najdete v"
1131
 
1132
- #: deprecated.php:251 deprecated.php:690
1133
  msgid "(your username is the email address specified during the purchase)."
1134
  msgstr "(vaše uživatelské jméno je e-mailová adresa uvedená při nákupu)."
1135
 
1136
- #: deprecated.php:278
1137
  msgid ""
1138
  "Congratulations! The Pro license of the plugin is activated successfully."
1139
  msgstr "Gratulujeme! PRO licence pluginu je úspěšně aktivována."
1140
 
1141
- #: deprecated.php:280 deprecated.php:669
1142
  msgid "Please, go to"
1143
  msgstr "Prosím, jděte na"
1144
 
1145
- #: deprecated.php:280 deprecated.php:669
1146
  msgid "the setting page"
1147
  msgstr "stránka nastavení"
1148
 
1149
- #: deprecated.php:281 deprecated.php:670
1150
  msgid "You will be redirected automatically in 5 seconds."
1151
  msgstr "Budete automaticky přesměrováni za 5 sekund."
1152
 
1153
- #: deprecated.php:315
1154
  msgid "Check premium options on the plugin settings page!"
1155
  msgstr "Zkontrolujte prémiové možnosti na stránce nastavení pluginů!"
1156
 
1157
- #: deprecated.php:478
1158
  msgid "Restore all plugin settings to defaults"
1159
  msgstr "Obnovit veškerá nastavení pluginu na výchozí hodnoty"
1160
 
1161
- #: deprecated.php:480
1162
  msgid "Restore settings"
1163
  msgstr "Obnovit nastavení"
1164
 
1165
- #: deprecated.php:548 deprecated.php:575
1166
  #, php-format
1167
  msgid "File %s edited successfully."
1168
  msgstr "Soubor %s byl úspěšně upraven."
1169
 
1170
- #: deprecated.php:550 deprecated.php:577
1171
  msgid "Not enough permissions to create or update the file"
1172
  msgstr "Nedostatečná oprávnění pro vytvoření či úpravu souboru"
1173
 
1174
- #: deprecated.php:580
1175
  msgid "Not enough permissions to create the file"
1176
  msgstr "Nedostatečná oprávnění pro vytvoření souboru"
1177
 
1178
- #: deprecated.php:624
1179
  msgid "Editing"
1180
  msgstr "Úprava"
1181
 
1182
- #: deprecated.php:667
1183
  msgid ""
1184
  "Congratulations! Pro version of the plugin is installed and activated "
1185
  "successfully."
1186
  msgstr "Gratulujeme! PRO verze pluginu byla úspěšně instalována a aktivována."
1187
 
1188
- #: deprecated.php:677
1189
  msgid "Show Pro features"
1190
  msgstr "Zobrazit Pro vlastnosti"
1191
 
1192
- #: deprecated.php:684
1193
  msgid "Enter your license key to install and activate"
1194
  msgstr "Vložte váš licenční klíč pro instalaci a aktivaci"
1195
 
1196
- #: deprecated.php:686
1197
  msgid "version of the plugin."
1198
  msgstr "verze pluginu."
1199
 
@@ -1233,17 +1270,15 @@ msgstr "SEO"
1233
  msgid "SMM"
1234
  msgstr "SMM"
1235
 
1236
- #: product_list.php:23
1237
- msgid ""
1238
- "Protect WordPress website forms from spam entries by means of math logic."
1239
  msgstr ""
1240
- "Chraňte WordPress webové formuláře před spamem pomocí matematické logiky."
1241
 
1242
- #: product_list.php:35
1243
  msgid "Create your personal car rental/booking and reservation website."
1244
  msgstr "Vytvořte si osobní rezervační web - auta/hotely."
1245
 
1246
- #: product_list.php:45
1247
  msgid ""
1248
  "Allow customers to reach you using secure contact form plugin any website "
1249
  "must have."
@@ -1251,37 +1286,37 @@ msgstr ""
1251
  "Umožněte zákazníkům kontaktovat vás pomocí pluginu zabezpečeného kontaktního "
1252
  "formuláře, tohle musí mít každý web."
1253
 
1254
- #: product_list.php:55
1255
  msgid "Add unlimited number of contact forms to WordPress website."
1256
  msgstr "Přidávejte neomezený počet kontaktních formulářů na WordPress web."
1257
 
1258
- #: product_list.php:65
1259
  msgid "Save and manage Contact Form messages. Never lose important data."
1260
  msgstr ""
1261
  "Ukládejte a spravujte zprávy z kontaktního formuláře. Už nikdy neztraťte "
1262
  "důležitá data."
1263
 
1264
- #: product_list.php:75
1265
  msgid "Add unlimited custom pages to WordPress admin dashboard."
1266
  msgstr ""
1267
  "Přidávejte neomezený počet vlastních stránek do WordPress admin nástěnky."
1268
 
1269
- #: product_list.php:82
1270
  msgid "Add custom fields to WordPress website search results."
1271
  msgstr "Přidávejte vlastní pole do výsledků vyhledání na webu WordPress."
1272
 
1273
- #: product_list.php:89
1274
  msgid ""
1275
  "Add custom post types and taxonomies to WordPress website search results."
1276
  msgstr ""
1277
  "Přidávejte vlastní typy příspěvků a taxonomie do výsledků vyhledání na webu "
1278
  "WordPress."
1279
 
1280
- #: product_list.php:99
1281
  msgid "Add PayPal and 2CO donate buttons to receive charity payments."
1282
  msgstr "Přidávejte darovací tlačítka PayPal a 2CO pro příjem příspěvků."
1283
 
1284
- #: product_list.php:106
1285
  msgid ""
1286
  "Get latest error log messages to diagnose website problems. Define and fix "
1287
  "issues faster."
@@ -1289,7 +1324,7 @@ msgstr ""
1289
  "Získejte nejnovější zprávy z error logu při diagnostice problémů s webem. "
1290
  "Definujte a opravte problémy rychleji."
1291
 
1292
- #: product_list.php:113
1293
  msgid ""
1294
  "Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and "
1295
  "widgets."
@@ -1297,7 +1332,7 @@ msgstr ""
1297
  "Přidávejte Facebooková tlačítka sledovat, to se mi líbí a sdílet do "
1298
  "WordPress příspěvků, stránek a widgetů."
1299
 
1300
- #: product_list.php:123
1301
  msgid ""
1302
  "Add beautiful galleries, albums & images to your WordPress website in a few "
1303
  "clicks."
@@ -1305,7 +1340,7 @@ msgstr ""
1305
  "Přidávejte na váš WordPress web krásné galerie, alba a obrázky během "
1306
  "několika kliknutí."
1307
 
1308
- #: product_list.php:133
1309
  msgid ""
1310
  "Add Google +1, Share, Follow, Hangout buttons and profile badge to WordPress "
1311
  "posts, pages and widgets."
@@ -1313,7 +1348,7 @@ msgstr ""
1313
  "Přidávejte Google +1 tlačítka sdílet, sledovat, Hangout a profile badge do "
1314
  "WordPress příspěvků, stránek a widgetů."
1315
 
1316
- #: product_list.php:143
1317
  msgid ""
1318
  "Stronger security solution which protects your WordPress website from hacks "
1319
  "and unauthorized login attempts."
@@ -1321,7 +1356,7 @@ msgstr ""
1321
  "Silnější bezpečnostní řešení, které chrání vaše webové stránky WordPress od "
1322
  "hacků a pokusů o neoprávněné přihlášení."
1323
 
1324
- #: product_list.php:153
1325
  msgid ""
1326
  "Add Adsense ads to WordPress website pages, posts, custom posts, search "
1327
  "results, categories, tags, and widgets."
@@ -1329,13 +1364,13 @@ msgstr ""
1329
  "Přidávejte reklamy Adsense do webu WordPress, příspěvky, vlastní příspěvky, "
1330
  "výsledky vyhledávání, rubriky, štítky a widgety."
1331
 
1332
- #: product_list.php:163
1333
  msgid "Add Google Analytics code to WordPress website and track basic stats."
1334
  msgstr ""
1335
  "Přidávejte Google Analytics kód do WordPress webu a sledujte základní "
1336
  "statistiky."
1337
 
1338
- #: product_list.php:173
1339
  msgid ""
1340
  "Protect WordPress website forms from spam entries with Google Captcha "
1341
  "(reCaptcha)."
@@ -1343,12 +1378,12 @@ msgstr ""
1343
  "Chraňte WordPress webové formuláře před spamem s Google Captcha (\"reCAPTCHA"
1344
  "\")."
1345
 
1346
- #: product_list.php:183
1347
  msgid "Add customized Google maps to WordPress posts, pages and widgets."
1348
  msgstr ""
1349
  "Přidávejte vlastní mapy Google do WordPress příspěvků, stránek a widgetů."
1350
 
1351
- #: product_list.php:193
1352
  msgid ""
1353
  "Generate and add XML sitemap to WordPress website. Help search engines index "
1354
  "your blog."
@@ -1356,7 +1391,7 @@ msgstr ""
1356
  "Generujte a přidávejte sitemap.xml na vaše WordPress weby. Pomožte "
1357
  "vyhledávačům indexovat váš blog."
1358
 
1359
- #: product_list.php:203
1360
  msgid ""
1361
  "Replace external WordPress website links with Google shortlinks and track "
1362
  "click stats."
@@ -1364,7 +1399,7 @@ msgstr ""
1364
  "Nahradit externí odkazy WordPress webu pomocí Google shortlinks a sledujte "
1365
  "statistiky kliknutí."
1366
 
1367
- #: product_list.php:210
1368
  msgid ""
1369
  "Protect WordPress website – allow and deny access for certain IP addresses, "
1370
  "hostnames, etc."
@@ -1372,7 +1407,7 @@ msgstr ""
1372
  "Chráňte WordPress web– povolte či odepřete přístup pro určité IP adresy, "
1373
  "hostnames, atd."
1374
 
1375
- #: product_list.php:220
1376
  msgid ""
1377
  "Create your personal job board and listing WordPress website. Search jobs, "
1378
  "submit CV/resumes, choose candidates."
@@ -1380,7 +1415,7 @@ msgstr ""
1380
  "Vytvořte si osobní nástěnku pracovních míst na WordPress webu. Hledání "
1381
  "zaměstnání, odeslání CV/životopisu, výběr kandidátů."
1382
 
1383
- #: product_list.php:227
1384
  msgid ""
1385
  "Protect WordPress website against brute force attacks. Limit rate of login "
1386
  "attempts."
@@ -1388,7 +1423,7 @@ msgstr ""
1388
  "Chraňte WordPress web proti útokům hrubou silou. Omezte počet pokusů o "
1389
  "přihlášení."
1390
 
1391
- #: product_list.php:237
1392
  msgid ""
1393
  "Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. "
1394
  "5 plugins included – profile, insider, etc."
@@ -1396,7 +1431,7 @@ msgstr ""
1396
  "Přidávejte LinkedIn tlačítka sdílet a sledovat do WordPress příspěvků, "
1397
  "stránek a widgetů. 5 pluginů zahrnuje - profil, insider, atd."
1398
 
1399
- #: product_list.php:247
1400
  msgid ""
1401
  "Translate WordPress website content to other languages manually. Create "
1402
  "multilingual pages, posts, widgets, menus, etc."
@@ -1404,7 +1439,7 @@ msgstr ""
1404
  "Přeložte manuálně obsah webu WordPress do jiných jazyků. Vytvořte "
1405
  "vícejazyčné stránky, příspěvky, widgety, menu, atd."
1406
 
1407
- #: product_list.php:257
1408
  msgid ""
1409
  "Add customizable pagination to WordPress website. Split long content to "
1410
  "multiple pages for better navigation."
@@ -1412,7 +1447,7 @@ msgstr ""
1412
  "Přidávejte nastavitelné stránkování na web WordPress. Pro lepší navigaci "
1413
  "rozdělte dlouhý obsah na více stránek."
1414
 
1415
- #: product_list.php:267
1416
  msgid ""
1417
  "Generate PDF files and print WordPress posts/pages. Customize document "
1418
  "header/footer styles and appearance."
@@ -1420,7 +1455,7 @@ msgstr ""
1420
  "Generujte PDF soubory a tiskněte WordPress příspěvky/stránky. Vlastní "
1421
  "záhlaví/zápatí dokumentu, styly a vzhled."
1422
 
1423
- #: product_list.php:277
1424
  msgid ""
1425
  "Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, "
1426
  "Profile) to WordPress posts, pages and widgets."
@@ -1428,7 +1463,7 @@ msgstr ""
1428
  "Přidávejte Pinterest tlačítka sledovat a připnout a profilový widget (Pin, "
1429
  "Board, Profile) do WordPress příspěvků, stránek a widgetů."
1430
 
1431
- #: product_list.php:287
1432
  msgid ""
1433
  "Create your personal portfolio WordPress website. Manage and showcase past "
1434
  "projects to get more clients."
@@ -1436,13 +1471,13 @@ msgstr ""
1436
  "Vytvořte si osobní portfolio WordPress webů. Spravujte a představte své "
1437
  "nedávné projekty a získejte více klientů."
1438
 
1439
- #: product_list.php:297
1440
  msgid "Export WordPress posts to CSV file format easily. Configure data order."
1441
  msgstr ""
1442
  "Exportujte snadno vaše WordPress příspěvky do souboru formátu CSV. "
1443
  "Konfigurujte pořadí dat."
1444
 
1445
- #: product_list.php:304
1446
  msgid ""
1447
  "Add extra fields to default WordPress user profile. The easiest way to "
1448
  "create and manage additional custom values."
@@ -1450,7 +1485,7 @@ msgstr ""
1450
  "Přidávejte další pole do výchozího profilu uživatele WordPress. "
1451
  "Nejjednodušší způsob, jak vytvořit a spravovat vlastní hodnoty."
1452
 
1453
- #: product_list.php:311
1454
  msgid ""
1455
  "Add and display HTML advertisement banner on WordPress website. Customize "
1456
  "bar styles and appearance."
@@ -1458,7 +1493,7 @@ msgstr ""
1458
  "Přidávejte a zobrazujte HTML reklamní banner na webu WordPress. Úpravte styl "
1459
  "a vzhled lišt."
1460
 
1461
- #: product_list.php:321
1462
  msgid ""
1463
  "Add customizable quotes and tips blocks to WordPress posts, pages and "
1464
  "widgets."
@@ -1466,7 +1501,7 @@ msgstr ""
1466
  "Přidávejte přizpůsobitelné nabídky a bloky s tipy do WordPress příspěvků, "
1467
  "stránek a widgetů."
1468
 
1469
- #: product_list.php:328
1470
  msgid ""
1471
  "Add rating plugin to your WordPress website to receive feedback from your "
1472
  "customers."
@@ -1474,7 +1509,7 @@ msgstr ""
1474
  "Přidávejte do vašeho WordPress webu plugin hodnocení k získání zpětné vazby "
1475
  "od vašich zákazníků."
1476
 
1477
- #: product_list.php:335
1478
  msgid ""
1479
  "Create your personal real estate WordPress website. Sell, rent and buy "
1480
  "properties. Add, search and browse listings easily."
@@ -1483,7 +1518,7 @@ msgstr ""
1483
  "pronajímejte a kupujte nemovitosti. Snadno přidejte hledání a procházení "
1484
  "seznamy."
1485
 
1486
- #: product_list.php:345
1487
  msgid ""
1488
  "Add related, featured, latest, and popular posts to your WordPress website. "
1489
  "Connect your blog readers with a relevant content."
@@ -1491,7 +1526,7 @@ msgstr ""
1491
  "Přidávejte související, nejlepší, nejnovější a populární příspěvky do vašeho "
1492
  "WordPress webu. Propojte čtenáře vašeho blogu s příslušným obsahem."
1493
 
1494
- #: product_list.php:352
1495
  msgid ""
1496
  "Send bulk email messages to WordPress users. Custom templates, advanced "
1497
  "settings and detailed reports."
@@ -1499,7 +1534,7 @@ msgstr ""
1499
  "Odesílejte hromadné e-maily WordPress uživatelům. Vlastní šablony, rozšířené "
1500
  "nastavení a podrobné reporty."
1501
 
1502
- #: product_list.php:362
1503
  msgid ""
1504
  "The best responsive slider plugin for your WordPress website. Create "
1505
  "beautifully animated slides just in a few clicks."
@@ -1507,7 +1542,7 @@ msgstr ""
1507
  "Nejlepší responzivní slider plugin pro váše WordPress web. Vytvořte krásné "
1508
  "animované snímky během pár kliknutí."
1509
 
1510
- #: product_list.php:369
1511
  msgid ""
1512
  "Configure SMTP server to receive email messages from WordPress to Gmail, "
1513
  "Yahoo, Hotmail and other services."
@@ -1515,7 +1550,7 @@ msgstr ""
1515
  "Konfigurujte SMTP server pro příjem e-mailových zpráv z WordPress na Gmail, "
1516
  "Yahoo, Hotmail a dalších službách."
1517
 
1518
- #: product_list.php:376
1519
  msgid ""
1520
  "Add social media buttons and widgets to WordPress posts, pages and widgets. "
1521
  "FB, Twitter, G+1, Pinterest, LinkedIn."
@@ -1523,7 +1558,7 @@ msgstr ""
1523
  "Přidávejte tlačítka sociálních sítí a widgety do WordPress příspěvků, "
1524
  "stránek a widgetů. Facebook, Twitter, G+1, Pinterest, LinkedIn."
1525
 
1526
- #: product_list.php:386
1527
  msgid ""
1528
  "Add social media login, registration, and commenting to your WordPress "
1529
  "website."
@@ -1531,7 +1566,7 @@ msgstr ""
1531
  "Přidávejte na váš WordPress web login, registraci či komentáře "
1532
  "prostřednictvím sociálních sítí."
1533
 
1534
- #: product_list.php:393
1535
  msgid ""
1536
  "Add email newsletter sign up form to WordPress posts, pages and widgets. "
1537
  "Collect data and subscribe your users."
@@ -1540,7 +1575,7 @@ msgstr ""
1540
  "příspěvků, stránek a widgetů. Shromažďujte data a přihlaste k odběru vaše "
1541
  "uživatele."
1542
 
1543
- #: product_list.php:403
1544
  msgid ""
1545
  "Add testimonials and feedbacks from your customers to WordPress website "
1546
  "posts, pages, and widgets."
@@ -1548,7 +1583,7 @@ msgstr ""
1548
  "Přidávejte potvrzení a zpětnou vazbu od vašich zákazníků do WordPress "
1549
  "příspěvků, stránek a widgetů."
1550
 
1551
- #: product_list.php:410
1552
  msgid ""
1553
  "Best timesheet plugin for WordPress. Track employee time, streamline "
1554
  "attendance and generate reports."
@@ -1556,7 +1591,7 @@ msgstr ""
1556
  "Nejlepší timesheet plugin pro WordPress. Sledujte časy zaměstnanců, "
1557
  "kontrolujte jejich přítomnost a generujte sestavy."
1558
 
1559
- #: product_list.php:420
1560
  msgid ""
1561
  "Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts "
1562
  "and pages."
@@ -1564,7 +1599,7 @@ msgstr ""
1564
  "Přidávejte Twitter tlačítka sledovat, twítnout a zmínit do WordPress "
1565
  "příspěvků a stránek."
1566
 
1567
- #: product_list.php:430
1568
  msgid ""
1569
  "Automatically check and update WordPress website core with all installed "
1570
  "plugins and themes to the latest versions."
@@ -1572,7 +1607,7 @@ msgstr ""
1572
  "Automaticky kontrolujte a aktualizujte na nejnovější verzi WordPress jádro i "
1573
  "všechny nainstalované pluginy a šablony."
1574
 
1575
- #: product_list.php:440
1576
  msgid ""
1577
  "Powerful user role management plugin for WordPress website. Create, edit, "
1578
  "copy, and delete user roles."
@@ -1580,7 +1615,7 @@ msgstr ""
1580
  "Plugin robustní správy užiatelů pro WordPress web. Vytvářejte, upravujte, "
1581
  "kopírujte a odstraňujte uživatelské role."
1582
 
1583
- #: product_list.php:450
1584
  msgid ""
1585
  "Display live count of online visitors who are currently browsing your "
1586
  "WordPress website."
@@ -1588,7 +1623,7 @@ msgstr ""
1588
  "Zobrazujte počet aktivních online návštěvníků, kteří dané chvíli procházejí "
1589
  "váš WordPress web."
1590
 
1591
- #: product_list.php:460
1592
  msgid ""
1593
  "Backup and export Zendesk Help Center content automatically to your "
1594
  "WordPress website database."
@@ -1596,6 +1631,23 @@ msgstr ""
1596
  "Automaticky zálohujte a exportujte obsah centra nápovědy Zendesk do databáze "
1597
  "vašeho WordPress webu."
1598
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1599
  #~ msgid ""
1600
  #~ "You can use one license of the Pro plugin for one domain only. Please "
1601
  #~ "check and edit your license or domain if necessary using you personal "
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-09-11 16:42+0300\n"
6
+ "PO-Revision-Date: 2017-09-11 16:42+0300\n"
7
  "Last-Translator: Mik013\n"
8
  "Language-Team: Mik013\n"
9
  "Language: cs_CZ\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Generator: Poedit 1.8.7.1\n"
 
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
  #: bws_functions.php:73 bws_functions.php:191
40
  msgid "Like the plugin?"
41
  msgstr "Líbí se vám plugin?"
42
 
43
+ #: bws_functions.php:93
44
+ #, php-format
45
+ msgid "%s reviews"
46
+ msgstr ""
47
+
48
  #: bws_functions.php:94
49
  msgid "Rate it"
50
  msgstr "Ohodnoťte jej"
53
  msgid "Need help?"
54
  msgstr "Potřebujete pomoc?"
55
 
56
+ #: bws_functions.php:104 bws_functions.php:917 class-bws-settings.php:1058
57
  msgid "Visit Help Center"
58
  msgstr "Navštivte Centrum pomoci"
59
 
61
  msgid "Want to support the plugin?"
62
  msgstr "Chcete podpořit plugin?"
63
 
64
+ #: bws_functions.php:108 bws_menu.php:560
65
  msgid "Donate"
66
  msgstr "Darujte"
67
 
76
  "Area. We strongly recommend you to solve the problem within 24 hours, "
77
  "otherwise the Pro plugin will be deactivated."
78
  msgstr ""
79
+ "Pro licenci pluginu můžete používat pouze pro jednu doménu. Prosím "
80
+ "zkontrolujte a případně upravte Váš licenční klíč či doménu na vaší osobní "
81
+ "stránce - Klientské zóně. Důrazně doporučujeme, aby jste tento problém "
82
+ "odstranili během 24 hodin, jinak bude Pro plugin deaktivován."
83
 
84
+ #: bws_functions.php:128 bws_functions.php:341 bws_menu.php:631
85
+ #: class-bws-settings.php:144
86
  msgid "Learn More"
87
  msgstr "Dozvědět se více"
88
 
102
  "Vaše licence vypršela. Pro přístup k top-prioritní podpoře a aktualizacím "
103
  "pluginu ji budete muset prodloužit."
104
 
105
+ #: bws_functions.php:147 bws_functions.php:389 deprecated.php:586
106
  msgid "Learn more"
107
  msgstr "Dozvědět se více"
108
 
132
  msgid "Thank you for installing %s plugin!"
133
  msgstr "Děkujeme vám za instalaci %s pluginu!"
134
 
135
+ #: bws_functions.php:210
136
  msgid "Let's get started"
137
  msgstr "Začněme"
138
 
139
+ #: bws_functions.php:211 bws_functions.php:244 bws_menu.php:564
140
+ #: bws_menu.php:566
141
  msgid "Settings"
142
  msgstr "Nastavení"
143
 
144
+ #: bws_functions.php:213 bws_menu.php:326 class-bws-settings.php:747
145
+ #: class-bws-settings.php:1060 class-bws-settings.php:1070 deprecated.php:697
146
  msgid "or"
147
  msgstr "nebo"
148
 
149
+ #: bws_functions.php:214 bws_functions.php:246
150
  msgid "Add New"
151
  msgstr "Přidat nový"
152
 
153
+ #: bws_functions.php:218 bws_functions.php:228 bws_functions.php:332
154
+ #: bws_functions.php:385 bws_functions.php:487
155
  msgid "Close notice"
156
  msgstr "Zavřít poznámku"
157
 
158
+ #: bws_functions.php:233
159
  msgid "Thank you for installing plugins by BestWebSoft!"
160
  msgstr "Děkujeme vám za instalaci pluginů od BestWebSoft!"
161
 
162
+ #: bws_functions.php:235
163
  msgid "More Details"
164
  msgstr "Více detailů"
165
 
166
+ #: bws_functions.php:236
167
  msgid "Less Details"
168
  msgstr "Méně detailů"
169
 
170
+ #: bws_functions.php:264
171
  msgid "Deprecated function(-s) is used on the site here:"
172
  msgstr "Zastaralé funkce se používají na stránkách zde:"
173
 
174
+ #: bws_functions.php:278
175
  msgid ""
176
  "This function(-s) will be removed over time. Please update the product(-s)."
177
  msgstr ""
178
  "Tato funkce, bude v průběhu času odstraněna. Prosím aktualizujte produkt."
179
 
180
+ #: bws_functions.php:337
181
  msgid "It’s time to upgrade your"
182
  msgstr "Je čas na aktualizaci vašeho"
183
 
184
+ #: bws_functions.php:337
185
  msgid "to"
186
  msgstr "na"
187
 
188
+ #: bws_functions.php:337
189
  msgid "version!"
190
  msgstr "verzi!"
191
 
192
+ #: bws_functions.php:338
193
  msgid "Extend standard plugin functionality with new great options."
194
  msgstr "Rozšiřuje standardní funkce pluginu novými skvělými možnostmi."
195
 
196
+ #: bws_functions.php:389
197
  #, php-format
198
  msgid ""
199
  "Your license key for %s expires on %s and you won't be granted TOP-PRIORITY "
202
  "Váš licenční klíč pro %s vyprší dne %s a nebudou vám poskytovány TOP-"
203
  "PRIOROTNÍ PODPORA a AKTUALIZACE."
204
 
205
+ #: bws_functions.php:482
206
  #, php-format
207
  msgid "Thank you for choosing %s plugin!"
208
  msgstr "Děkujeme, že jste si vybrali %s plugin!"
209
 
210
+ #: bws_functions.php:483
211
  msgid ""
212
  "If you have a feature, suggestion or idea you'd like to see in the plugin, "
213
  "we'd love to hear about it!"
215
  "Máte-li nápad, nebo doporučení na novou vlastnost, kterou by jste v pluginu "
216
  "chtěli vidět, rádi o něm uslyšíme!"
217
 
218
+ #: bws_functions.php:484
219
  msgid "Suggest a Feature"
220
  msgstr "Navrhnout vlastnost"
221
 
222
+ #: bws_functions.php:500 class-bws-settings.php:540 class-bws-settings.php:543
223
+ #: class-bws-settings.php:595 class-bws-settings.php:598
224
  msgid "Notice"
225
  msgstr "Poznámka"
226
 
227
+ #: bws_functions.php:500
228
  msgid "The plugin's settings have been changed."
229
  msgstr "Nastavení pluginu bylo změněno."
230
 
231
+ #: bws_functions.php:501 class-bws-settings.php:183 class-bws-settings.php:203
232
+ #: deprecated.php:642
233
  msgid "Save Changes"
234
  msgstr "Uložit změny"
235
 
236
+ #: bws_functions.php:515
237
  msgid ""
238
  "You can always look at premium options by checking the \"Pro Options\" in "
239
  "the \"Misc\" tab."
241
  "Vždy se můžete podívat na možnosti prémiové verze, kliknutím na \"PRO "
242
  "nastavení\" na \"Go PRO\" záložce."
243
 
244
+ #: bws_functions.php:653
245
  msgid "Add BWS Shortcode"
246
  msgstr "Přidávejte zkrácený kód BWS"
247
 
248
+ #: bws_functions.php:654
249
  msgid "Add BWS Plugins Shortcode"
250
  msgstr "Přidávejte zkrácený kód BWS pluginů"
251
 
252
+ #: bws_functions.php:673
253
  msgid "Add shortcode"
254
  msgstr "Přidat krátký kód"
255
 
256
+ #: bws_functions.php:673
257
  msgid "Add BestWebSoft plugins' shortcodes using this button."
258
  msgstr ""
259
  "Pomocí tohoto tlačítka můžete přidávat krátké kódy BestWebSoft pluginu."
260
 
261
+ #: bws_functions.php:729
262
  msgid "Close"
263
  msgstr "Zavřít"
264
 
265
+ #: bws_functions.php:821
266
  msgid "Are you sure you want to restore default settings?"
267
  msgstr "Jste si jisti, že chcete obnovit výchozí nastavení?"
268
 
269
+ #: bws_functions.php:824
270
  msgid "Yes, restore all settings"
271
  msgstr "Ano, obnovit veškerá nastavení"
272
 
273
+ #: bws_functions.php:825
274
  msgid "No, go back to the settings page"
275
  msgstr "Ne, vrátit se zpět na stránku nastavení"
276
 
277
+ #: bws_functions.php:867
278
  msgid "Plugin"
279
  msgstr "Plugin"
280
 
281
+ #: bws_functions.php:876
282
  msgid "Shortcode settings"
283
  msgstr "Nastavení krátkých kódů"
284
 
285
+ #: bws_functions.php:881
286
  msgid "The shortcode will be inserted"
287
  msgstr "Bude vložen krátký kód"
288
 
289
+ #: bws_functions.php:922
290
  msgid "FAQ"
291
  msgstr "Často kladené otázky (FAQ)"
292
 
293
+ #: bws_functions.php:928
294
  msgid "For more information:"
295
  msgstr "Pro více informací:"
296
 
297
+ #: bws_functions.php:929
298
  msgid "Documentation"
299
  msgstr "Dokumentace"
300
 
301
+ #: bws_functions.php:930
302
  msgid "Video Instructions"
303
  msgstr "Video instrukce"
304
 
305
+ #: bws_functions.php:931
306
  msgid "Submit a Request"
307
  msgstr "Odeslat požadavek"
308
 
309
+ #: bws_menu.php:101 class-bws-settings.php:792 deprecated.php:323
310
  msgid "Wrong license key"
311
  msgstr "Špatný licenční klíč"
312
 
313
+ #: bws_menu.php:122 class-bws-settings.php:818 class-bws-settings.php:885
314
+ #: class-bws-settings.php:921 deprecated.php:133 deprecated.php:199
315
+ #: deprecated.php:353
316
  msgid ""
317
  "Something went wrong. Please try again later. If the error appears again, "
318
  "please contact us"
320
  "Něco se pokazilo. Prosím zkuste to znovu později. Pokud se chyba objeví "
321
  "znovu, obraťte se na nás"
322
 
323
+ #: bws_menu.php:122 class-bws-settings.php:818 class-bws-settings.php:885
324
+ #: class-bws-settings.php:921 deprecated.php:133 deprecated.php:199
325
+ #: deprecated.php:353
326
  msgid "We are sorry for inconvenience."
327
  msgstr "Omlouváme se za nepříjemnosti."
328
 
329
+ #: bws_menu.php:128 class-bws-settings.php:824 class-bws-settings.php:927
330
+ #: deprecated.php:139 deprecated.php:359
331
  msgid "Wrong license key."
332
  msgstr "Neplatný licenční klíč."
333
 
343
  msgid "Log in"
344
  msgstr "Přihlášení"
345
 
346
+ #: bws_menu.php:132 bws_menu.php:332 deprecated.php:261
347
  msgid "Unfortunately, you have exceeded the number of available tries per day."
348
  msgstr "Bohužel, překročili jste dostupný počet pokusů pro daný den."
349
 
350
+ #: bws_menu.php:134 deprecated.php:365
351
  #, php-format
352
  msgid ""
353
  "Unfortunately, Your license has expired. To continue getting top-priority "
356
  "Bohužel, Vaše licence vypršela. Chcete-li pokračovat v získávání top-"
357
  "prioritní podpory a aktualizace pluginu měli byste ji prodloužit ve vašem %s"
358
 
359
+ #: bws_menu.php:136 class-bws-settings.php:935 deprecated.php:367
360
  msgid ""
361
  "Unfortunately, the Pro licence was already installed to this domain. The Pro "
362
  "Trial license can be installed only once."
364
  "Bohužel, pro tuto doménu již byla použita Pro licence. Zkušební Pro licence "
365
  "může být instalována pouze jedenkrát."
366
 
367
+ #: bws_menu.php:142 class-bws-settings.php:839 deprecated.php:153
368
  msgid "The license key is valid."
369
  msgstr "Licenční klíč je platný."
370
 
371
+ #: bws_menu.php:144 class-bws-settings.php:842 deprecated.php:156
372
  msgid "Your license will expire on"
373
  msgstr "Vaše licence vyprší"
374
 
375
  #: bws_menu.php:146
376
+ msgid "Congratulations! Pro Membership license is activated successfully."
377
+ msgstr ""
378
 
379
+ #: bws_menu.php:153 class-bws-settings.php:1007 deprecated.php:436
380
  msgid ""
381
  "Something went wrong. Try again later or upload the plugin manually. We are "
382
  "sorry for inconvenience."
535
  msgid "Please enter a valid email address."
536
  msgstr "Prosím vložte platnou e-mailovou adresu."
537
 
538
+ #: bws_menu.php:262
539
+ #, php-format
540
+ msgid "Email with system info is sent to %s."
541
+ msgstr ""
542
 
543
+ #: bws_menu.php:266
544
  msgid "Thank you for contacting us."
545
  msgstr "Děkujeme, že jste nás kontaktovali."
546
 
547
+ #: bws_menu.php:289
548
  msgid "Sorry, email message could not be delivered."
549
  msgstr "Je nám líto, ale e-mail nemohl být doručen."
550
 
551
+ #: bws_menu.php:305 bws_menu.php:309 bws_menu.php:358 deprecated.php:91
552
  msgid "Plugins"
553
  msgstr "Pluginy"
554
 
555
+ #: bws_menu.php:306 bws_menu.php:310 bws_menu.php:618 deprecated.php:92
556
  msgid "Themes"
557
  msgstr "Šablony"
558
 
559
+ #: bws_menu.php:307 bws_menu.php:311 bws_menu.php:648
560
  msgid "System status"
561
  msgstr "Stav systému"
562
 
563
+ #: bws_menu.php:315
564
  msgid "Support"
565
  msgstr "Podpora"
566
 
567
+ #: bws_menu.php:316
568
  msgid "Manage purchased licenses & subscriptions"
569
  msgstr "Spravovat zakoupené licence a předplatné"
570
 
571
+ #: bws_menu.php:324
572
  #, php-format
573
  msgid "Get Access to %s+ Premium Plugins"
574
  msgstr "Získejte přístup k %s+ Premiovým pluginům"
575
 
576
+ #: bws_menu.php:326
577
  msgid "Subscribe to Pro Membership"
578
  msgstr "Přihlásit se k Pro členství"
579
 
580
+ #: bws_menu.php:334 bws_menu.php:345 class-bws-settings.php:760
581
  #: deprecated.php:227
582
  msgid "Check license key"
583
  msgstr "Zkontrolovat licenční klíč"
584
 
585
+ #: bws_menu.php:337
586
  msgid "Enter your license key"
587
  msgstr "Vložte váš licenční klíč"
588
 
589
+ #: bws_menu.php:343 bws_menu.php:570 bws_menu.php:579
590
+ #: class-bws-settings.php:739 deprecated.php:259 deprecated.php:267
591
+ #: deprecated.php:631 deprecated.php:703 deprecated.php:712
592
  msgid "Activate"
593
  msgstr "Aktivovat"
594
 
595
+ #: bws_menu.php:359
596
  msgid "Upload Plugin"
597
  msgstr "Nahrát plugin"
598
 
599
+ #: bws_menu.php:363
600
  #, php-format
601
  msgid ""
602
  "The plugin generated %d characters of <strong>unexpected output</strong> "
609
  "problems with syndication feeds or other issues, pokuste se deaktivovat, "
610
  "nebo odstranit tento plugin."
611
 
612
+ #: bws_menu.php:365
613
  msgid ""
614
  "Plugin could not be activated because it triggered a <strong>fatal error</"
615
  "strong>."
616
  msgstr ""
617
  "Plugin nemůže být aktivován, neboť způsobil <strong>závažnou chybu</strong>."
618
 
619
+ #: bws_menu.php:368
620
  msgid "Plugin <strong>activated</strong>."
621
  msgstr "Plugin <strong>aktivován</strong>."
622
 
623
+ #: bws_menu.php:375
624
  msgid "Installing Plugin"
625
  msgstr "Instalace pluginu"
626
 
627
+ #: bws_menu.php:381
628
  msgid "Downloading install package from"
629
  msgstr "Stahování instalačního balíčku z"
630
 
631
+ #: bws_menu.php:398 bws_menu.php:429 bws_menu.php:440 deprecated.php:388
632
+ #: deprecated.php:410 deprecated.php:432
 
 
633
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
634
  msgstr "Stažení zip archivu selhalo. Prosíme, nahrajte plugin ručně"
635
 
636
+ #: bws_menu.php:406
637
  msgid "Unpacking the package"
638
  msgstr "Rozbalování balíčku"
639
 
640
+ #: bws_menu.php:411 bws_menu.php:419
641
  msgid "Installing the plugin"
642
  msgstr "Instalace pluginu"
643
 
644
+ #: bws_menu.php:415 deprecated.php:400
645
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
646
  msgstr "Otevření zip archivu selhalo. Prosíme, nahrajte plugin ručně"
647
 
648
+ #: bws_menu.php:422 deprecated.php:406
649
  msgid ""
650
  "Your server does not support either ZipArchive or Phar. Please, upload the "
651
  "plugin manually"
653
  "Váš server nepodporuje buď ZipArchive nebo Phar. Prosím, nahrajte plugin "
654
  "ručně"
655
 
656
+ #: bws_menu.php:425
657
  #, php-format
658
  msgid "The plugin %s is successfully installed."
659
  msgstr "Plugin %s úspěšně nainstalován."
660
 
661
+ #: bws_menu.php:432 deprecated.php:413
662
  msgid "UploadDir is not writable. Please, upload the plugin manually"
663
  msgstr "Nelze zapisovat do UploadDir. Prosím, nahrajte plugin ručně"
664
 
665
+ #: bws_menu.php:437
666
  msgid "Activate Plugin"
667
  msgstr "Aktivovat plugin"
668
 
669
+ #: bws_menu.php:437 bws_menu.php:443
670
  msgid "Return to BestWebSoft Panel"
671
  msgstr "Návrat na BestWebSoft panel"
672
 
673
+ #: bws_menu.php:451 bws_menu.php:471 bws_menu.php:600
674
  msgid "All"
675
  msgstr "Vše"
676
 
677
+ #: bws_menu.php:454 bws_menu.php:637
678
  msgid "Installed"
679
  msgstr "Instalováno"
680
 
681
+ #: bws_menu.php:457
682
  msgid "Not Installed"
683
  msgstr "Neninstalováno"
684
 
685
+ #: bws_menu.php:464
686
  msgid "Filter results"
687
  msgstr "Výsledky filtrování"
688
 
689
+ #: bws_menu.php:467 bws_menu.php:596
690
  msgid "Category"
691
  msgstr "Rubriky"
692
 
693
+ #: bws_menu.php:531
694
  msgid "Not installed"
695
  msgstr "Neninstalováno"
696
 
697
+ #: bws_menu.php:535
698
  msgid "Renew to get updates"
699
  msgstr "Obnovit pro získání aktualizací"
700
 
701
+ #: bws_menu.php:538
702
  #, php-format
703
  msgid "Update to v %s"
704
  msgstr "Aktualizovat na %s"
705
 
706
+ #: bws_menu.php:550 bws_menu.php:573 bws_menu.php:582
707
  msgid "Install Now"
708
  msgstr "Instalovat nyní"
709
 
710
+ #: bws_menu.php:556 class-bws-settings.php:157 class-bws-settings.php:1067
711
  msgid "Upgrade to Pro"
712
  msgstr "Aktualizovat na Pro"
713
 
714
+ #: bws_menu.php:570 bws_menu.php:579
715
  msgid "Activate this plugin"
716
  msgstr "Aktivovat tento plugin"
717
 
718
+ #: bws_menu.php:582
719
  msgid "Install this plugin"
720
  msgstr "Instalovat tento plugin"
721
 
722
+ #: bws_menu.php:591
723
  msgid "Nothing found. Try another criteria."
724
  msgstr "Nic nenalezeno. Zkuste jiná kritéria."
725
 
726
  # podle, nebo taky od
727
+ #: bws_menu.php:628
728
  #, php-format
729
  msgid "By %s"
730
  msgstr "podle %s"
731
 
732
+ #: bws_menu.php:635
733
  msgid "Already Installed"
734
  msgstr "Již instalováno"
735
 
736
+ #: bws_menu.php:645
737
+ msgid "Browse More WordPress Themes"
738
+ msgstr ""
739
 
740
+ #: bws_menu.php:654
741
  msgid "Send to support"
742
  msgstr "Odeslat podpoře"
743
 
744
+ #: bws_menu.php:661
745
  msgid "Send to custom email &#187;"
746
  msgstr "Odeslat na vlastní e-mail &#187;"
747
 
795
  msgid "Custom Code"
796
  msgstr "Vlastní kód"
797
 
798
+ #: class-bws-settings.php:427 deprecated.php:498
799
  msgid "You do not have sufficient permissions to edit plugins for this site."
800
  msgstr "Nemáte dostatečná oprávnění pro úpravu pluginů tohoto webu."
801
 
802
+ #: class-bws-settings.php:432 deprecated.php:620
803
  msgid "These styles will be added to the header on all pages of your site."
804
  msgstr "Tyto styly budou přidány do hlaviček všech stránek vašeho webu."
805
 
806
+ #: class-bws-settings.php:435 deprecated.php:622
807
  #, php-format
808
  msgid ""
809
  "This PHP code will be hooked to the %s action and will be printed on front "
815
  msgid "These code will be added to the header on all pages of your site."
816
  msgstr "Tento kód bude přidán do záhlaví všech stránek vašeho webu."
817
 
818
+ #: class-bws-settings.php:446 deprecated.php:646
819
  #, php-format
820
  msgid ""
821
  "You need to make this files writable before you can save your changes. See "
824
  "Před tím, než budete moci vaše změny uložit, nastavte těmto souborům "
825
  "oprávnění pro zápis. Podívejte se %s na Kodex %s pro více informací."
826
 
827
+ #: class-bws-settings.php:456 deprecated.php:628
828
  msgid "Browsing"
829
  msgstr "Procházení"
830
 
833
  msgid "Activate custom %s code."
834
  msgstr "Aktivovat vlastní %s kód."
835
 
836
+ #: class-bws-settings.php:469 deprecated.php:635
837
  #, php-format
838
  msgid "Learn more about %s"
839
  msgstr "Dozvědět se více o %s"
840
 
841
+ #: class-bws-settings.php:531
842
  msgid "Miscellaneous Settings"
843
  msgstr "Různá nastavení"
844
 
845
+ #: class-bws-settings.php:540 class-bws-settings.php:595
846
  #, php-format
847
  msgid ""
848
  "It is prohibited to change %s settings on this site in the %s network "
849
  "settings."
850
  msgstr "Je zakázáno měnit nastavení %s na této stránce v %s nastavení sítě."
851
 
852
+ #: class-bws-settings.php:543 class-bws-settings.php:598
853
  #, php-format
854
  msgid ""
855
  "It is prohibited to view %s settings on this site in the %s network settings."
856
  msgstr "Je zobrazit nastavení %s na této stránce v %s nastavení sítě."
857
 
858
+ #: class-bws-settings.php:552
859
  msgid "Pro Options"
860
  msgstr "PRO nastavení"
861
 
862
+ #: class-bws-settings.php:556
863
  msgid "Enable to display plugin Pro options."
864
  msgstr "Povolit zobrazení PRO voleb pluginu."
865
 
866
+ #: class-bws-settings.php:562
867
  msgid "Track Usage"
868
  msgstr "Sběr statistik"
869
 
870
+ #: class-bws-settings.php:566
871
  msgid ""
872
  "Enable to allow tracking plugin usage anonymously in order to make it better."
873
  msgstr ""
874
  "Umožnit anonymní sledování využití pluginu tak, aby mohl být dále vylepšován."
875
 
876
+ #: class-bws-settings.php:571
877
  msgid "Default Settings"
878
  msgstr "Výchozí nastavení"
879
 
880
+ #: class-bws-settings.php:573
881
  msgid "Restore Settings"
882
  msgstr "Obnovit nastavení"
883
 
884
+ #: class-bws-settings.php:574
885
  msgid "This will restore plugin settings to defaults."
886
  msgstr "Toto obnoví veškerá nastavení pluginu na výchozí hodnoty."
887
 
888
+ #: class-bws-settings.php:586
889
  msgid "Import / Export"
890
  msgstr "Import / Export"
891
 
892
+ #: class-bws-settings.php:702 class-bws-settings.php:735
893
+ #: class-bws-settings.php:757
894
  msgid "License Key"
895
  msgstr "Licenční klíč"
896
 
897
+ #: class-bws-settings.php:725
898
  msgid "Congratulations! Pro license is activated successfully."
899
  msgstr "Gratulujeme! PRO licence byla úspěšně aktivována."
900
 
901
+ #: class-bws-settings.php:726
902
  #, php-format
903
  msgid "You will be automatically redirected to the %s in %s seconds."
904
  msgstr "Za %s sekund budete automaticky přesměrováni na %s."
905
 
906
+ #: class-bws-settings.php:726
907
  msgid "Settings page"
908
  msgstr "Stránka nastavení"
909
 
910
+ #: class-bws-settings.php:741
911
  #, php-format
912
  msgid "Enter your license key to activate %s and get premium plugin features."
913
  msgstr ""
914
  "Vložte váš licenční klíč pro aktivaci %s a získání prémiových fukcí pluginu."
915
 
916
+ #: class-bws-settings.php:744 class-bws-settings.php:931 deprecated.php:363
917
+ #: deprecated.php:706
918
  msgid ""
919
  "Unfortunately, you have exceeded the number of available tries per day. "
920
  "Please, upload the plugin manually."
922
  "Bohužel, jste překročili počet dostupných pokusů za den. Prosím, nahrejte "
923
  "plugin ručně."
924
 
925
+ #: class-bws-settings.php:747 deprecated.php:697
926
  #, php-format
927
  msgid "Start Your Free %s-Day Trial Now"
928
  msgstr "Vyzkoušejte vaší %s-denní zkušební verzi zdarma nyní"
929
 
930
+ #: class-bws-settings.php:762
931
  msgid ""
932
  "If necessary, you can check if the license key is correct or reenter it in "
933
  "the field below."
935
  "V případě potřeby zkontrolujte, je-li licenční klíč správně zadán, případně "
936
  "jej do pole níže vložte znova."
937
 
938
+ #: class-bws-settings.php:767
939
  msgid "Manage License Settings"
940
  msgstr "Správa nastavení licencí"
941
 
942
+ #: class-bws-settings.php:769
943
  msgid "Login to Client Area"
944
  msgstr "Přihlášení do klientská zóny"
945
 
946
+ #: class-bws-settings.php:771
947
  msgid ""
948
  "Manage active licenses, download BWS products, and view your payment history "
949
  "using BestWebSoft Client Area."
951
  "Správa aktivních licencí, stahování BWS produktů a zobrazení historie plateb "
952
  "v BestWebSoft klientské zóně."
953
 
954
+ #: class-bws-settings.php:826 class-bws-settings.php:929 deprecated.php:141
955
+ #: deprecated.php:361
956
  msgid "This license key is bound to another site."
957
  msgstr "Tento licenční klíč je přidružen k jinému webu."
958
 
959
+ #: class-bws-settings.php:828 deprecated.php:143
960
  msgid ""
961
  "This license key is valid, but Your license has expired. If you want to "
962
  "update our plugin in future, you should extend the license."
964
  "Tento licenční klíč je platný, ale vaše licence vypršela. Chcete-li náš "
965
  "plugin v budoucnosti aktualizovat, měli by jste licenci prodloužit."
966
 
967
+ #: class-bws-settings.php:830 deprecated.php:145
968
  msgid "Unfortunately, you have exceeded the number of available tries."
969
  msgstr "Bohužel, překročili jste dostupný počet pokusů."
970
 
971
+ #: class-bws-settings.php:832 deprecated.php:147
972
  msgid ""
973
  "Unfortunately, the Pro Trial licence was already installed to this domain. "
974
  "The Pro Trial license can be installed only once."
976
  "Bohužel, tato zkušební Pro licence již pro tuto doménu byla použita. "
977
  "Zkušební Pro licence může být instalována pouze jedenkrát."
978
 
979
+ #: class-bws-settings.php:837 deprecated.php:151
980
  msgid "The Pro Trial license key is valid."
981
  msgstr "Licenční klíč zkušební Pro verze je platný."
982
 
983
+ #: class-bws-settings.php:845 deprecated.php:159 deprecated.php:246
984
  #, php-format
985
  msgid ""
986
  "In order to continue using the plugin it is necessary to buy a %s license."
987
  msgstr ""
988
  "Pokud chcete nadále využívat tento plugin, je nutné zakoupit %s licenci."
989
 
990
+ #: class-bws-settings.php:933
991
+ #, php-format
992
+ msgid ""
993
+ "Unfortunately, Your license has expired. To continue getting top-priority "
994
+ "support and plugin updates, you should extend it in your %s."
995
+ msgstr ""
996
+
997
+ #: class-bws-settings.php:959 class-bws-settings.php:981
998
+ #: class-bws-settings.php:1003
999
+ msgid "Failed to download the zip archive. Please, upload the plugin manually."
1000
+ msgstr ""
1001
+
1002
+ #: class-bws-settings.php:971
1003
+ msgid "Failed to open the zip archive. Please, upload the plugin manually."
1004
+ msgstr ""
1005
+
1006
+ #: class-bws-settings.php:977
1007
+ msgid ""
1008
+ "Your server does not support either ZipArchive or Phar. Please, upload the "
1009
+ "plugin manually."
1010
+ msgstr ""
1011
+
1012
+ #: class-bws-settings.php:984
1013
+ msgid "UploadDir is not writable. Please, upload the plugin manually."
1014
+ msgstr ""
1015
+
1016
+ #: class-bws-settings.php:1042 deprecated.php:464
1017
  msgid "Please, enter Your license key"
1018
  msgstr "Prosím, vložte váš licenční klíč"
1019
 
1020
+ #: class-bws-settings.php:1054
1021
  msgid "Need Help?"
1022
  msgstr "Potřebujete pomoc?"
1023
 
1024
+ #: class-bws-settings.php:1056
1025
  msgid "Read the Instruction"
1026
  msgstr "Přečíst si instrukce"
1027
 
1028
+ #: class-bws-settings.php:1060
1029
  msgid "Watch the Video"
1030
  msgstr "Přehrát video"
1031
 
1032
+ #: class-bws-settings.php:1071
1033
  msgid "Start Your Free Trial"
1034
  msgstr "Vyzkoušejte po omezenou dobu"
1035
 
1036
+ #: deactivation-form.php:27
1037
  msgid "Need help? We are ready to answer your questions."
1038
+ msgstr "Potřebujete pomoc? Rádi zodpovíme Vaše dotazy."
1039
 
1040
+ #: deactivation-form.php:27
1041
  msgid "Contact Support"
1042
+ msgstr "Kontaktujte podporu"
1043
 
1044
+ #: deactivation-form.php:32
1045
  msgid "The plugin is not working"
1046
+ msgstr "Plugin nefunguje"
1047
 
1048
+ #: deactivation-form.php:34
1049
  msgid "Kindly share what didn't work so we can fix it in future updates..."
1050
  msgstr ""
1051
+ "Dejte nám prosím vědět, co nefungovalo, abychom to v budoucích aktualizacích "
1052
+ "mohli opravit..."
1053
 
1054
+ #: deactivation-form.php:38
1055
  msgid "The plugin didn't work as expected"
1056
+ msgstr "Plugin nefungoval podle mých očekávání"
1057
 
1058
+ #: deactivation-form.php:40
1059
  msgid "What did you expect?"
1060
+ msgstr "Co jste očekávali?"
1061
 
1062
+ #: deactivation-form.php:44
1063
  msgid "The plugin suddenly stopped working"
1064
+ msgstr "Plugin náhle přestal pracovat"
1065
 
1066
+ #: deactivation-form.php:51
1067
  msgid "The plugin broke my site"
1068
+ msgstr "Plugin mi rozbil web"
1069
 
1070
+ #: deactivation-form.php:58
1071
  msgid "I couldn't understand how to get it work"
1072
+ msgstr "Nemohl jsem pochopit, jak to zprovoznit"
1073
 
1074
+ #: deactivation-form.php:65
1075
  msgid "I found a better plugin"
1076
+ msgstr "Našel jsem lepší plugin"
1077
 
1078
+ #: deactivation-form.php:67
1079
  msgid "What's the plugin name?"
1080
+ msgstr "Jaké je jméno pluginu?"
1081
 
1082
+ #: deactivation-form.php:71
1083
  msgid "The plugin is great, but I need specific feature that you don't support"
1084
  msgstr ""
1085
+ "Plugin je skvělý, ale já potřebuji specifickou funkci, kterou nepodporuje"
1086
 
1087
+ #: deactivation-form.php:73
1088
  msgid "What feature?"
1089
+ msgstr "Jakou funkci?"
1090
 
1091
+ #: deactivation-form.php:77
1092
  msgid "I no longer need the plugin"
1093
+ msgstr "Nadále již tento plugin nepotřebuji"
1094
 
1095
+ #: deactivation-form.php:83
1096
  msgid "It's a temporary deactivation, I'm just debugging an issue"
1097
+ msgstr "Jedná se o dočasnou deaktivaci, pouze jsem ladím problém"
1098
 
1099
+ #: deactivation-form.php:89
1100
  msgid "Other"
1101
  msgstr "Ostatní"
1102
 
1103
+ #: deactivation-form.php:123
1104
  msgid "Quick Feedback"
1105
+ msgstr "Rychlá zpětná vazba"
1106
 
1107
+ #: deactivation-form.php:124
1108
  msgid "If you have a moment, please let us know why you are deactivating"
1109
+ msgstr "Máte-li chvilku, sdělte nám důvod, proč deaktivujete tento plugin"
1110
 
1111
+ #: deactivation-form.php:127
1112
+ msgid "Send website data and allow to contact me back"
1113
  msgstr ""
1114
 
1115
+ #: deactivation-form.php:132
1116
  msgid "Cancel"
1117
+ msgstr "Zrušit"
1118
 
1119
+ #: deactivation-form.php:233
1120
  msgid "Processing"
1121
+ msgstr "Zpracovává se"
1122
 
1123
+ #: deactivation-form.php:262
1124
  msgid "Submit & Deactivate"
1125
+ msgstr "Odeslat a vypnout"
1126
 
1127
+ #: deactivation-form.php:277
1128
  msgid "Please tell us the reason so we can improve it."
1129
+ msgstr "Prosím, prozraďte nám důvod, abychom jej mohli zlepšit."
1130
 
1131
+ #: deactivation-form.php:345
1132
  msgid "Deactivate"
1133
+ msgstr "Vypnout"
1134
 
1135
  #: deprecated.php:93
1136
  msgid "System Status"
1158
  "(vaše uživatelské jméno je e-mailová adresa uvedena při nákupu). Pokud je to "
1159
  "nutné, prosím odešlete \"Lost your password?\" požadavek."
1160
 
1161
+ #: deprecated.php:246
1162
  msgid "After that, you can activate it by entering your license key."
1163
  msgstr "Poté jej lze snadno aktivovat zadáním licenčního klíče."
1164
 
1165
+ #: deprecated.php:249 deprecated.php:691
1166
  msgid "License key can be found in the"
1167
  msgstr "Licenční klíč najdete v"
1168
 
1169
+ #: deprecated.php:251 deprecated.php:693
1170
  msgid "(your username is the email address specified during the purchase)."
1171
  msgstr "(vaše uživatelské jméno je e-mailová adresa uvedená při nákupu)."
1172
 
1173
+ #: deprecated.php:279
1174
  msgid ""
1175
  "Congratulations! The Pro license of the plugin is activated successfully."
1176
  msgstr "Gratulujeme! PRO licence pluginu je úspěšně aktivována."
1177
 
1178
+ #: deprecated.php:281 deprecated.php:672
1179
  msgid "Please, go to"
1180
  msgstr "Prosím, jděte na"
1181
 
1182
+ #: deprecated.php:281 deprecated.php:672
1183
  msgid "the setting page"
1184
  msgstr "stránka nastavení"
1185
 
1186
+ #: deprecated.php:282 deprecated.php:673
1187
  msgid "You will be redirected automatically in 5 seconds."
1188
  msgstr "Budete automaticky přesměrováni za 5 sekund."
1189
 
1190
+ #: deprecated.php:316
1191
  msgid "Check premium options on the plugin settings page!"
1192
  msgstr "Zkontrolujte prémiové možnosti na stránce nastavení pluginů!"
1193
 
1194
+ #: deprecated.php:479
1195
  msgid "Restore all plugin settings to defaults"
1196
  msgstr "Obnovit veškerá nastavení pluginu na výchozí hodnoty"
1197
 
1198
+ #: deprecated.php:481
1199
  msgid "Restore settings"
1200
  msgstr "Obnovit nastavení"
1201
 
1202
+ #: deprecated.php:550 deprecated.php:577
1203
  #, php-format
1204
  msgid "File %s edited successfully."
1205
  msgstr "Soubor %s byl úspěšně upraven."
1206
 
1207
+ #: deprecated.php:552 deprecated.php:579
1208
  msgid "Not enough permissions to create or update the file"
1209
  msgstr "Nedostatečná oprávnění pro vytvoření či úpravu souboru"
1210
 
1211
+ #: deprecated.php:582
1212
  msgid "Not enough permissions to create the file"
1213
  msgstr "Nedostatečná oprávnění pro vytvoření souboru"
1214
 
1215
+ #: deprecated.php:626
1216
  msgid "Editing"
1217
  msgstr "Úprava"
1218
 
1219
+ #: deprecated.php:670
1220
  msgid ""
1221
  "Congratulations! Pro version of the plugin is installed and activated "
1222
  "successfully."
1223
  msgstr "Gratulujeme! PRO verze pluginu byla úspěšně instalována a aktivována."
1224
 
1225
+ #: deprecated.php:680
1226
  msgid "Show Pro features"
1227
  msgstr "Zobrazit Pro vlastnosti"
1228
 
1229
+ #: deprecated.php:687
1230
  msgid "Enter your license key to install and activate"
1231
  msgstr "Vložte váš licenční klíč pro instalaci a aktivaci"
1232
 
1233
+ #: deprecated.php:689
1234
  msgid "version of the plugin."
1235
  msgstr "verze pluginu."
1236
 
1270
  msgid "SMM"
1271
  msgstr "SMM"
1272
 
1273
+ #: product_list.php:22
1274
+ msgid "Best secure captcha plugin to protect your WordPress forms."
 
1275
  msgstr ""
 
1276
 
1277
+ #: product_list.php:32
1278
  msgid "Create your personal car rental/booking and reservation website."
1279
  msgstr "Vytvořte si osobní rezervační web - auta/hotely."
1280
 
1281
+ #: product_list.php:42
1282
  msgid ""
1283
  "Allow customers to reach you using secure contact form plugin any website "
1284
  "must have."
1286
  "Umožněte zákazníkům kontaktovat vás pomocí pluginu zabezpečeného kontaktního "
1287
  "formuláře, tohle musí mít každý web."
1288
 
1289
+ #: product_list.php:52
1290
  msgid "Add unlimited number of contact forms to WordPress website."
1291
  msgstr "Přidávejte neomezený počet kontaktních formulářů na WordPress web."
1292
 
1293
+ #: product_list.php:62
1294
  msgid "Save and manage Contact Form messages. Never lose important data."
1295
  msgstr ""
1296
  "Ukládejte a spravujte zprávy z kontaktního formuláře. Už nikdy neztraťte "
1297
  "důležitá data."
1298
 
1299
+ #: product_list.php:72
1300
  msgid "Add unlimited custom pages to WordPress admin dashboard."
1301
  msgstr ""
1302
  "Přidávejte neomezený počet vlastních stránek do WordPress admin nástěnky."
1303
 
1304
+ #: product_list.php:79
1305
  msgid "Add custom fields to WordPress website search results."
1306
  msgstr "Přidávejte vlastní pole do výsledků vyhledání na webu WordPress."
1307
 
1308
+ #: product_list.php:86
1309
  msgid ""
1310
  "Add custom post types and taxonomies to WordPress website search results."
1311
  msgstr ""
1312
  "Přidávejte vlastní typy příspěvků a taxonomie do výsledků vyhledání na webu "
1313
  "WordPress."
1314
 
1315
+ #: product_list.php:96
1316
  msgid "Add PayPal and 2CO donate buttons to receive charity payments."
1317
  msgstr "Přidávejte darovací tlačítka PayPal a 2CO pro příjem příspěvků."
1318
 
1319
+ #: product_list.php:103
1320
  msgid ""
1321
  "Get latest error log messages to diagnose website problems. Define and fix "
1322
  "issues faster."
1324
  "Získejte nejnovější zprávy z error logu při diagnostice problémů s webem. "
1325
  "Definujte a opravte problémy rychleji."
1326
 
1327
+ #: product_list.php:110
1328
  msgid ""
1329
  "Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and "
1330
  "widgets."
1332
  "Přidávejte Facebooková tlačítka sledovat, to se mi líbí a sdílet do "
1333
  "WordPress příspěvků, stránek a widgetů."
1334
 
1335
+ #: product_list.php:120
1336
  msgid ""
1337
  "Add beautiful galleries, albums & images to your WordPress website in a few "
1338
  "clicks."
1340
  "Přidávejte na váš WordPress web krásné galerie, alba a obrázky během "
1341
  "několika kliknutí."
1342
 
1343
+ #: product_list.php:130
1344
  msgid ""
1345
  "Add Google +1, Share, Follow, Hangout buttons and profile badge to WordPress "
1346
  "posts, pages and widgets."
1348
  "Přidávejte Google +1 tlačítka sdílet, sledovat, Hangout a profile badge do "
1349
  "WordPress příspěvků, stránek a widgetů."
1350
 
1351
+ #: product_list.php:140
1352
  msgid ""
1353
  "Stronger security solution which protects your WordPress website from hacks "
1354
  "and unauthorized login attempts."
1356
  "Silnější bezpečnostní řešení, které chrání vaše webové stránky WordPress od "
1357
  "hacků a pokusů o neoprávněné přihlášení."
1358
 
1359
+ #: product_list.php:150
1360
  msgid ""
1361
  "Add Adsense ads to WordPress website pages, posts, custom posts, search "
1362
  "results, categories, tags, and widgets."
1364
  "Přidávejte reklamy Adsense do webu WordPress, příspěvky, vlastní příspěvky, "
1365
  "výsledky vyhledávání, rubriky, štítky a widgety."
1366
 
1367
+ #: product_list.php:160
1368
  msgid "Add Google Analytics code to WordPress website and track basic stats."
1369
  msgstr ""
1370
  "Přidávejte Google Analytics kód do WordPress webu a sledujte základní "
1371
  "statistiky."
1372
 
1373
+ #: product_list.php:170
1374
  msgid ""
1375
  "Protect WordPress website forms from spam entries with Google Captcha "
1376
  "(reCaptcha)."
1378
  "Chraňte WordPress webové formuláře před spamem s Google Captcha (\"reCAPTCHA"
1379
  "\")."
1380
 
1381
+ #: product_list.php:180
1382
  msgid "Add customized Google maps to WordPress posts, pages and widgets."
1383
  msgstr ""
1384
  "Přidávejte vlastní mapy Google do WordPress příspěvků, stránek a widgetů."
1385
 
1386
+ #: product_list.php:190
1387
  msgid ""
1388
  "Generate and add XML sitemap to WordPress website. Help search engines index "
1389
  "your blog."
1391
  "Generujte a přidávejte sitemap.xml na vaše WordPress weby. Pomožte "
1392
  "vyhledávačům indexovat váš blog."
1393
 
1394
+ #: product_list.php:200
1395
  msgid ""
1396
  "Replace external WordPress website links with Google shortlinks and track "
1397
  "click stats."
1399
  "Nahradit externí odkazy WordPress webu pomocí Google shortlinks a sledujte "
1400
  "statistiky kliknutí."
1401
 
1402
+ #: product_list.php:207
1403
  msgid ""
1404
  "Protect WordPress website – allow and deny access for certain IP addresses, "
1405
  "hostnames, etc."
1407
  "Chráňte WordPress web– povolte či odepřete přístup pro určité IP adresy, "
1408
  "hostnames, atd."
1409
 
1410
+ #: product_list.php:217
1411
  msgid ""
1412
  "Create your personal job board and listing WordPress website. Search jobs, "
1413
  "submit CV/resumes, choose candidates."
1415
  "Vytvořte si osobní nástěnku pracovních míst na WordPress webu. Hledání "
1416
  "zaměstnání, odeslání CV/životopisu, výběr kandidátů."
1417
 
1418
+ #: product_list.php:224
1419
  msgid ""
1420
  "Protect WordPress website against brute force attacks. Limit rate of login "
1421
  "attempts."
1423
  "Chraňte WordPress web proti útokům hrubou silou. Omezte počet pokusů o "
1424
  "přihlášení."
1425
 
1426
+ #: product_list.php:234
1427
  msgid ""
1428
  "Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. "
1429
  "5 plugins included – profile, insider, etc."
1431
  "Přidávejte LinkedIn tlačítka sdílet a sledovat do WordPress příspěvků, "
1432
  "stránek a widgetů. 5 pluginů zahrnuje - profil, insider, atd."
1433
 
1434
+ #: product_list.php:244
1435
  msgid ""
1436
  "Translate WordPress website content to other languages manually. Create "
1437
  "multilingual pages, posts, widgets, menus, etc."
1439
  "Přeložte manuálně obsah webu WordPress do jiných jazyků. Vytvořte "
1440
  "vícejazyčné stránky, příspěvky, widgety, menu, atd."
1441
 
1442
+ #: product_list.php:254
1443
  msgid ""
1444
  "Add customizable pagination to WordPress website. Split long content to "
1445
  "multiple pages for better navigation."
1447
  "Přidávejte nastavitelné stránkování na web WordPress. Pro lepší navigaci "
1448
  "rozdělte dlouhý obsah na více stránek."
1449
 
1450
+ #: product_list.php:264
1451
  msgid ""
1452
  "Generate PDF files and print WordPress posts/pages. Customize document "
1453
  "header/footer styles and appearance."
1455
  "Generujte PDF soubory a tiskněte WordPress příspěvky/stránky. Vlastní "
1456
  "záhlaví/zápatí dokumentu, styly a vzhled."
1457
 
1458
+ #: product_list.php:274
1459
  msgid ""
1460
  "Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, "
1461
  "Profile) to WordPress posts, pages and widgets."
1463
  "Přidávejte Pinterest tlačítka sledovat a připnout a profilový widget (Pin, "
1464
  "Board, Profile) do WordPress příspěvků, stránek a widgetů."
1465
 
1466
+ #: product_list.php:284
1467
  msgid ""
1468
  "Create your personal portfolio WordPress website. Manage and showcase past "
1469
  "projects to get more clients."
1471
  "Vytvořte si osobní portfolio WordPress webů. Spravujte a představte své "
1472
  "nedávné projekty a získejte více klientů."
1473
 
1474
+ #: product_list.php:294
1475
  msgid "Export WordPress posts to CSV file format easily. Configure data order."
1476
  msgstr ""
1477
  "Exportujte snadno vaše WordPress příspěvky do souboru formátu CSV. "
1478
  "Konfigurujte pořadí dat."
1479
 
1480
+ #: product_list.php:301
1481
  msgid ""
1482
  "Add extra fields to default WordPress user profile. The easiest way to "
1483
  "create and manage additional custom values."
1485
  "Přidávejte další pole do výchozího profilu uživatele WordPress. "
1486
  "Nejjednodušší způsob, jak vytvořit a spravovat vlastní hodnoty."
1487
 
1488
+ #: product_list.php:308
1489
  msgid ""
1490
  "Add and display HTML advertisement banner on WordPress website. Customize "
1491
  "bar styles and appearance."
1493
  "Přidávejte a zobrazujte HTML reklamní banner na webu WordPress. Úpravte styl "
1494
  "a vzhled lišt."
1495
 
1496
+ #: product_list.php:318
1497
  msgid ""
1498
  "Add customizable quotes and tips blocks to WordPress posts, pages and "
1499
  "widgets."
1501
  "Přidávejte přizpůsobitelné nabídky a bloky s tipy do WordPress příspěvků, "
1502
  "stránek a widgetů."
1503
 
1504
+ #: product_list.php:325
1505
  msgid ""
1506
  "Add rating plugin to your WordPress website to receive feedback from your "
1507
  "customers."
1509
  "Přidávejte do vašeho WordPress webu plugin hodnocení k získání zpětné vazby "
1510
  "od vašich zákazníků."
1511
 
1512
+ #: product_list.php:332
1513
  msgid ""
1514
  "Create your personal real estate WordPress website. Sell, rent and buy "
1515
  "properties. Add, search and browse listings easily."
1518
  "pronajímejte a kupujte nemovitosti. Snadno přidejte hledání a procházení "
1519
  "seznamy."
1520
 
1521
+ #: product_list.php:342
1522
  msgid ""
1523
  "Add related, featured, latest, and popular posts to your WordPress website. "
1524
  "Connect your blog readers with a relevant content."
1526
  "Přidávejte související, nejlepší, nejnovější a populární příspěvky do vašeho "
1527
  "WordPress webu. Propojte čtenáře vašeho blogu s příslušným obsahem."
1528
 
1529
+ #: product_list.php:349
1530
  msgid ""
1531
  "Send bulk email messages to WordPress users. Custom templates, advanced "
1532
  "settings and detailed reports."
1534
  "Odesílejte hromadné e-maily WordPress uživatelům. Vlastní šablony, rozšířené "
1535
  "nastavení a podrobné reporty."
1536
 
1537
+ #: product_list.php:359
1538
  msgid ""
1539
  "The best responsive slider plugin for your WordPress website. Create "
1540
  "beautifully animated slides just in a few clicks."
1542
  "Nejlepší responzivní slider plugin pro váše WordPress web. Vytvořte krásné "
1543
  "animované snímky během pár kliknutí."
1544
 
1545
+ #: product_list.php:366
1546
  msgid ""
1547
  "Configure SMTP server to receive email messages from WordPress to Gmail, "
1548
  "Yahoo, Hotmail and other services."
1550
  "Konfigurujte SMTP server pro příjem e-mailových zpráv z WordPress na Gmail, "
1551
  "Yahoo, Hotmail a dalších službách."
1552
 
1553
+ #: product_list.php:373
1554
  msgid ""
1555
  "Add social media buttons and widgets to WordPress posts, pages and widgets. "
1556
  "FB, Twitter, G+1, Pinterest, LinkedIn."
1558
  "Přidávejte tlačítka sociálních sítí a widgety do WordPress příspěvků, "
1559
  "stránek a widgetů. Facebook, Twitter, G+1, Pinterest, LinkedIn."
1560
 
1561
+ #: product_list.php:383
1562
  msgid ""
1563
  "Add social media login, registration, and commenting to your WordPress "
1564
  "website."
1566
  "Přidávejte na váš WordPress web login, registraci či komentáře "
1567
  "prostřednictvím sociálních sítí."
1568
 
1569
+ #: product_list.php:390
1570
  msgid ""
1571
  "Add email newsletter sign up form to WordPress posts, pages and widgets. "
1572
  "Collect data and subscribe your users."
1575
  "příspěvků, stránek a widgetů. Shromažďujte data a přihlaste k odběru vaše "
1576
  "uživatele."
1577
 
1578
+ #: product_list.php:400
1579
  msgid ""
1580
  "Add testimonials and feedbacks from your customers to WordPress website "
1581
  "posts, pages, and widgets."
1583
  "Přidávejte potvrzení a zpětnou vazbu od vašich zákazníků do WordPress "
1584
  "příspěvků, stránek a widgetů."
1585
 
1586
+ #: product_list.php:407
1587
  msgid ""
1588
  "Best timesheet plugin for WordPress. Track employee time, streamline "
1589
  "attendance and generate reports."
1591
  "Nejlepší timesheet plugin pro WordPress. Sledujte časy zaměstnanců, "
1592
  "kontrolujte jejich přítomnost a generujte sestavy."
1593
 
1594
+ #: product_list.php:417
1595
  msgid ""
1596
  "Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts "
1597
  "and pages."
1599
  "Přidávejte Twitter tlačítka sledovat, twítnout a zmínit do WordPress "
1600
  "příspěvků a stránek."
1601
 
1602
+ #: product_list.php:427
1603
  msgid ""
1604
  "Automatically check and update WordPress website core with all installed "
1605
  "plugins and themes to the latest versions."
1607
  "Automaticky kontrolujte a aktualizujte na nejnovější verzi WordPress jádro i "
1608
  "všechny nainstalované pluginy a šablony."
1609
 
1610
+ #: product_list.php:437
1611
  msgid ""
1612
  "Powerful user role management plugin for WordPress website. Create, edit, "
1613
  "copy, and delete user roles."
1615
  "Plugin robustní správy užiatelů pro WordPress web. Vytvářejte, upravujte, "
1616
  "kopírujte a odstraňujte uživatelské role."
1617
 
1618
+ #: product_list.php:447
1619
  msgid ""
1620
  "Display live count of online visitors who are currently browsing your "
1621
  "WordPress website."
1623
  "Zobrazujte počet aktivních online návštěvníků, kteří dané chvíli procházejí "
1624
  "váš WordPress web."
1625
 
1626
+ #: product_list.php:457
1627
  msgid ""
1628
  "Backup and export Zendesk Help Center content automatically to your "
1629
  "WordPress website database."
1631
  "Automaticky zálohujte a exportujte obsah centra nápovědy Zendesk do databáze "
1632
  "vašeho WordPress webu."
1633
 
1634
+ #~ msgid "Anonymous feedback"
1635
+ #~ msgstr "Anonymní zpětná vazba"
1636
+
1637
+ #~ msgid ""
1638
+ #~ "Protect WordPress website forms from spam entries by means of math logic."
1639
+ #~ msgstr ""
1640
+ #~ "Chraňte WordPress webové formuláře před spamem pomocí matematické logiky."
1641
+
1642
+ #~ msgid "Congratulations! Pro Membership license is activated successfully."
1643
+ #~ msgstr "Gratulujeme! PRO členství bylo úspěšně aktivováno."
1644
+
1645
+ #~ msgid "Email with system info is sent to"
1646
+ #~ msgstr "E-mail se systémovým nastavením byl odeslán na"
1647
+
1648
+ #~ msgid "Browse Free WordPress Themes"
1649
+ #~ msgstr "Procházet WordPress šablony zdarma"
1650
+
1651
  #~ msgid ""
1652
  #~ "You can use one license of the Pro plugin for one domain only. Please "
1653
  #~ "check and edit your license or domain if necessary using you personal "
bws_menu/languages/bestwebsoft-es_ES.mo CHANGED
Binary file
bws_menu/languages/bestwebsoft-es_ES.po CHANGED
@@ -3,8 +3,8 @@
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: bestwebsoft\n"
6
- "POT-Creation-Date: 2017-08-28 09:52+0300\n"
7
- "PO-Revision-Date: 2017-08-28 09:55+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: BestWebSoft <plugin@bestwebsoft.com>\n"
10
  "Language: es\n"
@@ -41,6 +41,11 @@ msgstr "Página de plugins"
41
  msgid "Like the plugin?"
42
  msgstr "¿Te gusta el plugin?"
43
 
 
 
 
 
 
44
  #: bws_functions.php:94
45
  msgid "Rate it"
46
  msgstr "Valorar"
@@ -49,7 +54,7 @@ msgstr "Valorar"
49
  msgid "Need help?"
50
  msgstr "¿Necesitas ayuda?"
51
 
52
- #: bws_functions.php:104 bws_functions.php:911 class-bws-settings.php:1056
53
  msgid "Visit Help Center"
54
  msgstr "Visita el Centro de Ayuda"
55
 
@@ -57,7 +62,7 @@ msgstr "Visita el Centro de Ayuda"
57
  msgid "Want to support the plugin?"
58
  msgstr "¿Quieres apoyar al plugin?"
59
 
60
- #: bws_functions.php:108 bws_menu.php:553
61
  msgid "Donate"
62
  msgstr "Donar"
63
 
@@ -73,7 +78,8 @@ msgid ""
73
  "otherwise the Pro plugin will be deactivated."
74
  msgstr ""
75
 
76
- #: bws_functions.php:128 bws_functions.php:340 class-bws-settings.php:144
 
77
  msgid "Learn More"
78
  msgstr "Aprende más"
79
 
@@ -93,7 +99,7 @@ msgstr ""
93
  "Para seguir recibiendo soporte prioritario y actualizaciones de plugin debes "
94
  "extenderla."
95
 
96
- #: bws_functions.php:147 bws_functions.php:383 deprecated.php:584
97
  msgid "Learn more"
98
  msgstr "Aprende más"
99
 
@@ -123,70 +129,70 @@ msgstr ""
123
  msgid "Thank you for installing %s plugin!"
124
  msgstr "¡Gracias por haber instalado plugin de %s!"
125
 
126
- #: bws_functions.php:209
127
  msgid "Let's get started"
128
  msgstr "¡Empecemos!"
129
 
130
- #: bws_functions.php:210 bws_functions.php:243 bws_menu.php:557
131
- #: bws_menu.php:559
132
  msgid "Settings"
133
  msgstr "Ajustes"
134
 
135
- #: bws_functions.php:212 bws_menu.php:328 class-bws-settings.php:745
136
- #: class-bws-settings.php:1058 class-bws-settings.php:1068 deprecated.php:694
137
  msgid "or"
138
  msgstr "o"
139
 
140
- #: bws_functions.php:213 bws_functions.php:245
141
  msgid "Add New"
142
  msgstr "Añadir nuevo"
143
 
144
- #: bws_functions.php:217 bws_functions.php:227 bws_functions.php:331
145
- #: bws_functions.php:379 bws_functions.php:481
146
  msgid "Close notice"
147
  msgstr "Descartar"
148
 
149
- #: bws_functions.php:232
150
  msgid "Thank you for installing plugins by BestWebSoft!"
151
  msgstr "¡Gracias por haber instalado los plugins de BestWebSoft!"
152
 
153
- #: bws_functions.php:234
154
  msgid "More Details"
155
  msgstr "Más detalles"
156
 
157
- #: bws_functions.php:235
158
  msgid "Less Details"
159
  msgstr "Menos detalles"
160
 
161
- #: bws_functions.php:263
162
  msgid "Deprecated function(-s) is used on the site here:"
163
  msgstr "Función(-es) obsoleta(-s) se utiliza(-n) en el sitio aquí:"
164
 
165
- #: bws_functions.php:277
166
  msgid ""
167
  "This function(-s) will be removed over time. Please update the product(-s)."
168
  msgstr ""
169
  "Esta(-s) función(-es) se eliminará(-n) con el tiempo. Actualiza el(los) "
170
  "producto(-s)."
171
 
172
- #: bws_functions.php:336
173
  msgid "It’s time to upgrade your"
174
  msgstr "¡Ahora es el tiempo de actualizar tu"
175
 
176
- #: bws_functions.php:336
177
  msgid "to"
178
  msgstr "a"
179
 
180
- #: bws_functions.php:336
181
  msgid "version!"
182
  msgstr "versión!"
183
 
184
- #: bws_functions.php:337
185
  msgid "Extend standard plugin functionality with new great options."
186
  msgstr ""
187
  "Amplía la funcionalidad del plugin estándar con nuevas excelentes opciones."
188
 
189
- #: bws_functions.php:383
190
  #, php-format
191
  msgid ""
192
  "Your license key for %s expires on %s and you won't be granted TOP-PRIORITY "
@@ -195,12 +201,12 @@ msgstr ""
195
  "Tu clave de licencia para %s expirará el %s y no vas a recibir el SOPORTE "
196
  "PRIORITARIO O ACTUALIZACIONES."
197
 
198
- #: bws_functions.php:476
199
  #, php-format
200
  msgid "Thank you for choosing %s plugin!"
201
  msgstr "¡Gracias por haber elegido plugin de %s!"
202
 
203
- #: bws_functions.php:477
204
  msgid ""
205
  "If you have a feature, suggestion or idea you'd like to see in the plugin, "
206
  "we'd love to hear about it!"
@@ -208,25 +214,25 @@ msgstr ""
208
  "Si tienes una función, sugerencia o idea que te gustaría ver en el plugin, "
209
  "nos encantaría saberlo."
210
 
211
- #: bws_functions.php:478
212
  msgid "Suggest a Feature"
213
  msgstr "Ofrecer una función"
214
 
215
- #: bws_functions.php:494 class-bws-settings.php:538 class-bws-settings.php:541
216
- #: class-bws-settings.php:593 class-bws-settings.php:596
217
  msgid "Notice"
218
  msgstr "Aviso"
219
 
220
- #: bws_functions.php:494
221
  msgid "The plugin's settings have been changed."
222
  msgstr "Se han cambiado los ajustes del plugin."
223
 
224
- #: bws_functions.php:495 class-bws-settings.php:183 class-bws-settings.php:203
225
- #: deprecated.php:640
226
  msgid "Save Changes"
227
  msgstr "Guardar cambios"
228
 
229
- #: bws_functions.php:509
230
  msgid ""
231
  "You can always look at premium options by checking the \"Pro Options\" in "
232
  "the \"Misc\" tab."
@@ -234,78 +240,78 @@ msgstr ""
234
  "Siempre puedes ver las opciones premium haciendo clic en las \"Opciones Pro"
235
  "\" en la ficha \"Varios\"."
236
 
237
- #: bws_functions.php:647
238
  msgid "Add BWS Shortcode"
239
  msgstr "Añadir BWS shortcode"
240
 
241
- #: bws_functions.php:648
242
  msgid "Add BWS Plugins Shortcode"
243
  msgstr "Añadir shortcode de plugins BWS"
244
 
245
- #: bws_functions.php:667
246
  msgid "Add shortcode"
247
  msgstr "Añadir shortcode"
248
 
249
- #: bws_functions.php:667
250
  msgid "Add BestWebSoft plugins' shortcodes using this button."
251
  msgstr "Añadir los shortcodes de los plugins de BestWebSoft usando este botón."
252
 
253
- #: bws_functions.php:723
254
  msgid "Close"
255
  msgstr "Descartar"
256
 
257
- #: bws_functions.php:815
258
  msgid "Are you sure you want to restore default settings?"
259
  msgstr ""
260
  "¿Estás seguro de que deseas restaurar los ajustes de plugin por defecto?"
261
 
262
- #: bws_functions.php:818
263
  msgid "Yes, restore all settings"
264
  msgstr "Sí, restaurar todos los ajustes"
265
 
266
- #: bws_functions.php:819
267
  msgid "No, go back to the settings page"
268
  msgstr "No, volver a la página de ajustes"
269
 
270
- #: bws_functions.php:861
271
  msgid "Plugin"
272
  msgstr "Plugin"
273
 
274
- #: bws_functions.php:870
275
  msgid "Shortcode settings"
276
  msgstr "Ajustes de shortcode"
277
 
278
- #: bws_functions.php:875
279
  msgid "The shortcode will be inserted"
280
  msgstr "El shortcode se insertará"
281
 
282
- #: bws_functions.php:916
283
  msgid "FAQ"
284
  msgstr "FAQ"
285
 
286
- #: bws_functions.php:922
287
  msgid "For more information:"
288
  msgstr "Más información"
289
 
290
- #: bws_functions.php:923
291
  msgid "Documentation"
292
  msgstr "Documentación"
293
 
294
- #: bws_functions.php:924
295
  msgid "Video Instructions"
296
  msgstr "Video instrucciones"
297
 
298
- #: bws_functions.php:925
299
  msgid "Submit a Request"
300
  msgstr "Presentar una solicitud"
301
 
302
- #: bws_menu.php:101 class-bws-settings.php:790 deprecated.php:322
303
  msgid "Wrong license key"
304
  msgstr "Clave de licencia incorrecta"
305
 
306
- #: bws_menu.php:122 class-bws-settings.php:816 class-bws-settings.php:883
307
- #: class-bws-settings.php:919 deprecated.php:133 deprecated.php:199
308
- #: deprecated.php:352
309
  msgid ""
310
  "Something went wrong. Please try again later. If the error appears again, "
311
  "please contact us"
@@ -313,14 +319,14 @@ msgstr ""
313
  "Algo salió mal. Por favor, inténtalo de nuevo más tarde. Si el error aparece "
314
  "de nuevo, ponte en contacto con nosotros"
315
 
316
- #: bws_menu.php:122 class-bws-settings.php:816 class-bws-settings.php:883
317
- #: class-bws-settings.php:919 deprecated.php:133 deprecated.php:199
318
- #: deprecated.php:352
319
  msgid "We are sorry for inconvenience."
320
  msgstr "Lo siento para la inconveniencia causada."
321
 
322
- #: bws_menu.php:128 class-bws-settings.php:822 class-bws-settings.php:925
323
- #: deprecated.php:139 deprecated.php:358
324
  msgid "Wrong license key."
325
  msgstr "Clave de licencia incorrecta."
326
 
@@ -336,11 +342,11 @@ msgstr ""
336
  msgid "Log in"
337
  msgstr "Acceder"
338
 
339
- #: bws_menu.php:132 bws_menu.php:334 deprecated.php:261
340
  msgid "Unfortunately, you have exceeded the number of available tries per day."
341
  msgstr "Por desgracia, has excedido el número de intentos por hoy."
342
 
343
- #: bws_menu.php:134 class-bws-settings.php:931 deprecated.php:364
344
  #, php-format
345
  msgid ""
346
  "Unfortunately, Your license has expired. To continue getting top-priority "
@@ -349,7 +355,7 @@ msgstr ""
349
  "Por desgracia, tu licencia ha expirado. Para seguir recibiendo soporte "
350
  "prioritario y actualizaciones de plugin debes extenderla en tu %s"
351
 
352
- #: bws_menu.php:136 class-bws-settings.php:933 deprecated.php:366
353
  msgid ""
354
  "Unfortunately, the Pro licence was already installed to this domain. The Pro "
355
  "Trial license can be installed only once."
@@ -357,19 +363,19 @@ msgstr ""
357
  "Por desgracia, la licencia Pro ha estado ya instalada en este dominio. La "
358
  "licencia Pro Trial puede estar instalada una sola vez."
359
 
360
- #: bws_menu.php:142 class-bws-settings.php:837 deprecated.php:153
361
  msgid "The license key is valid."
362
  msgstr "La clave de licencia está válida."
363
 
364
- #: bws_menu.php:144 class-bws-settings.php:840 deprecated.php:156
365
  msgid "Your license will expire on"
366
  msgstr "Tu licencia expirará el"
367
 
368
  #: bws_menu.php:146
369
- msgid "Congratulations! Pro Membership license is activated successfully."
370
- msgstr "¡Felicitaciones! La licencia Pro Membership está activada con éxito."
371
 
372
- #: bws_menu.php:153 class-bws-settings.php:1005 deprecated.php:435
373
  msgid ""
374
  "Something went wrong. Try again later or upload the plugin manually. We are "
375
  "sorry for inconvenience."
@@ -523,67 +529,68 @@ msgstr "Plugins Inactivos"
523
  msgid "Please enter a valid email address."
524
  msgstr "Por favor, introduce la dirección de correo electrónico válida."
525
 
526
- #: bws_menu.php:264
527
- msgid "Email with system info is sent to"
528
- msgstr "El correo electrónico con información de sistema es enviado a"
 
529
 
530
- #: bws_menu.php:268
531
  msgid "Thank you for contacting us."
532
  msgstr "¡Gracias por haber contactado con nosotros!"
533
 
534
- #: bws_menu.php:291
535
  msgid "Sorry, email message could not be delivered."
536
  msgstr "Lo siento, el mensaje de correo electrónico no se pudo enviar."
537
 
538
- #: bws_menu.php:307 bws_menu.php:311 bws_menu.php:360 deprecated.php:91
539
  msgid "Plugins"
540
  msgstr "Plugins"
541
 
542
- #: bws_menu.php:308 bws_menu.php:312 bws_menu.php:611 deprecated.php:92
543
  msgid "Themes"
544
  msgstr "Temas"
545
 
546
- #: bws_menu.php:309 bws_menu.php:313 bws_menu.php:641
547
  msgid "System status"
548
  msgstr "Información de sistema"
549
 
550
- #: bws_menu.php:317
551
  msgid "Support"
552
  msgstr "Soporte"
553
 
554
- #: bws_menu.php:318
555
  msgid "Manage purchased licenses & subscriptions"
556
  msgstr "Gestionar licencias y suscripciones adquiridas"
557
 
558
- #: bws_menu.php:326
559
  #, php-format
560
  msgid "Get Access to %s+ Premium Plugins"
561
  msgstr "Obtener acceso a %s+ Premium plugins"
562
 
563
- #: bws_menu.php:328
564
  msgid "Subscribe to Pro Membership"
565
  msgstr "Suscribirse a Pro Membership"
566
 
567
- #: bws_menu.php:336 bws_menu.php:347 class-bws-settings.php:758
568
  #: deprecated.php:227
569
  msgid "Check license key"
570
  msgstr "Comprueba la clave de licencia"
571
 
572
- #: bws_menu.php:339
573
  msgid "Enter your license key"
574
  msgstr "Introduce tu clave de licencia"
575
 
576
- #: bws_menu.php:345 bws_menu.php:563 bws_menu.php:572
577
- #: class-bws-settings.php:737 deprecated.php:259 deprecated.php:267
578
- #: deprecated.php:629 deprecated.php:700 deprecated.php:709
579
  msgid "Activate"
580
  msgstr "Activar"
581
 
582
- #: bws_menu.php:361
583
  msgid "Upload Plugin"
584
  msgstr "Subir plugin"
585
 
586
- #: bws_menu.php:365
587
  #, php-format
588
  msgid ""
589
  "The plugin generated %d characters of <strong>unexpected output</strong> "
@@ -596,46 +603,44 @@ msgstr ""
596
  "problemas con los feeds de sindicación u otras cuestiones, prueba desactivar "
597
  "o borrar este plugin."
598
 
599
- #: bws_menu.php:367
600
  msgid ""
601
  "Plugin could not be activated because it triggered a <strong>fatal error</"
602
  "strong>."
603
  msgstr ""
604
  "No se pudo activar el plugin porque provocó un <strong>error fatal</ strong>."
605
 
606
- #: bws_menu.php:370
607
  msgid "Plugin <strong>activated</strong>."
608
  msgstr "Plugin <strong>activado</strong>."
609
 
610
- #: bws_menu.php:377
611
  msgid "Installing Plugin"
612
  msgstr "Instalando el plugin"
613
 
614
- #: bws_menu.php:383
615
  msgid "Downloading install package from"
616
  msgstr "Descargando el paquete de instalación de"
617
 
618
- #: bws_menu.php:400 bws_menu.php:431 bws_menu.php:442
619
- #: class-bws-settings.php:957 class-bws-settings.php:979
620
- #: class-bws-settings.php:1001 deprecated.php:387 deprecated.php:409
621
- #: deprecated.php:431
622
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
623
  msgstr ""
624
  "Error al descargar el archivo zip. Por favor, sube el plugin manualmente"
625
 
626
- #: bws_menu.php:408
627
  msgid "Unpacking the package"
628
  msgstr "Desempacando el paquete"
629
 
630
- #: bws_menu.php:413 bws_menu.php:421
631
  msgid "Installing the plugin"
632
  msgstr "Instalando el plugin"
633
 
634
- #: bws_menu.php:417 class-bws-settings.php:969 deprecated.php:399
635
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
636
  msgstr "Error al abrir el archivo zip. Por favor, sube el plugin manualmente"
637
 
638
- #: bws_menu.php:424 class-bws-settings.php:975 deprecated.php:405
639
  msgid ""
640
  "Your server does not support either ZipArchive or Phar. Please, upload the "
641
  "plugin manually"
@@ -643,94 +648,94 @@ msgstr ""
643
  "Tu servidor no admite ni ZipArchive ni Phar. Por favor, sube el plugin "
644
  "manualmente"
645
 
646
- #: bws_menu.php:427
647
  #, php-format
648
  msgid "The plugin %s is successfully installed."
649
  msgstr "El plugin %s se ha instalado con éxito."
650
 
651
- #: bws_menu.php:434 class-bws-settings.php:982 deprecated.php:412
652
  msgid "UploadDir is not writable. Please, upload the plugin manually"
653
  msgstr "UploadDir no se puede editar. Por favor, sube el plugin manualmente"
654
 
655
- #: bws_menu.php:439
656
  msgid "Activate Plugin"
657
  msgstr "Activar plugin"
658
 
659
- #: bws_menu.php:439 bws_menu.php:445
660
  msgid "Return to BestWebSoft Panel"
661
  msgstr "Volver a Panel de BestWebSoft"
662
 
663
- #: bws_menu.php:449 bws_menu.php:464 bws_menu.php:593
664
  msgid "All"
665
  msgstr "Todo"
666
 
667
- #: bws_menu.php:450 bws_menu.php:630
668
  msgid "Installed"
669
  msgstr "Instalado"
670
 
671
- #: bws_menu.php:451
672
  msgid "Not Installed"
673
  msgstr "No instalado"
674
 
675
- #: bws_menu.php:457
676
  msgid "Filter results"
677
  msgstr "Filtrar resultados"
678
 
679
- #: bws_menu.php:460 bws_menu.php:589
680
  msgid "Category"
681
  msgstr "Categoría"
682
 
683
- #: bws_menu.php:524
684
  msgid "Not installed"
685
  msgstr "No instalado"
686
 
687
- #: bws_menu.php:528
688
  msgid "Renew to get updates"
689
  msgstr "Renovar para obtener actualizaciones"
690
 
691
- #: bws_menu.php:531
692
  #, php-format
693
  msgid "Update to v %s"
694
  msgstr "Actualizar a v %s"
695
 
696
- #: bws_menu.php:543 bws_menu.php:566 bws_menu.php:575
697
  msgid "Install Now"
698
  msgstr "Instalar"
699
 
700
- #: bws_menu.php:549 class-bws-settings.php:157 class-bws-settings.php:1065
701
  msgid "Upgrade to Pro"
702
  msgstr "Actualizar a Pro"
703
 
704
- #: bws_menu.php:563 bws_menu.php:572
705
  msgid "Activate this plugin"
706
  msgstr "Activar el plugin"
707
 
708
- #: bws_menu.php:575
709
  msgid "Install this plugin"
710
  msgstr "Instalar el plugin"
711
 
712
- #: bws_menu.php:584
713
  msgid "Nothing found. Try another criteria."
714
  msgstr "Nada encontrado. Prueba otro criterio."
715
 
716
- #: bws_menu.php:621
717
  #, php-format
718
  msgid "By %s"
719
  msgstr "Por %s"
720
 
721
- #: bws_menu.php:628
722
  msgid "Already Installed"
723
  msgstr "Ya instalado"
724
 
725
- #: bws_menu.php:638
726
- msgid "Browse Free WordPress Themes"
727
- msgstr "Navegar gratis temas WordPress"
728
 
729
- #: bws_menu.php:647
730
  msgid "Send to support"
731
  msgstr "Enviar al soporte técnico"
732
 
733
- #: bws_menu.php:654
734
  msgid "Send to custom email &#187;"
735
  msgstr "Enviar al correo electrónico personalizado &#187;"
736
 
@@ -784,16 +789,16 @@ msgstr "Se restauraron todos los ajustes del plugin."
784
  msgid "Custom Code"
785
  msgstr "Código personalizado"
786
 
787
- #: class-bws-settings.php:427 deprecated.php:497
788
  msgid "You do not have sufficient permissions to edit plugins for this site."
789
  msgstr "No tienes suficientes permisos para editar plugins de este sitio."
790
 
791
- #: class-bws-settings.php:432 deprecated.php:618
792
  msgid "These styles will be added to the header on all pages of your site."
793
  msgstr ""
794
  "Estos estilos se agregarán a la cabecera en todas las páginas de tu sitio."
795
 
796
- #: class-bws-settings.php:435 deprecated.php:620
797
  #, php-format
798
  msgid ""
799
  "This PHP code will be hooked to the %s action and will be printed on front "
@@ -807,7 +812,7 @@ msgid "These code will be added to the header on all pages of your site."
807
  msgstr ""
808
  "Este código se agregará a la cabecera en todas las páginas de tu sitio."
809
 
810
- #: class-bws-settings.php:446 deprecated.php:644
811
  #, php-format
812
  msgid ""
813
  "You need to make this files writable before you can save your changes. See "
@@ -816,7 +821,7 @@ msgstr ""
816
  "Es necesario que estos archivos sean editables antes de poder guardar los "
817
  "cambios. Consulta %s el Codex %s para obtener más información."
818
 
819
- #: class-bws-settings.php:456 deprecated.php:626
820
  msgid "Browsing"
821
  msgstr "Navegar"
822
 
@@ -825,16 +830,16 @@ msgstr "Navegar"
825
  msgid "Activate custom %s code."
826
  msgstr "Activar código personalizado de %s."
827
 
828
- #: class-bws-settings.php:469 deprecated.php:633
829
  #, php-format
830
  msgid "Learn more about %s"
831
  msgstr "Aprende más de %s"
832
 
833
- #: class-bws-settings.php:529
834
  msgid "Miscellaneous Settings"
835
  msgstr "Ajustes varios"
836
 
837
- #: class-bws-settings.php:538 class-bws-settings.php:593
838
  #, php-format
839
  msgid ""
840
  "It is prohibited to change %s settings on this site in the %s network "
@@ -843,7 +848,7 @@ msgstr ""
843
  "Está prohibido cambiar la configuración de %s en este sitio por los "
844
  "parámetros de la red de %s."
845
 
846
- #: class-bws-settings.php:541 class-bws-settings.php:596
847
  #, php-format
848
  msgid ""
849
  "It is prohibited to view %s settings on this site in the %s network settings."
@@ -851,68 +856,68 @@ msgstr ""
851
  "Está prohibido ver la configuración de %s en este sitio por los "
852
  "parámetros de la red de %s."
853
 
854
- #: class-bws-settings.php:550
855
  msgid "Pro Options"
856
  msgstr "Opciones Pro"
857
 
858
- #: class-bws-settings.php:554
859
  msgid "Enable to display plugin Pro options."
860
  msgstr "Activar muestro de las opciones Pro del plugin."
861
 
862
- #: class-bws-settings.php:560
863
  msgid "Track Usage"
864
  msgstr "Seguir el uso"
865
 
866
- #: class-bws-settings.php:564
867
  msgid ""
868
  "Enable to allow tracking plugin usage anonymously in order to make it better."
869
  msgstr ""
870
  "Activar permiso de seguir el uso de plugin de forma anónima con el fin de "
871
  "hacerlo mejor."
872
 
873
- #: class-bws-settings.php:569
874
  msgid "Default Settings"
875
  msgstr "Ajustes por defecto"
876
 
877
- #: class-bws-settings.php:571
878
  msgid "Restore Settings"
879
  msgstr "Restaurar ajustes"
880
 
881
- #: class-bws-settings.php:572
882
  msgid "This will restore plugin settings to defaults."
883
  msgstr "Esto restaurará los ajustes de plugin por defecto."
884
 
885
- #: class-bws-settings.php:584
886
  msgid "Import / Export"
887
  msgstr "Importar / Exportar"
888
 
889
- #: class-bws-settings.php:700 class-bws-settings.php:733
890
- #: class-bws-settings.php:755
891
  msgid "License Key"
892
  msgstr "Clave de licencia"
893
 
894
- #: class-bws-settings.php:723
895
  msgid "Congratulations! Pro license is activated successfully."
896
  msgstr "¡Felicitaciones! Licencia Pro está activada con éxito."
897
 
898
- #: class-bws-settings.php:724
899
  #, php-format
900
  msgid "You will be automatically redirected to the %s in %s seconds."
901
  msgstr "En %s segundos automáticamente serás dirigido a %s."
902
 
903
- #: class-bws-settings.php:724
904
  msgid "Settings page"
905
  msgstr "Página de ajustes"
906
 
907
- #: class-bws-settings.php:739
908
  #, php-format
909
  msgid "Enter your license key to activate %s and get premium plugin features."
910
  msgstr ""
911
  "Introduce tu clave de licencia para activar %s y obtener funciones premium "
912
  "del plugin."
913
 
914
- #: class-bws-settings.php:742 class-bws-settings.php:929 deprecated.php:362
915
- #: deprecated.php:703
916
  msgid ""
917
  "Unfortunately, you have exceeded the number of available tries per day. "
918
  "Please, upload the plugin manually."
@@ -920,12 +925,12 @@ msgstr ""
920
  "Por desgracia, has excedido el número de intentos por hoy. Por favor, sube "
921
  "el plugin manualmente."
922
 
923
- #: class-bws-settings.php:745 deprecated.php:694
924
  #, php-format
925
  msgid "Start Your Free %s-Day Trial Now"
926
  msgstr "Comienza tu prueba gratuita de %s días"
927
 
928
- #: class-bws-settings.php:760
929
  msgid ""
930
  "If necessary, you can check if the license key is correct or reenter it in "
931
  "the field below."
@@ -933,15 +938,15 @@ msgstr ""
933
  "Si es necesario, puedes comprobar si la clave de licencia es correcta o "
934
  "introducirla otra vez en el campo abajo."
935
 
936
- #: class-bws-settings.php:765
937
  msgid "Manage License Settings"
938
  msgstr "Gestionar ajustes de licencias"
939
 
940
- #: class-bws-settings.php:767
941
  msgid "Login to Client Area"
942
  msgstr "Acceder al Área de Cliente"
943
 
944
- #: class-bws-settings.php:769
945
  msgid ""
946
  "Manage active licenses, download BWS products, and view your payment history "
947
  "using BestWebSoft Client Area."
@@ -949,12 +954,12 @@ msgstr ""
949
  "Gestiona licencias activas, descarga productos BWS y ve la historia de pagos "
950
  "con Área de Cliente de BestWebSoft."
951
 
952
- #: class-bws-settings.php:824 class-bws-settings.php:927 deprecated.php:141
953
- #: deprecated.php:360
954
  msgid "This license key is bound to another site."
955
  msgstr "Esta clave de licencia está enlazada al otro sitio."
956
 
957
- #: class-bws-settings.php:826 deprecated.php:143
958
  msgid ""
959
  "This license key is valid, but Your license has expired. If you want to "
960
  "update our plugin in future, you should extend the license."
@@ -962,11 +967,11 @@ msgstr ""
962
  "Esta clave de licencia está válida, pero tu licencia ha expirado. Si deseas "
963
  "actualizar nuestro plugin en el futuro debes extender la licencia."
964
 
965
- #: class-bws-settings.php:828 deprecated.php:145
966
  msgid "Unfortunately, you have exceeded the number of available tries."
967
  msgstr "Por desgracia, has excedido el número de intentos."
968
 
969
- #: class-bws-settings.php:830 deprecated.php:147
970
  msgid ""
971
  "Unfortunately, the Pro Trial licence was already installed to this domain. "
972
  "The Pro Trial license can be installed only once."
@@ -974,129 +979,155 @@ msgstr ""
974
  "Por desgracia, la licencia Pro Trial ha estado ya instalada en este dominio. "
975
  "La licencia Pro Trial puede estar instalada una sola vez."
976
 
977
- #: class-bws-settings.php:835 deprecated.php:151
978
  msgid "The Pro Trial license key is valid."
979
  msgstr "La licencia Pro Trial está válida."
980
 
981
- #: class-bws-settings.php:843 deprecated.php:159 deprecated.php:246
982
  #, php-format
983
  msgid ""
984
  "In order to continue using the plugin it is necessary to buy a %s license."
985
  msgstr "Para seguir usando el plugin es necesario comprar una licencia de %s."
986
 
987
- #: class-bws-settings.php:1040 deprecated.php:463
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
988
  msgid "Please, enter Your license key"
989
  msgstr "Por favor, introduce tu clave de licencia"
990
 
991
- #: class-bws-settings.php:1052
992
  msgid "Need Help?"
993
  msgstr "¿Necesitas ayuda?"
994
 
995
- #: class-bws-settings.php:1054
996
  msgid "Read the Instruction"
997
  msgstr "Lee las instrucciones"
998
 
999
- #: class-bws-settings.php:1058
1000
  msgid "Watch the Video"
1001
  msgstr "Ve el vídeo"
1002
 
1003
- #: class-bws-settings.php:1069
1004
  msgid "Start Your Free Trial"
1005
  msgstr "Comienza tu prueba gratuita"
1006
 
1007
- #: deactivation-form.php:26
1008
  msgid "Need help? We are ready to answer your questions."
1009
  msgstr ""
1010
 
1011
- #: deactivation-form.php:26
1012
  msgid "Contact Support"
1013
  msgstr ""
1014
 
1015
- #: deactivation-form.php:31
1016
  msgid "The plugin is not working"
1017
  msgstr ""
1018
 
1019
- #: deactivation-form.php:33
1020
  msgid "Kindly share what didn't work so we can fix it in future updates..."
1021
  msgstr ""
1022
 
1023
- #: deactivation-form.php:37
1024
  msgid "The plugin didn't work as expected"
1025
  msgstr ""
1026
 
1027
- #: deactivation-form.php:39
1028
  msgid "What did you expect?"
1029
  msgstr ""
1030
 
1031
- #: deactivation-form.php:43
1032
  msgid "The plugin suddenly stopped working"
1033
  msgstr ""
1034
 
1035
- #: deactivation-form.php:50
1036
  msgid "The plugin broke my site"
1037
  msgstr ""
1038
 
1039
- #: deactivation-form.php:57
1040
  msgid "I couldn't understand how to get it work"
1041
  msgstr ""
1042
 
1043
- #: deactivation-form.php:64
1044
  msgid "I found a better plugin"
1045
  msgstr ""
1046
 
1047
- #: deactivation-form.php:66
1048
  msgid "What's the plugin name?"
1049
  msgstr ""
1050
 
1051
- #: deactivation-form.php:70
1052
  msgid "The plugin is great, but I need specific feature that you don't support"
1053
  msgstr ""
1054
 
1055
- #: deactivation-form.php:72
1056
  msgid "What feature?"
1057
  msgstr ""
1058
 
1059
- #: deactivation-form.php:76
1060
  msgid "I no longer need the plugin"
1061
  msgstr ""
1062
 
1063
- #: deactivation-form.php:82
1064
  msgid "It's a temporary deactivation, I'm just debugging an issue"
1065
  msgstr ""
1066
 
1067
- #: deactivation-form.php:88
1068
  msgid "Other"
1069
  msgstr ""
1070
 
1071
- #: deactivation-form.php:122
1072
  msgid "Quick Feedback"
1073
  msgstr ""
1074
 
1075
- #: deactivation-form.php:123
1076
  msgid "If you have a moment, please let us know why you are deactivating"
1077
  msgstr ""
1078
 
1079
- #: deactivation-form.php:128
1080
- msgid "Anonymous feedback"
1081
  msgstr ""
1082
 
1083
- #: deactivation-form.php:130
1084
  msgid "Cancel"
1085
  msgstr ""
1086
 
1087
- #: deactivation-form.php:230
1088
  msgid "Processing"
1089
  msgstr ""
1090
 
1091
- #: deactivation-form.php:259
1092
  msgid "Submit & Deactivate"
1093
  msgstr ""
1094
 
1095
- #: deactivation-form.php:276
1096
  msgid "Please tell us the reason so we can improve it."
1097
  msgstr ""
1098
 
1099
- #: deactivation-form.php:344
1100
  msgid "Deactivate"
1101
  msgstr ""
1102
 
@@ -1127,81 +1158,81 @@ msgstr ""
1127
  "durante la compra). Si es necesario, haz clic en \"¿Has perdido tu "
1128
  "contraseña?\"."
1129
 
1130
- #: deprecated.php:247
1131
  msgid "After that, you can activate it by entering your license key."
1132
  msgstr "Después, puedes activarlo introduciendo tu clave de licencia."
1133
 
1134
- #: deprecated.php:249 deprecated.php:688
1135
  msgid "License key can be found in the"
1136
  msgstr "La clave de licencia se puede encontrar en el"
1137
 
1138
- #: deprecated.php:251 deprecated.php:690
1139
  msgid "(your username is the email address specified during the purchase)."
1140
  msgstr ""
1141
  "(tu nombre del usuario es la dirección de correo electrónico especificada "
1142
  "durante la compra)."
1143
 
1144
- #: deprecated.php:278
1145
  msgid ""
1146
  "Congratulations! The Pro license of the plugin is activated successfully."
1147
  msgstr "¡Felicitaciones! La licencia Pro está activada con éxito."
1148
 
1149
- #: deprecated.php:280 deprecated.php:669
1150
  msgid "Please, go to"
1151
  msgstr "Por favor ve a"
1152
 
1153
- #: deprecated.php:280 deprecated.php:669
1154
  msgid "the setting page"
1155
  msgstr "la página de ajustes"
1156
 
1157
- #: deprecated.php:281 deprecated.php:670
1158
  msgid "You will be redirected automatically in 5 seconds."
1159
  msgstr "En 5 segundos automáticamente serás dirigido a la nueva ubicación."
1160
 
1161
- #: deprecated.php:315
1162
  msgid "Check premium options on the plugin settings page!"
1163
  msgstr "¡Comprueba las opciones premium en la página de ajustes del plugin!"
1164
 
1165
- #: deprecated.php:478
1166
  msgid "Restore all plugin settings to defaults"
1167
  msgstr "Restaurar todos los ajustes de plugin por defecto"
1168
 
1169
- #: deprecated.php:480
1170
  msgid "Restore settings"
1171
  msgstr "Restaurar ajustes"
1172
 
1173
- #: deprecated.php:548 deprecated.php:575
1174
  #, php-format
1175
  msgid "File %s edited successfully."
1176
  msgstr "Archivo %s editado con éxito."
1177
 
1178
- #: deprecated.php:550 deprecated.php:577
1179
  msgid "Not enough permissions to create or update the file"
1180
  msgstr "No hay suficientes permisos para crear o actualizar el archivo"
1181
 
1182
- #: deprecated.php:580
1183
  msgid "Not enough permissions to create the file"
1184
  msgstr "No hay suficientes permisos para crear el archivo"
1185
 
1186
- #: deprecated.php:624
1187
  msgid "Editing"
1188
  msgstr "Editar"
1189
 
1190
- #: deprecated.php:667
1191
  msgid ""
1192
  "Congratulations! Pro version of the plugin is installed and activated "
1193
  "successfully."
1194
  msgstr "¡Felicitaciones! Licencia Pro está instalada y activada con éxito."
1195
 
1196
- #: deprecated.php:677
1197
  msgid "Show Pro features"
1198
  msgstr "Mostrar funciones Pro"
1199
 
1200
- #: deprecated.php:684
1201
  msgid "Enter your license key to install and activate"
1202
  msgstr "Introduce tu clave de licencia para instalar y activar"
1203
 
1204
- #: deprecated.php:686
1205
  msgid "version of the plugin."
1206
  msgstr "la versión del plugin."
1207
 
@@ -1241,18 +1272,15 @@ msgstr "SEO"
1241
  msgid "SMM"
1242
  msgstr "SMM"
1243
 
1244
- #: product_list.php:23
1245
- msgid ""
1246
- "Protect WordPress website forms from spam entries by means of math logic."
1247
  msgstr ""
1248
- "Protege los formularios en el sitio de WordPress de las entradas de spam "
1249
- "mediante lógica matemática."
1250
 
1251
- #: product_list.php:35
1252
  msgid "Create your personal car rental/booking and reservation website."
1253
  msgstr "Crea tu sitio personal de alquiler/reserva de automóviles."
1254
 
1255
- #: product_list.php:45
1256
  msgid ""
1257
  "Allow customers to reach you using secure contact form plugin any website "
1258
  "must have."
@@ -1260,42 +1288,42 @@ msgstr ""
1260
  "Permite a los clientes ponerse en contacto contigo usando el plugin seguro "
1261
  "del formulario de contacto que debe tener cualquier sitio."
1262
 
1263
- #: product_list.php:55
1264
  msgid "Add unlimited number of contact forms to WordPress website."
1265
  msgstr ""
1266
  "Añade el número ilimitado de formularios de contacto al sitio de WordPress."
1267
 
1268
- #: product_list.php:65
1269
  msgid "Save and manage Contact Form messages. Never lose important data."
1270
  msgstr ""
1271
  "Guarda y gestiona los mensajes de Contact Form plugin. Nunca pierde datos "
1272
  "importantes."
1273
 
1274
- #: product_list.php:75
1275
  msgid "Add unlimited custom pages to WordPress admin dashboard."
1276
  msgstr ""
1277
  "Añade el número ilimitado de páginas personalizadas al escritorio de "
1278
  "WordPress."
1279
 
1280
- #: product_list.php:82
1281
  msgid "Add custom fields to WordPress website search results."
1282
  msgstr ""
1283
  "Añade los campos personalizados a los resultados de búsqueda en el sitio de "
1284
  "WordPress."
1285
 
1286
- #: product_list.php:89
1287
  msgid ""
1288
  "Add custom post types and taxonomies to WordPress website search results."
1289
  msgstr ""
1290
  "Añade los tipos de contenido personalizados y taxonomías a los resultados de "
1291
  "búsqueda en el sitio de WordPress."
1292
 
1293
- #: product_list.php:99
1294
  msgid "Add PayPal and 2CO donate buttons to receive charity payments."
1295
  msgstr ""
1296
  "Añade los botones de donación PayPal y 2CO para recibir pagos benéficos."
1297
 
1298
- #: product_list.php:106
1299
  msgid ""
1300
  "Get latest error log messages to diagnose website problems. Define and fix "
1301
  "issues faster."
@@ -1303,7 +1331,7 @@ msgstr ""
1303
  "Recibe más recientes mensajes del registro de errores para diagnosticar los "
1304
  "problemas del sitio. Define y corrige los problemas más rápido."
1305
 
1306
- #: product_list.php:113
1307
  msgid ""
1308
  "Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and "
1309
  "widgets."
@@ -1311,7 +1339,7 @@ msgstr ""
1311
  "Añade los botones de Facebook Seguir, Me gusta y Compartir a las entradas, "
1312
  "páginas y widgets de WordPress."
1313
 
1314
- #: product_list.php:123
1315
  msgid ""
1316
  "Add beautiful galleries, albums & images to your WordPress website in a few "
1317
  "clicks."
@@ -1319,7 +1347,7 @@ msgstr ""
1319
  "Añade las galerías, álbumes e imágenes hermosos a tu sitio de WordPress en "
1320
  "unos pocos clics."
1321
 
1322
- #: product_list.php:133
1323
  msgid ""
1324
  "Add Google +1, Share, Follow, Hangout buttons and profile badge to WordPress "
1325
  "posts, pages and widgets."
@@ -1327,7 +1355,7 @@ msgstr ""
1327
  "Añade los botones de Google +1 Compartir, Seguir, Hangout e insignia de "
1328
  "perfil a las entradas, páginas y widgets de WordPress."
1329
 
1330
- #: product_list.php:143
1331
  msgid ""
1332
  "Stronger security solution which protects your WordPress website from hacks "
1333
  "and unauthorized login attempts."
@@ -1335,7 +1363,7 @@ msgstr ""
1335
  "Potente solución de seguridad que protege tu sitio de WordPress de los "
1336
  "hackeos y intentos no autorizados de acceder."
1337
 
1338
- #: product_list.php:153
1339
  msgid ""
1340
  "Add Adsense ads to WordPress website pages, posts, custom posts, search "
1341
  "results, categories, tags, and widgets."
@@ -1344,13 +1372,13 @@ msgstr ""
1344
  "entradas personalizadas, resultados de búsqueda, categorías, etiquetas y "
1345
  "widgets en el sitio de WordPress, ."
1346
 
1347
- #: product_list.php:163
1348
  msgid "Add Google Analytics code to WordPress website and track basic stats."
1349
  msgstr ""
1350
  "Añade el código de Google Analytics al sitio de WordPress y sigue las "
1351
  "estadísticas básicas."
1352
 
1353
- #: product_list.php:173
1354
  msgid ""
1355
  "Protect WordPress website forms from spam entries with Google Captcha "
1356
  "(reCaptcha)."
@@ -1358,13 +1386,13 @@ msgstr ""
1358
  "Protege los formularios en sitio de WordPress de las entradas de spam con "
1359
  "Google Captcha (reCaptcha)."
1360
 
1361
- #: product_list.php:183
1362
  msgid "Add customized Google maps to WordPress posts, pages and widgets."
1363
  msgstr ""
1364
  "Añade los mapas de Google personalizados a las entradas, páginas y widgets "
1365
  "de WordPress."
1366
 
1367
- #: product_list.php:193
1368
  msgid ""
1369
  "Generate and add XML sitemap to WordPress website. Help search engines index "
1370
  "your blog."
@@ -1372,7 +1400,7 @@ msgstr ""
1372
  "Genera y añade los archivos de XML sitemap al sitio de WordPress. Ayuda a "
1373
  "los buscadores a indexar tu blog."
1374
 
1375
- #: product_list.php:203
1376
  msgid ""
1377
  "Replace external WordPress website links with Google shortlinks and track "
1378
  "click stats."
@@ -1380,7 +1408,7 @@ msgstr ""
1380
  "Reemplaza los enlaces externos con los enlaces cortos de Google en el sitio "
1381
  "de WordPress y sigue las estadísticas de clics."
1382
 
1383
- #: product_list.php:210
1384
  msgid ""
1385
  "Protect WordPress website – allow and deny access for certain IP addresses, "
1386
  "hostnames, etc."
@@ -1388,7 +1416,7 @@ msgstr ""
1388
  "Protege el sitio de WordPress - permite y impide el acceso para determinadas "
1389
  "direcciones IP, nombres de host, etc."
1390
 
1391
- #: product_list.php:220
1392
  msgid ""
1393
  "Create your personal job board and listing WordPress website. Search jobs, "
1394
  "submit CV/resumes, choose candidates."
@@ -1396,7 +1424,7 @@ msgstr ""
1396
  "Crea tu tablero personal con la lista de trabajos en el sitio de WordPress. "
1397
  "Busca trabajos, envía CV, elija candidatos."
1398
 
1399
- #: product_list.php:227
1400
  msgid ""
1401
  "Protect WordPress website against brute force attacks. Limit rate of login "
1402
  "attempts."
@@ -1404,7 +1432,7 @@ msgstr ""
1404
  "Protege el sitio de WordPress contra ataques de fuerza bruta. Limita el "
1405
  "número de intentos de acceder."
1406
 
1407
- #: product_list.php:237
1408
  msgid ""
1409
  "Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. "
1410
  "5 plugins included – profile, insider, etc."
@@ -1412,7 +1440,7 @@ msgstr ""
1412
  "Añade los botones de LinkedIn Compartir y Seguir a las entradas, páginas y "
1413
  "widgets de WordPress. 5 plugins incluidos - perfil, insider, etc."
1414
 
1415
- #: product_list.php:247
1416
  msgid ""
1417
  "Translate WordPress website content to other languages manually. Create "
1418
  "multilingual pages, posts, widgets, menus, etc."
@@ -1421,7 +1449,7 @@ msgstr ""
1421
  "Crea páginas multilingües, asi como entradas, widgets, menús, etc. en varios "
1422
  "idiomas."
1423
 
1424
- #: product_list.php:257
1425
  msgid ""
1426
  "Add customizable pagination to WordPress website. Split long content to "
1427
  "multiple pages for better navigation."
@@ -1429,7 +1457,7 @@ msgstr ""
1429
  "Añade la paginación personalizable al sitio de WordPress. Divide contenido "
1430
  "largo en varias páginas para mejorar la navegación."
1431
 
1432
- #: product_list.php:267
1433
  msgid ""
1434
  "Generate PDF files and print WordPress posts/pages. Customize document "
1435
  "header/footer styles and appearance."
@@ -1438,7 +1466,7 @@ msgstr ""
1438
  "Personaliza los estilos de la cabecera/pie de la página del documento y su "
1439
  "apariencia."
1440
 
1441
- #: product_list.php:277
1442
  msgid ""
1443
  "Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, "
1444
  "Profile) to WordPress posts, pages and widgets."
@@ -1446,7 +1474,7 @@ msgstr ""
1446
  "Añade los botones de Pinterest Segiur, Guardar y widgets de perfil (Pines, "
1447
  "Tablero, Perfil) a las entradas, páginas y widgets de WordPress."
1448
 
1449
- #: product_list.php:287
1450
  msgid ""
1451
  "Create your personal portfolio WordPress website. Manage and showcase past "
1452
  "projects to get more clients."
@@ -1454,13 +1482,13 @@ msgstr ""
1454
  "Crea tu cartera personal en el sitio de WordPress. Gestiona y muestra los "
1455
  "proyectos anteriores para obtener más clientes."
1456
 
1457
- #: product_list.php:297
1458
  msgid "Export WordPress posts to CSV file format easily. Configure data order."
1459
  msgstr ""
1460
  "Exporta las entradas de WordPress en formato de archivo CSV fácilmente. "
1461
  "Configura el orden de los datos."
1462
 
1463
- #: product_list.php:304
1464
  msgid ""
1465
  "Add extra fields to default WordPress user profile. The easiest way to "
1466
  "create and manage additional custom values."
@@ -1468,7 +1496,7 @@ msgstr ""
1468
  "Añade los campos adicionales al perfil estándar del usuario de WordPress. La "
1469
  "forma más fácil de crear y gestionar los valores personalizados adicionales."
1470
 
1471
- #: product_list.php:311
1472
  msgid ""
1473
  "Add and display HTML advertisement banner on WordPress website. Customize "
1474
  "bar styles and appearance."
@@ -1476,7 +1504,7 @@ msgstr ""
1476
  "Añade y muestra los anuncios publicitarios de HTML en el sitio de WordPress. "
1477
  "Personaliza los estilos y la apariencia de la barra."
1478
 
1479
- #: product_list.php:321
1480
  msgid ""
1481
  "Add customizable quotes and tips blocks to WordPress posts, pages and "
1482
  "widgets."
@@ -1484,7 +1512,7 @@ msgstr ""
1484
  "Añade las citas personalizables y bloques de consejos a las entradas, "
1485
  "páginas y widgets de WordPress."
1486
 
1487
- #: product_list.php:328
1488
  msgid ""
1489
  "Add rating plugin to your WordPress website to receive feedback from your "
1490
  "customers."
@@ -1492,7 +1520,7 @@ msgstr ""
1492
  "Añade el plugin de valoración a tu sitio de WordPress para recibir "
1493
  "comentarios de tus clientes."
1494
 
1495
- #: product_list.php:335
1496
  msgid ""
1497
  "Create your personal real estate WordPress website. Sell, rent and buy "
1498
  "properties. Add, search and browse listings easily."
@@ -1501,7 +1529,7 @@ msgstr ""
1501
  "alquila y compra las propiedades. Añade, busca y navega las listas "
1502
  "fácilmente."
1503
 
1504
- #: product_list.php:345
1505
  msgid ""
1506
  "Add related, featured, latest, and popular posts to your WordPress website. "
1507
  "Connect your blog readers with a relevant content."
@@ -1510,7 +1538,7 @@ msgstr ""
1510
  "sitio de WordPress. Conecta a tus lectores de blog con el contenido "
1511
  "relevante."
1512
 
1513
- #: product_list.php:352
1514
  msgid ""
1515
  "Send bulk email messages to WordPress users. Custom templates, advanced "
1516
  "settings and detailed reports."
@@ -1518,7 +1546,7 @@ msgstr ""
1518
  "Envía mensajes de correo masivo a los usuarios de WordPress. Plantillas "
1519
  "personalizadas, ajustes avanzados e informes detallados."
1520
 
1521
- #: product_list.php:362
1522
  msgid ""
1523
  "The best responsive slider plugin for your WordPress website. Create "
1524
  "beautifully animated slides just in a few clicks."
@@ -1526,7 +1554,7 @@ msgstr ""
1526
  "El mejor adaptable carrusel plugin para tu sitio de WordPress. Crea las "
1527
  "diapositivas maravillosamente animadas con sólo unos clics."
1528
 
1529
- #: product_list.php:369
1530
  msgid ""
1531
  "Configure SMTP server to receive email messages from WordPress to Gmail, "
1532
  "Yahoo, Hotmail and other services."
@@ -1534,7 +1562,7 @@ msgstr ""
1534
  "Configura el servidor SMTP para recibir mensajes de correo electrónico de "
1535
  "WordPress en Gmail, Yahoo, Hotmail y otros servicios."
1536
 
1537
- #: product_list.php:376
1538
  msgid ""
1539
  "Add social media buttons and widgets to WordPress posts, pages and widgets. "
1540
  "FB, Twitter, G+1, Pinterest, LinkedIn."
@@ -1543,7 +1571,7 @@ msgstr ""
1543
  "entradas, páginas y widgets de WordPress. FB, Twitter, G+1, Pinterest, "
1544
  "LinkedIn."
1545
 
1546
- #: product_list.php:386
1547
  msgid ""
1548
  "Add social media login, registration, and commenting to your WordPress "
1549
  "website."
@@ -1551,7 +1579,7 @@ msgstr ""
1551
  "Añade el acceso, registro y comentarios a los medios de comunicación social "
1552
  "a tu sitio de WordPress."
1553
 
1554
- #: product_list.php:393
1555
  msgid ""
1556
  "Add email newsletter sign up form to WordPress posts, pages and widgets. "
1557
  "Collect data and subscribe your users."
@@ -1560,7 +1588,7 @@ msgstr ""
1560
  "páginas y widgets de WordPress. Recoge los datos y suscribe a tus usuarios a "
1561
  "las noticias."
1562
 
1563
- #: product_list.php:403
1564
  msgid ""
1565
  "Add testimonials and feedbacks from your customers to WordPress website "
1566
  "posts, pages, and widgets."
@@ -1568,7 +1596,7 @@ msgstr ""
1568
  "Añade los testimonios y comentarios de tus clientes a las entradas, páginas "
1569
  "y widgets en el sitio de WordPress."
1570
 
1571
- #: product_list.php:410
1572
  msgid ""
1573
  "Best timesheet plugin for WordPress. Track employee time, streamline "
1574
  "attendance and generate reports."
@@ -1577,7 +1605,7 @@ msgstr ""
1577
  "laboral de los empleados, optimiza el horario de trabajo en la oficina y "
1578
  "crea informes generales."
1579
 
1580
- #: product_list.php:420
1581
  msgid ""
1582
  "Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts "
1583
  "and pages."
@@ -1585,7 +1613,7 @@ msgstr ""
1585
  "Añade los botones de Twitter Seguir, Twittear, Hashtag y Mencionar a las "
1586
  "entradas y páginas de WordPress."
1587
 
1588
- #: product_list.php:430
1589
  msgid ""
1590
  "Automatically check and update WordPress website core with all installed "
1591
  "plugins and themes to the latest versions."
@@ -1593,7 +1621,7 @@ msgstr ""
1593
  "Compruebа y actualiza automáticamente el núcleo de sitio de WordPress a las "
1594
  "últimas versiones con todos plugins y temas que tienes instalados."
1595
 
1596
- #: product_list.php:440
1597
  msgid ""
1598
  "Powerful user role management plugin for WordPress website. Create, edit, "
1599
  "copy, and delete user roles."
@@ -1601,7 +1629,7 @@ msgstr ""
1601
  "Poderoso plugin de gestión de funciones para el sitio de WordPress. Crea, "
1602
  "edita, copia y borra los perfiles de usuarios."
1603
 
1604
- #: product_list.php:450
1605
  msgid ""
1606
  "Display live count of online visitors who are currently browsing your "
1607
  "WordPress website."
@@ -1609,7 +1637,7 @@ msgstr ""
1609
  "Lleva la cuenta de los visitantes en línea que están hojeando tu sitio de "
1610
  "WordPress en ese momento."
1611
 
1612
- #: product_list.php:460
1613
  msgid ""
1614
  "Backup and export Zendesk Help Center content automatically to your "
1615
  "WordPress website database."
@@ -1617,6 +1645,22 @@ msgstr ""
1617
  "Haz la copia de seguridad y exporta el contenido de Zendesk Centro de Ayuda "
1618
  "automáticamente a tu base de datos en el sitio de WordPress."
1619
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1620
  #~ msgid ""
1621
  #~ "You can use one license of the Pro plugin for one domain only. Please "
1622
  #~ "check and edit your license or domain if necessary using you personal "
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: bestwebsoft\n"
6
+ "POT-Creation-Date: 2017-09-11 16:42+0300\n"
7
+ "PO-Revision-Date: 2017-09-11 16:42+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: BestWebSoft <plugin@bestwebsoft.com>\n"
10
  "Language: es\n"
41
  msgid "Like the plugin?"
42
  msgstr "¿Te gusta el plugin?"
43
 
44
+ #: bws_functions.php:93
45
+ #, php-format
46
+ msgid "%s reviews"
47
+ msgstr ""
48
+
49
  #: bws_functions.php:94
50
  msgid "Rate it"
51
  msgstr "Valorar"
54
  msgid "Need help?"
55
  msgstr "¿Necesitas ayuda?"
56
 
57
+ #: bws_functions.php:104 bws_functions.php:917 class-bws-settings.php:1058
58
  msgid "Visit Help Center"
59
  msgstr "Visita el Centro de Ayuda"
60
 
62
  msgid "Want to support the plugin?"
63
  msgstr "¿Quieres apoyar al plugin?"
64
 
65
+ #: bws_functions.php:108 bws_menu.php:560
66
  msgid "Donate"
67
  msgstr "Donar"
68
 
78
  "otherwise the Pro plugin will be deactivated."
79
  msgstr ""
80
 
81
+ #: bws_functions.php:128 bws_functions.php:341 bws_menu.php:631
82
+ #: class-bws-settings.php:144
83
  msgid "Learn More"
84
  msgstr "Aprende más"
85
 
99
  "Para seguir recibiendo soporte prioritario y actualizaciones de plugin debes "
100
  "extenderla."
101
 
102
+ #: bws_functions.php:147 bws_functions.php:389 deprecated.php:586
103
  msgid "Learn more"
104
  msgstr "Aprende más"
105
 
129
  msgid "Thank you for installing %s plugin!"
130
  msgstr "¡Gracias por haber instalado plugin de %s!"
131
 
132
+ #: bws_functions.php:210
133
  msgid "Let's get started"
134
  msgstr "¡Empecemos!"
135
 
136
+ #: bws_functions.php:211 bws_functions.php:244 bws_menu.php:564
137
+ #: bws_menu.php:566
138
  msgid "Settings"
139
  msgstr "Ajustes"
140
 
141
+ #: bws_functions.php:213 bws_menu.php:326 class-bws-settings.php:747
142
+ #: class-bws-settings.php:1060 class-bws-settings.php:1070 deprecated.php:697
143
  msgid "or"
144
  msgstr "o"
145
 
146
+ #: bws_functions.php:214 bws_functions.php:246
147
  msgid "Add New"
148
  msgstr "Añadir nuevo"
149
 
150
+ #: bws_functions.php:218 bws_functions.php:228 bws_functions.php:332
151
+ #: bws_functions.php:385 bws_functions.php:487
152
  msgid "Close notice"
153
  msgstr "Descartar"
154
 
155
+ #: bws_functions.php:233
156
  msgid "Thank you for installing plugins by BestWebSoft!"
157
  msgstr "¡Gracias por haber instalado los plugins de BestWebSoft!"
158
 
159
+ #: bws_functions.php:235
160
  msgid "More Details"
161
  msgstr "Más detalles"
162
 
163
+ #: bws_functions.php:236
164
  msgid "Less Details"
165
  msgstr "Menos detalles"
166
 
167
+ #: bws_functions.php:264
168
  msgid "Deprecated function(-s) is used on the site here:"
169
  msgstr "Función(-es) obsoleta(-s) se utiliza(-n) en el sitio aquí:"
170
 
171
+ #: bws_functions.php:278
172
  msgid ""
173
  "This function(-s) will be removed over time. Please update the product(-s)."
174
  msgstr ""
175
  "Esta(-s) función(-es) se eliminará(-n) con el tiempo. Actualiza el(los) "
176
  "producto(-s)."
177
 
178
+ #: bws_functions.php:337
179
  msgid "It’s time to upgrade your"
180
  msgstr "¡Ahora es el tiempo de actualizar tu"
181
 
182
+ #: bws_functions.php:337
183
  msgid "to"
184
  msgstr "a"
185
 
186
+ #: bws_functions.php:337
187
  msgid "version!"
188
  msgstr "versión!"
189
 
190
+ #: bws_functions.php:338
191
  msgid "Extend standard plugin functionality with new great options."
192
  msgstr ""
193
  "Amplía la funcionalidad del plugin estándar con nuevas excelentes opciones."
194
 
195
+ #: bws_functions.php:389
196
  #, php-format
197
  msgid ""
198
  "Your license key for %s expires on %s and you won't be granted TOP-PRIORITY "
201
  "Tu clave de licencia para %s expirará el %s y no vas a recibir el SOPORTE "
202
  "PRIORITARIO O ACTUALIZACIONES."
203
 
204
+ #: bws_functions.php:482
205
  #, php-format
206
  msgid "Thank you for choosing %s plugin!"
207
  msgstr "¡Gracias por haber elegido plugin de %s!"
208
 
209
+ #: bws_functions.php:483
210
  msgid ""
211
  "If you have a feature, suggestion or idea you'd like to see in the plugin, "
212
  "we'd love to hear about it!"
214
  "Si tienes una función, sugerencia o idea que te gustaría ver en el plugin, "
215
  "nos encantaría saberlo."
216
 
217
+ #: bws_functions.php:484
218
  msgid "Suggest a Feature"
219
  msgstr "Ofrecer una función"
220
 
221
+ #: bws_functions.php:500 class-bws-settings.php:540 class-bws-settings.php:543
222
+ #: class-bws-settings.php:595 class-bws-settings.php:598
223
  msgid "Notice"
224
  msgstr "Aviso"
225
 
226
+ #: bws_functions.php:500
227
  msgid "The plugin's settings have been changed."
228
  msgstr "Se han cambiado los ajustes del plugin."
229
 
230
+ #: bws_functions.php:501 class-bws-settings.php:183 class-bws-settings.php:203
231
+ #: deprecated.php:642
232
  msgid "Save Changes"
233
  msgstr "Guardar cambios"
234
 
235
+ #: bws_functions.php:515
236
  msgid ""
237
  "You can always look at premium options by checking the \"Pro Options\" in "
238
  "the \"Misc\" tab."
240
  "Siempre puedes ver las opciones premium haciendo clic en las \"Opciones Pro"
241
  "\" en la ficha \"Varios\"."
242
 
243
+ #: bws_functions.php:653
244
  msgid "Add BWS Shortcode"
245
  msgstr "Añadir BWS shortcode"
246
 
247
+ #: bws_functions.php:654
248
  msgid "Add BWS Plugins Shortcode"
249
  msgstr "Añadir shortcode de plugins BWS"
250
 
251
+ #: bws_functions.php:673
252
  msgid "Add shortcode"
253
  msgstr "Añadir shortcode"
254
 
255
+ #: bws_functions.php:673
256
  msgid "Add BestWebSoft plugins' shortcodes using this button."
257
  msgstr "Añadir los shortcodes de los plugins de BestWebSoft usando este botón."
258
 
259
+ #: bws_functions.php:729
260
  msgid "Close"
261
  msgstr "Descartar"
262
 
263
+ #: bws_functions.php:821
264
  msgid "Are you sure you want to restore default settings?"
265
  msgstr ""
266
  "¿Estás seguro de que deseas restaurar los ajustes de plugin por defecto?"
267
 
268
+ #: bws_functions.php:824
269
  msgid "Yes, restore all settings"
270
  msgstr "Sí, restaurar todos los ajustes"
271
 
272
+ #: bws_functions.php:825
273
  msgid "No, go back to the settings page"
274
  msgstr "No, volver a la página de ajustes"
275
 
276
+ #: bws_functions.php:867
277
  msgid "Plugin"
278
  msgstr "Plugin"
279
 
280
+ #: bws_functions.php:876
281
  msgid "Shortcode settings"
282
  msgstr "Ajustes de shortcode"
283
 
284
+ #: bws_functions.php:881
285
  msgid "The shortcode will be inserted"
286
  msgstr "El shortcode se insertará"
287
 
288
+ #: bws_functions.php:922
289
  msgid "FAQ"
290
  msgstr "FAQ"
291
 
292
+ #: bws_functions.php:928
293
  msgid "For more information:"
294
  msgstr "Más información"
295
 
296
+ #: bws_functions.php:929
297
  msgid "Documentation"
298
  msgstr "Documentación"
299
 
300
+ #: bws_functions.php:930
301
  msgid "Video Instructions"
302
  msgstr "Video instrucciones"
303
 
304
+ #: bws_functions.php:931
305
  msgid "Submit a Request"
306
  msgstr "Presentar una solicitud"
307
 
308
+ #: bws_menu.php:101 class-bws-settings.php:792 deprecated.php:323
309
  msgid "Wrong license key"
310
  msgstr "Clave de licencia incorrecta"
311
 
312
+ #: bws_menu.php:122 class-bws-settings.php:818 class-bws-settings.php:885
313
+ #: class-bws-settings.php:921 deprecated.php:133 deprecated.php:199
314
+ #: deprecated.php:353
315
  msgid ""
316
  "Something went wrong. Please try again later. If the error appears again, "
317
  "please contact us"
319
  "Algo salió mal. Por favor, inténtalo de nuevo más tarde. Si el error aparece "
320
  "de nuevo, ponte en contacto con nosotros"
321
 
322
+ #: bws_menu.php:122 class-bws-settings.php:818 class-bws-settings.php:885
323
+ #: class-bws-settings.php:921 deprecated.php:133 deprecated.php:199
324
+ #: deprecated.php:353
325
  msgid "We are sorry for inconvenience."
326
  msgstr "Lo siento para la inconveniencia causada."
327
 
328
+ #: bws_menu.php:128 class-bws-settings.php:824 class-bws-settings.php:927
329
+ #: deprecated.php:139 deprecated.php:359
330
  msgid "Wrong license key."
331
  msgstr "Clave de licencia incorrecta."
332
 
342
  msgid "Log in"
343
  msgstr "Acceder"
344
 
345
+ #: bws_menu.php:132 bws_menu.php:332 deprecated.php:261
346
  msgid "Unfortunately, you have exceeded the number of available tries per day."
347
  msgstr "Por desgracia, has excedido el número de intentos por hoy."
348
 
349
+ #: bws_menu.php:134 deprecated.php:365
350
  #, php-format
351
  msgid ""
352
  "Unfortunately, Your license has expired. To continue getting top-priority "
355
  "Por desgracia, tu licencia ha expirado. Para seguir recibiendo soporte "
356
  "prioritario y actualizaciones de plugin debes extenderla en tu %s"
357
 
358
+ #: bws_menu.php:136 class-bws-settings.php:935 deprecated.php:367
359
  msgid ""
360
  "Unfortunately, the Pro licence was already installed to this domain. The Pro "
361
  "Trial license can be installed only once."
363
  "Por desgracia, la licencia Pro ha estado ya instalada en este dominio. La "
364
  "licencia Pro Trial puede estar instalada una sola vez."
365
 
366
+ #: bws_menu.php:142 class-bws-settings.php:839 deprecated.php:153
367
  msgid "The license key is valid."
368
  msgstr "La clave de licencia está válida."
369
 
370
+ #: bws_menu.php:144 class-bws-settings.php:842 deprecated.php:156
371
  msgid "Your license will expire on"
372
  msgstr "Tu licencia expirará el"
373
 
374
  #: bws_menu.php:146
375
+ msgid "Congratulations! Pro Membership license is activated successfully."
376
+ msgstr ""
377
 
378
+ #: bws_menu.php:153 class-bws-settings.php:1007 deprecated.php:436
379
  msgid ""
380
  "Something went wrong. Try again later or upload the plugin manually. We are "
381
  "sorry for inconvenience."
529
  msgid "Please enter a valid email address."
530
  msgstr "Por favor, introduce la dirección de correo electrónico válida."
531
 
532
+ #: bws_menu.php:262
533
+ #, php-format
534
+ msgid "Email with system info is sent to %s."
535
+ msgstr ""
536
 
537
+ #: bws_menu.php:266
538
  msgid "Thank you for contacting us."
539
  msgstr "¡Gracias por haber contactado con nosotros!"
540
 
541
+ #: bws_menu.php:289
542
  msgid "Sorry, email message could not be delivered."
543
  msgstr "Lo siento, el mensaje de correo electrónico no se pudo enviar."
544
 
545
+ #: bws_menu.php:305 bws_menu.php:309 bws_menu.php:358 deprecated.php:91
546
  msgid "Plugins"
547
  msgstr "Plugins"
548
 
549
+ #: bws_menu.php:306 bws_menu.php:310 bws_menu.php:618 deprecated.php:92
550
  msgid "Themes"
551
  msgstr "Temas"
552
 
553
+ #: bws_menu.php:307 bws_menu.php:311 bws_menu.php:648
554
  msgid "System status"
555
  msgstr "Información de sistema"
556
 
557
+ #: bws_menu.php:315
558
  msgid "Support"
559
  msgstr "Soporte"
560
 
561
+ #: bws_menu.php:316
562
  msgid "Manage purchased licenses & subscriptions"
563
  msgstr "Gestionar licencias y suscripciones adquiridas"
564
 
565
+ #: bws_menu.php:324
566
  #, php-format
567
  msgid "Get Access to %s+ Premium Plugins"
568
  msgstr "Obtener acceso a %s+ Premium plugins"
569
 
570
+ #: bws_menu.php:326
571
  msgid "Subscribe to Pro Membership"
572
  msgstr "Suscribirse a Pro Membership"
573
 
574
+ #: bws_menu.php:334 bws_menu.php:345 class-bws-settings.php:760
575
  #: deprecated.php:227
576
  msgid "Check license key"
577
  msgstr "Comprueba la clave de licencia"
578
 
579
+ #: bws_menu.php:337
580
  msgid "Enter your license key"
581
  msgstr "Introduce tu clave de licencia"
582
 
583
+ #: bws_menu.php:343 bws_menu.php:570 bws_menu.php:579
584
+ #: class-bws-settings.php:739 deprecated.php:259 deprecated.php:267
585
+ #: deprecated.php:631 deprecated.php:703 deprecated.php:712
586
  msgid "Activate"
587
  msgstr "Activar"
588
 
589
+ #: bws_menu.php:359
590
  msgid "Upload Plugin"
591
  msgstr "Subir plugin"
592
 
593
+ #: bws_menu.php:363
594
  #, php-format
595
  msgid ""
596
  "The plugin generated %d characters of <strong>unexpected output</strong> "
603
  "problemas con los feeds de sindicación u otras cuestiones, prueba desactivar "
604
  "o borrar este plugin."
605
 
606
+ #: bws_menu.php:365
607
  msgid ""
608
  "Plugin could not be activated because it triggered a <strong>fatal error</"
609
  "strong>."
610
  msgstr ""
611
  "No se pudo activar el plugin porque provocó un <strong>error fatal</ strong>."
612
 
613
+ #: bws_menu.php:368
614
  msgid "Plugin <strong>activated</strong>."
615
  msgstr "Plugin <strong>activado</strong>."
616
 
617
+ #: bws_menu.php:375
618
  msgid "Installing Plugin"
619
  msgstr "Instalando el plugin"
620
 
621
+ #: bws_menu.php:381
622
  msgid "Downloading install package from"
623
  msgstr "Descargando el paquete de instalación de"
624
 
625
+ #: bws_menu.php:398 bws_menu.php:429 bws_menu.php:440 deprecated.php:388
626
+ #: deprecated.php:410 deprecated.php:432
 
 
627
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
628
  msgstr ""
629
  "Error al descargar el archivo zip. Por favor, sube el plugin manualmente"
630
 
631
+ #: bws_menu.php:406
632
  msgid "Unpacking the package"
633
  msgstr "Desempacando el paquete"
634
 
635
+ #: bws_menu.php:411 bws_menu.php:419
636
  msgid "Installing the plugin"
637
  msgstr "Instalando el plugin"
638
 
639
+ #: bws_menu.php:415 deprecated.php:400
640
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
641
  msgstr "Error al abrir el archivo zip. Por favor, sube el plugin manualmente"
642
 
643
+ #: bws_menu.php:422 deprecated.php:406
644
  msgid ""
645
  "Your server does not support either ZipArchive or Phar. Please, upload the "
646
  "plugin manually"
648
  "Tu servidor no admite ni ZipArchive ni Phar. Por favor, sube el plugin "
649
  "manualmente"
650
 
651
+ #: bws_menu.php:425
652
  #, php-format
653
  msgid "The plugin %s is successfully installed."
654
  msgstr "El plugin %s se ha instalado con éxito."
655
 
656
+ #: bws_menu.php:432 deprecated.php:413
657
  msgid "UploadDir is not writable. Please, upload the plugin manually"
658
  msgstr "UploadDir no se puede editar. Por favor, sube el plugin manualmente"
659
 
660
+ #: bws_menu.php:437
661
  msgid "Activate Plugin"
662
  msgstr "Activar plugin"
663
 
664
+ #: bws_menu.php:437 bws_menu.php:443
665
  msgid "Return to BestWebSoft Panel"
666
  msgstr "Volver a Panel de BestWebSoft"
667
 
668
+ #: bws_menu.php:451 bws_menu.php:471 bws_menu.php:600
669
  msgid "All"
670
  msgstr "Todo"
671
 
672
+ #: bws_menu.php:454 bws_menu.php:637
673
  msgid "Installed"
674
  msgstr "Instalado"
675
 
676
+ #: bws_menu.php:457
677
  msgid "Not Installed"
678
  msgstr "No instalado"
679
 
680
+ #: bws_menu.php:464
681
  msgid "Filter results"
682
  msgstr "Filtrar resultados"
683
 
684
+ #: bws_menu.php:467 bws_menu.php:596
685
  msgid "Category"
686
  msgstr "Categoría"
687
 
688
+ #: bws_menu.php:531
689
  msgid "Not installed"
690
  msgstr "No instalado"
691
 
692
+ #: bws_menu.php:535
693
  msgid "Renew to get updates"
694
  msgstr "Renovar para obtener actualizaciones"
695
 
696
+ #: bws_menu.php:538
697
  #, php-format
698
  msgid "Update to v %s"
699
  msgstr "Actualizar a v %s"
700
 
701
+ #: bws_menu.php:550 bws_menu.php:573 bws_menu.php:582
702
  msgid "Install Now"
703
  msgstr "Instalar"
704
 
705
+ #: bws_menu.php:556 class-bws-settings.php:157 class-bws-settings.php:1067
706
  msgid "Upgrade to Pro"
707
  msgstr "Actualizar a Pro"
708
 
709
+ #: bws_menu.php:570 bws_menu.php:579
710
  msgid "Activate this plugin"
711
  msgstr "Activar el plugin"
712
 
713
+ #: bws_menu.php:582
714
  msgid "Install this plugin"
715
  msgstr "Instalar el plugin"
716
 
717
+ #: bws_menu.php:591
718
  msgid "Nothing found. Try another criteria."
719
  msgstr "Nada encontrado. Prueba otro criterio."
720
 
721
+ #: bws_menu.php:628
722
  #, php-format
723
  msgid "By %s"
724
  msgstr "Por %s"
725
 
726
+ #: bws_menu.php:635
727
  msgid "Already Installed"
728
  msgstr "Ya instalado"
729
 
730
+ #: bws_menu.php:645
731
+ msgid "Browse More WordPress Themes"
732
+ msgstr ""
733
 
734
+ #: bws_menu.php:654
735
  msgid "Send to support"
736
  msgstr "Enviar al soporte técnico"
737
 
738
+ #: bws_menu.php:661
739
  msgid "Send to custom email &#187;"
740
  msgstr "Enviar al correo electrónico personalizado &#187;"
741
 
789
  msgid "Custom Code"
790
  msgstr "Código personalizado"
791
 
792
+ #: class-bws-settings.php:427 deprecated.php:498
793
  msgid "You do not have sufficient permissions to edit plugins for this site."
794
  msgstr "No tienes suficientes permisos para editar plugins de este sitio."
795
 
796
+ #: class-bws-settings.php:432 deprecated.php:620
797
  msgid "These styles will be added to the header on all pages of your site."
798
  msgstr ""
799
  "Estos estilos se agregarán a la cabecera en todas las páginas de tu sitio."
800
 
801
+ #: class-bws-settings.php:435 deprecated.php:622
802
  #, php-format
803
  msgid ""
804
  "This PHP code will be hooked to the %s action and will be printed on front "
812
  msgstr ""
813
  "Este código se agregará a la cabecera en todas las páginas de tu sitio."
814
 
815
+ #: class-bws-settings.php:446 deprecated.php:646
816
  #, php-format
817
  msgid ""
818
  "You need to make this files writable before you can save your changes. See "
821
  "Es necesario que estos archivos sean editables antes de poder guardar los "
822
  "cambios. Consulta %s el Codex %s para obtener más información."
823
 
824
+ #: class-bws-settings.php:456 deprecated.php:628
825
  msgid "Browsing"
826
  msgstr "Navegar"
827
 
830
  msgid "Activate custom %s code."
831
  msgstr "Activar código personalizado de %s."
832
 
833
+ #: class-bws-settings.php:469 deprecated.php:635
834
  #, php-format
835
  msgid "Learn more about %s"
836
  msgstr "Aprende más de %s"
837
 
838
+ #: class-bws-settings.php:531
839
  msgid "Miscellaneous Settings"
840
  msgstr "Ajustes varios"
841
 
842
+ #: class-bws-settings.php:540 class-bws-settings.php:595
843
  #, php-format
844
  msgid ""
845
  "It is prohibited to change %s settings on this site in the %s network "
848
  "Está prohibido cambiar la configuración de %s en este sitio por los "
849
  "parámetros de la red de %s."
850
 
851
+ #: class-bws-settings.php:543 class-bws-settings.php:598
852
  #, php-format
853
  msgid ""
854
  "It is prohibited to view %s settings on this site in the %s network settings."
856
  "Está prohibido ver la configuración de %s en este sitio por los "
857
  "parámetros de la red de %s."
858
 
859
+ #: class-bws-settings.php:552
860
  msgid "Pro Options"
861
  msgstr "Opciones Pro"
862
 
863
+ #: class-bws-settings.php:556
864
  msgid "Enable to display plugin Pro options."
865
  msgstr "Activar muestro de las opciones Pro del plugin."
866
 
867
+ #: class-bws-settings.php:562
868
  msgid "Track Usage"
869
  msgstr "Seguir el uso"
870
 
871
+ #: class-bws-settings.php:566
872
  msgid ""
873
  "Enable to allow tracking plugin usage anonymously in order to make it better."
874
  msgstr ""
875
  "Activar permiso de seguir el uso de plugin de forma anónima con el fin de "
876
  "hacerlo mejor."
877
 
878
+ #: class-bws-settings.php:571
879
  msgid "Default Settings"
880
  msgstr "Ajustes por defecto"
881
 
882
+ #: class-bws-settings.php:573
883
  msgid "Restore Settings"
884
  msgstr "Restaurar ajustes"
885
 
886
+ #: class-bws-settings.php:574
887
  msgid "This will restore plugin settings to defaults."
888
  msgstr "Esto restaurará los ajustes de plugin por defecto."
889
 
890
+ #: class-bws-settings.php:586
891
  msgid "Import / Export"
892
  msgstr "Importar / Exportar"
893
 
894
+ #: class-bws-settings.php:702 class-bws-settings.php:735
895
+ #: class-bws-settings.php:757
896
  msgid "License Key"
897
  msgstr "Clave de licencia"
898
 
899
+ #: class-bws-settings.php:725
900
  msgid "Congratulations! Pro license is activated successfully."
901
  msgstr "¡Felicitaciones! Licencia Pro está activada con éxito."
902
 
903
+ #: class-bws-settings.php:726
904
  #, php-format
905
  msgid "You will be automatically redirected to the %s in %s seconds."
906
  msgstr "En %s segundos automáticamente serás dirigido a %s."
907
 
908
+ #: class-bws-settings.php:726
909
  msgid "Settings page"
910
  msgstr "Página de ajustes"
911
 
912
+ #: class-bws-settings.php:741
913
  #, php-format
914
  msgid "Enter your license key to activate %s and get premium plugin features."
915
  msgstr ""
916
  "Introduce tu clave de licencia para activar %s y obtener funciones premium "
917
  "del plugin."
918
 
919
+ #: class-bws-settings.php:744 class-bws-settings.php:931 deprecated.php:363
920
+ #: deprecated.php:706
921
  msgid ""
922
  "Unfortunately, you have exceeded the number of available tries per day. "
923
  "Please, upload the plugin manually."
925
  "Por desgracia, has excedido el número de intentos por hoy. Por favor, sube "
926
  "el plugin manualmente."
927
 
928
+ #: class-bws-settings.php:747 deprecated.php:697
929
  #, php-format
930
  msgid "Start Your Free %s-Day Trial Now"
931
  msgstr "Comienza tu prueba gratuita de %s días"
932
 
933
+ #: class-bws-settings.php:762
934
  msgid ""
935
  "If necessary, you can check if the license key is correct or reenter it in "
936
  "the field below."
938
  "Si es necesario, puedes comprobar si la clave de licencia es correcta o "
939
  "introducirla otra vez en el campo abajo."
940
 
941
+ #: class-bws-settings.php:767
942
  msgid "Manage License Settings"
943
  msgstr "Gestionar ajustes de licencias"
944
 
945
+ #: class-bws-settings.php:769
946
  msgid "Login to Client Area"
947
  msgstr "Acceder al Área de Cliente"
948
 
949
+ #: class-bws-settings.php:771
950
  msgid ""
951
  "Manage active licenses, download BWS products, and view your payment history "
952
  "using BestWebSoft Client Area."
954
  "Gestiona licencias activas, descarga productos BWS y ve la historia de pagos "
955
  "con Área de Cliente de BestWebSoft."
956
 
957
+ #: class-bws-settings.php:826 class-bws-settings.php:929 deprecated.php:141
958
+ #: deprecated.php:361
959
  msgid "This license key is bound to another site."
960
  msgstr "Esta clave de licencia está enlazada al otro sitio."
961
 
962
+ #: class-bws-settings.php:828 deprecated.php:143
963
  msgid ""
964
  "This license key is valid, but Your license has expired. If you want to "
965
  "update our plugin in future, you should extend the license."
967
  "Esta clave de licencia está válida, pero tu licencia ha expirado. Si deseas "
968
  "actualizar nuestro plugin en el futuro debes extender la licencia."
969
 
970
+ #: class-bws-settings.php:830 deprecated.php:145
971
  msgid "Unfortunately, you have exceeded the number of available tries."
972
  msgstr "Por desgracia, has excedido el número de intentos."
973
 
974
+ #: class-bws-settings.php:832 deprecated.php:147
975
  msgid ""
976
  "Unfortunately, the Pro Trial licence was already installed to this domain. "
977
  "The Pro Trial license can be installed only once."
979
  "Por desgracia, la licencia Pro Trial ha estado ya instalada en este dominio. "
980
  "La licencia Pro Trial puede estar instalada una sola vez."
981
 
982
+ #: class-bws-settings.php:837 deprecated.php:151
983
  msgid "The Pro Trial license key is valid."
984
  msgstr "La licencia Pro Trial está válida."
985
 
986
+ #: class-bws-settings.php:845 deprecated.php:159 deprecated.php:246
987
  #, php-format
988
  msgid ""
989
  "In order to continue using the plugin it is necessary to buy a %s license."
990
  msgstr "Para seguir usando el plugin es necesario comprar una licencia de %s."
991
 
992
+ #: class-bws-settings.php:933
993
+ #, php-format
994
+ msgid ""
995
+ "Unfortunately, Your license has expired. To continue getting top-priority "
996
+ "support and plugin updates, you should extend it in your %s."
997
+ msgstr ""
998
+
999
+ #: class-bws-settings.php:959 class-bws-settings.php:981
1000
+ #: class-bws-settings.php:1003
1001
+ msgid "Failed to download the zip archive. Please, upload the plugin manually."
1002
+ msgstr ""
1003
+
1004
+ #: class-bws-settings.php:971
1005
+ msgid "Failed to open the zip archive. Please, upload the plugin manually."
1006
+ msgstr ""
1007
+
1008
+ #: class-bws-settings.php:977
1009
+ msgid ""
1010
+ "Your server does not support either ZipArchive or Phar. Please, upload the "
1011
+ "plugin manually."
1012
+ msgstr ""
1013
+
1014
+ #: class-bws-settings.php:984
1015
+ msgid "UploadDir is not writable. Please, upload the plugin manually."
1016
+ msgstr ""
1017
+
1018
+ #: class-bws-settings.php:1042 deprecated.php:464
1019
  msgid "Please, enter Your license key"
1020
  msgstr "Por favor, introduce tu clave de licencia"
1021
 
1022
+ #: class-bws-settings.php:1054
1023
  msgid "Need Help?"
1024
  msgstr "¿Necesitas ayuda?"
1025
 
1026
+ #: class-bws-settings.php:1056
1027
  msgid "Read the Instruction"
1028
  msgstr "Lee las instrucciones"
1029
 
1030
+ #: class-bws-settings.php:1060
1031
  msgid "Watch the Video"
1032
  msgstr "Ve el vídeo"
1033
 
1034
+ #: class-bws-settings.php:1071
1035
  msgid "Start Your Free Trial"
1036
  msgstr "Comienza tu prueba gratuita"
1037
 
1038
+ #: deactivation-form.php:27
1039
  msgid "Need help? We are ready to answer your questions."
1040
  msgstr ""
1041
 
1042
+ #: deactivation-form.php:27
1043
  msgid "Contact Support"
1044
  msgstr ""
1045
 
1046
+ #: deactivation-form.php:32
1047
  msgid "The plugin is not working"
1048
  msgstr ""
1049
 
1050
+ #: deactivation-form.php:34
1051
  msgid "Kindly share what didn't work so we can fix it in future updates..."
1052
  msgstr ""
1053
 
1054
+ #: deactivation-form.php:38
1055
  msgid "The plugin didn't work as expected"
1056
  msgstr ""
1057
 
1058
+ #: deactivation-form.php:40
1059
  msgid "What did you expect?"
1060
  msgstr ""
1061
 
1062
+ #: deactivation-form.php:44
1063
  msgid "The plugin suddenly stopped working"
1064
  msgstr ""
1065
 
1066
+ #: deactivation-form.php:51
1067
  msgid "The plugin broke my site"
1068
  msgstr ""
1069
 
1070
+ #: deactivation-form.php:58
1071
  msgid "I couldn't understand how to get it work"
1072
  msgstr ""
1073
 
1074
+ #: deactivation-form.php:65
1075
  msgid "I found a better plugin"
1076
  msgstr ""
1077
 
1078
+ #: deactivation-form.php:67
1079
  msgid "What's the plugin name?"
1080
  msgstr ""
1081
 
1082
+ #: deactivation-form.php:71
1083
  msgid "The plugin is great, but I need specific feature that you don't support"
1084
  msgstr ""
1085
 
1086
+ #: deactivation-form.php:73
1087
  msgid "What feature?"
1088
  msgstr ""
1089
 
1090
+ #: deactivation-form.php:77
1091
  msgid "I no longer need the plugin"
1092
  msgstr ""
1093
 
1094
+ #: deactivation-form.php:83
1095
  msgid "It's a temporary deactivation, I'm just debugging an issue"
1096
  msgstr ""
1097
 
1098
+ #: deactivation-form.php:89
1099
  msgid "Other"
1100
  msgstr ""
1101
 
1102
+ #: deactivation-form.php:123
1103
  msgid "Quick Feedback"
1104
  msgstr ""
1105
 
1106
+ #: deactivation-form.php:124
1107
  msgid "If you have a moment, please let us know why you are deactivating"
1108
  msgstr ""
1109
 
1110
+ #: deactivation-form.php:127
1111
+ msgid "Send website data and allow to contact me back"
1112
  msgstr ""
1113
 
1114
+ #: deactivation-form.php:132
1115
  msgid "Cancel"
1116
  msgstr ""
1117
 
1118
+ #: deactivation-form.php:233
1119
  msgid "Processing"
1120
  msgstr ""
1121
 
1122
+ #: deactivation-form.php:262
1123
  msgid "Submit & Deactivate"
1124
  msgstr ""
1125
 
1126
+ #: deactivation-form.php:277
1127
  msgid "Please tell us the reason so we can improve it."
1128
  msgstr ""
1129
 
1130
+ #: deactivation-form.php:345
1131
  msgid "Deactivate"
1132
  msgstr ""
1133
 
1158
  "durante la compra). Si es necesario, haz clic en \"¿Has perdido tu "
1159
  "contraseña?\"."
1160
 
1161
+ #: deprecated.php:246
1162
  msgid "After that, you can activate it by entering your license key."
1163
  msgstr "Después, puedes activarlo introduciendo tu clave de licencia."
1164
 
1165
+ #: deprecated.php:249 deprecated.php:691
1166
  msgid "License key can be found in the"
1167
  msgstr "La clave de licencia se puede encontrar en el"
1168
 
1169
+ #: deprecated.php:251 deprecated.php:693
1170
  msgid "(your username is the email address specified during the purchase)."
1171
  msgstr ""
1172
  "(tu nombre del usuario es la dirección de correo electrónico especificada "
1173
  "durante la compra)."
1174
 
1175
+ #: deprecated.php:279
1176
  msgid ""
1177
  "Congratulations! The Pro license of the plugin is activated successfully."
1178
  msgstr "¡Felicitaciones! La licencia Pro está activada con éxito."
1179
 
1180
+ #: deprecated.php:281 deprecated.php:672
1181
  msgid "Please, go to"
1182
  msgstr "Por favor ve a"
1183
 
1184
+ #: deprecated.php:281 deprecated.php:672
1185
  msgid "the setting page"
1186
  msgstr "la página de ajustes"
1187
 
1188
+ #: deprecated.php:282 deprecated.php:673
1189
  msgid "You will be redirected automatically in 5 seconds."
1190
  msgstr "En 5 segundos automáticamente serás dirigido a la nueva ubicación."
1191
 
1192
+ #: deprecated.php:316
1193
  msgid "Check premium options on the plugin settings page!"
1194
  msgstr "¡Comprueba las opciones premium en la página de ajustes del plugin!"
1195
 
1196
+ #: deprecated.php:479
1197
  msgid "Restore all plugin settings to defaults"
1198
  msgstr "Restaurar todos los ajustes de plugin por defecto"
1199
 
1200
+ #: deprecated.php:481
1201
  msgid "Restore settings"
1202
  msgstr "Restaurar ajustes"
1203
 
1204
+ #: deprecated.php:550 deprecated.php:577
1205
  #, php-format
1206
  msgid "File %s edited successfully."
1207
  msgstr "Archivo %s editado con éxito."
1208
 
1209
+ #: deprecated.php:552 deprecated.php:579
1210
  msgid "Not enough permissions to create or update the file"
1211
  msgstr "No hay suficientes permisos para crear o actualizar el archivo"
1212
 
1213
+ #: deprecated.php:582
1214
  msgid "Not enough permissions to create the file"
1215
  msgstr "No hay suficientes permisos para crear el archivo"
1216
 
1217
+ #: deprecated.php:626
1218
  msgid "Editing"
1219
  msgstr "Editar"
1220
 
1221
+ #: deprecated.php:670
1222
  msgid ""
1223
  "Congratulations! Pro version of the plugin is installed and activated "
1224
  "successfully."
1225
  msgstr "¡Felicitaciones! Licencia Pro está instalada y activada con éxito."
1226
 
1227
+ #: deprecated.php:680
1228
  msgid "Show Pro features"
1229
  msgstr "Mostrar funciones Pro"
1230
 
1231
+ #: deprecated.php:687
1232
  msgid "Enter your license key to install and activate"
1233
  msgstr "Introduce tu clave de licencia para instalar y activar"
1234
 
1235
+ #: deprecated.php:689
1236
  msgid "version of the plugin."
1237
  msgstr "la versión del plugin."
1238
 
1272
  msgid "SMM"
1273
  msgstr "SMM"
1274
 
1275
+ #: product_list.php:22
1276
+ msgid "Best secure captcha plugin to protect your WordPress forms."
 
1277
  msgstr ""
 
 
1278
 
1279
+ #: product_list.php:32
1280
  msgid "Create your personal car rental/booking and reservation website."
1281
  msgstr "Crea tu sitio personal de alquiler/reserva de automóviles."
1282
 
1283
+ #: product_list.php:42
1284
  msgid ""
1285
  "Allow customers to reach you using secure contact form plugin any website "
1286
  "must have."
1288
  "Permite a los clientes ponerse en contacto contigo usando el plugin seguro "
1289
  "del formulario de contacto que debe tener cualquier sitio."
1290
 
1291
+ #: product_list.php:52
1292
  msgid "Add unlimited number of contact forms to WordPress website."
1293
  msgstr ""
1294
  "Añade el número ilimitado de formularios de contacto al sitio de WordPress."
1295
 
1296
+ #: product_list.php:62
1297
  msgid "Save and manage Contact Form messages. Never lose important data."
1298
  msgstr ""
1299
  "Guarda y gestiona los mensajes de Contact Form plugin. Nunca pierde datos "
1300
  "importantes."
1301
 
1302
+ #: product_list.php:72
1303
  msgid "Add unlimited custom pages to WordPress admin dashboard."
1304
  msgstr ""
1305
  "Añade el número ilimitado de páginas personalizadas al escritorio de "
1306
  "WordPress."
1307
 
1308
+ #: product_list.php:79
1309
  msgid "Add custom fields to WordPress website search results."
1310
  msgstr ""
1311
  "Añade los campos personalizados a los resultados de búsqueda en el sitio de "
1312
  "WordPress."
1313
 
1314
+ #: product_list.php:86
1315
  msgid ""
1316
  "Add custom post types and taxonomies to WordPress website search results."
1317
  msgstr ""
1318
  "Añade los tipos de contenido personalizados y taxonomías a los resultados de "
1319
  "búsqueda en el sitio de WordPress."
1320
 
1321
+ #: product_list.php:96
1322
  msgid "Add PayPal and 2CO donate buttons to receive charity payments."
1323
  msgstr ""
1324
  "Añade los botones de donación PayPal y 2CO para recibir pagos benéficos."
1325
 
1326
+ #: product_list.php:103
1327
  msgid ""
1328
  "Get latest error log messages to diagnose website problems. Define and fix "
1329
  "issues faster."
1331
  "Recibe más recientes mensajes del registro de errores para diagnosticar los "
1332
  "problemas del sitio. Define y corrige los problemas más rápido."
1333
 
1334
+ #: product_list.php:110
1335
  msgid ""
1336
  "Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and "
1337
  "widgets."
1339
  "Añade los botones de Facebook Seguir, Me gusta y Compartir a las entradas, "
1340
  "páginas y widgets de WordPress."
1341
 
1342
+ #: product_list.php:120
1343
  msgid ""
1344
  "Add beautiful galleries, albums & images to your WordPress website in a few "
1345
  "clicks."
1347
  "Añade las galerías, álbumes e imágenes hermosos a tu sitio de WordPress en "
1348
  "unos pocos clics."
1349
 
1350
+ #: product_list.php:130
1351
  msgid ""
1352
  "Add Google +1, Share, Follow, Hangout buttons and profile badge to WordPress "
1353
  "posts, pages and widgets."
1355
  "Añade los botones de Google +1 Compartir, Seguir, Hangout e insignia de "
1356
  "perfil a las entradas, páginas y widgets de WordPress."
1357
 
1358
+ #: product_list.php:140
1359
  msgid ""
1360
  "Stronger security solution which protects your WordPress website from hacks "
1361
  "and unauthorized login attempts."
1363
  "Potente solución de seguridad que protege tu sitio de WordPress de los "
1364
  "hackeos y intentos no autorizados de acceder."
1365
 
1366
+ #: product_list.php:150
1367
  msgid ""
1368
  "Add Adsense ads to WordPress website pages, posts, custom posts, search "
1369
  "results, categories, tags, and widgets."
1372
  "entradas personalizadas, resultados de búsqueda, categorías, etiquetas y "
1373
  "widgets en el sitio de WordPress, ."
1374
 
1375
+ #: product_list.php:160
1376
  msgid "Add Google Analytics code to WordPress website and track basic stats."
1377
  msgstr ""
1378
  "Añade el código de Google Analytics al sitio de WordPress y sigue las "
1379
  "estadísticas básicas."
1380
 
1381
+ #: product_list.php:170
1382
  msgid ""
1383
  "Protect WordPress website forms from spam entries with Google Captcha "
1384
  "(reCaptcha)."
1386
  "Protege los formularios en sitio de WordPress de las entradas de spam con "
1387
  "Google Captcha (reCaptcha)."
1388
 
1389
+ #: product_list.php:180
1390
  msgid "Add customized Google maps to WordPress posts, pages and widgets."
1391
  msgstr ""
1392
  "Añade los mapas de Google personalizados a las entradas, páginas y widgets "
1393
  "de WordPress."
1394
 
1395
+ #: product_list.php:190
1396
  msgid ""
1397
  "Generate and add XML sitemap to WordPress website. Help search engines index "
1398
  "your blog."
1400
  "Genera y añade los archivos de XML sitemap al sitio de WordPress. Ayuda a "
1401
  "los buscadores a indexar tu blog."
1402
 
1403
+ #: product_list.php:200
1404
  msgid ""
1405
  "Replace external WordPress website links with Google shortlinks and track "
1406
  "click stats."
1408
  "Reemplaza los enlaces externos con los enlaces cortos de Google en el sitio "
1409
  "de WordPress y sigue las estadísticas de clics."
1410
 
1411
+ #: product_list.php:207
1412
  msgid ""
1413
  "Protect WordPress website – allow and deny access for certain IP addresses, "
1414
  "hostnames, etc."
1416
  "Protege el sitio de WordPress - permite y impide el acceso para determinadas "
1417
  "direcciones IP, nombres de host, etc."
1418
 
1419
+ #: product_list.php:217
1420
  msgid ""
1421
  "Create your personal job board and listing WordPress website. Search jobs, "
1422
  "submit CV/resumes, choose candidates."
1424
  "Crea tu tablero personal con la lista de trabajos en el sitio de WordPress. "
1425
  "Busca trabajos, envía CV, elija candidatos."
1426
 
1427
+ #: product_list.php:224
1428
  msgid ""
1429
  "Protect WordPress website against brute force attacks. Limit rate of login "
1430
  "attempts."
1432
  "Protege el sitio de WordPress contra ataques de fuerza bruta. Limita el "
1433
  "número de intentos de acceder."
1434
 
1435
+ #: product_list.php:234
1436
  msgid ""
1437
  "Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. "
1438
  "5 plugins included – profile, insider, etc."
1440
  "Añade los botones de LinkedIn Compartir y Seguir a las entradas, páginas y "
1441
  "widgets de WordPress. 5 plugins incluidos - perfil, insider, etc."
1442
 
1443
+ #: product_list.php:244
1444
  msgid ""
1445
  "Translate WordPress website content to other languages manually. Create "
1446
  "multilingual pages, posts, widgets, menus, etc."
1449
  "Crea páginas multilingües, asi como entradas, widgets, menús, etc. en varios "
1450
  "idiomas."
1451
 
1452
+ #: product_list.php:254
1453
  msgid ""
1454
  "Add customizable pagination to WordPress website. Split long content to "
1455
  "multiple pages for better navigation."
1457
  "Añade la paginación personalizable al sitio de WordPress. Divide contenido "
1458
  "largo en varias páginas para mejorar la navegación."
1459
 
1460
+ #: product_list.php:264
1461
  msgid ""
1462
  "Generate PDF files and print WordPress posts/pages. Customize document "
1463
  "header/footer styles and appearance."
1466
  "Personaliza los estilos de la cabecera/pie de la página del documento y su "
1467
  "apariencia."
1468
 
1469
+ #: product_list.php:274
1470
  msgid ""
1471
  "Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, "
1472
  "Profile) to WordPress posts, pages and widgets."
1474
  "Añade los botones de Pinterest Segiur, Guardar y widgets de perfil (Pines, "
1475
  "Tablero, Perfil) a las entradas, páginas y widgets de WordPress."
1476
 
1477
+ #: product_list.php:284
1478
  msgid ""
1479
  "Create your personal portfolio WordPress website. Manage and showcase past "
1480
  "projects to get more clients."
1482
  "Crea tu cartera personal en el sitio de WordPress. Gestiona y muestra los "
1483
  "proyectos anteriores para obtener más clientes."
1484
 
1485
+ #: product_list.php:294
1486
  msgid "Export WordPress posts to CSV file format easily. Configure data order."
1487
  msgstr ""
1488
  "Exporta las entradas de WordPress en formato de archivo CSV fácilmente. "
1489
  "Configura el orden de los datos."
1490
 
1491
+ #: product_list.php:301
1492
  msgid ""
1493
  "Add extra fields to default WordPress user profile. The easiest way to "
1494
  "create and manage additional custom values."
1496
  "Añade los campos adicionales al perfil estándar del usuario de WordPress. La "
1497
  "forma más fácil de crear y gestionar los valores personalizados adicionales."
1498
 
1499
+ #: product_list.php:308
1500
  msgid ""
1501
  "Add and display HTML advertisement banner on WordPress website. Customize "
1502
  "bar styles and appearance."
1504
  "Añade y muestra los anuncios publicitarios de HTML en el sitio de WordPress. "
1505
  "Personaliza los estilos y la apariencia de la barra."
1506
 
1507
+ #: product_list.php:318
1508
  msgid ""
1509
  "Add customizable quotes and tips blocks to WordPress posts, pages and "
1510
  "widgets."
1512
  "Añade las citas personalizables y bloques de consejos a las entradas, "
1513
  "páginas y widgets de WordPress."
1514
 
1515
+ #: product_list.php:325
1516
  msgid ""
1517
  "Add rating plugin to your WordPress website to receive feedback from your "
1518
  "customers."
1520
  "Añade el plugin de valoración a tu sitio de WordPress para recibir "
1521
  "comentarios de tus clientes."
1522
 
1523
+ #: product_list.php:332
1524
  msgid ""
1525
  "Create your personal real estate WordPress website. Sell, rent and buy "
1526
  "properties. Add, search and browse listings easily."
1529
  "alquila y compra las propiedades. Añade, busca y navega las listas "
1530
  "fácilmente."
1531
 
1532
+ #: product_list.php:342
1533
  msgid ""
1534
  "Add related, featured, latest, and popular posts to your WordPress website. "
1535
  "Connect your blog readers with a relevant content."
1538
  "sitio de WordPress. Conecta a tus lectores de blog con el contenido "
1539
  "relevante."
1540
 
1541
+ #: product_list.php:349
1542
  msgid ""
1543
  "Send bulk email messages to WordPress users. Custom templates, advanced "
1544
  "settings and detailed reports."
1546
  "Envía mensajes de correo masivo a los usuarios de WordPress. Plantillas "
1547
  "personalizadas, ajustes avanzados e informes detallados."
1548
 
1549
+ #: product_list.php:359
1550
  msgid ""
1551
  "The best responsive slider plugin for your WordPress website. Create "
1552
  "beautifully animated slides just in a few clicks."
1554
  "El mejor adaptable carrusel plugin para tu sitio de WordPress. Crea las "
1555
  "diapositivas maravillosamente animadas con sólo unos clics."
1556
 
1557
+ #: product_list.php:366
1558
  msgid ""
1559
  "Configure SMTP server to receive email messages from WordPress to Gmail, "
1560
  "Yahoo, Hotmail and other services."
1562
  "Configura el servidor SMTP para recibir mensajes de correo electrónico de "
1563
  "WordPress en Gmail, Yahoo, Hotmail y otros servicios."
1564
 
1565
+ #: product_list.php:373
1566
  msgid ""
1567
  "Add social media buttons and widgets to WordPress posts, pages and widgets. "
1568
  "FB, Twitter, G+1, Pinterest, LinkedIn."
1571
  "entradas, páginas y widgets de WordPress. FB, Twitter, G+1, Pinterest, "
1572
  "LinkedIn."
1573
 
1574
+ #: product_list.php:383
1575
  msgid ""
1576
  "Add social media login, registration, and commenting to your WordPress "
1577
  "website."
1579
  "Añade el acceso, registro y comentarios a los medios de comunicación social "
1580
  "a tu sitio de WordPress."
1581
 
1582
+ #: product_list.php:390
1583
  msgid ""
1584
  "Add email newsletter sign up form to WordPress posts, pages and widgets. "
1585
  "Collect data and subscribe your users."
1588
  "páginas y widgets de WordPress. Recoge los datos y suscribe a tus usuarios a "
1589
  "las noticias."
1590
 
1591
+ #: product_list.php:400
1592
  msgid ""
1593
  "Add testimonials and feedbacks from your customers to WordPress website "
1594
  "posts, pages, and widgets."
1596
  "Añade los testimonios y comentarios de tus clientes a las entradas, páginas "
1597
  "y widgets en el sitio de WordPress."
1598
 
1599
+ #: product_list.php:407
1600
  msgid ""
1601
  "Best timesheet plugin for WordPress. Track employee time, streamline "
1602
  "attendance and generate reports."
1605
  "laboral de los empleados, optimiza el horario de trabajo en la oficina y "
1606
  "crea informes generales."
1607
 
1608
+ #: product_list.php:417
1609
  msgid ""
1610
  "Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts "
1611
  "and pages."
1613
  "Añade los botones de Twitter Seguir, Twittear, Hashtag y Mencionar a las "
1614
  "entradas y páginas de WordPress."
1615
 
1616
+ #: product_list.php:427
1617
  msgid ""
1618
  "Automatically check and update WordPress website core with all installed "
1619
  "plugins and themes to the latest versions."
1621
  "Compruebа y actualiza automáticamente el núcleo de sitio de WordPress a las "
1622
  "últimas versiones con todos plugins y temas que tienes instalados."
1623
 
1624
+ #: product_list.php:437
1625
  msgid ""
1626
  "Powerful user role management plugin for WordPress website. Create, edit, "
1627
  "copy, and delete user roles."
1629
  "Poderoso plugin de gestión de funciones para el sitio de WordPress. Crea, "
1630
  "edita, copia y borra los perfiles de usuarios."
1631
 
1632
+ #: product_list.php:447
1633
  msgid ""
1634
  "Display live count of online visitors who are currently browsing your "
1635
  "WordPress website."
1637
  "Lleva la cuenta de los visitantes en línea que están hojeando tu sitio de "
1638
  "WordPress en ese momento."
1639
 
1640
+ #: product_list.php:457
1641
  msgid ""
1642
  "Backup and export Zendesk Help Center content automatically to your "
1643
  "WordPress website database."
1645
  "Haz la copia de seguridad y exporta el contenido de Zendesk Centro de Ayuda "
1646
  "automáticamente a tu base de datos en el sitio de WordPress."
1647
 
1648
+ #~ msgid ""
1649
+ #~ "Protect WordPress website forms from spam entries by means of math logic."
1650
+ #~ msgstr ""
1651
+ #~ "Protege los formularios en el sitio de WordPress de las entradas de spam "
1652
+ #~ "mediante lógica matemática."
1653
+
1654
+ #~ msgid "Congratulations! Pro Membership license is activated successfully."
1655
+ #~ msgstr ""
1656
+ #~ "¡Felicitaciones! La licencia Pro Membership está activada con éxito."
1657
+
1658
+ #~ msgid "Email with system info is sent to"
1659
+ #~ msgstr "El correo electrónico con información de sistema es enviado a"
1660
+
1661
+ #~ msgid "Browse Free WordPress Themes"
1662
+ #~ msgstr "Navegar gratis temas WordPress"
1663
+
1664
  #~ msgid ""
1665
  #~ "You can use one license of the Pro plugin for one domain only. Please "
1666
  #~ "check and edit your license or domain if necessary using you personal "
bws_menu/languages/bestwebsoft-fr_FR.mo CHANGED
Binary file
bws_menu/languages/bestwebsoft-fr_FR.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2017-08-28 09:55+0300\n"
6
- "PO-Revision-Date: 2017-08-28 09:55+0300\n"
7
  "Last-Translator: Luc Capronnier <lcapronnier@yahoo.com>\n"
8
  "Language-Team: Luc Capronnier <lcapronnier@yahoo.com>\n"
9
  "Language: fr_FR\n"
@@ -41,6 +41,11 @@ msgstr "Page des extensions"
41
  msgid "Like the plugin?"
42
  msgstr "Voter pour l'extension"
43
 
 
 
 
 
 
44
  #: bws_functions.php:94
45
  msgid "Rate it"
46
  msgstr "Notez là"
@@ -49,7 +54,7 @@ msgstr "Notez là"
49
  msgid "Need help?"
50
  msgstr "Besoin d'aide ?"
51
 
52
- #: bws_functions.php:104 bws_functions.php:911 class-bws-settings.php:1056
53
  msgid "Visit Help Center"
54
  msgstr "Visiter le site du support"
55
 
@@ -57,7 +62,7 @@ msgstr "Visiter le site du support"
57
  msgid "Want to support the plugin?"
58
  msgstr "Voter pour l'extension"
59
 
60
- #: bws_functions.php:108 bws_menu.php:553
61
  msgid "Donate"
62
  msgstr "Don"
63
 
@@ -73,7 +78,8 @@ msgid ""
73
  "otherwise the Pro plugin will be deactivated."
74
  msgstr ""
75
 
76
- #: bws_functions.php:128 bws_functions.php:340 class-bws-settings.php:144
 
77
  msgid "Learn More"
78
  msgstr "En savoir plus"
79
 
@@ -93,7 +99,7 @@ msgstr ""
93
  "Votre licence est terminée. Pour continuer à disposer du support rapide et "
94
  "des mises à jour de l'extension vous devez la renouveler."
95
 
96
- #: bws_functions.php:147 bws_functions.php:383 deprecated.php:584
97
  msgid "Learn more"
98
  msgstr "En savoir plus"
99
 
@@ -124,71 +130,71 @@ msgstr ""
124
  msgid "Thank you for installing %s plugin!"
125
  msgstr ""
126
 
127
- #: bws_functions.php:209
128
  msgid "Let's get started"
129
  msgstr "Démarrer"
130
 
131
- #: bws_functions.php:210 bws_functions.php:243 bws_menu.php:557
132
- #: bws_menu.php:559
133
  msgid "Settings"
134
  msgstr "Réglages"
135
 
136
- #: bws_functions.php:212 bws_menu.php:328 class-bws-settings.php:745
137
- #: class-bws-settings.php:1058 class-bws-settings.php:1068 deprecated.php:694
138
  msgid "or"
139
  msgstr "ou"
140
 
141
- #: bws_functions.php:213 bws_functions.php:245
142
  msgid "Add New"
143
  msgstr "Ajouter"
144
 
145
- #: bws_functions.php:217 bws_functions.php:227 bws_functions.php:331
146
- #: bws_functions.php:379 bws_functions.php:481
147
  msgid "Close notice"
148
  msgstr "Effacer l'avertissement"
149
 
150
- #: bws_functions.php:232
151
  msgid "Thank you for installing plugins by BestWebSoft!"
152
  msgstr "Merci d'avoir installé des extensions de BestWebSoft!"
153
 
154
- #: bws_functions.php:234
155
  msgid "More Details"
156
  msgstr "Plus de détails"
157
 
158
- #: bws_functions.php:235
159
  msgid "Less Details"
160
  msgstr "Moins de détails"
161
 
162
- #: bws_functions.php:263
163
  msgid "Deprecated function(-s) is used on the site here:"
164
  msgstr "Une ou des fonction(s) obsolètes sont utilisées sur ce site ici&nbsp;:"
165
 
166
- #: bws_functions.php:277
167
  msgid ""
168
  "This function(-s) will be removed over time. Please update the product(-s)."
169
  msgstr ""
170
  "Ces fonctions seront supprimées rapidement. Merci de mettre à jour vos "
171
  "produits."
172
 
173
- #: bws_functions.php:336
174
  msgid "It’s time to upgrade your"
175
  msgstr "C'est le moment de mettre à jour votre "
176
 
177
- #: bws_functions.php:336
178
  msgid "to"
179
  msgstr "à"
180
 
181
- #: bws_functions.php:336
182
  msgid "version!"
183
  msgstr "version"
184
 
185
- #: bws_functions.php:337
186
  msgid "Extend standard plugin functionality with new great options."
187
  msgstr ""
188
  "Étend les fonctionnalités classiques de l'extension avec des nouvelles "
189
  "options."
190
 
191
- #: bws_functions.php:383
192
  #, php-format
193
  msgid ""
194
  "Your license key for %s expires on %s and you won't be granted TOP-PRIORITY "
@@ -197,12 +203,12 @@ msgstr ""
197
  "Votre clé de licence pour %s est terminée le %s et vous ne disposerez plus "
198
  "du support rapide et des mises à jour."
199
 
200
- #: bws_functions.php:476
201
  #, php-format
202
  msgid "Thank you for choosing %s plugin!"
203
  msgstr ""
204
 
205
- #: bws_functions.php:477
206
  msgid ""
207
  "If you have a feature, suggestion or idea you'd like to see in the plugin, "
208
  "we'd love to hear about it!"
@@ -210,25 +216,25 @@ msgstr ""
210
  "Si vous avez une fonctionnalité, une suggestion ou une idée que vous "
211
  "souhaitez pour cette extension, nous serons ravis d'en parler avec vous !"
212
 
213
- #: bws_functions.php:478
214
  msgid "Suggest a Feature"
215
  msgstr "Proposer une fonctionnalité"
216
 
217
- #: bws_functions.php:494 class-bws-settings.php:538 class-bws-settings.php:541
218
- #: class-bws-settings.php:593 class-bws-settings.php:596
219
  msgid "Notice"
220
  msgstr "Avertissement"
221
 
222
- #: bws_functions.php:494
223
  msgid "The plugin's settings have been changed."
224
  msgstr "Les paramètres de l'extension ont été modifiés."
225
 
226
- #: bws_functions.php:495 class-bws-settings.php:183 class-bws-settings.php:203
227
- #: deprecated.php:640
228
  msgid "Save Changes"
229
  msgstr "Enregistrer les modifications"
230
 
231
- #: bws_functions.php:509
232
  msgid ""
233
  "You can always look at premium options by checking the \"Pro Options\" in "
234
  "the \"Misc\" tab."
@@ -236,77 +242,77 @@ msgstr ""
236
  "Vous pouvez toujours consulter les options premium en cliquant sur le lien "
237
  "\"Voir les fonctionnalités de la version PRO\" dans l'onglet divers."
238
 
239
- #: bws_functions.php:647
240
  msgid "Add BWS Shortcode"
241
  msgstr ""
242
 
243
- #: bws_functions.php:648
244
  msgid "Add BWS Plugins Shortcode"
245
  msgstr "Ajouter le code court de l'extension BWS"
246
 
247
- #: bws_functions.php:667
248
  msgid "Add shortcode"
249
  msgstr "Ajouter le code court"
250
 
251
- #: bws_functions.php:667
252
  msgid "Add BestWebSoft plugins' shortcodes using this button."
253
  msgstr "Ajouter le code court des extensions BestWebSoft avec ce bouton."
254
 
255
- #: bws_functions.php:723
256
  msgid "Close"
257
  msgstr "Fermer"
258
 
259
- #: bws_functions.php:815
260
  msgid "Are you sure you want to restore default settings?"
261
  msgstr "Êtes vous sûr de vouloir remettre toutes les valeurs par défaut ?"
262
 
263
- #: bws_functions.php:818
264
  msgid "Yes, restore all settings"
265
  msgstr "Oui, remettre les valeurs par défaut"
266
 
267
- #: bws_functions.php:819
268
  msgid "No, go back to the settings page"
269
  msgstr "Non, retourner à la page des paramètres"
270
 
271
- #: bws_functions.php:861
272
  msgid "Plugin"
273
  msgstr "Extension"
274
 
275
- #: bws_functions.php:870
276
  msgid "Shortcode settings"
277
  msgstr "Paramètres du code court"
278
 
279
- #: bws_functions.php:875
280
  msgid "The shortcode will be inserted"
281
  msgstr "Le code court sera inséré"
282
 
283
- #: bws_functions.php:916
284
  msgid "FAQ"
285
  msgstr "FAQ"
286
 
287
- #: bws_functions.php:922
288
  msgid "For more information:"
289
  msgstr "Pour plus d'informations&nbsp;:"
290
 
291
- #: bws_functions.php:923
292
  msgid "Documentation"
293
  msgstr "Documentation"
294
 
295
- #: bws_functions.php:924
296
  msgid "Video Instructions"
297
  msgstr "Vidéo explicative"
298
 
299
- #: bws_functions.php:925
300
  msgid "Submit a Request"
301
  msgstr "Soumettre une requête"
302
 
303
- #: bws_menu.php:101 class-bws-settings.php:790 deprecated.php:322
304
  msgid "Wrong license key"
305
  msgstr "Clé de licence incorrecte"
306
 
307
- #: bws_menu.php:122 class-bws-settings.php:816 class-bws-settings.php:883
308
- #: class-bws-settings.php:919 deprecated.php:133 deprecated.php:199
309
- #: deprecated.php:352
310
  msgid ""
311
  "Something went wrong. Please try again later. If the error appears again, "
312
  "please contact us"
@@ -315,14 +321,14 @@ msgstr ""
315
  "nouveau, merci de contacter <a href=http://support.bestwebsoft."
316
  "com>BestWebSoft</a>. Nous sommes désolés pour le désagrément."
317
 
318
- #: bws_menu.php:122 class-bws-settings.php:816 class-bws-settings.php:883
319
- #: class-bws-settings.php:919 deprecated.php:133 deprecated.php:199
320
- #: deprecated.php:352
321
  msgid "We are sorry for inconvenience."
322
  msgstr "Nous sommes désolés pour le désagrément."
323
 
324
- #: bws_menu.php:128 class-bws-settings.php:822 class-bws-settings.php:925
325
- #: deprecated.php:139 deprecated.php:358
326
  msgid "Wrong license key."
327
  msgstr "Clé de licence incorrecte."
328
 
@@ -338,13 +344,13 @@ msgstr ""
338
  msgid "Log in"
339
  msgstr "Connexion"
340
 
341
- #: bws_menu.php:132 bws_menu.php:334 deprecated.php:261
342
  msgid "Unfortunately, you have exceeded the number of available tries per day."
343
  msgstr ""
344
  "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de "
345
  "télécharger l'extension manuellement."
346
 
347
- #: bws_menu.php:134 class-bws-settings.php:931 deprecated.php:364
348
  #, php-format
349
  msgid ""
350
  "Unfortunately, Your license has expired. To continue getting top-priority "
@@ -354,7 +360,7 @@ msgstr ""
354
  "rapide et des mises à jour de l'extension vous devez la renouveler dans "
355
  "votre %s"
356
 
357
- #: bws_menu.php:136 class-bws-settings.php:933 deprecated.php:366
358
  msgid ""
359
  "Unfortunately, the Pro licence was already installed to this domain. The Pro "
360
  "Trial license can be installed only once."
@@ -362,20 +368,19 @@ msgstr ""
362
  "Une licence a déjà été installée sur ce domaine. La licence d'évaluation ne "
363
  "peut-être installée qu'une seule fois."
364
 
365
- #: bws_menu.php:142 class-bws-settings.php:837 deprecated.php:153
366
  msgid "The license key is valid."
367
  msgstr "La clé de licence est valide."
368
 
369
- #: bws_menu.php:144 class-bws-settings.php:840 deprecated.php:156
370
  msgid "Your license will expire on"
371
  msgstr "Votre licence se termine le "
372
 
373
  #: bws_menu.php:146
374
- msgid "Congratulations! Pro Membership license is activated successfully."
375
  msgstr ""
376
- "Félicitations! La version PRO de cette extension a été activée avec succès."
377
 
378
- #: bws_menu.php:153 class-bws-settings.php:1005 deprecated.php:435
379
  msgid ""
380
  "Something went wrong. Try again later or upload the plugin manually. We are "
381
  "sorry for inconvenience."
@@ -529,67 +534,68 @@ msgstr "Extensions inactives"
529
  msgid "Please enter a valid email address."
530
  msgstr "Merci de saisir une adresse e-mail valide."
531
 
532
- #: bws_menu.php:264
533
- msgid "Email with system info is sent to"
534
- msgstr "Le courriel avec les informations système est envoyé à"
 
535
 
536
- #: bws_menu.php:268
537
  msgid "Thank you for contacting us."
538
  msgstr "Merci de nous avoir contacté."
539
 
540
- #: bws_menu.php:291
541
  msgid "Sorry, email message could not be delivered."
542
  msgstr "Désolé, votre e-mail n'a pas pu être envoyé."
543
 
544
- #: bws_menu.php:307 bws_menu.php:311 bws_menu.php:360 deprecated.php:91
545
  msgid "Plugins"
546
  msgstr "Extensions"
547
 
548
- #: bws_menu.php:308 bws_menu.php:312 bws_menu.php:611 deprecated.php:92
549
  msgid "Themes"
550
  msgstr "Thèmes"
551
 
552
- #: bws_menu.php:309 bws_menu.php:313 bws_menu.php:641
553
  msgid "System status"
554
  msgstr "Etat du système"
555
 
556
- #: bws_menu.php:317
557
  msgid "Support"
558
  msgstr "Support"
559
 
560
- #: bws_menu.php:318
561
  msgid "Manage purchased licenses & subscriptions"
562
  msgstr "Gérer les licences et les adhésions"
563
 
564
- #: bws_menu.php:326
565
  #, php-format
566
  msgid "Get Access to %s+ Premium Plugins"
567
  msgstr "Accéder à plus de %s extension premiums"
568
 
569
- #: bws_menu.php:328
570
  msgid "Subscribe to Pro Membership"
571
  msgstr "Souscrire une adhésion PRO"
572
 
573
- #: bws_menu.php:336 bws_menu.php:347 class-bws-settings.php:758
574
  #: deprecated.php:227
575
  msgid "Check license key"
576
  msgstr "Vérifier la clé de licence"
577
 
578
- #: bws_menu.php:339
579
  msgid "Enter your license key"
580
  msgstr "Merci de saisir votre clé de licence"
581
 
582
- #: bws_menu.php:345 bws_menu.php:563 bws_menu.php:572
583
- #: class-bws-settings.php:737 deprecated.php:259 deprecated.php:267
584
- #: deprecated.php:629 deprecated.php:700 deprecated.php:709
585
  msgid "Activate"
586
  msgstr "Activé"
587
 
588
- #: bws_menu.php:361
589
  msgid "Upload Plugin"
590
  msgstr "Charger l'extension"
591
 
592
- #: bws_menu.php:365
593
  #, php-format
594
  msgid ""
595
  "The plugin generated %d characters of <strong>unexpected output</strong> "
@@ -602,7 +608,7 @@ msgstr ""
602
  "sent&#8221;, des problèmes avec les flux de syndication ou autres, essayez "
603
  "de désactiver l'extension ou supprimer l'extension."
604
 
605
- #: bws_menu.php:367
606
  msgid ""
607
  "Plugin could not be activated because it triggered a <strong>fatal error</"
608
  "strong>."
@@ -610,42 +616,40 @@ msgstr ""
610
  "L'extension ne peut pas être activée car une <strong>erreur fatale</strong> "
611
  "a été détectée."
612
 
613
- #: bws_menu.php:370
614
  msgid "Plugin <strong>activated</strong>."
615
  msgstr "Extension <strong>activée</strong>."
616
 
617
- #: bws_menu.php:377
618
  msgid "Installing Plugin"
619
  msgstr "Extensions installées"
620
 
621
- #: bws_menu.php:383
622
  msgid "Downloading install package from"
623
  msgstr "Télécharger le paquet d'installation depuis"
624
 
625
- #: bws_menu.php:400 bws_menu.php:431 bws_menu.php:442
626
- #: class-bws-settings.php:957 class-bws-settings.php:979
627
- #: class-bws-settings.php:1001 deprecated.php:387 deprecated.php:409
628
- #: deprecated.php:431
629
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
630
  msgstr ""
631
  "Erreur de téléchargement de l'archive ZIP. Merci de télécharger l'extension "
632
  "manuellement."
633
 
634
- #: bws_menu.php:408
635
  msgid "Unpacking the package"
636
  msgstr "Décompresser le paquet"
637
 
638
- #: bws_menu.php:413 bws_menu.php:421
639
  msgid "Installing the plugin"
640
  msgstr "Installer l'extension"
641
 
642
- #: bws_menu.php:417 class-bws-settings.php:969 deprecated.php:399
643
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
644
  msgstr ""
645
  "Erreur d'ouverture de l'archive zip. Merci de télécharger l'extension "
646
  "manuellement."
647
 
648
- #: bws_menu.php:424 class-bws-settings.php:975 deprecated.php:405
649
  msgid ""
650
  "Your server does not support either ZipArchive or Phar. Please, upload the "
651
  "plugin manually"
@@ -653,96 +657,96 @@ msgstr ""
653
  "Votre serveur n'a pas le support du format des archives ZIP ou Phar. Merci "
654
  "de télécharger l'extension manuellement."
655
 
656
- #: bws_menu.php:427
657
  #, php-format
658
  msgid "The plugin %s is successfully installed."
659
  msgstr "L'extension %s a été installée avec succès."
660
 
661
- #: bws_menu.php:434 class-bws-settings.php:982 deprecated.php:412
662
  msgid "UploadDir is not writable. Please, upload the plugin manually"
663
  msgstr ""
664
  "Erreur d'ouverture de l'archive zip. Merci de télécharger l'extension "
665
  "manuellement."
666
 
667
- #: bws_menu.php:439
668
  msgid "Activate Plugin"
669
  msgstr "Activer l'extension"
670
 
671
- #: bws_menu.php:439 bws_menu.php:445
672
  msgid "Return to BestWebSoft Panel"
673
  msgstr "Retourner à l'administration BestWebSoft"
674
 
675
- #: bws_menu.php:449 bws_menu.php:464 bws_menu.php:593
676
  msgid "All"
677
  msgstr "Tous"
678
 
679
- #: bws_menu.php:450 bws_menu.php:630
680
  msgid "Installed"
681
  msgstr "Installé"
682
 
683
- #: bws_menu.php:451
684
  msgid "Not Installed"
685
  msgstr "Non installé"
686
 
687
- #: bws_menu.php:457
688
  msgid "Filter results"
689
  msgstr "Filtrer les résultats"
690
 
691
- #: bws_menu.php:460 bws_menu.php:589
692
  msgid "Category"
693
  msgstr "Catégorie"
694
 
695
- #: bws_menu.php:524
696
  msgid "Not installed"
697
  msgstr "Non installé"
698
 
699
- #: bws_menu.php:528
700
  msgid "Renew to get updates"
701
  msgstr "Se réabonner pour avoir les mises à jour"
702
 
703
- #: bws_menu.php:531
704
  #, php-format
705
  msgid "Update to v %s"
706
  msgstr "Mettre à jour avec la version %s"
707
 
708
- #: bws_menu.php:543 bws_menu.php:566 bws_menu.php:575
709
  msgid "Install Now"
710
  msgstr "Installer maintenant"
711
 
712
- #: bws_menu.php:549 class-bws-settings.php:157 class-bws-settings.php:1065
713
  msgid "Upgrade to Pro"
714
  msgstr "Passer à la version PRO"
715
 
716
- #: bws_menu.php:563 bws_menu.php:572
717
  msgid "Activate this plugin"
718
  msgstr "Activer cette extension"
719
 
720
- #: bws_menu.php:575
721
  msgid "Install this plugin"
722
  msgstr "Installer cette extension"
723
 
724
- #: bws_menu.php:584
725
  msgid "Nothing found. Try another criteria."
726
  msgstr "Pas de réponse. essayer d'autres critères."
727
 
728
- #: bws_menu.php:621
729
  #, php-format
730
  msgid "By %s"
731
  msgstr "Par %s"
732
 
733
- #: bws_menu.php:628
734
  msgid "Already Installed"
735
  msgstr "Déjà installé"
736
 
737
- #: bws_menu.php:638
738
- msgid "Browse Free WordPress Themes"
739
- msgstr "Parcourir les thèmes gratuits pour WordPress"
740
 
741
- #: bws_menu.php:647
742
  msgid "Send to support"
743
  msgstr "Envoyé au support"
744
 
745
- #: bws_menu.php:654
746
  msgid "Send to custom email &#187;"
747
  msgstr "Envoyer un e-mail spécifique &#187;"
748
 
@@ -796,17 +800,17 @@ msgstr "Les paramètres de l'extension ont été remis aux valeurs d'origine."
796
  msgid "Custom Code"
797
  msgstr "Code personnalisé"
798
 
799
- #: class-bws-settings.php:427 deprecated.php:497
800
  msgid "You do not have sufficient permissions to edit plugins for this site."
801
  msgstr ""
802
  "Vous n'avez pas assez de droits pour modifier l'extension pour ce site."
803
 
804
- #: class-bws-settings.php:432 deprecated.php:618
805
  msgid "These styles will be added to the header on all pages of your site."
806
  msgstr ""
807
  "Ces styles seront ajoutés aux entêtes sur tous les pages de votre site."
808
 
809
- #: class-bws-settings.php:435 deprecated.php:620
810
  #, php-format
811
  msgid ""
812
  "This PHP code will be hooked to the %s action and will be printed on front "
@@ -819,7 +823,7 @@ msgstr ""
819
  msgid "These code will be added to the header on all pages of your site."
820
  msgstr "Ce code sera ajouté aux entêtes sur tous les pages de votre site."
821
 
822
- #: class-bws-settings.php:446 deprecated.php:644
823
  #, php-format
824
  msgid ""
825
  "You need to make this files writable before you can save your changes. See "
@@ -828,7 +832,7 @@ msgstr ""
828
  "Vous devez rendre ce fichier modifiable avant de pouvoir enregistrer vos "
829
  "modifications. Regarder %s du Codex %s pour plus d'informations."
830
 
831
- #: class-bws-settings.php:456 deprecated.php:626
832
  msgid "Browsing"
833
  msgstr "Parcourir"
834
 
@@ -837,16 +841,16 @@ msgstr "Parcourir"
837
  msgid "Activate custom %s code."
838
  msgstr "Activer le code personnalisé %s."
839
 
840
- #: class-bws-settings.php:469 deprecated.php:633
841
  #, php-format
842
  msgid "Learn more about %s"
843
  msgstr "En savoir plus sur %s"
844
 
845
- #: class-bws-settings.php:529
846
  msgid "Miscellaneous Settings"
847
  msgstr "Paramètres divers"
848
 
849
- #: class-bws-settings.php:538 class-bws-settings.php:593
850
  #, php-format
851
  msgid ""
852
  "It is prohibited to change %s settings on this site in the %s network "
@@ -855,7 +859,7 @@ msgstr ""
855
  "Il est interdit de changer le paramètre %s sur ce site dans les paramètres "
856
  "%s du réseau."
857
 
858
- #: class-bws-settings.php:541 class-bws-settings.php:596
859
  #, php-format
860
  msgid ""
861
  "It is prohibited to view %s settings on this site in the %s network settings."
@@ -863,69 +867,69 @@ msgstr ""
863
  "Il est interdit de voir le paramètre %s sur ce site dans les paramètres %s "
864
  "du réseau."
865
 
866
- #: class-bws-settings.php:550
867
  msgid "Pro Options"
868
  msgstr "Options Pro"
869
 
870
- #: class-bws-settings.php:554
871
  msgid "Enable to display plugin Pro options."
872
  msgstr "Activer pour voir les options PRO de l'extension."
873
 
874
- #: class-bws-settings.php:560
875
  msgid "Track Usage"
876
  msgstr "Suivi de l'utilisation"
877
 
878
- #: class-bws-settings.php:564
879
  msgid ""
880
  "Enable to allow tracking plugin usage anonymously in order to make it better."
881
  msgstr ""
882
  "Activer pour autoriser le suivi de l'utilisation de l'extension de manière "
883
  "anonyme afin de le rendre meilleur."
884
 
885
- #: class-bws-settings.php:569
886
  msgid "Default Settings"
887
  msgstr "Réglages par défauts"
888
 
889
- #: class-bws-settings.php:571
890
  msgid "Restore Settings"
891
  msgstr "Remettre les paramètres"
892
 
893
- #: class-bws-settings.php:572
894
  msgid "This will restore plugin settings to defaults."
895
  msgstr "Remettre les valeurs par défaut des paramètres de l'extension."
896
 
897
- #: class-bws-settings.php:584
898
  msgid "Import / Export"
899
  msgstr "Importer / Exporter"
900
 
901
- #: class-bws-settings.php:700 class-bws-settings.php:733
902
- #: class-bws-settings.php:755
903
  msgid "License Key"
904
  msgstr "Clé de licence"
905
 
906
- #: class-bws-settings.php:723
907
  msgid "Congratulations! Pro license is activated successfully."
908
  msgstr ""
909
  "Félicitations! La version PRO de cette extension a été activée avec succès."
910
 
911
- #: class-bws-settings.php:724
912
  #, php-format
913
  msgid "You will be automatically redirected to the %s in %s seconds."
914
  msgstr ""
915
 
916
- #: class-bws-settings.php:724
917
  msgid "Settings page"
918
  msgstr "Page des paramètres"
919
 
920
- #: class-bws-settings.php:739
921
  #, php-format
922
  msgid "Enter your license key to activate %s and get premium plugin features."
923
  msgstr ""
924
  "Saisir votre clé de licence pour activer %s et obtenir les fonctionnalités "
925
  "premium."
926
 
927
- #: class-bws-settings.php:742 class-bws-settings.php:929 deprecated.php:362
928
- #: deprecated.php:703
929
  msgid ""
930
  "Unfortunately, you have exceeded the number of available tries per day. "
931
  "Please, upload the plugin manually."
@@ -933,12 +937,12 @@ msgstr ""
933
  "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de "
934
  "télécharger l'extension manuellement."
935
 
936
- #: class-bws-settings.php:745 deprecated.php:694
937
  #, php-format
938
  msgid "Start Your Free %s-Day Trial Now"
939
  msgstr "Débuter votre licence d'évaluation gratuite de %s jours"
940
 
941
- #: class-bws-settings.php:760
942
  msgid ""
943
  "If necessary, you can check if the license key is correct or reenter it in "
944
  "the field below."
@@ -946,15 +950,15 @@ msgstr ""
946
  "Si nécessaire vous pouvez vérifier que la clé de licence est correcte ou la "
947
  "saisir de nouveau dans le champ ci-dessous."
948
 
949
- #: class-bws-settings.php:765
950
  msgid "Manage License Settings"
951
  msgstr "Gérer les paramètres de licence"
952
 
953
- #: class-bws-settings.php:767
954
  msgid "Login to Client Area"
955
  msgstr "Se connecter à l'espace client"
956
 
957
- #: class-bws-settings.php:769
958
  msgid ""
959
  "Manage active licenses, download BWS products, and view your payment history "
960
  "using BestWebSoft Client Area."
@@ -962,12 +966,12 @@ msgstr ""
962
  "Gérer les licences actives, télécharger les produits BWS, et voir "
963
  "l'historique de vos règlements dans l'interface client de BestWebSoft."
964
 
965
- #: class-bws-settings.php:824 class-bws-settings.php:927 deprecated.php:141
966
- #: deprecated.php:360
967
  msgid "This license key is bound to another site."
968
  msgstr "La clé de licence correspond à un autre site."
969
 
970
- #: class-bws-settings.php:826 deprecated.php:143
971
  msgid ""
972
  "This license key is valid, but Your license has expired. If you want to "
973
  "update our plugin in future, you should extend the license."
@@ -976,13 +980,13 @@ msgstr ""
976
  "continuer à disposer du support rapide et des mises à jour de l'extension "
977
  "vous devez la renouveller."
978
 
979
- #: class-bws-settings.php:828 deprecated.php:145
980
  msgid "Unfortunately, you have exceeded the number of available tries."
981
  msgstr ""
982
  "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de "
983
  "télécharger l'extension manuellement."
984
 
985
- #: class-bws-settings.php:830 deprecated.php:147
986
  msgid ""
987
  "Unfortunately, the Pro Trial licence was already installed to this domain. "
988
  "The Pro Trial license can be installed only once."
@@ -990,11 +994,11 @@ msgstr ""
990
  "Une licence a déjà été installée sur ce domaine. La licence d'évaluation ne "
991
  "peut-être installée qu'une seule fois."
992
 
993
- #: class-bws-settings.php:835 deprecated.php:151
994
  msgid "The Pro Trial license key is valid."
995
  msgstr "La clé de licence d'évaluation est valide."
996
 
997
- #: class-bws-settings.php:843 deprecated.php:159 deprecated.php:246
998
  #, php-format
999
  msgid ""
1000
  "In order to continue using the plugin it is necessary to buy a %s license."
@@ -1002,119 +1006,145 @@ msgstr ""
1002
  "Afin de pouvoir continuer à utiliser cette extension il est nécessaire "
1003
  "d'acheter une licence %s."
1004
 
1005
- #: class-bws-settings.php:1040 deprecated.php:463
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1006
  msgid "Please, enter Your license key"
1007
  msgstr "Merci de saisir votre clé de licence"
1008
 
1009
- #: class-bws-settings.php:1052
1010
  msgid "Need Help?"
1011
  msgstr "Besoin d'aide ?"
1012
 
1013
- #: class-bws-settings.php:1054
1014
  msgid "Read the Instruction"
1015
  msgstr "Lire les instructions"
1016
 
1017
- #: class-bws-settings.php:1058
1018
  msgid "Watch the Video"
1019
  msgstr "Regarder la vidéo"
1020
 
1021
- #: class-bws-settings.php:1069
1022
  msgid "Start Your Free Trial"
1023
  msgstr "Débuter votre licence d'évaluation gratuite"
1024
 
1025
- #: deactivation-form.php:26
1026
  msgid "Need help? We are ready to answer your questions."
1027
  msgstr ""
1028
 
1029
- #: deactivation-form.php:26
1030
  msgid "Contact Support"
1031
  msgstr ""
1032
 
1033
- #: deactivation-form.php:31
1034
  msgid "The plugin is not working"
1035
  msgstr ""
1036
 
1037
- #: deactivation-form.php:33
1038
  msgid "Kindly share what didn't work so we can fix it in future updates..."
1039
  msgstr ""
1040
 
1041
- #: deactivation-form.php:37
1042
  msgid "The plugin didn't work as expected"
1043
  msgstr ""
1044
 
1045
- #: deactivation-form.php:39
1046
  msgid "What did you expect?"
1047
  msgstr ""
1048
 
1049
- #: deactivation-form.php:43
1050
  msgid "The plugin suddenly stopped working"
1051
  msgstr ""
1052
 
1053
- #: deactivation-form.php:50
1054
  msgid "The plugin broke my site"
1055
  msgstr ""
1056
 
1057
- #: deactivation-form.php:57
1058
  msgid "I couldn't understand how to get it work"
1059
  msgstr ""
1060
 
1061
- #: deactivation-form.php:64
1062
  msgid "I found a better plugin"
1063
  msgstr ""
1064
 
1065
- #: deactivation-form.php:66
1066
  msgid "What's the plugin name?"
1067
  msgstr ""
1068
 
1069
- #: deactivation-form.php:70
1070
  msgid "The plugin is great, but I need specific feature that you don't support"
1071
  msgstr ""
1072
 
1073
- #: deactivation-form.php:72
1074
  msgid "What feature?"
1075
  msgstr ""
1076
 
1077
- #: deactivation-form.php:76
1078
  msgid "I no longer need the plugin"
1079
  msgstr ""
1080
 
1081
- #: deactivation-form.php:82
1082
  msgid "It's a temporary deactivation, I'm just debugging an issue"
1083
  msgstr ""
1084
 
1085
- #: deactivation-form.php:88
1086
  msgid "Other"
1087
  msgstr "Autre"
1088
 
1089
- #: deactivation-form.php:122
1090
  msgid "Quick Feedback"
1091
  msgstr ""
1092
 
1093
- #: deactivation-form.php:123
1094
  msgid "If you have a moment, please let us know why you are deactivating"
1095
  msgstr ""
1096
 
1097
- #: deactivation-form.php:128
1098
- msgid "Anonymous feedback"
1099
  msgstr ""
1100
 
1101
- #: deactivation-form.php:130
1102
  msgid "Cancel"
1103
  msgstr ""
1104
 
1105
- #: deactivation-form.php:230
1106
  msgid "Processing"
1107
  msgstr ""
1108
 
1109
- #: deactivation-form.php:259
1110
  msgid "Submit & Deactivate"
1111
  msgstr ""
1112
 
1113
- #: deactivation-form.php:276
1114
  msgid "Please tell us the reason so we can improve it."
1115
  msgstr ""
1116
 
1117
- #: deactivation-form.php:344
1118
  msgid "Deactivate"
1119
  msgstr ""
1120
 
@@ -1145,70 +1175,70 @@ msgstr ""
1145
  "l'achat de l'extension). Si nécessaire, utilisez la fonction de demande de "
1146
  "mot de passe perdu."
1147
 
1148
- #: deprecated.php:247
1149
  msgid "After that, you can activate it by entering your license key."
1150
  msgstr ""
1151
  " Après vous pouvez activer cette extension en donnant votre clé de licence."
1152
 
1153
- #: deprecated.php:249 deprecated.php:688
1154
  msgid "License key can be found in the"
1155
  msgstr "La clé de licence peut être trouvée dans "
1156
 
1157
- #: deprecated.php:251 deprecated.php:690
1158
  msgid "(your username is the email address specified during the purchase)."
1159
  msgstr ""
1160
  "(votre nom d'utilisateur est l'adresse e-mail que vous avez donnée lors de "
1161
  "l'achat de l'extension)."
1162
 
1163
- #: deprecated.php:278
1164
  msgid ""
1165
  "Congratulations! The Pro license of the plugin is activated successfully."
1166
  msgstr ""
1167
  "Félicitations! La version PRO de cette extension a été activée avec succès."
1168
 
1169
- #: deprecated.php:280 deprecated.php:669
1170
  msgid "Please, go to"
1171
  msgstr "Merci d’aller à"
1172
 
1173
- #: deprecated.php:280 deprecated.php:669
1174
  msgid "the setting page"
1175
  msgstr "Options supplémentaires"
1176
 
1177
- #: deprecated.php:281 deprecated.php:670
1178
  msgid "You will be redirected automatically in 5 seconds."
1179
  msgstr "Vous allez être redirigé automatiquement dans 5 secondes"
1180
 
1181
- #: deprecated.php:315
1182
  msgid "Check premium options on the plugin settings page!"
1183
  msgstr ""
1184
  "Vérifier les options premium sur la page des paramètres de l'extension!"
1185
 
1186
- #: deprecated.php:478
1187
  msgid "Restore all plugin settings to defaults"
1188
  msgstr "Remettre les valeurs par défaut des paramètres de l'extension"
1189
 
1190
- #: deprecated.php:480
1191
  msgid "Restore settings"
1192
  msgstr "Remettre les paramètres"
1193
 
1194
- #: deprecated.php:548 deprecated.php:575
1195
  #, php-format
1196
  msgid "File %s edited successfully."
1197
  msgstr "Le fichier %s a été modifié avec succès."
1198
 
1199
- #: deprecated.php:550 deprecated.php:577
1200
  msgid "Not enough permissions to create or update the file"
1201
  msgstr "Pas assez de droits pour créer ou modifier le fichier"
1202
 
1203
- #: deprecated.php:580
1204
  msgid "Not enough permissions to create the file"
1205
  msgstr "Pas assez de droits pour créer le fichier"
1206
 
1207
- #: deprecated.php:624
1208
  msgid "Editing"
1209
  msgstr "Modifier"
1210
 
1211
- #: deprecated.php:667
1212
  msgid ""
1213
  "Congratulations! Pro version of the plugin is installed and activated "
1214
  "successfully."
@@ -1216,15 +1246,15 @@ msgstr ""
1216
  "Félicitations! La version PRO de cette extension a été téléchargée et "
1217
  "activée avec succès."
1218
 
1219
- #: deprecated.php:677
1220
  msgid "Show Pro features"
1221
  msgstr "Voir les fonctionnalités de la version PRO"
1222
 
1223
- #: deprecated.php:684
1224
  msgid "Enter your license key to install and activate"
1225
  msgstr "Saisir votre clé de licence pour installer et activer"
1226
 
1227
- #: deprecated.php:686
1228
  msgid "version of the plugin."
1229
  msgstr "version de l'extension."
1230
 
@@ -1264,280 +1294,290 @@ msgstr ""
1264
  msgid "SMM"
1265
  msgstr ""
1266
 
1267
- #: product_list.php:23
1268
- msgid ""
1269
- "Protect WordPress website forms from spam entries by means of math logic."
1270
  msgstr ""
1271
 
1272
- #: product_list.php:35
1273
  msgid "Create your personal car rental/booking and reservation website."
1274
  msgstr ""
1275
 
1276
- #: product_list.php:45
1277
  msgid ""
1278
  "Allow customers to reach you using secure contact form plugin any website "
1279
  "must have."
1280
  msgstr ""
1281
 
1282
- #: product_list.php:55
1283
  msgid "Add unlimited number of contact forms to WordPress website."
1284
  msgstr ""
1285
 
1286
- #: product_list.php:65
1287
  msgid "Save and manage Contact Form messages. Never lose important data."
1288
  msgstr ""
1289
 
1290
- #: product_list.php:75
1291
  msgid "Add unlimited custom pages to WordPress admin dashboard."
1292
  msgstr ""
1293
 
1294
- #: product_list.php:82
1295
  msgid "Add custom fields to WordPress website search results."
1296
  msgstr ""
1297
 
1298
- #: product_list.php:89
1299
  msgid ""
1300
  "Add custom post types and taxonomies to WordPress website search results."
1301
  msgstr ""
1302
 
1303
- #: product_list.php:99
1304
  msgid "Add PayPal and 2CO donate buttons to receive charity payments."
1305
  msgstr ""
1306
 
1307
- #: product_list.php:106
1308
  msgid ""
1309
  "Get latest error log messages to diagnose website problems. Define and fix "
1310
  "issues faster."
1311
  msgstr ""
1312
 
1313
- #: product_list.php:113
1314
  msgid ""
1315
  "Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and "
1316
  "widgets."
1317
  msgstr ""
1318
 
1319
- #: product_list.php:123
1320
  msgid ""
1321
  "Add beautiful galleries, albums & images to your WordPress website in a few "
1322
  "clicks."
1323
  msgstr ""
1324
 
1325
- #: product_list.php:133
1326
  msgid ""
1327
  "Add Google +1, Share, Follow, Hangout buttons and profile badge to WordPress "
1328
  "posts, pages and widgets."
1329
  msgstr ""
1330
 
1331
- #: product_list.php:143
1332
  msgid ""
1333
  "Stronger security solution which protects your WordPress website from hacks "
1334
  "and unauthorized login attempts."
1335
  msgstr ""
1336
 
1337
- #: product_list.php:153
1338
  msgid ""
1339
  "Add Adsense ads to WordPress website pages, posts, custom posts, search "
1340
  "results, categories, tags, and widgets."
1341
  msgstr ""
1342
 
1343
- #: product_list.php:163
1344
  msgid "Add Google Analytics code to WordPress website and track basic stats."
1345
  msgstr ""
1346
 
1347
- #: product_list.php:173
1348
  msgid ""
1349
  "Protect WordPress website forms from spam entries with Google Captcha "
1350
  "(reCaptcha)."
1351
  msgstr ""
1352
 
1353
- #: product_list.php:183
1354
  msgid "Add customized Google maps to WordPress posts, pages and widgets."
1355
  msgstr ""
1356
 
1357
- #: product_list.php:193
1358
  msgid ""
1359
  "Generate and add XML sitemap to WordPress website. Help search engines index "
1360
  "your blog."
1361
  msgstr ""
1362
 
1363
- #: product_list.php:203
1364
  msgid ""
1365
  "Replace external WordPress website links with Google shortlinks and track "
1366
  "click stats."
1367
  msgstr ""
1368
 
1369
- #: product_list.php:210
1370
  msgid ""
1371
  "Protect WordPress website – allow and deny access for certain IP addresses, "
1372
  "hostnames, etc."
1373
  msgstr ""
1374
 
1375
- #: product_list.php:220
1376
  msgid ""
1377
  "Create your personal job board and listing WordPress website. Search jobs, "
1378
  "submit CV/resumes, choose candidates."
1379
  msgstr ""
1380
 
1381
- #: product_list.php:227
1382
  msgid ""
1383
  "Protect WordPress website against brute force attacks. Limit rate of login "
1384
  "attempts."
1385
  msgstr ""
1386
 
1387
- #: product_list.php:237
1388
  msgid ""
1389
  "Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. "
1390
  "5 plugins included – profile, insider, etc."
1391
  msgstr ""
1392
 
1393
- #: product_list.php:247
1394
  msgid ""
1395
  "Translate WordPress website content to other languages manually. Create "
1396
  "multilingual pages, posts, widgets, menus, etc."
1397
  msgstr ""
1398
 
1399
- #: product_list.php:257
1400
  msgid ""
1401
  "Add customizable pagination to WordPress website. Split long content to "
1402
  "multiple pages for better navigation."
1403
  msgstr ""
1404
 
1405
- #: product_list.php:267
1406
  msgid ""
1407
  "Generate PDF files and print WordPress posts/pages. Customize document "
1408
  "header/footer styles and appearance."
1409
  msgstr ""
1410
 
1411
- #: product_list.php:277
1412
  msgid ""
1413
  "Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, "
1414
  "Profile) to WordPress posts, pages and widgets."
1415
  msgstr ""
1416
 
1417
- #: product_list.php:287
1418
  msgid ""
1419
  "Create your personal portfolio WordPress website. Manage and showcase past "
1420
  "projects to get more clients."
1421
  msgstr ""
1422
 
1423
- #: product_list.php:297
1424
  msgid "Export WordPress posts to CSV file format easily. Configure data order."
1425
  msgstr ""
1426
 
1427
- #: product_list.php:304
1428
  msgid ""
1429
  "Add extra fields to default WordPress user profile. The easiest way to "
1430
  "create and manage additional custom values."
1431
  msgstr ""
1432
 
1433
- #: product_list.php:311
1434
  msgid ""
1435
  "Add and display HTML advertisement banner on WordPress website. Customize "
1436
  "bar styles and appearance."
1437
  msgstr ""
1438
 
1439
- #: product_list.php:321
1440
  msgid ""
1441
  "Add customizable quotes and tips blocks to WordPress posts, pages and "
1442
  "widgets."
1443
  msgstr ""
1444
 
1445
- #: product_list.php:328
1446
  msgid ""
1447
  "Add rating plugin to your WordPress website to receive feedback from your "
1448
  "customers."
1449
  msgstr ""
1450
 
1451
- #: product_list.php:335
1452
  msgid ""
1453
  "Create your personal real estate WordPress website. Sell, rent and buy "
1454
  "properties. Add, search and browse listings easily."
1455
  msgstr ""
1456
 
1457
- #: product_list.php:345
1458
  msgid ""
1459
  "Add related, featured, latest, and popular posts to your WordPress website. "
1460
  "Connect your blog readers with a relevant content."
1461
  msgstr ""
1462
 
1463
- #: product_list.php:352
1464
  msgid ""
1465
  "Send bulk email messages to WordPress users. Custom templates, advanced "
1466
  "settings and detailed reports."
1467
  msgstr ""
1468
 
1469
- #: product_list.php:362
1470
  msgid ""
1471
  "The best responsive slider plugin for your WordPress website. Create "
1472
  "beautifully animated slides just in a few clicks."
1473
  msgstr ""
1474
 
1475
- #: product_list.php:369
1476
  msgid ""
1477
  "Configure SMTP server to receive email messages from WordPress to Gmail, "
1478
  "Yahoo, Hotmail and other services."
1479
  msgstr ""
1480
 
1481
- #: product_list.php:376
1482
  msgid ""
1483
  "Add social media buttons and widgets to WordPress posts, pages and widgets. "
1484
  "FB, Twitter, G+1, Pinterest, LinkedIn."
1485
  msgstr ""
1486
 
1487
- #: product_list.php:386
1488
  msgid ""
1489
  "Add social media login, registration, and commenting to your WordPress "
1490
  "website."
1491
  msgstr ""
1492
 
1493
- #: product_list.php:393
1494
  msgid ""
1495
  "Add email newsletter sign up form to WordPress posts, pages and widgets. "
1496
  "Collect data and subscribe your users."
1497
  msgstr ""
1498
 
1499
- #: product_list.php:403
1500
  msgid ""
1501
  "Add testimonials and feedbacks from your customers to WordPress website "
1502
  "posts, pages, and widgets."
1503
  msgstr ""
1504
 
1505
- #: product_list.php:410
1506
  msgid ""
1507
  "Best timesheet plugin for WordPress. Track employee time, streamline "
1508
  "attendance and generate reports."
1509
  msgstr ""
1510
 
1511
- #: product_list.php:420
1512
  msgid ""
1513
  "Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts "
1514
  "and pages."
1515
  msgstr ""
1516
 
1517
- #: product_list.php:430
1518
  msgid ""
1519
  "Automatically check and update WordPress website core with all installed "
1520
  "plugins and themes to the latest versions."
1521
  msgstr ""
1522
 
1523
- #: product_list.php:440
1524
  msgid ""
1525
  "Powerful user role management plugin for WordPress website. Create, edit, "
1526
  "copy, and delete user roles."
1527
  msgstr ""
1528
 
1529
- #: product_list.php:450
1530
  msgid ""
1531
  "Display live count of online visitors who are currently browsing your "
1532
  "WordPress website."
1533
  msgstr ""
1534
 
1535
- #: product_list.php:460
1536
  msgid ""
1537
  "Backup and export Zendesk Help Center content automatically to your "
1538
  "WordPress website database."
1539
  msgstr ""
1540
 
 
 
 
 
 
 
 
 
 
 
 
1541
  #~ msgid ""
1542
  #~ "You can use one license of the Pro plugin for one domain only. Please "
1543
  #~ "check and edit your license or domain if necessary using you personal "
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-09-11 16:42+0300\n"
6
+ "PO-Revision-Date: 2017-09-11 16:42+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"
41
  msgid "Like the plugin?"
42
  msgstr "Voter pour l'extension"
43
 
44
+ #: bws_functions.php:93
45
+ #, php-format
46
+ msgid "%s reviews"
47
+ msgstr ""
48
+
49
  #: bws_functions.php:94
50
  msgid "Rate it"
51
  msgstr "Notez là"
54
  msgid "Need help?"
55
  msgstr "Besoin d'aide ?"
56
 
57
+ #: bws_functions.php:104 bws_functions.php:917 class-bws-settings.php:1058
58
  msgid "Visit Help Center"
59
  msgstr "Visiter le site du support"
60
 
62
  msgid "Want to support the plugin?"
63
  msgstr "Voter pour l'extension"
64
 
65
+ #: bws_functions.php:108 bws_menu.php:560
66
  msgid "Donate"
67
  msgstr "Don"
68
 
78
  "otherwise the Pro plugin will be deactivated."
79
  msgstr ""
80
 
81
+ #: bws_functions.php:128 bws_functions.php:341 bws_menu.php:631
82
+ #: class-bws-settings.php:144
83
  msgid "Learn More"
84
  msgstr "En savoir plus"
85
 
99
  "Votre licence est terminée. Pour continuer à disposer du support rapide et "
100
  "des mises à jour de l'extension vous devez la renouveler."
101
 
102
+ #: bws_functions.php:147 bws_functions.php:389 deprecated.php:586
103
  msgid "Learn more"
104
  msgstr "En savoir plus"
105
 
130
  msgid "Thank you for installing %s plugin!"
131
  msgstr ""
132
 
133
+ #: bws_functions.php:210
134
  msgid "Let's get started"
135
  msgstr "Démarrer"
136
 
137
+ #: bws_functions.php:211 bws_functions.php:244 bws_menu.php:564
138
+ #: bws_menu.php:566
139
  msgid "Settings"
140
  msgstr "Réglages"
141
 
142
+ #: bws_functions.php:213 bws_menu.php:326 class-bws-settings.php:747
143
+ #: class-bws-settings.php:1060 class-bws-settings.php:1070 deprecated.php:697
144
  msgid "or"
145
  msgstr "ou"
146
 
147
+ #: bws_functions.php:214 bws_functions.php:246
148
  msgid "Add New"
149
  msgstr "Ajouter"
150
 
151
+ #: bws_functions.php:218 bws_functions.php:228 bws_functions.php:332
152
+ #: bws_functions.php:385 bws_functions.php:487
153
  msgid "Close notice"
154
  msgstr "Effacer l'avertissement"
155
 
156
+ #: bws_functions.php:233
157
  msgid "Thank you for installing plugins by BestWebSoft!"
158
  msgstr "Merci d'avoir installé des extensions de BestWebSoft!"
159
 
160
+ #: bws_functions.php:235
161
  msgid "More Details"
162
  msgstr "Plus de détails"
163
 
164
+ #: bws_functions.php:236
165
  msgid "Less Details"
166
  msgstr "Moins de détails"
167
 
168
+ #: bws_functions.php:264
169
  msgid "Deprecated function(-s) is used on the site here:"
170
  msgstr "Une ou des fonction(s) obsolètes sont utilisées sur ce site ici&nbsp;:"
171
 
172
+ #: bws_functions.php:278
173
  msgid ""
174
  "This function(-s) will be removed over time. Please update the product(-s)."
175
  msgstr ""
176
  "Ces fonctions seront supprimées rapidement. Merci de mettre à jour vos "
177
  "produits."
178
 
179
+ #: bws_functions.php:337
180
  msgid "It’s time to upgrade your"
181
  msgstr "C'est le moment de mettre à jour votre "
182
 
183
+ #: bws_functions.php:337
184
  msgid "to"
185
  msgstr "à"
186
 
187
+ #: bws_functions.php:337
188
  msgid "version!"
189
  msgstr "version"
190
 
191
+ #: bws_functions.php:338
192
  msgid "Extend standard plugin functionality with new great options."
193
  msgstr ""
194
  "Étend les fonctionnalités classiques de l'extension avec des nouvelles "
195
  "options."
196
 
197
+ #: bws_functions.php:389
198
  #, php-format
199
  msgid ""
200
  "Your license key for %s expires on %s and you won't be granted TOP-PRIORITY "
203
  "Votre clé de licence pour %s est terminée le %s et vous ne disposerez plus "
204
  "du support rapide et des mises à jour."
205
 
206
+ #: bws_functions.php:482
207
  #, php-format
208
  msgid "Thank you for choosing %s plugin!"
209
  msgstr ""
210
 
211
+ #: bws_functions.php:483
212
  msgid ""
213
  "If you have a feature, suggestion or idea you'd like to see in the plugin, "
214
  "we'd love to hear about it!"
216
  "Si vous avez une fonctionnalité, une suggestion ou une idée que vous "
217
  "souhaitez pour cette extension, nous serons ravis d'en parler avec vous !"
218
 
219
+ #: bws_functions.php:484
220
  msgid "Suggest a Feature"
221
  msgstr "Proposer une fonctionnalité"
222
 
223
+ #: bws_functions.php:500 class-bws-settings.php:540 class-bws-settings.php:543
224
+ #: class-bws-settings.php:595 class-bws-settings.php:598
225
  msgid "Notice"
226
  msgstr "Avertissement"
227
 
228
+ #: bws_functions.php:500
229
  msgid "The plugin's settings have been changed."
230
  msgstr "Les paramètres de l'extension ont été modifiés."
231
 
232
+ #: bws_functions.php:501 class-bws-settings.php:183 class-bws-settings.php:203
233
+ #: deprecated.php:642
234
  msgid "Save Changes"
235
  msgstr "Enregistrer les modifications"
236
 
237
+ #: bws_functions.php:515
238
  msgid ""
239
  "You can always look at premium options by checking the \"Pro Options\" in "
240
  "the \"Misc\" tab."
242
  "Vous pouvez toujours consulter les options premium en cliquant sur le lien "
243
  "\"Voir les fonctionnalités de la version PRO\" dans l'onglet divers."
244
 
245
+ #: bws_functions.php:653
246
  msgid "Add BWS Shortcode"
247
  msgstr ""
248
 
249
+ #: bws_functions.php:654
250
  msgid "Add BWS Plugins Shortcode"
251
  msgstr "Ajouter le code court de l'extension BWS"
252
 
253
+ #: bws_functions.php:673
254
  msgid "Add shortcode"
255
  msgstr "Ajouter le code court"
256
 
257
+ #: bws_functions.php:673
258
  msgid "Add BestWebSoft plugins' shortcodes using this button."
259
  msgstr "Ajouter le code court des extensions BestWebSoft avec ce bouton."
260
 
261
+ #: bws_functions.php:729
262
  msgid "Close"
263
  msgstr "Fermer"
264
 
265
+ #: bws_functions.php:821
266
  msgid "Are you sure you want to restore default settings?"
267
  msgstr "Êtes vous sûr de vouloir remettre toutes les valeurs par défaut ?"
268
 
269
+ #: bws_functions.php:824
270
  msgid "Yes, restore all settings"
271
  msgstr "Oui, remettre les valeurs par défaut"
272
 
273
+ #: bws_functions.php:825
274
  msgid "No, go back to the settings page"
275
  msgstr "Non, retourner à la page des paramètres"
276
 
277
+ #: bws_functions.php:867
278
  msgid "Plugin"
279
  msgstr "Extension"
280
 
281
+ #: bws_functions.php:876
282
  msgid "Shortcode settings"
283
  msgstr "Paramètres du code court"
284
 
285
+ #: bws_functions.php:881
286
  msgid "The shortcode will be inserted"
287
  msgstr "Le code court sera inséré"
288
 
289
+ #: bws_functions.php:922
290
  msgid "FAQ"
291
  msgstr "FAQ"
292
 
293
+ #: bws_functions.php:928
294
  msgid "For more information:"
295
  msgstr "Pour plus d'informations&nbsp;:"
296
 
297
+ #: bws_functions.php:929
298
  msgid "Documentation"
299
  msgstr "Documentation"
300
 
301
+ #: bws_functions.php:930
302
  msgid "Video Instructions"
303
  msgstr "Vidéo explicative"
304
 
305
+ #: bws_functions.php:931
306
  msgid "Submit a Request"
307
  msgstr "Soumettre une requête"
308
 
309
+ #: bws_menu.php:101 class-bws-settings.php:792 deprecated.php:323
310
  msgid "Wrong license key"
311
  msgstr "Clé de licence incorrecte"
312
 
313
+ #: bws_menu.php:122 class-bws-settings.php:818 class-bws-settings.php:885
314
+ #: class-bws-settings.php:921 deprecated.php:133 deprecated.php:199
315
+ #: deprecated.php:353
316
  msgid ""
317
  "Something went wrong. Please try again later. If the error appears again, "
318
  "please contact us"
321
  "nouveau, merci de contacter <a href=http://support.bestwebsoft."
322
  "com>BestWebSoft</a>. Nous sommes désolés pour le désagrément."
323
 
324
+ #: bws_menu.php:122 class-bws-settings.php:818 class-bws-settings.php:885
325
+ #: class-bws-settings.php:921 deprecated.php:133 deprecated.php:199
326
+ #: deprecated.php:353
327
  msgid "We are sorry for inconvenience."
328
  msgstr "Nous sommes désolés pour le désagrément."
329
 
330
+ #: bws_menu.php:128 class-bws-settings.php:824 class-bws-settings.php:927
331
+ #: deprecated.php:139 deprecated.php:359
332
  msgid "Wrong license key."
333
  msgstr "Clé de licence incorrecte."
334
 
344
  msgid "Log in"
345
  msgstr "Connexion"
346
 
347
+ #: bws_menu.php:132 bws_menu.php:332 deprecated.php:261
348
  msgid "Unfortunately, you have exceeded the number of available tries per day."
349
  msgstr ""
350
  "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de "
351
  "télécharger l'extension manuellement."
352
 
353
+ #: bws_menu.php:134 deprecated.php:365
354
  #, php-format
355
  msgid ""
356
  "Unfortunately, Your license has expired. To continue getting top-priority "
360
  "rapide et des mises à jour de l'extension vous devez la renouveler dans "
361
  "votre %s"
362
 
363
+ #: bws_menu.php:136 class-bws-settings.php:935 deprecated.php:367
364
  msgid ""
365
  "Unfortunately, the Pro licence was already installed to this domain. The Pro "
366
  "Trial license can be installed only once."
368
  "Une licence a déjà été installée sur ce domaine. La licence d'évaluation ne "
369
  "peut-être installée qu'une seule fois."
370
 
371
+ #: bws_menu.php:142 class-bws-settings.php:839 deprecated.php:153
372
  msgid "The license key is valid."
373
  msgstr "La clé de licence est valide."
374
 
375
+ #: bws_menu.php:144 class-bws-settings.php:842 deprecated.php:156
376
  msgid "Your license will expire on"
377
  msgstr "Votre licence se termine le "
378
 
379
  #: bws_menu.php:146
380
+ msgid "Congratulations! Pro Membership license is activated successfully."
381
  msgstr ""
 
382
 
383
+ #: bws_menu.php:153 class-bws-settings.php:1007 deprecated.php:436
384
  msgid ""
385
  "Something went wrong. Try again later or upload the plugin manually. We are "
386
  "sorry for inconvenience."
534
  msgid "Please enter a valid email address."
535
  msgstr "Merci de saisir une adresse e-mail valide."
536
 
537
+ #: bws_menu.php:262
538
+ #, php-format
539
+ msgid "Email with system info is sent to %s."
540
+ msgstr ""
541
 
542
+ #: bws_menu.php:266
543
  msgid "Thank you for contacting us."
544
  msgstr "Merci de nous avoir contacté."
545
 
546
+ #: bws_menu.php:289
547
  msgid "Sorry, email message could not be delivered."
548
  msgstr "Désolé, votre e-mail n'a pas pu être envoyé."
549
 
550
+ #: bws_menu.php:305 bws_menu.php:309 bws_menu.php:358 deprecated.php:91
551
  msgid "Plugins"
552
  msgstr "Extensions"
553
 
554
+ #: bws_menu.php:306 bws_menu.php:310 bws_menu.php:618 deprecated.php:92
555
  msgid "Themes"
556
  msgstr "Thèmes"
557
 
558
+ #: bws_menu.php:307 bws_menu.php:311 bws_menu.php:648
559
  msgid "System status"
560
  msgstr "Etat du système"
561
 
562
+ #: bws_menu.php:315
563
  msgid "Support"
564
  msgstr "Support"
565
 
566
+ #: bws_menu.php:316
567
  msgid "Manage purchased licenses & subscriptions"
568
  msgstr "Gérer les licences et les adhésions"
569
 
570
+ #: bws_menu.php:324
571
  #, php-format
572
  msgid "Get Access to %s+ Premium Plugins"
573
  msgstr "Accéder à plus de %s extension premiums"
574
 
575
+ #: bws_menu.php:326
576
  msgid "Subscribe to Pro Membership"
577
  msgstr "Souscrire une adhésion PRO"
578
 
579
+ #: bws_menu.php:334 bws_menu.php:345 class-bws-settings.php:760
580
  #: deprecated.php:227
581
  msgid "Check license key"
582
  msgstr "Vérifier la clé de licence"
583
 
584
+ #: bws_menu.php:337
585
  msgid "Enter your license key"
586
  msgstr "Merci de saisir votre clé de licence"
587
 
588
+ #: bws_menu.php:343 bws_menu.php:570 bws_menu.php:579
589
+ #: class-bws-settings.php:739 deprecated.php:259 deprecated.php:267
590
+ #: deprecated.php:631 deprecated.php:703 deprecated.php:712
591
  msgid "Activate"
592
  msgstr "Activé"
593
 
594
+ #: bws_menu.php:359
595
  msgid "Upload Plugin"
596
  msgstr "Charger l'extension"
597
 
598
+ #: bws_menu.php:363
599
  #, php-format
600
  msgid ""
601
  "The plugin generated %d characters of <strong>unexpected output</strong> "
608
  "sent&#8221;, des problèmes avec les flux de syndication ou autres, essayez "
609
  "de désactiver l'extension ou supprimer l'extension."
610
 
611
+ #: bws_menu.php:365
612
  msgid ""
613
  "Plugin could not be activated because it triggered a <strong>fatal error</"
614
  "strong>."
616
  "L'extension ne peut pas être activée car une <strong>erreur fatale</strong> "
617
  "a été détectée."
618
 
619
+ #: bws_menu.php:368
620
  msgid "Plugin <strong>activated</strong>."
621
  msgstr "Extension <strong>activée</strong>."
622
 
623
+ #: bws_menu.php:375
624
  msgid "Installing Plugin"
625
  msgstr "Extensions installées"
626
 
627
+ #: bws_menu.php:381
628
  msgid "Downloading install package from"
629
  msgstr "Télécharger le paquet d'installation depuis"
630
 
631
+ #: bws_menu.php:398 bws_menu.php:429 bws_menu.php:440 deprecated.php:388
632
+ #: deprecated.php:410 deprecated.php:432
 
 
633
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
634
  msgstr ""
635
  "Erreur de téléchargement de l'archive ZIP. Merci de télécharger l'extension "
636
  "manuellement."
637
 
638
+ #: bws_menu.php:406
639
  msgid "Unpacking the package"
640
  msgstr "Décompresser le paquet"
641
 
642
+ #: bws_menu.php:411 bws_menu.php:419
643
  msgid "Installing the plugin"
644
  msgstr "Installer l'extension"
645
 
646
+ #: bws_menu.php:415 deprecated.php:400
647
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
648
  msgstr ""
649
  "Erreur d'ouverture de l'archive zip. Merci de télécharger l'extension "
650
  "manuellement."
651
 
652
+ #: bws_menu.php:422 deprecated.php:406
653
  msgid ""
654
  "Your server does not support either ZipArchive or Phar. Please, upload the "
655
  "plugin manually"
657
  "Votre serveur n'a pas le support du format des archives ZIP ou Phar. Merci "
658
  "de télécharger l'extension manuellement."
659
 
660
+ #: bws_menu.php:425
661
  #, php-format
662
  msgid "The plugin %s is successfully installed."
663
  msgstr "L'extension %s a été installée avec succès."
664
 
665
+ #: bws_menu.php:432 deprecated.php:413
666
  msgid "UploadDir is not writable. Please, upload the plugin manually"
667
  msgstr ""
668
  "Erreur d'ouverture de l'archive zip. Merci de télécharger l'extension "
669
  "manuellement."
670
 
671
+ #: bws_menu.php:437
672
  msgid "Activate Plugin"
673
  msgstr "Activer l'extension"
674
 
675
+ #: bws_menu.php:437 bws_menu.php:443
676
  msgid "Return to BestWebSoft Panel"
677
  msgstr "Retourner à l'administration BestWebSoft"
678
 
679
+ #: bws_menu.php:451 bws_menu.php:471 bws_menu.php:600
680
  msgid "All"
681
  msgstr "Tous"
682
 
683
+ #: bws_menu.php:454 bws_menu.php:637
684
  msgid "Installed"
685
  msgstr "Installé"
686
 
687
+ #: bws_menu.php:457
688
  msgid "Not Installed"
689
  msgstr "Non installé"
690
 
691
+ #: bws_menu.php:464
692
  msgid "Filter results"
693
  msgstr "Filtrer les résultats"
694
 
695
+ #: bws_menu.php:467 bws_menu.php:596
696
  msgid "Category"
697
  msgstr "Catégorie"
698
 
699
+ #: bws_menu.php:531
700
  msgid "Not installed"
701
  msgstr "Non installé"
702
 
703
+ #: bws_menu.php:535
704
  msgid "Renew to get updates"
705
  msgstr "Se réabonner pour avoir les mises à jour"
706
 
707
+ #: bws_menu.php:538
708
  #, php-format
709
  msgid "Update to v %s"
710
  msgstr "Mettre à jour avec la version %s"
711
 
712
+ #: bws_menu.php:550 bws_menu.php:573 bws_menu.php:582
713
  msgid "Install Now"
714
  msgstr "Installer maintenant"
715
 
716
+ #: bws_menu.php:556 class-bws-settings.php:157 class-bws-settings.php:1067
717
  msgid "Upgrade to Pro"
718
  msgstr "Passer à la version PRO"
719
 
720
+ #: bws_menu.php:570 bws_menu.php:579
721
  msgid "Activate this plugin"
722
  msgstr "Activer cette extension"
723
 
724
+ #: bws_menu.php:582
725
  msgid "Install this plugin"
726
  msgstr "Installer cette extension"
727
 
728
+ #: bws_menu.php:591
729
  msgid "Nothing found. Try another criteria."
730
  msgstr "Pas de réponse. essayer d'autres critères."
731
 
732
+ #: bws_menu.php:628
733
  #, php-format
734
  msgid "By %s"
735
  msgstr "Par %s"
736
 
737
+ #: bws_menu.php:635
738
  msgid "Already Installed"
739
  msgstr "Déjà installé"
740
 
741
+ #: bws_menu.php:645
742
+ msgid "Browse More WordPress Themes"
743
+ msgstr ""
744
 
745
+ #: bws_menu.php:654
746
  msgid "Send to support"
747
  msgstr "Envoyé au support"
748
 
749
+ #: bws_menu.php:661
750
  msgid "Send to custom email &#187;"
751
  msgstr "Envoyer un e-mail spécifique &#187;"
752
 
800
  msgid "Custom Code"
801
  msgstr "Code personnalisé"
802
 
803
+ #: class-bws-settings.php:427 deprecated.php:498
804
  msgid "You do not have sufficient permissions to edit plugins for this site."
805
  msgstr ""
806
  "Vous n'avez pas assez de droits pour modifier l'extension pour ce site."
807
 
808
+ #: class-bws-settings.php:432 deprecated.php:620
809
  msgid "These styles will be added to the header on all pages of your site."
810
  msgstr ""
811
  "Ces styles seront ajoutés aux entêtes sur tous les pages de votre site."
812
 
813
+ #: class-bws-settings.php:435 deprecated.php:622
814
  #, php-format
815
  msgid ""
816
  "This PHP code will be hooked to the %s action and will be printed on front "
823
  msgid "These code will be added to the header on all pages of your site."
824
  msgstr "Ce code sera ajouté aux entêtes sur tous les pages de votre site."
825
 
826
+ #: class-bws-settings.php:446 deprecated.php:646
827
  #, php-format
828
  msgid ""
829
  "You need to make this files writable before you can save your changes. See "
832
  "Vous devez rendre ce fichier modifiable avant de pouvoir enregistrer vos "
833
  "modifications. Regarder %s du Codex %s pour plus d'informations."
834
 
835
+ #: class-bws-settings.php:456 deprecated.php:628
836
  msgid "Browsing"
837
  msgstr "Parcourir"
838
 
841
  msgid "Activate custom %s code."
842
  msgstr "Activer le code personnalisé %s."
843
 
844
+ #: class-bws-settings.php:469 deprecated.php:635
845
  #, php-format
846
  msgid "Learn more about %s"
847
  msgstr "En savoir plus sur %s"
848
 
849
+ #: class-bws-settings.php:531
850
  msgid "Miscellaneous Settings"
851
  msgstr "Paramètres divers"
852
 
853
+ #: class-bws-settings.php:540 class-bws-settings.php:595
854
  #, php-format
855
  msgid ""
856
  "It is prohibited to change %s settings on this site in the %s network "
859
  "Il est interdit de changer le paramètre %s sur ce site dans les paramètres "
860
  "%s du réseau."
861
 
862
+ #: class-bws-settings.php:543 class-bws-settings.php:598
863
  #, php-format
864
  msgid ""
865
  "It is prohibited to view %s settings on this site in the %s network settings."
867
  "Il est interdit de voir le paramètre %s sur ce site dans les paramètres %s "
868
  "du réseau."
869
 
870
+ #: class-bws-settings.php:552
871
  msgid "Pro Options"
872
  msgstr "Options Pro"
873
 
874
+ #: class-bws-settings.php:556
875
  msgid "Enable to display plugin Pro options."
876
  msgstr "Activer pour voir les options PRO de l'extension."
877
 
878
+ #: class-bws-settings.php:562
879
  msgid "Track Usage"
880
  msgstr "Suivi de l'utilisation"
881
 
882
+ #: class-bws-settings.php:566
883
  msgid ""
884
  "Enable to allow tracking plugin usage anonymously in order to make it better."
885
  msgstr ""
886
  "Activer pour autoriser le suivi de l'utilisation de l'extension de manière "
887
  "anonyme afin de le rendre meilleur."
888
 
889
+ #: class-bws-settings.php:571
890
  msgid "Default Settings"
891
  msgstr "Réglages par défauts"
892
 
893
+ #: class-bws-settings.php:573
894
  msgid "Restore Settings"
895
  msgstr "Remettre les paramètres"
896
 
897
+ #: class-bws-settings.php:574
898
  msgid "This will restore plugin settings to defaults."
899
  msgstr "Remettre les valeurs par défaut des paramètres de l'extension."
900
 
901
+ #: class-bws-settings.php:586
902
  msgid "Import / Export"
903
  msgstr "Importer / Exporter"
904
 
905
+ #: class-bws-settings.php:702 class-bws-settings.php:735
906
+ #: class-bws-settings.php:757
907
  msgid "License Key"
908
  msgstr "Clé de licence"
909
 
910
+ #: class-bws-settings.php:725
911
  msgid "Congratulations! Pro license is activated successfully."
912
  msgstr ""
913
  "Félicitations! La version PRO de cette extension a été activée avec succès."
914
 
915
+ #: class-bws-settings.php:726
916
  #, php-format
917
  msgid "You will be automatically redirected to the %s in %s seconds."
918
  msgstr ""
919
 
920
+ #: class-bws-settings.php:726
921
  msgid "Settings page"
922
  msgstr "Page des paramètres"
923
 
924
+ #: class-bws-settings.php:741
925
  #, php-format
926
  msgid "Enter your license key to activate %s and get premium plugin features."
927
  msgstr ""
928
  "Saisir votre clé de licence pour activer %s et obtenir les fonctionnalités "
929
  "premium."
930
 
931
+ #: class-bws-settings.php:744 class-bws-settings.php:931 deprecated.php:363
932
+ #: deprecated.php:706
933
  msgid ""
934
  "Unfortunately, you have exceeded the number of available tries per day. "
935
  "Please, upload the plugin manually."
937
  "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de "
938
  "télécharger l'extension manuellement."
939
 
940
+ #: class-bws-settings.php:747 deprecated.php:697
941
  #, php-format
942
  msgid "Start Your Free %s-Day Trial Now"
943
  msgstr "Débuter votre licence d'évaluation gratuite de %s jours"
944
 
945
+ #: class-bws-settings.php:762
946
  msgid ""
947
  "If necessary, you can check if the license key is correct or reenter it in "
948
  "the field below."
950
  "Si nécessaire vous pouvez vérifier que la clé de licence est correcte ou la "
951
  "saisir de nouveau dans le champ ci-dessous."
952
 
953
+ #: class-bws-settings.php:767
954
  msgid "Manage License Settings"
955
  msgstr "Gérer les paramètres de licence"
956
 
957
+ #: class-bws-settings.php:769
958
  msgid "Login to Client Area"
959
  msgstr "Se connecter à l'espace client"
960
 
961
+ #: class-bws-settings.php:771
962
  msgid ""
963
  "Manage active licenses, download BWS products, and view your payment history "
964
  "using BestWebSoft Client Area."
966
  "Gérer les licences actives, télécharger les produits BWS, et voir "
967
  "l'historique de vos règlements dans l'interface client de BestWebSoft."
968
 
969
+ #: class-bws-settings.php:826 class-bws-settings.php:929 deprecated.php:141
970
+ #: deprecated.php:361
971
  msgid "This license key is bound to another site."
972
  msgstr "La clé de licence correspond à un autre site."
973
 
974
+ #: class-bws-settings.php:828 deprecated.php:143
975
  msgid ""
976
  "This license key is valid, but Your license has expired. If you want to "
977
  "update our plugin in future, you should extend the license."
980
  "continuer à disposer du support rapide et des mises à jour de l'extension "
981
  "vous devez la renouveller."
982
 
983
+ #: class-bws-settings.php:830 deprecated.php:145
984
  msgid "Unfortunately, you have exceeded the number of available tries."
985
  msgstr ""
986
  "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de "
987
  "télécharger l'extension manuellement."
988
 
989
+ #: class-bws-settings.php:832 deprecated.php:147
990
  msgid ""
991
  "Unfortunately, the Pro Trial licence was already installed to this domain. "
992
  "The Pro Trial license can be installed only once."
994
  "Une licence a déjà été installée sur ce domaine. La licence d'évaluation ne "
995
  "peut-être installée qu'une seule fois."
996
 
997
+ #: class-bws-settings.php:837 deprecated.php:151
998
  msgid "The Pro Trial license key is valid."
999
  msgstr "La clé de licence d'évaluation est valide."
1000
 
1001
+ #: class-bws-settings.php:845 deprecated.php:159 deprecated.php:246
1002
  #, php-format
1003
  msgid ""
1004
  "In order to continue using the plugin it is necessary to buy a %s license."
1006
  "Afin de pouvoir continuer à utiliser cette extension il est nécessaire "
1007
  "d'acheter une licence %s."
1008
 
1009
+ #: class-bws-settings.php:933
1010
+ #, php-format
1011
+ msgid ""
1012
+ "Unfortunately, Your license has expired. To continue getting top-priority "
1013
+ "support and plugin updates, you should extend it in your %s."
1014
+ msgstr ""
1015
+
1016
+ #: class-bws-settings.php:959 class-bws-settings.php:981
1017
+ #: class-bws-settings.php:1003
1018
+ msgid "Failed to download the zip archive. Please, upload the plugin manually."
1019
+ msgstr ""
1020
+
1021
+ #: class-bws-settings.php:971
1022
+ msgid "Failed to open the zip archive. Please, upload the plugin manually."
1023
+ msgstr ""
1024
+
1025
+ #: class-bws-settings.php:977
1026
+ msgid ""
1027
+ "Your server does not support either ZipArchive or Phar. Please, upload the "
1028
+ "plugin manually."
1029
+ msgstr ""
1030
+
1031
+ #: class-bws-settings.php:984
1032
+ msgid "UploadDir is not writable. Please, upload the plugin manually."
1033
+ msgstr ""
1034
+
1035
+ #: class-bws-settings.php:1042 deprecated.php:464
1036
  msgid "Please, enter Your license key"
1037
  msgstr "Merci de saisir votre clé de licence"
1038
 
1039
+ #: class-bws-settings.php:1054
1040
  msgid "Need Help?"
1041
  msgstr "Besoin d'aide ?"
1042
 
1043
+ #: class-bws-settings.php:1056
1044
  msgid "Read the Instruction"
1045
  msgstr "Lire les instructions"
1046
 
1047
+ #: class-bws-settings.php:1060
1048
  msgid "Watch the Video"
1049
  msgstr "Regarder la vidéo"
1050
 
1051
+ #: class-bws-settings.php:1071
1052
  msgid "Start Your Free Trial"
1053
  msgstr "Débuter votre licence d'évaluation gratuite"
1054
 
1055
+ #: deactivation-form.php:27
1056
  msgid "Need help? We are ready to answer your questions."
1057
  msgstr ""
1058
 
1059
+ #: deactivation-form.php:27
1060
  msgid "Contact Support"
1061
  msgstr ""
1062
 
1063
+ #: deactivation-form.php:32
1064
  msgid "The plugin is not working"
1065
  msgstr ""
1066
 
1067
+ #: deactivation-form.php:34
1068
  msgid "Kindly share what didn't work so we can fix it in future updates..."
1069
  msgstr ""
1070
 
1071
+ #: deactivation-form.php:38
1072
  msgid "The plugin didn't work as expected"
1073
  msgstr ""
1074
 
1075
+ #: deactivation-form.php:40
1076
  msgid "What did you expect?"
1077
  msgstr ""
1078
 
1079
+ #: deactivation-form.php:44
1080
  msgid "The plugin suddenly stopped working"
1081
  msgstr ""
1082
 
1083
+ #: deactivation-form.php:51
1084
  msgid "The plugin broke my site"
1085
  msgstr ""
1086
 
1087
+ #: deactivation-form.php:58
1088
  msgid "I couldn't understand how to get it work"
1089
  msgstr ""
1090
 
1091
+ #: deactivation-form.php:65
1092
  msgid "I found a better plugin"
1093
  msgstr ""
1094
 
1095
+ #: deactivation-form.php:67
1096
  msgid "What's the plugin name?"
1097
  msgstr ""
1098
 
1099
+ #: deactivation-form.php:71
1100
  msgid "The plugin is great, but I need specific feature that you don't support"
1101
  msgstr ""
1102
 
1103
+ #: deactivation-form.php:73
1104
  msgid "What feature?"
1105
  msgstr ""
1106
 
1107
+ #: deactivation-form.php:77
1108
  msgid "I no longer need the plugin"
1109
  msgstr ""
1110
 
1111
+ #: deactivation-form.php:83
1112
  msgid "It's a temporary deactivation, I'm just debugging an issue"
1113
  msgstr ""
1114
 
1115
+ #: deactivation-form.php:89
1116
  msgid "Other"
1117
  msgstr "Autre"
1118
 
1119
+ #: deactivation-form.php:123
1120
  msgid "Quick Feedback"
1121
  msgstr ""
1122
 
1123
+ #: deactivation-form.php:124
1124
  msgid "If you have a moment, please let us know why you are deactivating"
1125
  msgstr ""
1126
 
1127
+ #: deactivation-form.php:127
1128
+ msgid "Send website data and allow to contact me back"
1129
  msgstr ""
1130
 
1131
+ #: deactivation-form.php:132
1132
  msgid "Cancel"
1133
  msgstr ""
1134
 
1135
+ #: deactivation-form.php:233
1136
  msgid "Processing"
1137
  msgstr ""
1138
 
1139
+ #: deactivation-form.php:262
1140
  msgid "Submit & Deactivate"
1141
  msgstr ""
1142
 
1143
+ #: deactivation-form.php:277
1144
  msgid "Please tell us the reason so we can improve it."
1145
  msgstr ""
1146
 
1147
+ #: deactivation-form.php:345
1148
  msgid "Deactivate"
1149
  msgstr ""
1150
 
1175
  "l'achat de l'extension). Si nécessaire, utilisez la fonction de demande de "
1176
  "mot de passe perdu."
1177
 
1178
+ #: deprecated.php:246
1179
  msgid "After that, you can activate it by entering your license key."
1180
  msgstr ""
1181
  " Après vous pouvez activer cette extension en donnant votre clé de licence."
1182
 
1183
+ #: deprecated.php:249 deprecated.php:691
1184
  msgid "License key can be found in the"
1185
  msgstr "La clé de licence peut être trouvée dans "
1186
 
1187
+ #: deprecated.php:251 deprecated.php:693
1188
  msgid "(your username is the email address specified during the purchase)."
1189
  msgstr ""
1190
  "(votre nom d'utilisateur est l'adresse e-mail que vous avez donnée lors de "
1191
  "l'achat de l'extension)."
1192
 
1193
+ #: deprecated.php:279
1194
  msgid ""
1195
  "Congratulations! The Pro license of the plugin is activated successfully."
1196
  msgstr ""
1197
  "Félicitations! La version PRO de cette extension a été activée avec succès."
1198
 
1199
+ #: deprecated.php:281 deprecated.php:672
1200
  msgid "Please, go to"
1201
  msgstr "Merci d’aller à"
1202
 
1203
+ #: deprecated.php:281 deprecated.php:672
1204
  msgid "the setting page"
1205
  msgstr "Options supplémentaires"
1206
 
1207
+ #: deprecated.php:282 deprecated.php:673
1208
  msgid "You will be redirected automatically in 5 seconds."
1209
  msgstr "Vous allez être redirigé automatiquement dans 5 secondes"
1210
 
1211
+ #: deprecated.php:316
1212
  msgid "Check premium options on the plugin settings page!"
1213
  msgstr ""
1214
  "Vérifier les options premium sur la page des paramètres de l'extension!"
1215
 
1216
+ #: deprecated.php:479
1217
  msgid "Restore all plugin settings to defaults"
1218
  msgstr "Remettre les valeurs par défaut des paramètres de l'extension"
1219
 
1220
+ #: deprecated.php:481
1221
  msgid "Restore settings"
1222
  msgstr "Remettre les paramètres"
1223
 
1224
+ #: deprecated.php:550 deprecated.php:577
1225
  #, php-format
1226
  msgid "File %s edited successfully."
1227
  msgstr "Le fichier %s a été modifié avec succès."
1228
 
1229
+ #: deprecated.php:552 deprecated.php:579
1230
  msgid "Not enough permissions to create or update the file"
1231
  msgstr "Pas assez de droits pour créer ou modifier le fichier"
1232
 
1233
+ #: deprecated.php:582
1234
  msgid "Not enough permissions to create the file"
1235
  msgstr "Pas assez de droits pour créer le fichier"
1236
 
1237
+ #: deprecated.php:626
1238
  msgid "Editing"
1239
  msgstr "Modifier"
1240
 
1241
+ #: deprecated.php:670
1242
  msgid ""
1243
  "Congratulations! Pro version of the plugin is installed and activated "
1244
  "successfully."
1246
  "Félicitations! La version PRO de cette extension a été téléchargée et "
1247
  "activée avec succès."
1248
 
1249
+ #: deprecated.php:680
1250
  msgid "Show Pro features"
1251
  msgstr "Voir les fonctionnalités de la version PRO"
1252
 
1253
+ #: deprecated.php:687
1254
  msgid "Enter your license key to install and activate"
1255
  msgstr "Saisir votre clé de licence pour installer et activer"
1256
 
1257
+ #: deprecated.php:689
1258
  msgid "version of the plugin."
1259
  msgstr "version de l'extension."
1260
 
1294
  msgid "SMM"
1295
  msgstr ""
1296
 
1297
+ #: product_list.php:22
1298
+ msgid "Best secure captcha plugin to protect your WordPress forms."
 
1299
  msgstr ""
1300
 
1301
+ #: product_list.php:32
1302
  msgid "Create your personal car rental/booking and reservation website."
1303
  msgstr ""
1304
 
1305
+ #: product_list.php:42
1306
  msgid ""
1307
  "Allow customers to reach you using secure contact form plugin any website "
1308
  "must have."
1309
  msgstr ""
1310
 
1311
+ #: product_list.php:52
1312
  msgid "Add unlimited number of contact forms to WordPress website."
1313
  msgstr ""
1314
 
1315
+ #: product_list.php:62
1316
  msgid "Save and manage Contact Form messages. Never lose important data."
1317
  msgstr ""
1318
 
1319
+ #: product_list.php:72
1320
  msgid "Add unlimited custom pages to WordPress admin dashboard."
1321
  msgstr ""
1322
 
1323
+ #: product_list.php:79
1324
  msgid "Add custom fields to WordPress website search results."
1325
  msgstr ""
1326
 
1327
+ #: product_list.php:86
1328
  msgid ""
1329
  "Add custom post types and taxonomies to WordPress website search results."
1330
  msgstr ""
1331
 
1332
+ #: product_list.php:96
1333
  msgid "Add PayPal and 2CO donate buttons to receive charity payments."
1334
  msgstr ""
1335
 
1336
+ #: product_list.php:103
1337
  msgid ""
1338
  "Get latest error log messages to diagnose website problems. Define and fix "
1339
  "issues faster."
1340
  msgstr ""
1341
 
1342
+ #: product_list.php:110
1343
  msgid ""
1344
  "Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and "
1345
  "widgets."
1346
  msgstr ""
1347
 
1348
+ #: product_list.php:120
1349
  msgid ""
1350
  "Add beautiful galleries, albums & images to your WordPress website in a few "
1351
  "clicks."
1352
  msgstr ""
1353
 
1354
+ #: product_list.php:130
1355
  msgid ""
1356
  "Add Google +1, Share, Follow, Hangout buttons and profile badge to WordPress "
1357
  "posts, pages and widgets."
1358
  msgstr ""
1359
 
1360
+ #: product_list.php:140
1361
  msgid ""
1362
  "Stronger security solution which protects your WordPress website from hacks "
1363
  "and unauthorized login attempts."
1364
  msgstr ""
1365
 
1366
+ #: product_list.php:150
1367
  msgid ""
1368
  "Add Adsense ads to WordPress website pages, posts, custom posts, search "
1369
  "results, categories, tags, and widgets."
1370
  msgstr ""
1371
 
1372
+ #: product_list.php:160
1373
  msgid "Add Google Analytics code to WordPress website and track basic stats."
1374
  msgstr ""
1375
 
1376
+ #: product_list.php:170
1377
  msgid ""
1378
  "Protect WordPress website forms from spam entries with Google Captcha "
1379
  "(reCaptcha)."
1380
  msgstr ""
1381
 
1382
+ #: product_list.php:180
1383
  msgid "Add customized Google maps to WordPress posts, pages and widgets."
1384
  msgstr ""
1385
 
1386
+ #: product_list.php:190
1387
  msgid ""
1388
  "Generate and add XML sitemap to WordPress website. Help search engines index "
1389
  "your blog."
1390
  msgstr ""
1391
 
1392
+ #: product_list.php:200
1393
  msgid ""
1394
  "Replace external WordPress website links with Google shortlinks and track "
1395
  "click stats."
1396
  msgstr ""
1397
 
1398
+ #: product_list.php:207
1399
  msgid ""
1400
  "Protect WordPress website – allow and deny access for certain IP addresses, "
1401
  "hostnames, etc."
1402
  msgstr ""
1403
 
1404
+ #: product_list.php:217
1405
  msgid ""
1406
  "Create your personal job board and listing WordPress website. Search jobs, "
1407
  "submit CV/resumes, choose candidates."
1408
  msgstr ""
1409
 
1410
+ #: product_list.php:224
1411
  msgid ""
1412
  "Protect WordPress website against brute force attacks. Limit rate of login "
1413
  "attempts."
1414
  msgstr ""
1415
 
1416
+ #: product_list.php:234
1417
  msgid ""
1418
  "Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. "
1419
  "5 plugins included – profile, insider, etc."
1420
  msgstr ""
1421
 
1422
+ #: product_list.php:244
1423
  msgid ""
1424
  "Translate WordPress website content to other languages manually. Create "
1425
  "multilingual pages, posts, widgets, menus, etc."
1426
  msgstr ""
1427
 
1428
+ #: product_list.php:254
1429
  msgid ""
1430
  "Add customizable pagination to WordPress website. Split long content to "
1431
  "multiple pages for better navigation."
1432
  msgstr ""
1433
 
1434
+ #: product_list.php:264
1435
  msgid ""
1436
  "Generate PDF files and print WordPress posts/pages. Customize document "
1437
  "header/footer styles and appearance."
1438
  msgstr ""
1439
 
1440
+ #: product_list.php:274
1441
  msgid ""
1442
  "Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, "
1443
  "Profile) to WordPress posts, pages and widgets."
1444
  msgstr ""
1445
 
1446
+ #: product_list.php:284
1447
  msgid ""
1448
  "Create your personal portfolio WordPress website. Manage and showcase past "
1449
  "projects to get more clients."
1450
  msgstr ""
1451
 
1452
+ #: product_list.php:294
1453
  msgid "Export WordPress posts to CSV file format easily. Configure data order."
1454
  msgstr ""
1455
 
1456
+ #: product_list.php:301
1457
  msgid ""
1458
  "Add extra fields to default WordPress user profile. The easiest way to "
1459
  "create and manage additional custom values."
1460
  msgstr ""
1461
 
1462
+ #: product_list.php:308
1463
  msgid ""
1464
  "Add and display HTML advertisement banner on WordPress website. Customize "
1465
  "bar styles and appearance."
1466
  msgstr ""
1467
 
1468
+ #: product_list.php:318
1469
  msgid ""
1470
  "Add customizable quotes and tips blocks to WordPress posts, pages and "
1471
  "widgets."
1472
  msgstr ""
1473
 
1474
+ #: product_list.php:325
1475
  msgid ""
1476
  "Add rating plugin to your WordPress website to receive feedback from your "
1477
  "customers."
1478
  msgstr ""
1479
 
1480
+ #: product_list.php:332
1481
  msgid ""
1482
  "Create your personal real estate WordPress website. Sell, rent and buy "
1483
  "properties. Add, search and browse listings easily."
1484
  msgstr ""
1485
 
1486
+ #: product_list.php:342
1487
  msgid ""
1488
  "Add related, featured, latest, and popular posts to your WordPress website. "
1489
  "Connect your blog readers with a relevant content."
1490
  msgstr ""
1491
 
1492
+ #: product_list.php:349
1493
  msgid ""
1494
  "Send bulk email messages to WordPress users. Custom templates, advanced "
1495
  "settings and detailed reports."
1496
  msgstr ""
1497
 
1498
+ #: product_list.php:359
1499
  msgid ""
1500
  "The best responsive slider plugin for your WordPress website. Create "
1501
  "beautifully animated slides just in a few clicks."
1502
  msgstr ""
1503
 
1504
+ #: product_list.php:366
1505
  msgid ""
1506
  "Configure SMTP server to receive email messages from WordPress to Gmail, "
1507
  "Yahoo, Hotmail and other services."
1508
  msgstr ""
1509
 
1510
+ #: product_list.php:373
1511
  msgid ""
1512
  "Add social media buttons and widgets to WordPress posts, pages and widgets. "
1513
  "FB, Twitter, G+1, Pinterest, LinkedIn."
1514
  msgstr ""
1515
 
1516
+ #: product_list.php:383
1517
  msgid ""
1518
  "Add social media login, registration, and commenting to your WordPress "
1519
  "website."
1520
  msgstr ""
1521
 
1522
+ #: product_list.php:390
1523
  msgid ""
1524
  "Add email newsletter sign up form to WordPress posts, pages and widgets. "
1525
  "Collect data and subscribe your users."
1526
  msgstr ""
1527
 
1528
+ #: product_list.php:400
1529
  msgid ""
1530
  "Add testimonials and feedbacks from your customers to WordPress website "
1531
  "posts, pages, and widgets."
1532
  msgstr ""
1533
 
1534
+ #: product_list.php:407
1535
  msgid ""
1536
  "Best timesheet plugin for WordPress. Track employee time, streamline "
1537
  "attendance and generate reports."
1538
  msgstr ""
1539
 
1540
+ #: product_list.php:417
1541
  msgid ""
1542
  "Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts "
1543
  "and pages."
1544
  msgstr ""
1545
 
1546
+ #: product_list.php:427
1547
  msgid ""
1548
  "Automatically check and update WordPress website core with all installed "
1549
  "plugins and themes to the latest versions."
1550
  msgstr ""
1551
 
1552
+ #: product_list.php:437
1553
  msgid ""
1554
  "Powerful user role management plugin for WordPress website. Create, edit, "
1555
  "copy, and delete user roles."
1556
  msgstr ""
1557
 
1558
+ #: product_list.php:447
1559
  msgid ""
1560
  "Display live count of online visitors who are currently browsing your "
1561
  "WordPress website."
1562
  msgstr ""
1563
 
1564
+ #: product_list.php:457
1565
  msgid ""
1566
  "Backup and export Zendesk Help Center content automatically to your "
1567
  "WordPress website database."
1568
  msgstr ""
1569
 
1570
+ #~ msgid "Congratulations! Pro Membership license is activated successfully."
1571
+ #~ msgstr ""
1572
+ #~ "Félicitations! La version PRO de cette extension a été activée avec "
1573
+ #~ "succès."
1574
+
1575
+ #~ msgid "Email with system info is sent to"
1576
+ #~ msgstr "Le courriel avec les informations système est envoyé à"
1577
+
1578
+ #~ msgid "Browse Free WordPress Themes"
1579
+ #~ msgstr "Parcourir les thèmes gratuits pour WordPress"
1580
+
1581
  #~ msgid ""
1582
  #~ "You can use one license of the Pro plugin for one domain only. Please "
1583
  #~ "check and edit your license or domain if necessary using you personal "
bws_menu/languages/bestwebsoft-id_ID.mo CHANGED
Binary file
bws_menu/languages/bestwebsoft-id_ID.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: 2017-08-28 09:55+0300\n"
6
- "PO-Revision-Date: 2017-08-28 09:55+0300\n"
7
  "Last-Translator: Jordan Silaen <jordan.silaen@chameleonjohn.com>\n"
8
  "Language-Team: chameleonjohn.com <jordan.silaen@chameleonjohn.com>\n"
9
  "Language: id\n"
@@ -41,6 +41,11 @@ msgstr "halaman plugin"
41
  msgid "Like the plugin?"
42
  msgstr "Seperti plugin?"
43
 
 
 
 
 
 
44
  #: bws_functions.php:94
45
  msgid "Rate it"
46
  msgstr "Menilai itu"
@@ -49,7 +54,7 @@ msgstr "Menilai itu"
49
  msgid "Need help?"
50
  msgstr "Butuh bantuan?"
51
 
52
- #: bws_functions.php:104 bws_functions.php:911 class-bws-settings.php:1056
53
  msgid "Visit Help Center"
54
  msgstr "Kunjungi Pusat Bantuan"
55
 
@@ -57,7 +62,7 @@ msgstr "Kunjungi Pusat Bantuan"
57
  msgid "Want to support the plugin?"
58
  msgstr "Ingin mendukung plugin?"
59
 
60
- #: bws_functions.php:108 bws_menu.php:553
61
  msgid "Donate"
62
  msgstr "Menyumbangkan"
63
 
@@ -73,7 +78,8 @@ msgid ""
73
  "otherwise the Pro plugin will be deactivated."
74
  msgstr ""
75
 
76
- #: bws_functions.php:128 bws_functions.php:340 class-bws-settings.php:144
 
77
  msgid "Learn More"
78
  msgstr "Belajarlah lagi"
79
 
@@ -93,7 +99,7 @@ msgstr ""
93
  "lisensi Anda telah berakhir. Untuk terus mendapatkan dukungan top-prioritas "
94
  "dan update Plugin, Anda harus memperpanjang."
95
 
96
- #: bws_functions.php:147 bws_functions.php:383 deprecated.php:584
97
  msgid "Learn more"
98
  msgstr "Belajarlah lagi"
99
 
@@ -123,68 +129,68 @@ msgstr ""
123
  msgid "Thank you for installing %s plugin!"
124
  msgstr ""
125
 
126
- #: bws_functions.php:209
127
  msgid "Let's get started"
128
  msgstr "Mari kita mulai"
129
 
130
- #: bws_functions.php:210 bws_functions.php:243 bws_menu.php:557
131
- #: bws_menu.php:559
132
  msgid "Settings"
133
  msgstr "pengaturan"
134
 
135
- #: bws_functions.php:212 bws_menu.php:328 class-bws-settings.php:745
136
- #: class-bws-settings.php:1058 class-bws-settings.php:1068 deprecated.php:694
137
  msgid "or"
138
  msgstr "atau"
139
 
140
- #: bws_functions.php:213 bws_functions.php:245
141
  msgid "Add New"
142
  msgstr "Tambah baru"
143
 
144
- #: bws_functions.php:217 bws_functions.php:227 bws_functions.php:331
145
- #: bws_functions.php:379 bws_functions.php:481
146
  msgid "Close notice"
147
  msgstr "Tutup pemberitahuan"
148
 
149
- #: bws_functions.php:232
150
  msgid "Thank you for installing plugins by BestWebSoft!"
151
  msgstr "Terima kasih untuk menginstal plugin dengan BestWebSoft!"
152
 
153
- #: bws_functions.php:234
154
  msgid "More Details"
155
  msgstr "Keterangan lebih lanjut"
156
 
157
- #: bws_functions.php:235
158
  msgid "Less Details"
159
  msgstr "Kurang Detail"
160
 
161
- #: bws_functions.php:263
162
  msgid "Deprecated function(-s) is used on the site here:"
163
  msgstr "Fungsi usang (-s) digunakan di situs di sini:"
164
 
165
- #: bws_functions.php:277
166
  msgid ""
167
  "This function(-s) will be removed over time. Please update the product(-s)."
168
  msgstr ""
169
  "Fungsi ini (-s) akan dihapus dari waktu ke waktu. Perbarui produk (-s)."
170
 
171
- #: bws_functions.php:336
172
  msgid "It’s time to upgrade your"
173
  msgstr "Saatnya untuk meng-upgrade Anda"
174
 
175
- #: bws_functions.php:336
176
  msgid "to"
177
  msgstr "untuk"
178
 
179
- #: bws_functions.php:336
180
  msgid "version!"
181
  msgstr "versi!"
182
 
183
- #: bws_functions.php:337
184
  msgid "Extend standard plugin functionality with new great options."
185
  msgstr "Memperluas fungsi Plugin standar dengan pilihan besar baru."
186
 
187
- #: bws_functions.php:383
188
  #, php-format
189
  msgid ""
190
  "Your license key for %s expires on %s and you won't be granted TOP-PRIORITY "
@@ -193,12 +199,12 @@ msgstr ""
193
  "Kunci lisensi untuk %s berakhir pada %s dan Anda tidak akan diberikan TOP-"
194
  "PRIORITAS DUKUNGAN atau PEMBARUAN."
195
 
196
- #: bws_functions.php:476
197
  #, php-format
198
  msgid "Thank you for choosing %s plugin!"
199
  msgstr ""
200
 
201
- #: bws_functions.php:477
202
  msgid ""
203
  "If you have a feature, suggestion or idea you'd like to see in the plugin, "
204
  "we'd love to hear about it!"
@@ -206,25 +212,25 @@ msgstr ""
206
  "Jika Anda memiliki fitur, saran atau ide yang ingin Anda lihat di plugin, "
207
  "kami akan senang mendengar tentang hal itu!"
208
 
209
- #: bws_functions.php:478
210
  msgid "Suggest a Feature"
211
  msgstr "Sarankan Fitur sebuah"
212
 
213
- #: bws_functions.php:494 class-bws-settings.php:538 class-bws-settings.php:541
214
- #: class-bws-settings.php:593 class-bws-settings.php:596
215
  msgid "Notice"
216
  msgstr "Melihat"
217
 
218
- #: bws_functions.php:494
219
  msgid "The plugin's settings have been changed."
220
  msgstr "pengaturan plugin ini telah berubah."
221
 
222
- #: bws_functions.php:495 class-bws-settings.php:183 class-bws-settings.php:203
223
- #: deprecated.php:640
224
  msgid "Save Changes"
225
  msgstr "Simpan perubahan"
226
 
227
- #: bws_functions.php:509
228
  msgid ""
229
  "You can always look at premium options by checking the \"Pro Options\" in "
230
  "the \"Misc\" tab."
@@ -232,77 +238,77 @@ msgstr ""
232
  "Anda selalu dapat melihat pilihan premium dengan memeriksa \\ \"Pro Options "
233
  "\" di \\ tab \"Misc \"."
234
 
235
- #: bws_functions.php:647
236
  msgid "Add BWS Shortcode"
237
  msgstr ""
238
 
239
- #: bws_functions.php:648
240
  msgid "Add BWS Plugins Shortcode"
241
  msgstr "Tambahkan BWS Plugin pendek"
242
 
243
- #: bws_functions.php:667
244
  msgid "Add shortcode"
245
  msgstr "Tambahkan shortcode"
246
 
247
- #: bws_functions.php:667
248
  msgid "Add BestWebSoft plugins' shortcodes using this button."
249
  msgstr "Tambahkan shortcode BestWebSoft plugin 'menggunakan tombol ini."
250
 
251
- #: bws_functions.php:723
252
  msgid "Close"
253
  msgstr "Dekat"
254
 
255
- #: bws_functions.php:815
256
  msgid "Are you sure you want to restore default settings?"
257
  msgstr "Apakah Anda yakin ingin mengembalikan pengaturan default?"
258
 
259
- #: bws_functions.php:818
260
  msgid "Yes, restore all settings"
261
  msgstr "Ya, mengembalikan semua pengaturan"
262
 
263
- #: bws_functions.php:819
264
  msgid "No, go back to the settings page"
265
  msgstr "Tidak, kembali ke halaman pengaturan"
266
 
267
- #: bws_functions.php:861
268
  msgid "Plugin"
269
  msgstr "Plugin"
270
 
271
- #: bws_functions.php:870
272
  msgid "Shortcode settings"
273
  msgstr "pengaturan shortcode"
274
 
275
- #: bws_functions.php:875
276
  msgid "The shortcode will be inserted"
277
  msgstr "shortcode akan dimasukkan"
278
 
279
- #: bws_functions.php:916
280
  msgid "FAQ"
281
  msgstr "FAQ"
282
 
283
- #: bws_functions.php:922
284
  msgid "For more information:"
285
  msgstr "Untuk informasi lebih lanjut:"
286
 
287
- #: bws_functions.php:923
288
  msgid "Documentation"
289
  msgstr "Dokumentasi"
290
 
291
- #: bws_functions.php:924
292
  msgid "Video Instructions"
293
  msgstr "Petunjuk Video"
294
 
295
- #: bws_functions.php:925
296
  msgid "Submit a Request"
297
  msgstr "Mengajukan permohonan"
298
 
299
- #: bws_menu.php:101 class-bws-settings.php:790 deprecated.php:322
300
  msgid "Wrong license key"
301
  msgstr "kunci lisensi yang salah"
302
 
303
- #: bws_menu.php:122 class-bws-settings.php:816 class-bws-settings.php:883
304
- #: class-bws-settings.php:919 deprecated.php:133 deprecated.php:199
305
- #: deprecated.php:352
306
  msgid ""
307
  "Something went wrong. Please try again later. If the error appears again, "
308
  "please contact us"
@@ -310,14 +316,14 @@ msgstr ""
310
  "Ada yang salah. Silakan coba lagi nanti. Jika kesalahan muncul lagi, "
311
  "silahkan hubungi kami"
312
 
313
- #: bws_menu.php:122 class-bws-settings.php:816 class-bws-settings.php:883
314
- #: class-bws-settings.php:919 deprecated.php:133 deprecated.php:199
315
- #: deprecated.php:352
316
  msgid "We are sorry for inconvenience."
317
  msgstr "Kami mohon maaf atas ketidaknyamanan."
318
 
319
- #: bws_menu.php:128 class-bws-settings.php:822 class-bws-settings.php:925
320
- #: deprecated.php:139 deprecated.php:358
321
  msgid "Wrong license key."
322
  msgstr "kunci lisensi yang salah."
323
 
@@ -333,11 +339,11 @@ msgstr ""
333
  msgid "Log in"
334
  msgstr "Masuk"
335
 
336
- #: bws_menu.php:132 bws_menu.php:334 deprecated.php:261
337
  msgid "Unfortunately, you have exceeded the number of available tries per day."
338
  msgstr "Sayangnya, Anda telah melebihi jumlah mencoba tersedia per hari."
339
 
340
- #: bws_menu.php:134 class-bws-settings.php:931 deprecated.php:364
341
  #, php-format
342
  msgid ""
343
  "Unfortunately, Your license has expired. To continue getting top-priority "
@@ -346,7 +352,7 @@ msgstr ""
346
  "Sayangnya, lisensi Anda telah kedaluwarsa. Untuk terus mendapatkan dukungan "
347
  "top-prioritas dan Plugin update, Anda harus memperpanjang di Anda %s"
348
 
349
- #: bws_menu.php:136 class-bws-settings.php:933 deprecated.php:366
350
  msgid ""
351
  "Unfortunately, the Pro licence was already installed to this domain. The Pro "
352
  "Trial license can be installed only once."
@@ -354,19 +360,19 @@ msgstr ""
354
  "Sayangnya, lisensi Pro sudah dipasang untuk domain ini. Lisensi Percobaan "
355
  "Pro dapat diinstal hanya sekali."
356
 
357
- #: bws_menu.php:142 class-bws-settings.php:837 deprecated.php:153
358
  msgid "The license key is valid."
359
  msgstr "Kunci lisensi berlaku."
360
 
361
- #: bws_menu.php:144 class-bws-settings.php:840 deprecated.php:156
362
  msgid "Your license will expire on"
363
  msgstr "lisensi Anda akan berakhir pada"
364
 
365
  #: bws_menu.php:146
366
- msgid "Congratulations! Pro Membership license is activated successfully."
367
- msgstr "Selamat! lisensi Keanggotaan Pro berhasil diaktifkan."
368
 
369
- #: bws_menu.php:153 class-bws-settings.php:1005 deprecated.php:435
370
  msgid ""
371
  "Something went wrong. Try again later or upload the plugin manually. We are "
372
  "sorry for inconvenience."
@@ -520,67 +526,68 @@ msgstr "Plugin tidak aktif"
520
  msgid "Please enter a valid email address."
521
  msgstr "Silakan isi alamat email."
522
 
523
- #: bws_menu.php:264
524
- msgid "Email with system info is sent to"
525
- msgstr "Email dengan info sistem dikirim ke"
 
526
 
527
- #: bws_menu.php:268
528
  msgid "Thank you for contacting us."
529
  msgstr "Terima kasih sudah menghubungi kami."
530
 
531
- #: bws_menu.php:291
532
  msgid "Sorry, email message could not be delivered."
533
  msgstr "Maaf, pesan email tidak dapat disampaikan."
534
 
535
- #: bws_menu.php:307 bws_menu.php:311 bws_menu.php:360 deprecated.php:91
536
  msgid "Plugins"
537
  msgstr "plugin"
538
 
539
- #: bws_menu.php:308 bws_menu.php:312 bws_menu.php:611 deprecated.php:92
540
  msgid "Themes"
541
  msgstr "tema"
542
 
543
- #: bws_menu.php:309 bws_menu.php:313 bws_menu.php:641
544
  msgid "System status"
545
  msgstr "Status sistem"
546
 
547
- #: bws_menu.php:317
548
  msgid "Support"
549
  msgstr "Mendukung"
550
 
551
- #: bws_menu.php:318
552
  msgid "Manage purchased licenses & subscriptions"
553
  msgstr "Mengelola membeli lisensi & langganan"
554
 
555
- #: bws_menu.php:326
556
  #, php-format
557
  msgid "Get Access to %s+ Premium Plugins"
558
  msgstr "Dapatkan Akses ke %s + Premium Plugin"
559
 
560
- #: bws_menu.php:328
561
  msgid "Subscribe to Pro Membership"
562
  msgstr "Berlangganan Pro Keanggotaan"
563
 
564
- #: bws_menu.php:336 bws_menu.php:347 class-bws-settings.php:758
565
  #: deprecated.php:227
566
  msgid "Check license key"
567
  msgstr "Periksa kunci lisensi"
568
 
569
- #: bws_menu.php:339
570
  msgid "Enter your license key"
571
  msgstr "Masukkan kunci lisensi Anda"
572
 
573
- #: bws_menu.php:345 bws_menu.php:563 bws_menu.php:572
574
- #: class-bws-settings.php:737 deprecated.php:259 deprecated.php:267
575
- #: deprecated.php:629 deprecated.php:700 deprecated.php:709
576
  msgid "Activate"
577
  msgstr "Mengaktifkan"
578
 
579
- #: bws_menu.php:361
580
  msgid "Upload Plugin"
581
  msgstr "Upload Plugin"
582
 
583
- #: bws_menu.php:365
584
  #, php-format
585
  msgid ""
586
  "The plugin generated %d characters of <strong>unexpected output</strong> "
@@ -593,7 +600,7 @@ msgstr ""
593
  "# 8221; pesan, masalah dengan feed sindikasi atau masalah lain, coba "
594
  "menonaktifkan atau menghapus plugin ini."
595
 
596
- #: bws_menu.php:367
597
  msgid ""
598
  "Plugin could not be activated because it triggered a <strong>fatal error</"
599
  "strong>."
@@ -601,38 +608,36 @@ msgstr ""
601
  "Plugin tidak dapat diaktifkan karena memicu <strong> kesalahan fatal </ "
602
  "strong>."
603
 
604
- #: bws_menu.php:370
605
  msgid "Plugin <strong>activated</strong>."
606
  msgstr "Plugin <strong> diaktifkan </ strong>."
607
 
608
- #: bws_menu.php:377
609
  msgid "Installing Plugin"
610
  msgstr "Instalasi Plugin"
611
 
612
- #: bws_menu.php:383
613
  msgid "Downloading install package from"
614
  msgstr "Men-download menginstal paket dari"
615
 
616
- #: bws_menu.php:400 bws_menu.php:431 bws_menu.php:442
617
- #: class-bws-settings.php:957 class-bws-settings.php:979
618
- #: class-bws-settings.php:1001 deprecated.php:387 deprecated.php:409
619
- #: deprecated.php:431
620
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
621
  msgstr "Gagal mengunduh arsip zip. Silakan, upload plugin secara manual"
622
 
623
- #: bws_menu.php:408
624
  msgid "Unpacking the package"
625
  msgstr "Membuka paket"
626
 
627
- #: bws_menu.php:413 bws_menu.php:421
628
  msgid "Installing the plugin"
629
  msgstr "Instalasi plugin"
630
 
631
- #: bws_menu.php:417 class-bws-settings.php:969 deprecated.php:399
632
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
633
  msgstr "Gagal membuka arsip zip. Silakan, upload plugin secara manual"
634
 
635
- #: bws_menu.php:424 class-bws-settings.php:975 deprecated.php:405
636
  msgid ""
637
  "Your server does not support either ZipArchive or Phar. Please, upload the "
638
  "plugin manually"
@@ -640,94 +645,94 @@ msgstr ""
640
  "server Anda tidak mendukung baik ZipArchive atau Phar. Silakan, upload "
641
  "plugin secara manual"
642
 
643
- #: bws_menu.php:427
644
  #, php-format
645
  msgid "The plugin %s is successfully installed."
646
  msgstr "Plugin %s berhasil diinstal."
647
 
648
- #: bws_menu.php:434 class-bws-settings.php:982 deprecated.php:412
649
  msgid "UploadDir is not writable. Please, upload the plugin manually"
650
  msgstr "UploadDir tidak dapat ditulis. Silakan, upload plugin secara manual"
651
 
652
- #: bws_menu.php:439
653
  msgid "Activate Plugin"
654
  msgstr "Aktifkan Plugin"
655
 
656
- #: bws_menu.php:439 bws_menu.php:445
657
  msgid "Return to BestWebSoft Panel"
658
  msgstr "Kembali ke BestWebSoft Panel"
659
 
660
- #: bws_menu.php:449 bws_menu.php:464 bws_menu.php:593
661
  msgid "All"
662
  msgstr "Semua"
663
 
664
- #: bws_menu.php:450 bws_menu.php:630
665
  msgid "Installed"
666
  msgstr "dipasang"
667
 
668
- #: bws_menu.php:451
669
  msgid "Not Installed"
670
  msgstr "Tidak terpasang"
671
 
672
- #: bws_menu.php:457
673
  msgid "Filter results"
674
  msgstr "Filter hasil"
675
 
676
- #: bws_menu.php:460 bws_menu.php:589
677
  msgid "Category"
678
  msgstr "Kategori"
679
 
680
- #: bws_menu.php:524
681
  msgid "Not installed"
682
  msgstr "Tidak terpasang"
683
 
684
- #: bws_menu.php:528
685
  msgid "Renew to get updates"
686
  msgstr "Renew untuk mendapatkan update"
687
 
688
- #: bws_menu.php:531
689
  #, php-format
690
  msgid "Update to v %s"
691
  msgstr "Update untuk v %s"
692
 
693
- #: bws_menu.php:543 bws_menu.php:566 bws_menu.php:575
694
  msgid "Install Now"
695
  msgstr "Pasang sekarang"
696
 
697
- #: bws_menu.php:549 class-bws-settings.php:157 class-bws-settings.php:1065
698
  msgid "Upgrade to Pro"
699
  msgstr "Upgrade ke yang lebih baik"
700
 
701
- #: bws_menu.php:563 bws_menu.php:572
702
  msgid "Activate this plugin"
703
  msgstr "Aktifkan plugin ini"
704
 
705
- #: bws_menu.php:575
706
  msgid "Install this plugin"
707
  msgstr "Menginstal plugin ini"
708
 
709
- #: bws_menu.php:584
710
  msgid "Nothing found. Try another criteria."
711
  msgstr "Tidak ada yang ditemukan. Coba kriteria lain."
712
 
713
- #: bws_menu.php:621
714
  #, php-format
715
  msgid "By %s"
716
  msgstr "Oleh %s"
717
 
718
- #: bws_menu.php:628
719
  msgid "Already Installed"
720
  msgstr "sudah Dipasang"
721
 
722
- #: bws_menu.php:638
723
- msgid "Browse Free WordPress Themes"
724
- msgstr "Isi Gratis WordPress Themes"
725
 
726
- #: bws_menu.php:647
727
  msgid "Send to support"
728
  msgstr "Kirim untuk mendukung"
729
 
730
- #: bws_menu.php:654
731
  msgid "Send to custom email &#187;"
732
  msgstr "Kirim ke email khusus & # 187;"
733
 
@@ -781,16 +786,16 @@ msgstr "Semua pengaturan Plugin dipulihkan."
781
  msgid "Custom Code"
782
  msgstr "Kode kustom"
783
 
784
- #: class-bws-settings.php:427 deprecated.php:497
785
  msgid "You do not have sufficient permissions to edit plugins for this site."
786
  msgstr ""
787
  "Anda tidak memiliki cukup izin untuk menyunting plugin untuk situs ini."
788
 
789
- #: class-bws-settings.php:432 deprecated.php:618
790
  msgid "These styles will be added to the header on all pages of your site."
791
  msgstr "Gaya ini akan ditambahkan ke header pada semua halaman situs Anda."
792
 
793
- #: class-bws-settings.php:435 deprecated.php:620
794
  #, php-format
795
  msgid ""
796
  "This PHP code will be hooked to the %s action and will be printed on front "
@@ -803,7 +808,7 @@ msgstr ""
803
  msgid "These code will be added to the header on all pages of your site."
804
  msgstr "Kode ini akan ditambahkan ke header pada semua halaman situs Anda."
805
 
806
- #: class-bws-settings.php:446 deprecated.php:644
807
  #, php-format
808
  msgid ""
809
  "You need to make this files writable before you can save your changes. See "
@@ -812,7 +817,7 @@ msgstr ""
812
  "Anda perlu membuat file ini ditulis sebelum Anda dapat menyimpan perubahan. "
813
  "Lihat %s Codex %s untuk informasi lebih lanjut."
814
 
815
- #: class-bws-settings.php:456 deprecated.php:626
816
  msgid "Browsing"
817
  msgstr "Browsing"
818
 
@@ -821,16 +826,16 @@ msgstr "Browsing"
821
  msgid "Activate custom %s code."
822
  msgstr "Aktifkan kustom %s kode."
823
 
824
- #: class-bws-settings.php:469 deprecated.php:633
825
  #, php-format
826
  msgid "Learn more about %s"
827
  msgstr "Pelajari lebih lanjut tentang %s"
828
 
829
- #: class-bws-settings.php:529
830
  msgid "Miscellaneous Settings"
831
  msgstr "Pengaturan Miscellaneous"
832
 
833
- #: class-bws-settings.php:538 class-bws-settings.php:593
834
  #, php-format
835
  msgid ""
836
  "It is prohibited to change %s settings on this site in the %s network "
@@ -838,74 +843,74 @@ msgid ""
838
  msgstr ""
839
  "Dilarang mengubah %s pengaturan di situs ini di %s pengaturan jaringan."
840
 
841
- #: class-bws-settings.php:541 class-bws-settings.php:596
842
  #, php-format
843
  msgid ""
844
  "It is prohibited to view %s settings on this site in the %s network settings."
845
  msgstr "Dilarang melihat %s pengaturan di situs ini di %s pengaturan jaringan."
846
 
847
- #: class-bws-settings.php:550
848
  msgid "Pro Options"
849
  msgstr "Pro Pilihan"
850
 
851
- #: class-bws-settings.php:554
852
  msgid "Enable to display plugin Pro options."
853
  msgstr "Memungkinkan untuk menampilkan opsi Pro Plugin."
854
 
855
- #: class-bws-settings.php:560
856
  msgid "Track Usage"
857
  msgstr "track Penggunaan"
858
 
859
- #: class-bws-settings.php:564
860
  msgid ""
861
  "Enable to allow tracking plugin usage anonymously in order to make it better."
862
  msgstr ""
863
  "Aktifkan untuk memungkinkan pelacakan penggunaan Plugin anonim untuk "
864
  "membuatnya lebih baik."
865
 
866
- #: class-bws-settings.php:569
867
  msgid "Default Settings"
868
  msgstr "Pengaturan default"
869
 
870
- #: class-bws-settings.php:571
871
  msgid "Restore Settings"
872
  msgstr "Kembalikan Pengaturan"
873
 
874
- #: class-bws-settings.php:572
875
  msgid "This will restore plugin settings to defaults."
876
  msgstr "Ini akan mengembalikan pengaturan plugin untuk default."
877
 
878
- #: class-bws-settings.php:584
879
  msgid "Import / Export"
880
  msgstr "Ekspor Impor"
881
 
882
- #: class-bws-settings.php:700 class-bws-settings.php:733
883
- #: class-bws-settings.php:755
884
  msgid "License Key"
885
  msgstr "Kunci lisensi"
886
 
887
- #: class-bws-settings.php:723
888
  msgid "Congratulations! Pro license is activated successfully."
889
  msgstr "Selamat! lisensi Pro berhasil diaktifkan."
890
 
891
- #: class-bws-settings.php:724
892
  #, php-format
893
  msgid "You will be automatically redirected to the %s in %s seconds."
894
  msgstr ""
895
 
896
- #: class-bws-settings.php:724
897
  msgid "Settings page"
898
  msgstr "halaman pengaturan"
899
 
900
- #: class-bws-settings.php:739
901
  #, php-format
902
  msgid "Enter your license key to activate %s and get premium plugin features."
903
  msgstr ""
904
  "Masukkan kunci lisensi Anda untuk mengaktifkan %s dan mendapatkan fitur "
905
  "Plugin premium."
906
 
907
- #: class-bws-settings.php:742 class-bws-settings.php:929 deprecated.php:362
908
- #: deprecated.php:703
909
  msgid ""
910
  "Unfortunately, you have exceeded the number of available tries per day. "
911
  "Please, upload the plugin manually."
@@ -913,12 +918,12 @@ msgstr ""
913
  "Sayangnya, Anda telah melebihi jumlah mencoba tersedia per hari. Silakan, "
914
  "upload plugin secara manual."
915
 
916
- #: class-bws-settings.php:745 deprecated.php:694
917
  #, php-format
918
  msgid "Start Your Free %s-Day Trial Now"
919
  msgstr "Mulai Anda gratis %s -Day Percobaan Sekarang"
920
 
921
- #: class-bws-settings.php:760
922
  msgid ""
923
  "If necessary, you can check if the license key is correct or reenter it in "
924
  "the field below."
@@ -926,15 +931,15 @@ msgstr ""
926
  "Jika perlu, Anda dapat memeriksa apakah kunci lisensi benar atau masuk "
927
  "kembali ke dalam bidang di bawah."
928
 
929
- #: class-bws-settings.php:765
930
  msgid "Manage License Settings"
931
  msgstr "Kelola Setelan License"
932
 
933
- #: class-bws-settings.php:767
934
  msgid "Login to Client Area"
935
  msgstr "Login ke Area Klien"
936
 
937
- #: class-bws-settings.php:769
938
  msgid ""
939
  "Manage active licenses, download BWS products, and view your payment history "
940
  "using BestWebSoft Client Area."
@@ -942,12 +947,12 @@ msgstr ""
942
  "Mengelola lisensi aktif, men-download produk BWS, dan melihat riwayat "
943
  "pembayaran Anda menggunakan BestWebSoft Client Area."
944
 
945
- #: class-bws-settings.php:824 class-bws-settings.php:927 deprecated.php:141
946
- #: deprecated.php:360
947
  msgid "This license key is bound to another site."
948
  msgstr "kunci lisensi ini terikat ke situs lain."
949
 
950
- #: class-bws-settings.php:826 deprecated.php:143
951
  msgid ""
952
  "This license key is valid, but Your license has expired. If you want to "
953
  "update our plugin in future, you should extend the license."
@@ -956,11 +961,11 @@ msgstr ""
956
  "ingin memperbarui plugin kami di masa depan, Anda harus memperpanjang "
957
  "lisensi."
958
 
959
- #: class-bws-settings.php:828 deprecated.php:145
960
  msgid "Unfortunately, you have exceeded the number of available tries."
961
  msgstr "Sayangnya, Anda telah melebihi jumlah mencoba tersedia."
962
 
963
- #: class-bws-settings.php:830 deprecated.php:147
964
  msgid ""
965
  "Unfortunately, the Pro Trial licence was already installed to this domain. "
966
  "The Pro Trial license can be installed only once."
@@ -968,130 +973,156 @@ msgstr ""
968
  "Sayangnya, lisensi Percobaan Pro sudah dipasang untuk domain ini. Lisensi "
969
  "Percobaan Pro dapat diinstal hanya sekali."
970
 
971
- #: class-bws-settings.php:835 deprecated.php:151
972
  msgid "The Pro Trial license key is valid."
973
  msgstr "Kunci lisensi Percobaan Pro berlaku."
974
 
975
- #: class-bws-settings.php:843 deprecated.php:159 deprecated.php:246
976
  #, php-format
977
  msgid ""
978
  "In order to continue using the plugin it is necessary to buy a %s license."
979
  msgstr ""
980
  "Dalam rangka untuk terus menggunakan plugin perlu untuk membeli %s lisensi."
981
 
982
- #: class-bws-settings.php:1040 deprecated.php:463
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
983
  msgid "Please, enter Your license key"
984
  msgstr "Silakan, masukkan kunci lisensi Anda"
985
 
986
- #: class-bws-settings.php:1052
987
  msgid "Need Help?"
988
  msgstr "Butuh bantuan?"
989
 
990
- #: class-bws-settings.php:1054
991
  msgid "Read the Instruction"
992
  msgstr "Baca Instruksi"
993
 
994
- #: class-bws-settings.php:1058
995
  msgid "Watch the Video"
996
  msgstr "Saksikan Video"
997
 
998
- #: class-bws-settings.php:1069
999
  msgid "Start Your Free Trial"
1000
  msgstr "Mulai Uji Coba Gratis"
1001
 
1002
- #: deactivation-form.php:26
1003
  msgid "Need help? We are ready to answer your questions."
1004
  msgstr ""
1005
 
1006
- #: deactivation-form.php:26
1007
  msgid "Contact Support"
1008
  msgstr ""
1009
 
1010
- #: deactivation-form.php:31
1011
  msgid "The plugin is not working"
1012
  msgstr ""
1013
 
1014
- #: deactivation-form.php:33
1015
  msgid "Kindly share what didn't work so we can fix it in future updates..."
1016
  msgstr ""
1017
 
1018
- #: deactivation-form.php:37
1019
  msgid "The plugin didn't work as expected"
1020
  msgstr ""
1021
 
1022
- #: deactivation-form.php:39
1023
  msgid "What did you expect?"
1024
  msgstr ""
1025
 
1026
- #: deactivation-form.php:43
1027
  msgid "The plugin suddenly stopped working"
1028
  msgstr ""
1029
 
1030
- #: deactivation-form.php:50
1031
  msgid "The plugin broke my site"
1032
  msgstr ""
1033
 
1034
- #: deactivation-form.php:57
1035
  msgid "I couldn't understand how to get it work"
1036
  msgstr ""
1037
 
1038
- #: deactivation-form.php:64
1039
  msgid "I found a better plugin"
1040
  msgstr ""
1041
 
1042
- #: deactivation-form.php:66
1043
  msgid "What's the plugin name?"
1044
  msgstr ""
1045
 
1046
- #: deactivation-form.php:70
1047
  msgid "The plugin is great, but I need specific feature that you don't support"
1048
  msgstr ""
1049
 
1050
- #: deactivation-form.php:72
1051
  msgid "What feature?"
1052
  msgstr ""
1053
 
1054
- #: deactivation-form.php:76
1055
  msgid "I no longer need the plugin"
1056
  msgstr ""
1057
 
1058
- #: deactivation-form.php:82
1059
  msgid "It's a temporary deactivation, I'm just debugging an issue"
1060
  msgstr ""
1061
 
1062
- #: deactivation-form.php:88
1063
  msgid "Other"
1064
  msgstr "Lain"
1065
 
1066
- #: deactivation-form.php:122
1067
  msgid "Quick Feedback"
1068
  msgstr ""
1069
 
1070
- #: deactivation-form.php:123
1071
  msgid "If you have a moment, please let us know why you are deactivating"
1072
  msgstr ""
1073
 
1074
- #: deactivation-form.php:128
1075
- msgid "Anonymous feedback"
1076
  msgstr ""
1077
 
1078
- #: deactivation-form.php:130
1079
  msgid "Cancel"
1080
  msgstr ""
1081
 
1082
- #: deactivation-form.php:230
1083
  msgid "Processing"
1084
  msgstr ""
1085
 
1086
- #: deactivation-form.php:259
1087
  msgid "Submit & Deactivate"
1088
  msgstr ""
1089
 
1090
- #: deactivation-form.php:276
1091
  msgid "Please tell us the reason so we can improve it."
1092
  msgstr ""
1093
 
1094
- #: deactivation-form.php:344
1095
  msgid "Deactivate"
1096
  msgstr ""
1097
 
@@ -1121,80 +1152,80 @@ msgstr ""
1121
  "(Nama pengguna adalah alamat email yang ditentukan selama pembelian). Jika "
1122
  "perlu, silahkan pilih \\ \"Kehilangan kata sandi Anda? \" Permintaan."
1123
 
1124
- #: deprecated.php:247
1125
  msgid "After that, you can activate it by entering your license key."
1126
  msgstr ""
1127
  "Setelah itu, Anda dapat mengaktifkannya dengan memasukkan kunci lisensi Anda."
1128
 
1129
- #: deprecated.php:249 deprecated.php:688
1130
  msgid "License key can be found in the"
1131
  msgstr "kunci lisensi dapat ditemukan di"
1132
 
1133
- #: deprecated.php:251 deprecated.php:690
1134
  msgid "(your username is the email address specified during the purchase)."
1135
  msgstr "(Nama pengguna adalah alamat email yang ditentukan selama pembelian)."
1136
 
1137
- #: deprecated.php:278
1138
  msgid ""
1139
  "Congratulations! The Pro license of the plugin is activated successfully."
1140
  msgstr "Selamat! Lisensi Pro plugin tersebut berhasil diaktifkan."
1141
 
1142
- #: deprecated.php:280 deprecated.php:669
1143
  msgid "Please, go to"
1144
  msgstr "Tolong, pergi ke"
1145
 
1146
- #: deprecated.php:280 deprecated.php:669
1147
  msgid "the setting page"
1148
  msgstr "halaman pengaturan"
1149
 
1150
- #: deprecated.php:281 deprecated.php:670
1151
  msgid "You will be redirected automatically in 5 seconds."
1152
  msgstr "Anda akan diarahkan secara otomatis dalam 5 detik."
1153
 
1154
- #: deprecated.php:315
1155
  msgid "Check premium options on the plugin settings page!"
1156
  msgstr "Periksa pilihan premium di halaman pengaturan plugin!"
1157
 
1158
- #: deprecated.php:478
1159
  msgid "Restore all plugin settings to defaults"
1160
  msgstr "Mengembalikan semua pengaturan plugin untuk default"
1161
 
1162
- #: deprecated.php:480
1163
  msgid "Restore settings"
1164
  msgstr "mengembalikan pengaturan"
1165
 
1166
- #: deprecated.php:548 deprecated.php:575
1167
  #, php-format
1168
  msgid "File %s edited successfully."
1169
  msgstr "File %s berhasil diedit."
1170
 
1171
- #: deprecated.php:550 deprecated.php:577
1172
  msgid "Not enough permissions to create or update the file"
1173
  msgstr "Tidak cukup izin untuk membuat atau memperbarui file"
1174
 
1175
- #: deprecated.php:580
1176
  msgid "Not enough permissions to create the file"
1177
  msgstr "Tidak cukup izin untuk membuat file"
1178
 
1179
- #: deprecated.php:624
1180
  msgid "Editing"
1181
  msgstr "editing"
1182
 
1183
- #: deprecated.php:667
1184
  msgid ""
1185
  "Congratulations! Pro version of the plugin is installed and activated "
1186
  "successfully."
1187
  msgstr "Selamat! Versi Pro plugin diinstal dan diaktifkan berhasil."
1188
 
1189
- #: deprecated.php:677
1190
  msgid "Show Pro features"
1191
  msgstr "Tampilkan fitur Pro"
1192
 
1193
- #: deprecated.php:684
1194
  msgid "Enter your license key to install and activate"
1195
  msgstr "Masukkan kunci lisensi Anda untuk menginstal dan mengaktifkan"
1196
 
1197
- #: deprecated.php:686
1198
  msgid "version of the plugin."
1199
  msgstr "versi plugin."
1200
 
@@ -1234,280 +1265,288 @@ msgstr ""
1234
  msgid "SMM"
1235
  msgstr ""
1236
 
1237
- #: product_list.php:23
1238
- msgid ""
1239
- "Protect WordPress website forms from spam entries by means of math logic."
1240
  msgstr ""
1241
 
1242
- #: product_list.php:35
1243
  msgid "Create your personal car rental/booking and reservation website."
1244
  msgstr ""
1245
 
1246
- #: product_list.php:45
1247
  msgid ""
1248
  "Allow customers to reach you using secure contact form plugin any website "
1249
  "must have."
1250
  msgstr ""
1251
 
1252
- #: product_list.php:55
1253
  msgid "Add unlimited number of contact forms to WordPress website."
1254
  msgstr ""
1255
 
1256
- #: product_list.php:65
1257
  msgid "Save and manage Contact Form messages. Never lose important data."
1258
  msgstr ""
1259
 
1260
- #: product_list.php:75
1261
  msgid "Add unlimited custom pages to WordPress admin dashboard."
1262
  msgstr ""
1263
 
1264
- #: product_list.php:82
1265
  msgid "Add custom fields to WordPress website search results."
1266
  msgstr ""
1267
 
1268
- #: product_list.php:89
1269
  msgid ""
1270
  "Add custom post types and taxonomies to WordPress website search results."
1271
  msgstr ""
1272
 
1273
- #: product_list.php:99
1274
  msgid "Add PayPal and 2CO donate buttons to receive charity payments."
1275
  msgstr ""
1276
 
1277
- #: product_list.php:106
1278
  msgid ""
1279
  "Get latest error log messages to diagnose website problems. Define and fix "
1280
  "issues faster."
1281
  msgstr ""
1282
 
1283
- #: product_list.php:113
1284
  msgid ""
1285
  "Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and "
1286
  "widgets."
1287
  msgstr ""
1288
 
1289
- #: product_list.php:123
1290
  msgid ""
1291
  "Add beautiful galleries, albums & images to your WordPress website in a few "
1292
  "clicks."
1293
  msgstr ""
1294
 
1295
- #: product_list.php:133
1296
  msgid ""
1297
  "Add Google +1, Share, Follow, Hangout buttons and profile badge to WordPress "
1298
  "posts, pages and widgets."
1299
  msgstr ""
1300
 
1301
- #: product_list.php:143
1302
  msgid ""
1303
  "Stronger security solution which protects your WordPress website from hacks "
1304
  "and unauthorized login attempts."
1305
  msgstr ""
1306
 
1307
- #: product_list.php:153
1308
  msgid ""
1309
  "Add Adsense ads to WordPress website pages, posts, custom posts, search "
1310
  "results, categories, tags, and widgets."
1311
  msgstr ""
1312
 
1313
- #: product_list.php:163
1314
  msgid "Add Google Analytics code to WordPress website and track basic stats."
1315
  msgstr ""
1316
 
1317
- #: product_list.php:173
1318
  msgid ""
1319
  "Protect WordPress website forms from spam entries with Google Captcha "
1320
  "(reCaptcha)."
1321
  msgstr ""
1322
 
1323
- #: product_list.php:183
1324
  msgid "Add customized Google maps to WordPress posts, pages and widgets."
1325
  msgstr ""
1326
 
1327
- #: product_list.php:193
1328
  msgid ""
1329
  "Generate and add XML sitemap to WordPress website. Help search engines index "
1330
  "your blog."
1331
  msgstr ""
1332
 
1333
- #: product_list.php:203
1334
  msgid ""
1335
  "Replace external WordPress website links with Google shortlinks and track "
1336
  "click stats."
1337
  msgstr ""
1338
 
1339
- #: product_list.php:210
1340
  msgid ""
1341
  "Protect WordPress website – allow and deny access for certain IP addresses, "
1342
  "hostnames, etc."
1343
  msgstr ""
1344
 
1345
- #: product_list.php:220
1346
  msgid ""
1347
  "Create your personal job board and listing WordPress website. Search jobs, "
1348
  "submit CV/resumes, choose candidates."
1349
  msgstr ""
1350
 
1351
- #: product_list.php:227
1352
  msgid ""
1353
  "Protect WordPress website against brute force attacks. Limit rate of login "
1354
  "attempts."
1355
  msgstr ""
1356
 
1357
- #: product_list.php:237
1358
  msgid ""
1359
  "Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. "
1360
  "5 plugins included – profile, insider, etc."
1361
  msgstr ""
1362
 
1363
- #: product_list.php:247
1364
  msgid ""
1365
  "Translate WordPress website content to other languages manually. Create "
1366
  "multilingual pages, posts, widgets, menus, etc."
1367
  msgstr ""
1368
 
1369
- #: product_list.php:257
1370
  msgid ""
1371
  "Add customizable pagination to WordPress website. Split long content to "
1372
  "multiple pages for better navigation."
1373
  msgstr ""
1374
 
1375
- #: product_list.php:267
1376
  msgid ""
1377
  "Generate PDF files and print WordPress posts/pages. Customize document "
1378
  "header/footer styles and appearance."
1379
  msgstr ""
1380
 
1381
- #: product_list.php:277
1382
  msgid ""
1383
  "Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, "
1384
  "Profile) to WordPress posts, pages and widgets."
1385
  msgstr ""
1386
 
1387
- #: product_list.php:287
1388
  msgid ""
1389
  "Create your personal portfolio WordPress website. Manage and showcase past "
1390
  "projects to get more clients."
1391
  msgstr ""
1392
 
1393
- #: product_list.php:297
1394
  msgid "Export WordPress posts to CSV file format easily. Configure data order."
1395
  msgstr ""
1396
 
1397
- #: product_list.php:304
1398
  msgid ""
1399
  "Add extra fields to default WordPress user profile. The easiest way to "
1400
  "create and manage additional custom values."
1401
  msgstr ""
1402
 
1403
- #: product_list.php:311
1404
  msgid ""
1405
  "Add and display HTML advertisement banner on WordPress website. Customize "
1406
  "bar styles and appearance."
1407
  msgstr ""
1408
 
1409
- #: product_list.php:321
1410
  msgid ""
1411
  "Add customizable quotes and tips blocks to WordPress posts, pages and "
1412
  "widgets."
1413
  msgstr ""
1414
 
1415
- #: product_list.php:328
1416
  msgid ""
1417
  "Add rating plugin to your WordPress website to receive feedback from your "
1418
  "customers."
1419
  msgstr ""
1420
 
1421
- #: product_list.php:335
1422
  msgid ""
1423
  "Create your personal real estate WordPress website. Sell, rent and buy "
1424
  "properties. Add, search and browse listings easily."
1425
  msgstr ""
1426
 
1427
- #: product_list.php:345
1428
  msgid ""
1429
  "Add related, featured, latest, and popular posts to your WordPress website. "
1430
  "Connect your blog readers with a relevant content."
1431
  msgstr ""
1432
 
1433
- #: product_list.php:352
1434
  msgid ""
1435
  "Send bulk email messages to WordPress users. Custom templates, advanced "
1436
  "settings and detailed reports."
1437
  msgstr ""
1438
 
1439
- #: product_list.php:362
1440
  msgid ""
1441
  "The best responsive slider plugin for your WordPress website. Create "
1442
  "beautifully animated slides just in a few clicks."
1443
  msgstr ""
1444
 
1445
- #: product_list.php:369
1446
  msgid ""
1447
  "Configure SMTP server to receive email messages from WordPress to Gmail, "
1448
  "Yahoo, Hotmail and other services."
1449
  msgstr ""
1450
 
1451
- #: product_list.php:376
1452
  msgid ""
1453
  "Add social media buttons and widgets to WordPress posts, pages and widgets. "
1454
  "FB, Twitter, G+1, Pinterest, LinkedIn."
1455
  msgstr ""
1456
 
1457
- #: product_list.php:386
1458
  msgid ""
1459
  "Add social media login, registration, and commenting to your WordPress "
1460
  "website."
1461
  msgstr ""
1462
 
1463
- #: product_list.php:393
1464
  msgid ""
1465
  "Add email newsletter sign up form to WordPress posts, pages and widgets. "
1466
  "Collect data and subscribe your users."
1467
  msgstr ""
1468
 
1469
- #: product_list.php:403
1470
  msgid ""
1471
  "Add testimonials and feedbacks from your customers to WordPress website "
1472
  "posts, pages, and widgets."
1473
  msgstr ""
1474
 
1475
- #: product_list.php:410
1476
  msgid ""
1477
  "Best timesheet plugin for WordPress. Track employee time, streamline "
1478
  "attendance and generate reports."
1479
  msgstr ""
1480
 
1481
- #: product_list.php:420
1482
  msgid ""
1483
  "Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts "
1484
  "and pages."
1485
  msgstr ""
1486
 
1487
- #: product_list.php:430
1488
  msgid ""
1489
  "Automatically check and update WordPress website core with all installed "
1490
  "plugins and themes to the latest versions."
1491
  msgstr ""
1492
 
1493
- #: product_list.php:440
1494
  msgid ""
1495
  "Powerful user role management plugin for WordPress website. Create, edit, "
1496
  "copy, and delete user roles."
1497
  msgstr ""
1498
 
1499
- #: product_list.php:450
1500
  msgid ""
1501
  "Display live count of online visitors who are currently browsing your "
1502
  "WordPress website."
1503
  msgstr ""
1504
 
1505
- #: product_list.php:460
1506
  msgid ""
1507
  "Backup and export Zendesk Help Center content automatically to your "
1508
  "WordPress website database."
1509
  msgstr ""
1510
 
 
 
 
 
 
 
 
 
 
1511
  #~ msgid ""
1512
  #~ "You can use one license of the Pro plugin for one domain only. Please "
1513
  #~ "check and edit your license or domain if necessary using you personal "
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-09-11 16:42+0300\n"
6
+ "PO-Revision-Date: 2017-09-11 16:42+0300\n"
7
  "Last-Translator: Jordan Silaen <jordan.silaen@chameleonjohn.com>\n"
8
  "Language-Team: chameleonjohn.com <jordan.silaen@chameleonjohn.com>\n"
9
  "Language: id\n"
41
  msgid "Like the plugin?"
42
  msgstr "Seperti plugin?"
43
 
44
+ #: bws_functions.php:93
45
+ #, php-format
46
+ msgid "%s reviews"
47
+ msgstr ""
48
+
49
  #: bws_functions.php:94
50
  msgid "Rate it"
51
  msgstr "Menilai itu"
54
  msgid "Need help?"
55
  msgstr "Butuh bantuan?"
56
 
57
+ #: bws_functions.php:104 bws_functions.php:917 class-bws-settings.php:1058
58
  msgid "Visit Help Center"
59
  msgstr "Kunjungi Pusat Bantuan"
60
 
62
  msgid "Want to support the plugin?"
63
  msgstr "Ingin mendukung plugin?"
64
 
65
+ #: bws_functions.php:108 bws_menu.php:560
66
  msgid "Donate"
67
  msgstr "Menyumbangkan"
68
 
78
  "otherwise the Pro plugin will be deactivated."
79
  msgstr ""
80
 
81
+ #: bws_functions.php:128 bws_functions.php:341 bws_menu.php:631
82
+ #: class-bws-settings.php:144
83
  msgid "Learn More"
84
  msgstr "Belajarlah lagi"
85
 
99
  "lisensi Anda telah berakhir. Untuk terus mendapatkan dukungan top-prioritas "
100
  "dan update Plugin, Anda harus memperpanjang."
101
 
102
+ #: bws_functions.php:147 bws_functions.php:389 deprecated.php:586
103
  msgid "Learn more"
104
  msgstr "Belajarlah lagi"
105
 
129
  msgid "Thank you for installing %s plugin!"
130
  msgstr ""
131
 
132
+ #: bws_functions.php:210
133
  msgid "Let's get started"
134
  msgstr "Mari kita mulai"
135
 
136
+ #: bws_functions.php:211 bws_functions.php:244 bws_menu.php:564
137
+ #: bws_menu.php:566
138
  msgid "Settings"
139
  msgstr "pengaturan"
140
 
141
+ #: bws_functions.php:213 bws_menu.php:326 class-bws-settings.php:747
142
+ #: class-bws-settings.php:1060 class-bws-settings.php:1070 deprecated.php:697
143
  msgid "or"
144
  msgstr "atau"
145
 
146
+ #: bws_functions.php:214 bws_functions.php:246
147
  msgid "Add New"
148
  msgstr "Tambah baru"
149
 
150
+ #: bws_functions.php:218 bws_functions.php:228 bws_functions.php:332
151
+ #: bws_functions.php:385 bws_functions.php:487
152
  msgid "Close notice"
153
  msgstr "Tutup pemberitahuan"
154
 
155
+ #: bws_functions.php:233
156
  msgid "Thank you for installing plugins by BestWebSoft!"
157
  msgstr "Terima kasih untuk menginstal plugin dengan BestWebSoft!"
158
 
159
+ #: bws_functions.php:235
160
  msgid "More Details"
161
  msgstr "Keterangan lebih lanjut"
162
 
163
+ #: bws_functions.php:236
164
  msgid "Less Details"
165
  msgstr "Kurang Detail"
166
 
167
+ #: bws_functions.php:264
168
  msgid "Deprecated function(-s) is used on the site here:"
169
  msgstr "Fungsi usang (-s) digunakan di situs di sini:"
170
 
171
+ #: bws_functions.php:278
172
  msgid ""
173
  "This function(-s) will be removed over time. Please update the product(-s)."
174
  msgstr ""
175
  "Fungsi ini (-s) akan dihapus dari waktu ke waktu. Perbarui produk (-s)."
176
 
177
+ #: bws_functions.php:337
178
  msgid "It’s time to upgrade your"
179
  msgstr "Saatnya untuk meng-upgrade Anda"
180
 
181
+ #: bws_functions.php:337
182
  msgid "to"
183
  msgstr "untuk"
184
 
185
+ #: bws_functions.php:337
186
  msgid "version!"
187
  msgstr "versi!"
188
 
189
+ #: bws_functions.php:338
190
  msgid "Extend standard plugin functionality with new great options."
191
  msgstr "Memperluas fungsi Plugin standar dengan pilihan besar baru."
192
 
193
+ #: bws_functions.php:389
194
  #, php-format
195
  msgid ""
196
  "Your license key for %s expires on %s and you won't be granted TOP-PRIORITY "
199
  "Kunci lisensi untuk %s berakhir pada %s dan Anda tidak akan diberikan TOP-"
200
  "PRIORITAS DUKUNGAN atau PEMBARUAN."
201
 
202
+ #: bws_functions.php:482
203
  #, php-format
204
  msgid "Thank you for choosing %s plugin!"
205
  msgstr ""
206
 
207
+ #: bws_functions.php:483
208
  msgid ""
209
  "If you have a feature, suggestion or idea you'd like to see in the plugin, "
210
  "we'd love to hear about it!"
212
  "Jika Anda memiliki fitur, saran atau ide yang ingin Anda lihat di plugin, "
213
  "kami akan senang mendengar tentang hal itu!"
214
 
215
+ #: bws_functions.php:484
216
  msgid "Suggest a Feature"
217
  msgstr "Sarankan Fitur sebuah"
218
 
219
+ #: bws_functions.php:500 class-bws-settings.php:540 class-bws-settings.php:543
220
+ #: class-bws-settings.php:595 class-bws-settings.php:598
221
  msgid "Notice"
222
  msgstr "Melihat"
223
 
224
+ #: bws_functions.php:500
225
  msgid "The plugin's settings have been changed."
226
  msgstr "pengaturan plugin ini telah berubah."
227
 
228
+ #: bws_functions.php:501 class-bws-settings.php:183 class-bws-settings.php:203
229
+ #: deprecated.php:642
230
  msgid "Save Changes"
231
  msgstr "Simpan perubahan"
232
 
233
+ #: bws_functions.php:515
234
  msgid ""
235
  "You can always look at premium options by checking the \"Pro Options\" in "
236
  "the \"Misc\" tab."
238
  "Anda selalu dapat melihat pilihan premium dengan memeriksa \\ \"Pro Options "
239
  "\" di \\ tab \"Misc \"."
240
 
241
+ #: bws_functions.php:653
242
  msgid "Add BWS Shortcode"
243
  msgstr ""
244
 
245
+ #: bws_functions.php:654
246
  msgid "Add BWS Plugins Shortcode"
247
  msgstr "Tambahkan BWS Plugin pendek"
248
 
249
+ #: bws_functions.php:673
250
  msgid "Add shortcode"
251
  msgstr "Tambahkan shortcode"
252
 
253
+ #: bws_functions.php:673
254
  msgid "Add BestWebSoft plugins' shortcodes using this button."
255
  msgstr "Tambahkan shortcode BestWebSoft plugin 'menggunakan tombol ini."
256
 
257
+ #: bws_functions.php:729
258
  msgid "Close"
259
  msgstr "Dekat"
260
 
261
+ #: bws_functions.php:821
262
  msgid "Are you sure you want to restore default settings?"
263
  msgstr "Apakah Anda yakin ingin mengembalikan pengaturan default?"
264
 
265
+ #: bws_functions.php:824
266
  msgid "Yes, restore all settings"
267
  msgstr "Ya, mengembalikan semua pengaturan"
268
 
269
+ #: bws_functions.php:825
270
  msgid "No, go back to the settings page"
271
  msgstr "Tidak, kembali ke halaman pengaturan"
272
 
273
+ #: bws_functions.php:867
274
  msgid "Plugin"
275
  msgstr "Plugin"
276
 
277
+ #: bws_functions.php:876
278
  msgid "Shortcode settings"
279
  msgstr "pengaturan shortcode"
280
 
281
+ #: bws_functions.php:881
282
  msgid "The shortcode will be inserted"
283
  msgstr "shortcode akan dimasukkan"
284
 
285
+ #: bws_functions.php:922
286
  msgid "FAQ"
287
  msgstr "FAQ"
288
 
289
+ #: bws_functions.php:928
290
  msgid "For more information:"
291
  msgstr "Untuk informasi lebih lanjut:"
292
 
293
+ #: bws_functions.php:929
294
  msgid "Documentation"
295
  msgstr "Dokumentasi"
296
 
297
+ #: bws_functions.php:930
298
  msgid "Video Instructions"
299
  msgstr "Petunjuk Video"
300
 
301
+ #: bws_functions.php:931
302
  msgid "Submit a Request"
303
  msgstr "Mengajukan permohonan"
304
 
305
+ #: bws_menu.php:101 class-bws-settings.php:792 deprecated.php:323
306
  msgid "Wrong license key"
307
  msgstr "kunci lisensi yang salah"
308
 
309
+ #: bws_menu.php:122 class-bws-settings.php:818 class-bws-settings.php:885
310
+ #: class-bws-settings.php:921 deprecated.php:133 deprecated.php:199
311
+ #: deprecated.php:353
312
  msgid ""
313
  "Something went wrong. Please try again later. If the error appears again, "
314
  "please contact us"
316
  "Ada yang salah. Silakan coba lagi nanti. Jika kesalahan muncul lagi, "
317
  "silahkan hubungi kami"
318
 
319
+ #: bws_menu.php:122 class-bws-settings.php:818 class-bws-settings.php:885
320
+ #: class-bws-settings.php:921 deprecated.php:133 deprecated.php:199
321
+ #: deprecated.php:353
322
  msgid "We are sorry for inconvenience."
323
  msgstr "Kami mohon maaf atas ketidaknyamanan."
324
 
325
+ #: bws_menu.php:128 class-bws-settings.php:824 class-bws-settings.php:927
326
+ #: deprecated.php:139 deprecated.php:359
327
  msgid "Wrong license key."
328
  msgstr "kunci lisensi yang salah."
329
 
339
  msgid "Log in"
340
  msgstr "Masuk"
341
 
342
+ #: bws_menu.php:132 bws_menu.php:332 deprecated.php:261
343
  msgid "Unfortunately, you have exceeded the number of available tries per day."
344
  msgstr "Sayangnya, Anda telah melebihi jumlah mencoba tersedia per hari."
345
 
346
+ #: bws_menu.php:134 deprecated.php:365
347
  #, php-format
348
  msgid ""
349
  "Unfortunately, Your license has expired. To continue getting top-priority "
352
  "Sayangnya, lisensi Anda telah kedaluwarsa. Untuk terus mendapatkan dukungan "
353
  "top-prioritas dan Plugin update, Anda harus memperpanjang di Anda %s"
354
 
355
+ #: bws_menu.php:136 class-bws-settings.php:935 deprecated.php:367
356
  msgid ""
357
  "Unfortunately, the Pro licence was already installed to this domain. The Pro "
358
  "Trial license can be installed only once."
360
  "Sayangnya, lisensi Pro sudah dipasang untuk domain ini. Lisensi Percobaan "
361
  "Pro dapat diinstal hanya sekali."
362
 
363
+ #: bws_menu.php:142 class-bws-settings.php:839 deprecated.php:153
364
  msgid "The license key is valid."
365
  msgstr "Kunci lisensi berlaku."
366
 
367
+ #: bws_menu.php:144 class-bws-settings.php:842 deprecated.php:156
368
  msgid "Your license will expire on"
369
  msgstr "lisensi Anda akan berakhir pada"
370
 
371
  #: bws_menu.php:146
372
+ msgid "Congratulations! Pro Membership license is activated successfully."
373
+ msgstr ""
374
 
375
+ #: bws_menu.php:153 class-bws-settings.php:1007 deprecated.php:436
376
  msgid ""
377
  "Something went wrong. Try again later or upload the plugin manually. We are "
378
  "sorry for inconvenience."
526
  msgid "Please enter a valid email address."
527
  msgstr "Silakan isi alamat email."
528
 
529
+ #: bws_menu.php:262
530
+ #, php-format
531
+ msgid "Email with system info is sent to %s."
532
+ msgstr ""
533
 
534
+ #: bws_menu.php:266
535
  msgid "Thank you for contacting us."
536
  msgstr "Terima kasih sudah menghubungi kami."
537
 
538
+ #: bws_menu.php:289
539
  msgid "Sorry, email message could not be delivered."
540
  msgstr "Maaf, pesan email tidak dapat disampaikan."
541
 
542
+ #: bws_menu.php:305 bws_menu.php:309 bws_menu.php:358 deprecated.php:91
543
  msgid "Plugins"
544
  msgstr "plugin"
545
 
546
+ #: bws_menu.php:306 bws_menu.php:310 bws_menu.php:618 deprecated.php:92
547
  msgid "Themes"
548
  msgstr "tema"
549
 
550
+ #: bws_menu.php:307 bws_menu.php:311 bws_menu.php:648
551
  msgid "System status"
552
  msgstr "Status sistem"
553
 
554
+ #: bws_menu.php:315
555
  msgid "Support"
556
  msgstr "Mendukung"
557
 
558
+ #: bws_menu.php:316
559
  msgid "Manage purchased licenses & subscriptions"
560
  msgstr "Mengelola membeli lisensi & langganan"
561
 
562
+ #: bws_menu.php:324
563
  #, php-format
564
  msgid "Get Access to %s+ Premium Plugins"
565
  msgstr "Dapatkan Akses ke %s + Premium Plugin"
566
 
567
+ #: bws_menu.php:326
568
  msgid "Subscribe to Pro Membership"
569
  msgstr "Berlangganan Pro Keanggotaan"
570
 
571
+ #: bws_menu.php:334 bws_menu.php:345 class-bws-settings.php:760
572
  #: deprecated.php:227
573
  msgid "Check license key"
574
  msgstr "Periksa kunci lisensi"
575
 
576
+ #: bws_menu.php:337
577
  msgid "Enter your license key"
578
  msgstr "Masukkan kunci lisensi Anda"
579
 
580
+ #: bws_menu.php:343 bws_menu.php:570 bws_menu.php:579
581
+ #: class-bws-settings.php:739 deprecated.php:259 deprecated.php:267
582
+ #: deprecated.php:631 deprecated.php:703 deprecated.php:712
583
  msgid "Activate"
584
  msgstr "Mengaktifkan"
585
 
586
+ #: bws_menu.php:359
587
  msgid "Upload Plugin"
588
  msgstr "Upload Plugin"
589
 
590
+ #: bws_menu.php:363
591
  #, php-format
592
  msgid ""
593
  "The plugin generated %d characters of <strong>unexpected output</strong> "
600
  "# 8221; pesan, masalah dengan feed sindikasi atau masalah lain, coba "
601
  "menonaktifkan atau menghapus plugin ini."
602
 
603
+ #: bws_menu.php:365
604
  msgid ""
605
  "Plugin could not be activated because it triggered a <strong>fatal error</"
606
  "strong>."
608
  "Plugin tidak dapat diaktifkan karena memicu <strong> kesalahan fatal </ "
609
  "strong>."
610
 
611
+ #: bws_menu.php:368
612
  msgid "Plugin <strong>activated</strong>."
613
  msgstr "Plugin <strong> diaktifkan </ strong>."
614
 
615
+ #: bws_menu.php:375
616
  msgid "Installing Plugin"
617
  msgstr "Instalasi Plugin"
618
 
619
+ #: bws_menu.php:381
620
  msgid "Downloading install package from"
621
  msgstr "Men-download menginstal paket dari"
622
 
623
+ #: bws_menu.php:398 bws_menu.php:429 bws_menu.php:440 deprecated.php:388
624
+ #: deprecated.php:410 deprecated.php:432
 
 
625
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
626
  msgstr "Gagal mengunduh arsip zip. Silakan, upload plugin secara manual"
627
 
628
+ #: bws_menu.php:406
629
  msgid "Unpacking the package"
630
  msgstr "Membuka paket"
631
 
632
+ #: bws_menu.php:411 bws_menu.php:419
633
  msgid "Installing the plugin"
634
  msgstr "Instalasi plugin"
635
 
636
+ #: bws_menu.php:415 deprecated.php:400
637
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
638
  msgstr "Gagal membuka arsip zip. Silakan, upload plugin secara manual"
639
 
640
+ #: bws_menu.php:422 deprecated.php:406
641
  msgid ""
642
  "Your server does not support either ZipArchive or Phar. Please, upload the "
643
  "plugin manually"
645
  "server Anda tidak mendukung baik ZipArchive atau Phar. Silakan, upload "
646
  "plugin secara manual"
647
 
648
+ #: bws_menu.php:425
649
  #, php-format
650
  msgid "The plugin %s is successfully installed."
651
  msgstr "Plugin %s berhasil diinstal."
652
 
653
+ #: bws_menu.php:432 deprecated.php:413
654
  msgid "UploadDir is not writable. Please, upload the plugin manually"
655
  msgstr "UploadDir tidak dapat ditulis. Silakan, upload plugin secara manual"
656
 
657
+ #: bws_menu.php:437
658
  msgid "Activate Plugin"
659
  msgstr "Aktifkan Plugin"
660
 
661
+ #: bws_menu.php:437 bws_menu.php:443
662
  msgid "Return to BestWebSoft Panel"
663
  msgstr "Kembali ke BestWebSoft Panel"
664
 
665
+ #: bws_menu.php:451 bws_menu.php:471 bws_menu.php:600
666
  msgid "All"
667
  msgstr "Semua"
668
 
669
+ #: bws_menu.php:454 bws_menu.php:637
670
  msgid "Installed"
671
  msgstr "dipasang"
672
 
673
+ #: bws_menu.php:457
674
  msgid "Not Installed"
675
  msgstr "Tidak terpasang"
676
 
677
+ #: bws_menu.php:464
678
  msgid "Filter results"
679
  msgstr "Filter hasil"
680
 
681
+ #: bws_menu.php:467 bws_menu.php:596
682
  msgid "Category"
683
  msgstr "Kategori"
684
 
685
+ #: bws_menu.php:531
686
  msgid "Not installed"
687
  msgstr "Tidak terpasang"
688
 
689
+ #: bws_menu.php:535
690
  msgid "Renew to get updates"
691
  msgstr "Renew untuk mendapatkan update"
692
 
693
+ #: bws_menu.php:538
694
  #, php-format
695
  msgid "Update to v %s"
696
  msgstr "Update untuk v %s"
697
 
698
+ #: bws_menu.php:550 bws_menu.php:573 bws_menu.php:582
699
  msgid "Install Now"
700
  msgstr "Pasang sekarang"
701
 
702
+ #: bws_menu.php:556 class-bws-settings.php:157 class-bws-settings.php:1067
703
  msgid "Upgrade to Pro"
704
  msgstr "Upgrade ke yang lebih baik"
705
 
706
+ #: bws_menu.php:570 bws_menu.php:579
707
  msgid "Activate this plugin"
708
  msgstr "Aktifkan plugin ini"
709
 
710
+ #: bws_menu.php:582
711
  msgid "Install this plugin"
712
  msgstr "Menginstal plugin ini"
713
 
714
+ #: bws_menu.php:591
715
  msgid "Nothing found. Try another criteria."
716
  msgstr "Tidak ada yang ditemukan. Coba kriteria lain."
717
 
718
+ #: bws_menu.php:628
719
  #, php-format
720
  msgid "By %s"
721
  msgstr "Oleh %s"
722
 
723
+ #: bws_menu.php:635
724
  msgid "Already Installed"
725
  msgstr "sudah Dipasang"
726
 
727
+ #: bws_menu.php:645
728
+ msgid "Browse More WordPress Themes"
729
+ msgstr ""
730
 
731
+ #: bws_menu.php:654
732
  msgid "Send to support"
733
  msgstr "Kirim untuk mendukung"
734
 
735
+ #: bws_menu.php:661
736
  msgid "Send to custom email &#187;"
737
  msgstr "Kirim ke email khusus & # 187;"
738
 
786
  msgid "Custom Code"
787
  msgstr "Kode kustom"
788
 
789
+ #: class-bws-settings.php:427 deprecated.php:498
790
  msgid "You do not have sufficient permissions to edit plugins for this site."
791
  msgstr ""
792
  "Anda tidak memiliki cukup izin untuk menyunting plugin untuk situs ini."
793
 
794
+ #: class-bws-settings.php:432 deprecated.php:620
795
  msgid "These styles will be added to the header on all pages of your site."
796
  msgstr "Gaya ini akan ditambahkan ke header pada semua halaman situs Anda."
797
 
798
+ #: class-bws-settings.php:435 deprecated.php:622
799
  #, php-format
800
  msgid ""
801
  "This PHP code will be hooked to the %s action and will be printed on front "
808
  msgid "These code will be added to the header on all pages of your site."
809
  msgstr "Kode ini akan ditambahkan ke header pada semua halaman situs Anda."
810
 
811
+ #: class-bws-settings.php:446 deprecated.php:646
812
  #, php-format
813
  msgid ""
814
  "You need to make this files writable before you can save your changes. See "
817
  "Anda perlu membuat file ini ditulis sebelum Anda dapat menyimpan perubahan. "
818
  "Lihat %s Codex %s untuk informasi lebih lanjut."
819
 
820
+ #: class-bws-settings.php:456 deprecated.php:628
821
  msgid "Browsing"
822
  msgstr "Browsing"
823
 
826
  msgid "Activate custom %s code."
827
  msgstr "Aktifkan kustom %s kode."
828
 
829
+ #: class-bws-settings.php:469 deprecated.php:635
830
  #, php-format
831
  msgid "Learn more about %s"
832
  msgstr "Pelajari lebih lanjut tentang %s"
833
 
834
+ #: class-bws-settings.php:531
835
  msgid "Miscellaneous Settings"
836
  msgstr "Pengaturan Miscellaneous"
837
 
838
+ #: class-bws-settings.php:540 class-bws-settings.php:595
839
  #, php-format
840
  msgid ""
841
  "It is prohibited to change %s settings on this site in the %s network "
843
  msgstr ""
844
  "Dilarang mengubah %s pengaturan di situs ini di %s pengaturan jaringan."
845
 
846
+ #: class-bws-settings.php:543 class-bws-settings.php:598
847
  #, php-format
848
  msgid ""
849
  "It is prohibited to view %s settings on this site in the %s network settings."
850
  msgstr "Dilarang melihat %s pengaturan di situs ini di %s pengaturan jaringan."
851
 
852
+ #: class-bws-settings.php:552
853
  msgid "Pro Options"
854
  msgstr "Pro Pilihan"
855
 
856
+ #: class-bws-settings.php:556
857
  msgid "Enable to display plugin Pro options."
858
  msgstr "Memungkinkan untuk menampilkan opsi Pro Plugin."
859
 
860
+ #: class-bws-settings.php:562
861
  msgid "Track Usage"
862
  msgstr "track Penggunaan"
863
 
864
+ #: class-bws-settings.php:566
865
  msgid ""
866
  "Enable to allow tracking plugin usage anonymously in order to make it better."
867
  msgstr ""
868
  "Aktifkan untuk memungkinkan pelacakan penggunaan Plugin anonim untuk "
869
  "membuatnya lebih baik."
870
 
871
+ #: class-bws-settings.php:571
872
  msgid "Default Settings"
873
  msgstr "Pengaturan default"
874
 
875
+ #: class-bws-settings.php:573
876
  msgid "Restore Settings"
877
  msgstr "Kembalikan Pengaturan"
878
 
879
+ #: class-bws-settings.php:574
880
  msgid "This will restore plugin settings to defaults."
881
  msgstr "Ini akan mengembalikan pengaturan plugin untuk default."
882
 
883
+ #: class-bws-settings.php:586
884
  msgid "Import / Export"
885
  msgstr "Ekspor Impor"
886
 
887
+ #: class-bws-settings.php:702 class-bws-settings.php:735
888
+ #: class-bws-settings.php:757
889
  msgid "License Key"
890
  msgstr "Kunci lisensi"
891
 
892
+ #: class-bws-settings.php:725
893
  msgid "Congratulations! Pro license is activated successfully."
894
  msgstr "Selamat! lisensi Pro berhasil diaktifkan."
895
 
896
+ #: class-bws-settings.php:726
897
  #, php-format
898
  msgid "You will be automatically redirected to the %s in %s seconds."
899
  msgstr ""
900
 
901
+ #: class-bws-settings.php:726
902
  msgid "Settings page"
903
  msgstr "halaman pengaturan"
904
 
905
+ #: class-bws-settings.php:741
906
  #, php-format
907
  msgid "Enter your license key to activate %s and get premium plugin features."
908
  msgstr ""
909
  "Masukkan kunci lisensi Anda untuk mengaktifkan %s dan mendapatkan fitur "
910
  "Plugin premium."
911
 
912
+ #: class-bws-settings.php:744 class-bws-settings.php:931 deprecated.php:363
913
+ #: deprecated.php:706
914
  msgid ""
915
  "Unfortunately, you have exceeded the number of available tries per day. "
916
  "Please, upload the plugin manually."
918
  "Sayangnya, Anda telah melebihi jumlah mencoba tersedia per hari. Silakan, "
919
  "upload plugin secara manual."
920
 
921
+ #: class-bws-settings.php:747 deprecated.php:697
922
  #, php-format
923
  msgid "Start Your Free %s-Day Trial Now"
924
  msgstr "Mulai Anda gratis %s -Day Percobaan Sekarang"
925
 
926
+ #: class-bws-settings.php:762
927
  msgid ""
928
  "If necessary, you can check if the license key is correct or reenter it in "
929
  "the field below."
931
  "Jika perlu, Anda dapat memeriksa apakah kunci lisensi benar atau masuk "
932
  "kembali ke dalam bidang di bawah."
933
 
934
+ #: class-bws-settings.php:767
935
  msgid "Manage License Settings"
936
  msgstr "Kelola Setelan License"
937
 
938
+ #: class-bws-settings.php:769
939
  msgid "Login to Client Area"
940
  msgstr "Login ke Area Klien"
941
 
942
+ #: class-bws-settings.php:771
943
  msgid ""
944
  "Manage active licenses, download BWS products, and view your payment history "
945
  "using BestWebSoft Client Area."
947
  "Mengelola lisensi aktif, men-download produk BWS, dan melihat riwayat "
948
  "pembayaran Anda menggunakan BestWebSoft Client Area."
949
 
950
+ #: class-bws-settings.php:826 class-bws-settings.php:929 deprecated.php:141
951
+ #: deprecated.php:361
952
  msgid "This license key is bound to another site."
953
  msgstr "kunci lisensi ini terikat ke situs lain."
954
 
955
+ #: class-bws-settings.php:828 deprecated.php:143
956
  msgid ""
957
  "This license key is valid, but Your license has expired. If you want to "
958
  "update our plugin in future, you should extend the license."
961
  "ingin memperbarui plugin kami di masa depan, Anda harus memperpanjang "
962
  "lisensi."
963
 
964
+ #: class-bws-settings.php:830 deprecated.php:145
965
  msgid "Unfortunately, you have exceeded the number of available tries."
966
  msgstr "Sayangnya, Anda telah melebihi jumlah mencoba tersedia."
967
 
968
+ #: class-bws-settings.php:832 deprecated.php:147
969
  msgid ""
970
  "Unfortunately, the Pro Trial licence was already installed to this domain. "
971
  "The Pro Trial license can be installed only once."
973
  "Sayangnya, lisensi Percobaan Pro sudah dipasang untuk domain ini. Lisensi "
974
  "Percobaan Pro dapat diinstal hanya sekali."
975
 
976
+ #: class-bws-settings.php:837 deprecated.php:151
977
  msgid "The Pro Trial license key is valid."
978
  msgstr "Kunci lisensi Percobaan Pro berlaku."
979
 
980
+ #: class-bws-settings.php:845 deprecated.php:159 deprecated.php:246
981
  #, php-format
982
  msgid ""
983
  "In order to continue using the plugin it is necessary to buy a %s license."
984
  msgstr ""
985
  "Dalam rangka untuk terus menggunakan plugin perlu untuk membeli %s lisensi."
986
 
987
+ #: class-bws-settings.php:933
988
+ #, php-format
989
+ msgid ""
990
+ "Unfortunately, Your license has expired. To continue getting top-priority "
991
+ "support and plugin updates, you should extend it in your %s."
992
+ msgstr ""
993
+
994
+ #: class-bws-settings.php:959 class-bws-settings.php:981
995
+ #: class-bws-settings.php:1003
996
+ msgid "Failed to download the zip archive. Please, upload the plugin manually."
997
+ msgstr ""
998
+
999
+ #: class-bws-settings.php:971
1000
+ msgid "Failed to open the zip archive. Please, upload the plugin manually."
1001
+ msgstr ""
1002
+
1003
+ #: class-bws-settings.php:977
1004
+ msgid ""
1005
+ "Your server does not support either ZipArchive or Phar. Please, upload the "
1006
+ "plugin manually."
1007
+ msgstr ""
1008
+
1009
+ #: class-bws-settings.php:984
1010
+ msgid "UploadDir is not writable. Please, upload the plugin manually."
1011
+ msgstr ""
1012
+
1013
+ #: class-bws-settings.php:1042 deprecated.php:464
1014
  msgid "Please, enter Your license key"
1015
  msgstr "Silakan, masukkan kunci lisensi Anda"
1016
 
1017
+ #: class-bws-settings.php:1054
1018
  msgid "Need Help?"
1019
  msgstr "Butuh bantuan?"
1020
 
1021
+ #: class-bws-settings.php:1056
1022
  msgid "Read the Instruction"
1023
  msgstr "Baca Instruksi"
1024
 
1025
+ #: class-bws-settings.php:1060
1026
  msgid "Watch the Video"
1027
  msgstr "Saksikan Video"
1028
 
1029
+ #: class-bws-settings.php:1071
1030
  msgid "Start Your Free Trial"
1031
  msgstr "Mulai Uji Coba Gratis"
1032
 
1033
+ #: deactivation-form.php:27
1034
  msgid "Need help? We are ready to answer your questions."
1035
  msgstr ""
1036
 
1037
+ #: deactivation-form.php:27
1038
  msgid "Contact Support"
1039
  msgstr ""
1040
 
1041
+ #: deactivation-form.php:32
1042
  msgid "The plugin is not working"
1043
  msgstr ""
1044
 
1045
+ #: deactivation-form.php:34
1046
  msgid "Kindly share what didn't work so we can fix it in future updates..."
1047
  msgstr ""
1048
 
1049
+ #: deactivation-form.php:38
1050
  msgid "The plugin didn't work as expected"
1051
  msgstr ""
1052
 
1053
+ #: deactivation-form.php:40
1054
  msgid "What did you expect?"
1055
  msgstr ""
1056
 
1057
+ #: deactivation-form.php:44
1058
  msgid "The plugin suddenly stopped working"
1059
  msgstr ""
1060
 
1061
+ #: deactivation-form.php:51
1062
  msgid "The plugin broke my site"
1063
  msgstr ""
1064
 
1065
+ #: deactivation-form.php:58
1066
  msgid "I couldn't understand how to get it work"
1067
  msgstr ""
1068
 
1069
+ #: deactivation-form.php:65
1070
  msgid "I found a better plugin"
1071
  msgstr ""
1072
 
1073
+ #: deactivation-form.php:67
1074
  msgid "What's the plugin name?"
1075
  msgstr ""
1076
 
1077
+ #: deactivation-form.php:71
1078
  msgid "The plugin is great, but I need specific feature that you don't support"
1079
  msgstr ""
1080
 
1081
+ #: deactivation-form.php:73
1082
  msgid "What feature?"
1083
  msgstr ""
1084
 
1085
+ #: deactivation-form.php:77
1086
  msgid "I no longer need the plugin"
1087
  msgstr ""
1088
 
1089
+ #: deactivation-form.php:83
1090
  msgid "It's a temporary deactivation, I'm just debugging an issue"
1091
  msgstr ""
1092
 
1093
+ #: deactivation-form.php:89
1094
  msgid "Other"
1095
  msgstr "Lain"
1096
 
1097
+ #: deactivation-form.php:123
1098
  msgid "Quick Feedback"
1099
  msgstr ""
1100
 
1101
+ #: deactivation-form.php:124
1102
  msgid "If you have a moment, please let us know why you are deactivating"
1103
  msgstr ""
1104
 
1105
+ #: deactivation-form.php:127
1106
+ msgid "Send website data and allow to contact me back"
1107
  msgstr ""
1108
 
1109
+ #: deactivation-form.php:132
1110
  msgid "Cancel"
1111
  msgstr ""
1112
 
1113
+ #: deactivation-form.php:233
1114
  msgid "Processing"
1115
  msgstr ""
1116
 
1117
+ #: deactivation-form.php:262
1118
  msgid "Submit & Deactivate"
1119
  msgstr ""
1120
 
1121
+ #: deactivation-form.php:277
1122
  msgid "Please tell us the reason so we can improve it."
1123
  msgstr ""
1124
 
1125
+ #: deactivation-form.php:345
1126
  msgid "Deactivate"
1127
  msgstr ""
1128
 
1152
  "(Nama pengguna adalah alamat email yang ditentukan selama pembelian). Jika "
1153
  "perlu, silahkan pilih \\ \"Kehilangan kata sandi Anda? \" Permintaan."
1154
 
1155
+ #: deprecated.php:246
1156
  msgid "After that, you can activate it by entering your license key."
1157
  msgstr ""
1158
  "Setelah itu, Anda dapat mengaktifkannya dengan memasukkan kunci lisensi Anda."
1159
 
1160
+ #: deprecated.php:249 deprecated.php:691
1161
  msgid "License key can be found in the"
1162
  msgstr "kunci lisensi dapat ditemukan di"
1163
 
1164
+ #: deprecated.php:251 deprecated.php:693
1165
  msgid "(your username is the email address specified during the purchase)."
1166
  msgstr "(Nama pengguna adalah alamat email yang ditentukan selama pembelian)."
1167
 
1168
+ #: deprecated.php:279
1169
  msgid ""
1170
  "Congratulations! The Pro license of the plugin is activated successfully."
1171
  msgstr "Selamat! Lisensi Pro plugin tersebut berhasil diaktifkan."
1172
 
1173
+ #: deprecated.php:281 deprecated.php:672
1174
  msgid "Please, go to"
1175
  msgstr "Tolong, pergi ke"
1176
 
1177
+ #: deprecated.php:281 deprecated.php:672
1178
  msgid "the setting page"
1179
  msgstr "halaman pengaturan"
1180
 
1181
+ #: deprecated.php:282 deprecated.php:673
1182
  msgid "You will be redirected automatically in 5 seconds."
1183
  msgstr "Anda akan diarahkan secara otomatis dalam 5 detik."
1184
 
1185
+ #: deprecated.php:316
1186
  msgid "Check premium options on the plugin settings page!"
1187
  msgstr "Periksa pilihan premium di halaman pengaturan plugin!"
1188
 
1189
+ #: deprecated.php:479
1190
  msgid "Restore all plugin settings to defaults"
1191
  msgstr "Mengembalikan semua pengaturan plugin untuk default"
1192
 
1193
+ #: deprecated.php:481
1194
  msgid "Restore settings"
1195
  msgstr "mengembalikan pengaturan"
1196
 
1197
+ #: deprecated.php:550 deprecated.php:577
1198
  #, php-format
1199
  msgid "File %s edited successfully."
1200
  msgstr "File %s berhasil diedit."
1201
 
1202
+ #: deprecated.php:552 deprecated.php:579
1203
  msgid "Not enough permissions to create or update the file"
1204
  msgstr "Tidak cukup izin untuk membuat atau memperbarui file"
1205
 
1206
+ #: deprecated.php:582
1207
  msgid "Not enough permissions to create the file"
1208
  msgstr "Tidak cukup izin untuk membuat file"
1209
 
1210
+ #: deprecated.php:626
1211
  msgid "Editing"
1212
  msgstr "editing"
1213
 
1214
+ #: deprecated.php:670
1215
  msgid ""
1216
  "Congratulations! Pro version of the plugin is installed and activated "
1217
  "successfully."
1218
  msgstr "Selamat! Versi Pro plugin diinstal dan diaktifkan berhasil."
1219
 
1220
+ #: deprecated.php:680
1221
  msgid "Show Pro features"
1222
  msgstr "Tampilkan fitur Pro"
1223
 
1224
+ #: deprecated.php:687
1225
  msgid "Enter your license key to install and activate"
1226
  msgstr "Masukkan kunci lisensi Anda untuk menginstal dan mengaktifkan"
1227
 
1228
+ #: deprecated.php:689
1229
  msgid "version of the plugin."
1230
  msgstr "versi plugin."
1231
 
1265
  msgid "SMM"
1266
  msgstr ""
1267
 
1268
+ #: product_list.php:22
1269
+ msgid "Best secure captcha plugin to protect your WordPress forms."
 
1270
  msgstr ""
1271
 
1272
+ #: product_list.php:32
1273
  msgid "Create your personal car rental/booking and reservation website."
1274
  msgstr ""
1275
 
1276
+ #: product_list.php:42
1277
  msgid ""
1278
  "Allow customers to reach you using secure contact form plugin any website "
1279
  "must have."
1280
  msgstr ""
1281
 
1282
+ #: product_list.php:52
1283
  msgid "Add unlimited number of contact forms to WordPress website."
1284
  msgstr ""
1285
 
1286
+ #: product_list.php:62
1287
  msgid "Save and manage Contact Form messages. Never lose important data."
1288
  msgstr ""
1289
 
1290
+ #: product_list.php:72
1291
  msgid "Add unlimited custom pages to WordPress admin dashboard."
1292
  msgstr ""
1293
 
1294
+ #: product_list.php:79
1295
  msgid "Add custom fields to WordPress website search results."
1296
  msgstr ""
1297
 
1298
+ #: product_list.php:86
1299
  msgid ""
1300
  "Add custom post types and taxonomies to WordPress website search results."
1301
  msgstr ""
1302
 
1303
+ #: product_list.php:96
1304
  msgid "Add PayPal and 2CO donate buttons to receive charity payments."
1305
  msgstr ""
1306
 
1307
+ #: product_list.php:103
1308
  msgid ""
1309
  "Get latest error log messages to diagnose website problems. Define and fix "
1310
  "issues faster."
1311
  msgstr ""
1312
 
1313
+ #: product_list.php:110
1314
  msgid ""
1315
  "Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and "
1316
  "widgets."
1317
  msgstr ""
1318
 
1319
+ #: product_list.php:120
1320
  msgid ""
1321
  "Add beautiful galleries, albums & images to your WordPress website in a few "
1322
  "clicks."
1323
  msgstr ""
1324
 
1325
+ #: product_list.php:130
1326
  msgid ""
1327
  "Add Google +1, Share, Follow, Hangout buttons and profile badge to WordPress "
1328
  "posts, pages and widgets."
1329
  msgstr ""
1330
 
1331
+ #: product_list.php:140
1332
  msgid ""
1333
  "Stronger security solution which protects your WordPress website from hacks "
1334
  "and unauthorized login attempts."
1335
  msgstr ""
1336
 
1337
+ #: product_list.php:150
1338
  msgid ""
1339
  "Add Adsense ads to WordPress website pages, posts, custom posts, search "
1340
  "results, categories, tags, and widgets."
1341
  msgstr ""
1342
 
1343
+ #: product_list.php:160
1344
  msgid "Add Google Analytics code to WordPress website and track basic stats."
1345
  msgstr ""
1346
 
1347
+ #: product_list.php:170
1348
  msgid ""
1349
  "Protect WordPress website forms from spam entries with Google Captcha "
1350
  "(reCaptcha)."
1351
  msgstr ""
1352
 
1353
+ #: product_list.php:180
1354
  msgid "Add customized Google maps to WordPress posts, pages and widgets."
1355
  msgstr ""
1356
 
1357
+ #: product_list.php:190
1358
  msgid ""
1359
  "Generate and add XML sitemap to WordPress website. Help search engines index "
1360
  "your blog."
1361
  msgstr ""
1362
 
1363
+ #: product_list.php:200
1364
  msgid ""
1365
  "Replace external WordPress website links with Google shortlinks and track "
1366
  "click stats."
1367
  msgstr ""
1368
 
1369
+ #: product_list.php:207
1370
  msgid ""
1371
  "Protect WordPress website – allow and deny access for certain IP addresses, "
1372
  "hostnames, etc."
1373
  msgstr ""
1374
 
1375
+ #: product_list.php:217
1376
  msgid ""
1377
  "Create your personal job board and listing WordPress website. Search jobs, "
1378
  "submit CV/resumes, choose candidates."
1379
  msgstr ""
1380
 
1381
+ #: product_list.php:224
1382
  msgid ""
1383
  "Protect WordPress website against brute force attacks. Limit rate of login "
1384
  "attempts."
1385
  msgstr ""
1386
 
1387
+ #: product_list.php:234
1388
  msgid ""
1389
  "Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. "
1390
  "5 plugins included – profile, insider, etc."
1391
  msgstr ""
1392
 
1393
+ #: product_list.php:244
1394
  msgid ""
1395
  "Translate WordPress website content to other languages manually. Create "
1396
  "multilingual pages, posts, widgets, menus, etc."
1397
  msgstr ""
1398
 
1399
+ #: product_list.php:254
1400
  msgid ""
1401
  "Add customizable pagination to WordPress website. Split long content to "
1402
  "multiple pages for better navigation."
1403
  msgstr ""
1404
 
1405
+ #: product_list.php:264
1406
  msgid ""
1407
  "Generate PDF files and print WordPress posts/pages. Customize document "
1408
  "header/footer styles and appearance."
1409
  msgstr ""
1410
 
1411
+ #: product_list.php:274
1412
  msgid ""
1413
  "Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, "
1414
  "Profile) to WordPress posts, pages and widgets."
1415
  msgstr ""
1416
 
1417
+ #: product_list.php:284
1418
  msgid ""
1419
  "Create your personal portfolio WordPress website. Manage and showcase past "
1420
  "projects to get more clients."
1421
  msgstr ""
1422
 
1423
+ #: product_list.php:294
1424
  msgid "Export WordPress posts to CSV file format easily. Configure data order."
1425
  msgstr ""
1426
 
1427
+ #: product_list.php:301
1428
  msgid ""
1429
  "Add extra fields to default WordPress user profile. The easiest way to "
1430
  "create and manage additional custom values."
1431
  msgstr ""
1432
 
1433
+ #: product_list.php:308
1434
  msgid ""
1435
  "Add and display HTML advertisement banner on WordPress website. Customize "
1436
  "bar styles and appearance."
1437
  msgstr ""
1438
 
1439
+ #: product_list.php:318
1440
  msgid ""
1441
  "Add customizable quotes and tips blocks to WordPress posts, pages and "
1442
  "widgets."
1443
  msgstr ""
1444
 
1445
+ #: product_list.php:325
1446
  msgid ""
1447
  "Add rating plugin to your WordPress website to receive feedback from your "
1448
  "customers."
1449
  msgstr ""
1450
 
1451
+ #: product_list.php:332
1452
  msgid ""
1453
  "Create your personal real estate WordPress website. Sell, rent and buy "
1454
  "properties. Add, search and browse listings easily."
1455
  msgstr ""
1456
 
1457
+ #: product_list.php:342
1458
  msgid ""
1459
  "Add related, featured, latest, and popular posts to your WordPress website. "
1460
  "Connect your blog readers with a relevant content."
1461
  msgstr ""
1462
 
1463
+ #: product_list.php:349
1464
  msgid ""
1465
  "Send bulk email messages to WordPress users. Custom templates, advanced "
1466
  "settings and detailed reports."
1467
  msgstr ""
1468
 
1469
+ #: product_list.php:359
1470
  msgid ""
1471
  "The best responsive slider plugin for your WordPress website. Create "
1472
  "beautifully animated slides just in a few clicks."
1473
  msgstr ""
1474
 
1475
+ #: product_list.php:366
1476
  msgid ""
1477
  "Configure SMTP server to receive email messages from WordPress to Gmail, "
1478
  "Yahoo, Hotmail and other services."
1479
  msgstr ""
1480
 
1481
+ #: product_list.php:373
1482
  msgid ""
1483
  "Add social media buttons and widgets to WordPress posts, pages and widgets. "
1484
  "FB, Twitter, G+1, Pinterest, LinkedIn."
1485
  msgstr ""
1486
 
1487
+ #: product_list.php:383
1488
  msgid ""
1489
  "Add social media login, registration, and commenting to your WordPress "
1490
  "website."
1491
  msgstr ""
1492
 
1493
+ #: product_list.php:390
1494
  msgid ""
1495
  "Add email newsletter sign up form to WordPress posts, pages and widgets. "
1496
  "Collect data and subscribe your users."
1497
  msgstr ""
1498
 
1499
+ #: product_list.php:400
1500
  msgid ""
1501
  "Add testimonials and feedbacks from your customers to WordPress website "
1502
  "posts, pages, and widgets."
1503
  msgstr ""
1504
 
1505
+ #: product_list.php:407
1506
  msgid ""
1507
  "Best timesheet plugin for WordPress. Track employee time, streamline "
1508
  "attendance and generate reports."
1509
  msgstr ""
1510
 
1511
+ #: product_list.php:417
1512
  msgid ""
1513
  "Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts "
1514
  "and pages."
1515
  msgstr ""
1516
 
1517
+ #: product_list.php:427
1518
  msgid ""
1519
  "Automatically check and update WordPress website core with all installed "
1520
  "plugins and themes to the latest versions."
1521
  msgstr ""
1522
 
1523
+ #: product_list.php:437
1524
  msgid ""
1525
  "Powerful user role management plugin for WordPress website. Create, edit, "
1526
  "copy, and delete user roles."
1527
  msgstr ""
1528
 
1529
+ #: product_list.php:447
1530
  msgid ""
1531
  "Display live count of online visitors who are currently browsing your "
1532
  "WordPress website."
1533
  msgstr ""
1534
 
1535
+ #: product_list.php:457
1536
  msgid ""
1537
  "Backup and export Zendesk Help Center content automatically to your "
1538
  "WordPress website database."
1539
  msgstr ""
1540
 
1541
+ #~ msgid "Congratulations! Pro Membership license is activated successfully."
1542
+ #~ msgstr "Selamat! lisensi Keanggotaan Pro berhasil diaktifkan."
1543
+
1544
+ #~ msgid "Email with system info is sent to"
1545
+ #~ msgstr "Email dengan info sistem dikirim ke"
1546
+
1547
+ #~ msgid "Browse Free WordPress Themes"
1548
+ #~ msgstr "Isi Gratis WordPress Themes"
1549
+
1550
  #~ msgid ""
1551
  #~ "You can use one license of the Pro plugin for one domain only. Please "
1552
  #~ "check and edit your license or domain if necessary using you personal "
bws_menu/languages/bestwebsoft-nl_NL.mo CHANGED
Binary file
bws_menu/languages/bestwebsoft-nl_NL.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: 2017-08-28 09:55+0300\n"
6
- "PO-Revision-Date: 2017-08-28 09:55+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <https://support.bestwebsoft.com>\n"
9
  "Language: nl_NL\n"
@@ -40,6 +40,11 @@ msgstr "Plugins pagina"
40
  msgid "Like the plugin?"
41
  msgstr "Like de plugin?"
42
 
 
 
 
 
 
43
  #: bws_functions.php:94
44
  msgid "Rate it"
45
  msgstr "Rate it"
@@ -48,7 +53,7 @@ msgstr "Rate it"
48
  msgid "Need help?"
49
  msgstr "Hulp nodig?"
50
 
51
- #: bws_functions.php:104 bws_functions.php:911 class-bws-settings.php:1056
52
  msgid "Visit Help Center"
53
  msgstr "Bezoek het Helpcentrum"
54
 
@@ -56,7 +61,7 @@ msgstr "Bezoek het Helpcentrum"
56
  msgid "Want to support the plugin?"
57
  msgstr "Geef ondersteuning aan de plug-in?"
58
 
59
- #: bws_functions.php:108 bws_menu.php:553
60
  msgid "Donate"
61
  msgstr "Doneer"
62
 
@@ -72,7 +77,8 @@ msgid ""
72
  "otherwise the Pro plugin will be deactivated."
73
  msgstr ""
74
 
75
- #: bws_functions.php:128 bws_functions.php:340 class-bws-settings.php:144
 
76
  msgid "Learn More"
77
  msgstr "Leer meer"
78
 
@@ -92,7 +98,7 @@ msgstr ""
92
  "Uw licentie is verlopen. Om voort te gaan met ondersteuning voor top-"
93
  "prioriteit en plugin-updates, moet u het uitbreiden."
94
 
95
- #: bws_functions.php:147 bws_functions.php:383 deprecated.php:584
96
  msgid "Learn more"
97
  msgstr "Leer meer"
98
 
@@ -122,70 +128,70 @@ msgstr ""
122
  msgid "Thank you for installing %s plugin!"
123
  msgstr "Dank u voor het installeren van %s plugin!"
124
 
125
- #: bws_functions.php:209
126
  msgid "Let's get started"
127
  msgstr "Laten we aan de slag gaan"
128
 
129
- #: bws_functions.php:210 bws_functions.php:243 bws_menu.php:557
130
- #: bws_menu.php:559
131
  msgid "Settings"
132
  msgstr "Settings"
133
 
134
- #: bws_functions.php:212 bws_menu.php:328 class-bws-settings.php:745
135
- #: class-bws-settings.php:1058 class-bws-settings.php:1068 deprecated.php:694
136
  msgid "or"
137
  msgstr "of"
138
 
139
- #: bws_functions.php:213 bws_functions.php:245
140
  msgid "Add New"
141
  msgstr "Nieuwe toevoegen"
142
 
143
- #: bws_functions.php:217 bws_functions.php:227 bws_functions.php:331
144
- #: bws_functions.php:379 bws_functions.php:481
145
  msgid "Close notice"
146
  msgstr "Opmerking sluiten"
147
 
148
- #: bws_functions.php:232
149
  msgid "Thank you for installing plugins by BestWebSoft!"
150
  msgstr "Dank u voor het installeren van een plugin van BestWebSoft!"
151
 
152
- #: bws_functions.php:234
153
  msgid "More Details"
154
  msgstr "Meer details"
155
 
156
- #: bws_functions.php:235
157
  msgid "Less Details"
158
  msgstr "Minder details"
159
 
160
- #: bws_functions.php:263
161
  msgid "Deprecated function(-s) is used on the site here:"
162
  msgstr "Deprecated functie(-s) word hier op de site gebruikt:"
163
 
164
- #: bws_functions.php:277
165
  msgid ""
166
  "This function(-s) will be removed over time. Please update the product(-s)."
167
  msgstr ""
168
  "Deze function(-s) zal mettertijd worden verwijderd. Update het product of "
169
  "producten."
170
 
171
- #: bws_functions.php:336
172
  msgid "It’s time to upgrade your"
173
  msgstr "Het is tijd om te upgraden, "
174
 
175
- #: bws_functions.php:336
176
  msgid "to"
177
  msgstr "aan"
178
 
179
- #: bws_functions.php:336
180
  msgid "version!"
181
  msgstr "versie!"
182
 
183
- #: bws_functions.php:337
184
  msgid "Extend standard plugin functionality with new great options."
185
  msgstr ""
186
  "Verleng de standaard plugin functionaliteit met nieuwe geweldige opties."
187
 
188
- #: bws_functions.php:383
189
  #, php-format
190
  msgid ""
191
  "Your license key for %s expires on %s and you won't be granted TOP-PRIORITY "
@@ -194,12 +200,12 @@ msgstr ""
194
  "Uw licentiesleutel voor %s verloopt uit op %s en u krijgt geen TOP-"
195
  "PRIORITEIT SUPPORT of UPDATES."
196
 
197
- #: bws_functions.php:476
198
  #, php-format
199
  msgid "Thank you for choosing %s plugin!"
200
  msgstr "Bedankt voor het kiezen van %s plugin!"
201
 
202
- #: bws_functions.php:477
203
  msgid ""
204
  "If you have a feature, suggestion or idea you'd like to see in the plugin, "
205
  "we'd love to hear about it!"
@@ -207,25 +213,25 @@ msgstr ""
207
  "Als u een feature, suggestie of idee hebt dat u graag wilt zien in de "
208
  "plugin, zouden we het graag willen horen!"
209
 
210
- #: bws_functions.php:478
211
  msgid "Suggest a Feature"
212
  msgstr "Deel een idee"
213
 
214
- #: bws_functions.php:494 class-bws-settings.php:538 class-bws-settings.php:541
215
- #: class-bws-settings.php:593 class-bws-settings.php:596
216
  msgid "Notice"
217
  msgstr "Opmerking"
218
 
219
- #: bws_functions.php:494
220
  msgid "The plugin's settings have been changed."
221
  msgstr "De instellingen van de plugin zijn gewijzigd."
222
 
223
- #: bws_functions.php:495 class-bws-settings.php:183 class-bws-settings.php:203
224
- #: deprecated.php:640
225
  msgid "Save Changes"
226
  msgstr "Bewerkingen opslaan"
227
 
228
- #: bws_functions.php:509
229
  msgid ""
230
  "You can always look at premium options by checking the \"Pro Options\" in "
231
  "the \"Misc\" tab."
@@ -233,77 +239,77 @@ msgstr ""
233
  "U kunt altijd premium opties bekijken door de \"Pro Options\" in het tabblad "
234
  "\"Misc\" te controleren."
235
 
236
- #: bws_functions.php:647
237
  msgid "Add BWS Shortcode"
238
  msgstr ""
239
 
240
- #: bws_functions.php:648
241
  msgid "Add BWS Plugins Shortcode"
242
  msgstr ""
243
 
244
- #: bws_functions.php:667
245
  msgid "Add shortcode"
246
  msgstr "Shortcode toevoegen"
247
 
248
- #: bws_functions.php:667
249
  msgid "Add BestWebSoft plugins' shortcodes using this button."
250
  msgstr "Voeg BestWebSoft plugins shortcodes toe aan deze knop."
251
 
252
- #: bws_functions.php:723
253
  msgid "Close"
254
  msgstr "Sluiten"
255
 
256
- #: bws_functions.php:815
257
  msgid "Are you sure you want to restore default settings?"
258
  msgstr "Weet u zeker dat u de standaardinstellingen wilt herstellen?"
259
 
260
- #: bws_functions.php:818
261
  msgid "Yes, restore all settings"
262
  msgstr "Ja, herstel alle instellingen"
263
 
264
- #: bws_functions.php:819
265
  msgid "No, go back to the settings page"
266
  msgstr "Nee, ga terug naar de instellingen"
267
 
268
- #: bws_functions.php:861
269
  msgid "Plugin"
270
  msgstr "Plugin"
271
 
272
- #: bws_functions.php:870
273
  msgid "Shortcode settings"
274
  msgstr "Shortcode instellingen"
275
 
276
- #: bws_functions.php:875
277
  msgid "The shortcode will be inserted"
278
  msgstr "De shortcode wordt ingevoegd"
279
 
280
- #: bws_functions.php:916
281
  msgid "FAQ"
282
  msgstr "FAQ"
283
 
284
- #: bws_functions.php:922
285
  msgid "For more information:"
286
  msgstr "Voor meer informatie:"
287
 
288
- #: bws_functions.php:923
289
  msgid "Documentation"
290
  msgstr "Documentatie"
291
 
292
- #: bws_functions.php:924
293
  msgid "Video Instructions"
294
  msgstr "Video Instructies"
295
 
296
- #: bws_functions.php:925
297
  msgid "Submit a Request"
298
  msgstr "Verzend een verzoek"
299
 
300
- #: bws_menu.php:101 class-bws-settings.php:790 deprecated.php:322
301
  msgid "Wrong license key"
302
  msgstr "Incorrecte licentiesleutel"
303
 
304
- #: bws_menu.php:122 class-bws-settings.php:816 class-bws-settings.php:883
305
- #: class-bws-settings.php:919 deprecated.php:133 deprecated.php:199
306
- #: deprecated.php:352
307
  msgid ""
308
  "Something went wrong. Please try again later. If the error appears again, "
309
  "please contact us"
@@ -311,14 +317,14 @@ msgstr ""
311
  "Er is iets fout gegaan. Probeer het later nogmaals. Als de fout zich blijft "
312
  "voordoen, neem dan contact met ons op"
313
 
314
- #: bws_menu.php:122 class-bws-settings.php:816 class-bws-settings.php:883
315
- #: class-bws-settings.php:919 deprecated.php:133 deprecated.php:199
316
- #: deprecated.php:352
317
  msgid "We are sorry for inconvenience."
318
  msgstr "Het spijt ons voor het ongemak."
319
 
320
- #: bws_menu.php:128 class-bws-settings.php:822 class-bws-settings.php:925
321
- #: deprecated.php:139 deprecated.php:358
322
  msgid "Wrong license key."
323
  msgstr "Verkeerde licentiesleutel."
324
 
@@ -334,11 +340,11 @@ msgstr ""
334
  msgid "Log in"
335
  msgstr "Log in"
336
 
337
- #: bws_menu.php:132 bws_menu.php:334 deprecated.php:261
338
  msgid "Unfortunately, you have exceeded the number of available tries per day."
339
  msgstr "Helaas heb je het aantal beschikbare pogingen per dag overschreden."
340
 
341
- #: bws_menu.php:134 class-bws-settings.php:931 deprecated.php:364
342
  #, php-format
343
  msgid ""
344
  "Unfortunately, Your license has expired. To continue getting top-priority "
@@ -347,7 +353,7 @@ msgstr ""
347
  "Helaas is uw licentie verlopen. Om voort te gaan met ondersteuning voor top-"
348
  "prioriteit en plugin-updates, moet u deze uitbreiden in uw %s"
349
 
350
- #: bws_menu.php:136 class-bws-settings.php:933 deprecated.php:366
351
  msgid ""
352
  "Unfortunately, the Pro licence was already installed to this domain. The Pro "
353
  "Trial license can be installed only once."
@@ -355,20 +361,19 @@ msgstr ""
355
  "Helaas is de Pro licentie al geïnstalleerd op dit domein. De Pro Trial "
356
  "licentie kan slechts één keer geïnstalleerd worden."
357
 
358
- #: bws_menu.php:142 class-bws-settings.php:837 deprecated.php:153
359
  msgid "The license key is valid."
360
  msgstr "De licentiesleutel is geldig."
361
 
362
- #: bws_menu.php:144 class-bws-settings.php:840 deprecated.php:156
363
  msgid "Your license will expire on"
364
  msgstr "Uw licentie vervalt op"
365
 
366
  #: bws_menu.php:146
367
- msgid "Congratulations! Pro Membership license is activated successfully."
368
  msgstr ""
369
- "Hartelijk gefeliciteerd! Uw Pro Membership licentie is succesvol geactiveerd."
370
 
371
- #: bws_menu.php:153 class-bws-settings.php:1005 deprecated.php:435
372
  msgid ""
373
  "Something went wrong. Try again later or upload the plugin manually. We are "
374
  "sorry for inconvenience."
@@ -522,67 +527,68 @@ msgstr "Inactive Plugins"
522
  msgid "Please enter a valid email address."
523
  msgstr "Gelieve een geldig e-mailadres in te geven."
524
 
525
- #: bws_menu.php:264
526
- msgid "Email with system info is sent to"
527
- msgstr "E-mail met systeeminformatie wordt verzonden naar"
 
528
 
529
- #: bws_menu.php:268
530
  msgid "Thank you for contacting us."
531
  msgstr "Bedankt voor het contact met ons opnemen."
532
 
533
- #: bws_menu.php:291
534
  msgid "Sorry, email message could not be delivered."
535
  msgstr "Sorry, e-mailbericht kon niet worden geleverd."
536
 
537
- #: bws_menu.php:307 bws_menu.php:311 bws_menu.php:360 deprecated.php:91
538
  msgid "Plugins"
539
  msgstr "Plugins"
540
 
541
- #: bws_menu.php:308 bws_menu.php:312 bws_menu.php:611 deprecated.php:92
542
  msgid "Themes"
543
  msgstr "Thema's"
544
 
545
- #: bws_menu.php:309 bws_menu.php:313 bws_menu.php:641
546
  msgid "System status"
547
  msgstr "Systeem status"
548
 
549
- #: bws_menu.php:317
550
  msgid "Support"
551
  msgstr "Support"
552
 
553
- #: bws_menu.php:318
554
  msgid "Manage purchased licenses & subscriptions"
555
  msgstr "Beheerde licenties en abonnementen beheren"
556
 
557
- #: bws_menu.php:326
558
  #, php-format
559
  msgid "Get Access to %s+ Premium Plugins"
560
  msgstr "Krijg toegang tot %s+ Premium plugins"
561
 
562
- #: bws_menu.php:328
563
  msgid "Subscribe to Pro Membership"
564
  msgstr "Abonneer je op de Pro Membership"
565
 
566
- #: bws_menu.php:336 bws_menu.php:347 class-bws-settings.php:758
567
  #: deprecated.php:227
568
  msgid "Check license key"
569
  msgstr "Controleer de licentiesleutel"
570
 
571
- #: bws_menu.php:339
572
  msgid "Enter your license key"
573
  msgstr "Vul uw licentiesleutel in"
574
 
575
- #: bws_menu.php:345 bws_menu.php:563 bws_menu.php:572
576
- #: class-bws-settings.php:737 deprecated.php:259 deprecated.php:267
577
- #: deprecated.php:629 deprecated.php:700 deprecated.php:709
578
  msgid "Activate"
579
  msgstr "Activateer"
580
 
581
- #: bws_menu.php:361
582
  msgid "Upload Plugin"
583
  msgstr "Upload Plugin"
584
 
585
- #: bws_menu.php:365
586
  #, php-format
587
  msgid ""
588
  "The plugin generated %d characters of <strong>unexpected output</strong> "
@@ -595,7 +601,7 @@ msgstr ""
595
  "met syndicationfeeds of andere problemen zijn; probeer deze plugin uit te "
596
  "schakelen of te verwijderen."
597
 
598
- #: bws_menu.php:367
599
  msgid ""
600
  "Plugin could not be activated because it triggered a <strong>fatal error</"
601
  "strong>."
@@ -603,41 +609,39 @@ msgstr ""
603
  "Plugin kan niet geactiveerd worden omdat het er <strong>fatal error</strong> "
604
  "zich voordoet."
605
 
606
- #: bws_menu.php:370
607
  msgid "Plugin <strong>activated</strong>."
608
  msgstr "Plugin <strong>geactiveerd</strong>."
609
 
610
- #: bws_menu.php:377
611
  msgid "Installing Plugin"
612
  msgstr "Installatie Plugin bezig"
613
 
614
- #: bws_menu.php:383
615
  msgid "Downloading install package from"
616
  msgstr "Installatiepakket downloaden vanaf"
617
 
618
- #: bws_menu.php:400 bws_menu.php:431 bws_menu.php:442
619
- #: class-bws-settings.php:957 class-bws-settings.php:979
620
- #: class-bws-settings.php:1001 deprecated.php:387 deprecated.php:409
621
- #: deprecated.php:431
622
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
623
  msgstr ""
624
  "Het ziparchief kon niet worden geladen. Gelieve de plugin handmatig te "
625
  "uploaden"
626
 
627
- #: bws_menu.php:408
628
  msgid "Unpacking the package"
629
  msgstr "Uitpakken van het pakket"
630
 
631
- #: bws_menu.php:413 bws_menu.php:421
632
  msgid "Installing the plugin"
633
  msgstr "De plugin installeren"
634
 
635
- #: bws_menu.php:417 class-bws-settings.php:969 deprecated.php:399
636
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
637
  msgstr ""
638
  "Kan het zip-bestand niet openen. Gelieve de plugin handmatig te uploaden"
639
 
640
- #: bws_menu.php:424 class-bws-settings.php:975 deprecated.php:405
641
  msgid ""
642
  "Your server does not support either ZipArchive or Phar. Please, upload the "
643
  "plugin manually"
@@ -645,96 +649,96 @@ msgstr ""
645
  "Uw server ondersteunt geen ZipArchive of Phar. Gelieve de plugin handmatig "
646
  "te uploaden"
647
 
648
- #: bws_menu.php:427
649
  #, php-format
650
  msgid "The plugin %s is successfully installed."
651
  msgstr "De plugin %s is succesvol geïnstalleerd."
652
 
653
- #: bws_menu.php:434 class-bws-settings.php:982 deprecated.php:412
654
  msgid "UploadDir is not writable. Please, upload the plugin manually"
655
  msgstr ""
656
  "UploadDir is kan niet worden weggeschreven. Gelieve de plugin handmatig te "
657
  "uploaden"
658
 
659
- #: bws_menu.php:439
660
  msgid "Activate Plugin"
661
  msgstr "Activateer Plugin"
662
 
663
- #: bws_menu.php:439 bws_menu.php:445
664
  msgid "Return to BestWebSoft Panel"
665
  msgstr "Terug naar het BestWebSoft Paneel"
666
 
667
- #: bws_menu.php:449 bws_menu.php:464 bws_menu.php:593
668
  msgid "All"
669
  msgstr "Alle"
670
 
671
- #: bws_menu.php:450 bws_menu.php:630
672
  msgid "Installed"
673
  msgstr "Geinstalleerd"
674
 
675
- #: bws_menu.php:451
676
  msgid "Not Installed"
677
  msgstr "Niet geinstalleerd"
678
 
679
- #: bws_menu.php:457
680
  msgid "Filter results"
681
  msgstr "Filter resultaten"
682
 
683
- #: bws_menu.php:460 bws_menu.php:589
684
  msgid "Category"
685
  msgstr "Categorieen"
686
 
687
- #: bws_menu.php:524
688
  msgid "Not installed"
689
  msgstr "Niet geinstalleerd"
690
 
691
- #: bws_menu.php:528
692
  msgid "Renew to get updates"
693
  msgstr "Vernieuw om updates te verkrijgen"
694
 
695
- #: bws_menu.php:531
696
  #, php-format
697
  msgid "Update to v %s"
698
  msgstr "Update naar v %s"
699
 
700
- #: bws_menu.php:543 bws_menu.php:566 bws_menu.php:575
701
  msgid "Install Now"
702
  msgstr "Installeer nu"
703
 
704
- #: bws_menu.php:549 class-bws-settings.php:157 class-bws-settings.php:1065
705
  msgid "Upgrade to Pro"
706
  msgstr "Upgrade naar Pro"
707
 
708
- #: bws_menu.php:563 bws_menu.php:572
709
  msgid "Activate this plugin"
710
  msgstr "Activateer deze plugin"
711
 
712
- #: bws_menu.php:575
713
  msgid "Install this plugin"
714
  msgstr "Installeer deze plugin"
715
 
716
- #: bws_menu.php:584
717
  msgid "Nothing found. Try another criteria."
718
  msgstr "Niks gevonden. Probeer een ander criteria."
719
 
720
- #: bws_menu.php:621
721
  #, php-format
722
  msgid "By %s"
723
  msgstr "By %s"
724
 
725
- #: bws_menu.php:628
726
  msgid "Already Installed"
727
  msgstr "Reeds geinstalleerd"
728
 
729
- #: bws_menu.php:638
730
- msgid "Browse Free WordPress Themes"
731
- msgstr "Browse Gratis WordPress Themas"
732
 
733
- #: bws_menu.php:647
734
  msgid "Send to support"
735
  msgstr "Stuur uw vraag"
736
 
737
- #: bws_menu.php:654
738
  msgid "Send to custom email &#187;"
739
  msgstr "Verzend naar aangepaste e-mail &#187;"
740
 
@@ -788,18 +792,18 @@ msgstr "Alle plugin-instellingen zijn hersteld."
788
  msgid "Custom Code"
789
  msgstr "Maatwerk Code"
790
 
791
- #: class-bws-settings.php:427 deprecated.php:497
792
  msgid "You do not have sufficient permissions to edit plugins for this site."
793
  msgstr ""
794
  "U heeft niet voldoende permissies om plugins voor deze website te bewerken."
795
 
796
- #: class-bws-settings.php:432 deprecated.php:618
797
  msgid "These styles will be added to the header on all pages of your site."
798
  msgstr ""
799
  "Deze stijlen worden toegevoegd aan de koptekst op alle pagina's van uw "
800
  "website."
801
 
802
- #: class-bws-settings.php:435 deprecated.php:620
803
  #, php-format
804
  msgid ""
805
  "This PHP code will be hooked to the %s action and will be printed on front "
@@ -813,7 +817,7 @@ msgid "These code will be added to the header on all pages of your site."
813
  msgstr ""
814
  "Deze code wordt toegevoegd aan de koptekst op alle pagina's van uw website."
815
 
816
- #: class-bws-settings.php:446 deprecated.php:644
817
  #, php-format
818
  msgid ""
819
  "You need to make this files writable before you can save your changes. See "
@@ -822,7 +826,7 @@ msgstr ""
822
  "U moet deze bestanden schrijfrechten geven voordat u de wijzigingen kunt "
823
  "opslaan. Zie %s de Codex %s voor meer informatie."
824
 
825
- #: class-bws-settings.php:456 deprecated.php:626
826
  msgid "Browsing"
827
  msgstr "Browsing"
828
 
@@ -831,16 +835,16 @@ msgstr "Browsing"
831
  msgid "Activate custom %s code."
832
  msgstr "Activateer maatwerk %s code."
833
 
834
- #: class-bws-settings.php:469 deprecated.php:633
835
  #, php-format
836
  msgid "Learn more about %s"
837
  msgstr "Leer meer over %s"
838
 
839
- #: class-bws-settings.php:529
840
  msgid "Miscellaneous Settings"
841
  msgstr "Diversen instellingen"
842
 
843
- #: class-bws-settings.php:538 class-bws-settings.php:593
844
  #, php-format
845
  msgid ""
846
  "It is prohibited to change %s settings on this site in the %s network "
@@ -849,7 +853,7 @@ msgstr ""
849
  "Het is verboden om %s instellingen op deze website te wijzigen in de %s "
850
  "netwerkinstellingen."
851
 
852
- #: class-bws-settings.php:541 class-bws-settings.php:596
853
  #, php-format
854
  msgid ""
855
  "It is prohibited to view %s settings on this site in the %s network settings."
@@ -857,69 +861,69 @@ msgstr ""
857
  "Het is verboden om %s instellingen op deze website te bekijken in de %s "
858
  "netwerkinstellingen."
859
 
860
- #: class-bws-settings.php:550
861
  msgid "Pro Options"
862
  msgstr "Pro Opties"
863
 
864
- #: class-bws-settings.php:554
865
  msgid "Enable to display plugin Pro options."
866
  msgstr "Schakel in om plugin Pro opties te zien."
867
 
868
- #: class-bws-settings.php:560
869
  msgid "Track Usage"
870
  msgstr "Track gebruik"
871
 
872
- #: class-bws-settings.php:564
873
  msgid ""
874
  "Enable to allow tracking plugin usage anonymously in order to make it better."
875
  msgstr ""
876
  "Activeer het gebruik van anonieme tracking van de bijbehorende plug-in, om "
877
  "het product beter te maken."
878
 
879
- #: class-bws-settings.php:569
880
  msgid "Default Settings"
881
  msgstr "Standaard instellingen"
882
 
883
- #: class-bws-settings.php:571
884
  msgid "Restore Settings"
885
  msgstr "Instellingen herstellen"
886
 
887
- #: class-bws-settings.php:572
888
  msgid "This will restore plugin settings to defaults."
889
  msgstr ""
890
  "Dit zal de plugininstellingen herstellen naar de standaardinstellingen."
891
 
892
- #: class-bws-settings.php:584
893
  msgid "Import / Export"
894
  msgstr "Import / Export"
895
 
896
- #: class-bws-settings.php:700 class-bws-settings.php:733
897
- #: class-bws-settings.php:755
898
  msgid "License Key"
899
  msgstr "Licentiesleutel"
900
 
901
- #: class-bws-settings.php:723
902
  msgid "Congratulations! Pro license is activated successfully."
903
  msgstr "Hartelijk gefeliciteerd! De Pro licentie is succesvol geactiveerd."
904
 
905
- #: class-bws-settings.php:724
906
  #, php-format
907
  msgid "You will be automatically redirected to the %s in %s seconds."
908
  msgstr "U wordt automatisch doorgestuurd naar %s in %s seconden."
909
 
910
- #: class-bws-settings.php:724
911
  msgid "Settings page"
912
  msgstr "Instellingen"
913
 
914
- #: class-bws-settings.php:739
915
  #, php-format
916
  msgid "Enter your license key to activate %s and get premium plugin features."
917
  msgstr ""
918
  "Voer uw licentiesleutel in om %s te activeren en premium-pluginfuncties te "
919
  "krijgen."
920
 
921
- #: class-bws-settings.php:742 class-bws-settings.php:929 deprecated.php:362
922
- #: deprecated.php:703
923
  msgid ""
924
  "Unfortunately, you have exceeded the number of available tries per day. "
925
  "Please, upload the plugin manually."
@@ -927,12 +931,12 @@ msgstr ""
927
  "Helaas heeft u het aantal beschikbare pogingen per dag overschreden. Gelieve "
928
  "de plugin handmatig te uploaden."
929
 
930
- #: class-bws-settings.php:745 deprecated.php:694
931
  #, php-format
932
  msgid "Start Your Free %s-Day Trial Now"
933
  msgstr "Start nu uw gratis %s dag trial"
934
 
935
- #: class-bws-settings.php:760
936
  msgid ""
937
  "If necessary, you can check if the license key is correct or reenter it in "
938
  "the field below."
@@ -940,15 +944,15 @@ msgstr ""
940
  "Indien nodig kunt u controleren of de licentiesleutel juist is of u voert "
941
  "het opnieuw in het onderstaande veld."
942
 
943
- #: class-bws-settings.php:765
944
  msgid "Manage License Settings"
945
  msgstr "Beheer licentie instellingen"
946
 
947
- #: class-bws-settings.php:767
948
  msgid "Login to Client Area"
949
  msgstr "Inloggen op client gebied"
950
 
951
- #: class-bws-settings.php:769
952
  msgid ""
953
  "Manage active licenses, download BWS products, and view your payment history "
954
  "using BestWebSoft Client Area."
@@ -956,12 +960,12 @@ msgstr ""
956
  "Beheer actieve licenties, download BWS-producten en bekijk uw de "
957
  "betalingsgeschiedenis met behulp van de BestWebSoft Klanten Omgeving."
958
 
959
- #: class-bws-settings.php:824 class-bws-settings.php:927 deprecated.php:141
960
- #: deprecated.php:360
961
  msgid "This license key is bound to another site."
962
  msgstr "Deze licentiesleutel is gebonden aan een andere website."
963
 
964
- #: class-bws-settings.php:826 deprecated.php:143
965
  msgid ""
966
  "This license key is valid, but Your license has expired. If you want to "
967
  "update our plugin in future, you should extend the license."
@@ -969,11 +973,11 @@ msgstr ""
969
  "Deze licentiesleutel is geldig, maar uw licentie is verlopen. Als u onze "
970
  "plugin in de toekomst wilt bijwerken, moet u de licentie verlengen."
971
 
972
- #: class-bws-settings.php:828 deprecated.php:145
973
  msgid "Unfortunately, you have exceeded the number of available tries."
974
  msgstr "Helaas heeft u het aantal beschikbare pogingen overschreden."
975
 
976
- #: class-bws-settings.php:830 deprecated.php:147
977
  msgid ""
978
  "Unfortunately, the Pro Trial licence was already installed to this domain. "
979
  "The Pro Trial license can be installed only once."
@@ -981,130 +985,156 @@ msgstr ""
981
  "Helaas, de Pro Trial licentie was al geïnstalleerd op dit domein. De Pro "
982
  "Trial License kan helaas maar eenmalig gebruikt worden."
983
 
984
- #: class-bws-settings.php:835 deprecated.php:151
985
  msgid "The Pro Trial license key is valid."
986
  msgstr "De Pro Trial licentiesleutel is geldig."
987
 
988
- #: class-bws-settings.php:843 deprecated.php:159 deprecated.php:246
989
  #, php-format
990
  msgid ""
991
  "In order to continue using the plugin it is necessary to buy a %s license."
992
  msgstr ""
993
  "Om door te gaan met de plugin is het nodig om een %s licentie te kopen."
994
 
995
- #: class-bws-settings.php:1040 deprecated.php:463
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
996
  msgid "Please, enter Your license key"
997
  msgstr "Vul alstublieft uw licentiesleutel in"
998
 
999
- #: class-bws-settings.php:1052
1000
  msgid "Need Help?"
1001
  msgstr "Hulp nodig?"
1002
 
1003
- #: class-bws-settings.php:1054
1004
  msgid "Read the Instruction"
1005
  msgstr "Lees de instructie"
1006
 
1007
- #: class-bws-settings.php:1058
1008
  msgid "Watch the Video"
1009
  msgstr "Bekijk de Video"
1010
 
1011
- #: class-bws-settings.php:1069
1012
  msgid "Start Your Free Trial"
1013
  msgstr "Begin uw gratis proefperiode"
1014
 
1015
- #: deactivation-form.php:26
1016
  msgid "Need help? We are ready to answer your questions."
1017
  msgstr ""
1018
 
1019
- #: deactivation-form.php:26
1020
  msgid "Contact Support"
1021
  msgstr ""
1022
 
1023
- #: deactivation-form.php:31
1024
  msgid "The plugin is not working"
1025
  msgstr ""
1026
 
1027
- #: deactivation-form.php:33
1028
  msgid "Kindly share what didn't work so we can fix it in future updates..."
1029
  msgstr ""
1030
 
1031
- #: deactivation-form.php:37
1032
  msgid "The plugin didn't work as expected"
1033
  msgstr ""
1034
 
1035
- #: deactivation-form.php:39
1036
  msgid "What did you expect?"
1037
  msgstr ""
1038
 
1039
- #: deactivation-form.php:43
1040
  msgid "The plugin suddenly stopped working"
1041
  msgstr ""
1042
 
1043
- #: deactivation-form.php:50
1044
  msgid "The plugin broke my site"
1045
  msgstr ""
1046
 
1047
- #: deactivation-form.php:57
1048
  msgid "I couldn't understand how to get it work"
1049
  msgstr ""
1050
 
1051
- #: deactivation-form.php:64
1052
  msgid "I found a better plugin"
1053
  msgstr ""
1054
 
1055
- #: deactivation-form.php:66
1056
  msgid "What's the plugin name?"
1057
  msgstr ""
1058
 
1059
- #: deactivation-form.php:70
1060
  msgid "The plugin is great, but I need specific feature that you don't support"
1061
  msgstr ""
1062
 
1063
- #: deactivation-form.php:72
1064
  msgid "What feature?"
1065
  msgstr ""
1066
 
1067
- #: deactivation-form.php:76
1068
  msgid "I no longer need the plugin"
1069
  msgstr ""
1070
 
1071
- #: deactivation-form.php:82
1072
  msgid "It's a temporary deactivation, I'm just debugging an issue"
1073
  msgstr ""
1074
 
1075
- #: deactivation-form.php:88
1076
  msgid "Other"
1077
  msgstr "Anders"
1078
 
1079
- #: deactivation-form.php:122
1080
  msgid "Quick Feedback"
1081
  msgstr ""
1082
 
1083
- #: deactivation-form.php:123
1084
  msgid "If you have a moment, please let us know why you are deactivating"
1085
  msgstr ""
1086
 
1087
- #: deactivation-form.php:128
1088
- msgid "Anonymous feedback"
1089
  msgstr ""
1090
 
1091
- #: deactivation-form.php:130
1092
  msgid "Cancel"
1093
  msgstr ""
1094
 
1095
- #: deactivation-form.php:230
1096
  msgid "Processing"
1097
  msgstr ""
1098
 
1099
- #: deactivation-form.php:259
1100
  msgid "Submit & Deactivate"
1101
  msgstr ""
1102
 
1103
- #: deactivation-form.php:276
1104
  msgid "Please tell us the reason so we can improve it."
1105
  msgstr ""
1106
 
1107
- #: deactivation-form.php:344
1108
  msgid "Deactivate"
1109
  msgstr ""
1110
 
@@ -1134,68 +1164,68 @@ msgstr ""
1134
  "(Uw gebruikersnaam is het e-mailadres dat is opgegeven tijdens de aankoop). "
1135
  "Indien nodig, verstuur alstublieft \"Verstuur uw wachtwoord?\" Verzoek."
1136
 
1137
- #: deprecated.php:247
1138
  msgid "After that, you can activate it by entering your license key."
1139
  msgstr "Daarna kunt u activeren door uw licentiesleutel in te voeren."
1140
 
1141
- #: deprecated.php:249 deprecated.php:688
1142
  msgid "License key can be found in the"
1143
  msgstr "Licentiesleutel is te vinden in de"
1144
 
1145
- #: deprecated.php:251 deprecated.php:690
1146
  msgid "(your username is the email address specified during the purchase)."
1147
  msgstr ""
1148
  "(Uw gebruikersnaam is het e-mailadres dat is opgegeven tijdens de aankoop)."
1149
 
1150
- #: deprecated.php:278
1151
  msgid ""
1152
  "Congratulations! The Pro license of the plugin is activated successfully."
1153
  msgstr ""
1154
  "Hartelijk gefeliciteerd! De Pro-licentie van de plugin is succesvol "
1155
  "geactiveerd."
1156
 
1157
- #: deprecated.php:280 deprecated.php:669
1158
  msgid "Please, go to"
1159
  msgstr "Ga aub naar"
1160
 
1161
- #: deprecated.php:280 deprecated.php:669
1162
  msgid "the setting page"
1163
  msgstr "de instellingen"
1164
 
1165
- #: deprecated.php:281 deprecated.php:670
1166
  msgid "You will be redirected automatically in 5 seconds."
1167
  msgstr "U wordt na 5 seconden automatisch doorverwezen."
1168
 
1169
- #: deprecated.php:315
1170
  msgid "Check premium options on the plugin settings page!"
1171
  msgstr "Controleer de premiumopties op de pagina met Plugin-instellingen!"
1172
 
1173
- #: deprecated.php:478
1174
  msgid "Restore all plugin settings to defaults"
1175
  msgstr "Herstel alle plugin-instellingen naar de standaardinstellingen"
1176
 
1177
- #: deprecated.php:480
1178
  msgid "Restore settings"
1179
  msgstr "Herstel instellingen"
1180
 
1181
- #: deprecated.php:548 deprecated.php:575
1182
  #, php-format
1183
  msgid "File %s edited successfully."
1184
  msgstr "Bestand %s is succesvol bewerkt"
1185
 
1186
- #: deprecated.php:550 deprecated.php:577
1187
  msgid "Not enough permissions to create or update the file"
1188
  msgstr "Niet genoeg rechten om het bestand te maken of aan te passen"
1189
 
1190
- #: deprecated.php:580
1191
  msgid "Not enough permissions to create the file"
1192
  msgstr "Niet genoeg rechten om het bestand te maken"
1193
 
1194
- #: deprecated.php:624
1195
  msgid "Editing"
1196
  msgstr "Bewerken"
1197
 
1198
- #: deprecated.php:667
1199
  msgid ""
1200
  "Congratulations! Pro version of the plugin is installed and activated "
1201
  "successfully."
@@ -1203,15 +1233,15 @@ msgstr ""
1203
  "Hartelijk gefeliciteerd! De Pro-versie van de plugin is succesvol "
1204
  "geïnstalleerd en geactiveerd."
1205
 
1206
- #: deprecated.php:677
1207
  msgid "Show Pro features"
1208
  msgstr "Toon de Pro functies"
1209
 
1210
- #: deprecated.php:684
1211
  msgid "Enter your license key to install and activate"
1212
  msgstr "Voer uw licentiesleutel in om te installeren en te activeren"
1213
 
1214
- #: deprecated.php:686
1215
  msgid "version of the plugin."
1216
  msgstr "versie van de plugin."
1217
 
@@ -1251,280 +1281,290 @@ msgstr ""
1251
  msgid "SMM"
1252
  msgstr ""
1253
 
1254
- #: product_list.php:23
1255
- msgid ""
1256
- "Protect WordPress website forms from spam entries by means of math logic."
1257
  msgstr ""
1258
 
1259
- #: product_list.php:35
1260
  msgid "Create your personal car rental/booking and reservation website."
1261
  msgstr ""
1262
 
1263
- #: product_list.php:45
1264
  msgid ""
1265
  "Allow customers to reach you using secure contact form plugin any website "
1266
  "must have."
1267
  msgstr ""
1268
 
1269
- #: product_list.php:55
1270
  msgid "Add unlimited number of contact forms to WordPress website."
1271
  msgstr ""
1272
 
1273
- #: product_list.php:65
1274
  msgid "Save and manage Contact Form messages. Never lose important data."
1275
  msgstr ""
1276
 
1277
- #: product_list.php:75
1278
  msgid "Add unlimited custom pages to WordPress admin dashboard."
1279
  msgstr ""
1280
 
1281
- #: product_list.php:82
1282
  msgid "Add custom fields to WordPress website search results."
1283
  msgstr ""
1284
 
1285
- #: product_list.php:89
1286
  msgid ""
1287
  "Add custom post types and taxonomies to WordPress website search results."
1288
  msgstr ""
1289
 
1290
- #: product_list.php:99
1291
  msgid "Add PayPal and 2CO donate buttons to receive charity payments."
1292
  msgstr ""
1293
 
1294
- #: product_list.php:106
1295
  msgid ""
1296
  "Get latest error log messages to diagnose website problems. Define and fix "
1297
  "issues faster."
1298
  msgstr ""
1299
 
1300
- #: product_list.php:113
1301
  msgid ""
1302
  "Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and "
1303
  "widgets."
1304
  msgstr ""
1305
 
1306
- #: product_list.php:123
1307
  msgid ""
1308
  "Add beautiful galleries, albums & images to your WordPress website in a few "
1309
  "clicks."
1310
  msgstr ""
1311
 
1312
- #: product_list.php:133
1313
  msgid ""
1314
  "Add Google +1, Share, Follow, Hangout buttons and profile badge to WordPress "
1315
  "posts, pages and widgets."
1316
  msgstr ""
1317
 
1318
- #: product_list.php:143
1319
  msgid ""
1320
  "Stronger security solution which protects your WordPress website from hacks "
1321
  "and unauthorized login attempts."
1322
  msgstr ""
1323
 
1324
- #: product_list.php:153
1325
  msgid ""
1326
  "Add Adsense ads to WordPress website pages, posts, custom posts, search "
1327
  "results, categories, tags, and widgets."
1328
  msgstr ""
1329
 
1330
- #: product_list.php:163
1331
  msgid "Add Google Analytics code to WordPress website and track basic stats."
1332
  msgstr ""
1333
 
1334
- #: product_list.php:173
1335
  msgid ""
1336
  "Protect WordPress website forms from spam entries with Google Captcha "
1337
  "(reCaptcha)."
1338
  msgstr ""
1339
 
1340
- #: product_list.php:183
1341
  msgid "Add customized Google maps to WordPress posts, pages and widgets."
1342
  msgstr ""
1343
 
1344
- #: product_list.php:193
1345
  msgid ""
1346
  "Generate and add XML sitemap to WordPress website. Help search engines index "
1347
  "your blog."
1348
  msgstr ""
1349
 
1350
- #: product_list.php:203
1351
  msgid ""
1352
  "Replace external WordPress website links with Google shortlinks and track "
1353
  "click stats."
1354
  msgstr ""
1355
 
1356
- #: product_list.php:210
1357
  msgid ""
1358
  "Protect WordPress website – allow and deny access for certain IP addresses, "
1359
  "hostnames, etc."
1360
  msgstr ""
1361
 
1362
- #: product_list.php:220
1363
  msgid ""
1364
  "Create your personal job board and listing WordPress website. Search jobs, "
1365
  "submit CV/resumes, choose candidates."
1366
  msgstr ""
1367
 
1368
- #: product_list.php:227
1369
  msgid ""
1370
  "Protect WordPress website against brute force attacks. Limit rate of login "
1371
  "attempts."
1372
  msgstr ""
1373
 
1374
- #: product_list.php:237
1375
  msgid ""
1376
  "Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. "
1377
  "5 plugins included – profile, insider, etc."
1378
  msgstr ""
1379
 
1380
- #: product_list.php:247
1381
  msgid ""
1382
  "Translate WordPress website content to other languages manually. Create "
1383
  "multilingual pages, posts, widgets, menus, etc."
1384
  msgstr ""
1385
 
1386
- #: product_list.php:257
1387
  msgid ""
1388
  "Add customizable pagination to WordPress website. Split long content to "
1389
  "multiple pages for better navigation."
1390
  msgstr ""
1391
 
1392
- #: product_list.php:267
1393
  msgid ""
1394
  "Generate PDF files and print WordPress posts/pages. Customize document "
1395
  "header/footer styles and appearance."
1396
  msgstr ""
1397
 
1398
- #: product_list.php:277
1399
  msgid ""
1400
  "Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, "
1401
  "Profile) to WordPress posts, pages and widgets."
1402
  msgstr ""
1403
 
1404
- #: product_list.php:287
1405
  msgid ""
1406
  "Create your personal portfolio WordPress website. Manage and showcase past "
1407
  "projects to get more clients."
1408
  msgstr ""
1409
 
1410
- #: product_list.php:297
1411
  msgid "Export WordPress posts to CSV file format easily. Configure data order."
1412
  msgstr ""
1413
 
1414
- #: product_list.php:304
1415
  msgid ""
1416
  "Add extra fields to default WordPress user profile. The easiest way to "
1417
  "create and manage additional custom values."
1418
  msgstr ""
1419
 
1420
- #: product_list.php:311
1421
  msgid ""
1422
  "Add and display HTML advertisement banner on WordPress website. Customize "
1423
  "bar styles and appearance."
1424
  msgstr ""
1425
 
1426
- #: product_list.php:321
1427
  msgid ""
1428
  "Add customizable quotes and tips blocks to WordPress posts, pages and "
1429
  "widgets."
1430
  msgstr ""
1431
 
1432
- #: product_list.php:328
1433
  msgid ""
1434
  "Add rating plugin to your WordPress website to receive feedback from your "
1435
  "customers."
1436
  msgstr ""
1437
 
1438
- #: product_list.php:335
1439
  msgid ""
1440
  "Create your personal real estate WordPress website. Sell, rent and buy "
1441
  "properties. Add, search and browse listings easily."
1442
  msgstr ""
1443
 
1444
- #: product_list.php:345
1445
  msgid ""
1446
  "Add related, featured, latest, and popular posts to your WordPress website. "
1447
  "Connect your blog readers with a relevant content."
1448
  msgstr ""
1449
 
1450
- #: product_list.php:352
1451
  msgid ""
1452
  "Send bulk email messages to WordPress users. Custom templates, advanced "
1453
  "settings and detailed reports."
1454
  msgstr ""
1455
 
1456
- #: product_list.php:362
1457
  msgid ""
1458
  "The best responsive slider plugin for your WordPress website. Create "
1459
  "beautifully animated slides just in a few clicks."
1460
  msgstr ""
1461
 
1462
- #: product_list.php:369
1463
  msgid ""
1464
  "Configure SMTP server to receive email messages from WordPress to Gmail, "
1465
  "Yahoo, Hotmail and other services."
1466
  msgstr ""
1467
 
1468
- #: product_list.php:376
1469
  msgid ""
1470
  "Add social media buttons and widgets to WordPress posts, pages and widgets. "
1471
  "FB, Twitter, G+1, Pinterest, LinkedIn."
1472
  msgstr ""
1473
 
1474
- #: product_list.php:386
1475
  msgid ""
1476
  "Add social media login, registration, and commenting to your WordPress "
1477
  "website."
1478
  msgstr ""
1479
 
1480
- #: product_list.php:393
1481
  msgid ""
1482
  "Add email newsletter sign up form to WordPress posts, pages and widgets. "
1483
  "Collect data and subscribe your users."
1484
  msgstr ""
1485
 
1486
- #: product_list.php:403
1487
  msgid ""
1488
  "Add testimonials and feedbacks from your customers to WordPress website "
1489
  "posts, pages, and widgets."
1490
  msgstr ""
1491
 
1492
- #: product_list.php:410
1493
  msgid ""
1494
  "Best timesheet plugin for WordPress. Track employee time, streamline "
1495
  "attendance and generate reports."
1496
  msgstr ""
1497
 
1498
- #: product_list.php:420
1499
  msgid ""
1500
  "Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts "
1501
  "and pages."
1502
  msgstr ""
1503
 
1504
- #: product_list.php:430
1505
  msgid ""
1506
  "Automatically check and update WordPress website core with all installed "
1507
  "plugins and themes to the latest versions."
1508
  msgstr ""
1509
 
1510
- #: product_list.php:440
1511
  msgid ""
1512
  "Powerful user role management plugin for WordPress website. Create, edit, "
1513
  "copy, and delete user roles."
1514
  msgstr ""
1515
 
1516
- #: product_list.php:450
1517
  msgid ""
1518
  "Display live count of online visitors who are currently browsing your "
1519
  "WordPress website."
1520
  msgstr ""
1521
 
1522
- #: product_list.php:460
1523
  msgid ""
1524
  "Backup and export Zendesk Help Center content automatically to your "
1525
  "WordPress website database."
1526
  msgstr ""
1527
 
 
 
 
 
 
 
 
 
 
 
 
1528
  #~ msgid ""
1529
  #~ "You can use one license of the Pro plugin for one domain only. Please "
1530
  #~ "check and edit your license or domain if necessary using you personal "
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-09-11 16:43+0300\n"
6
+ "PO-Revision-Date: 2017-09-11 16:43+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <https://support.bestwebsoft.com>\n"
9
  "Language: nl_NL\n"
40
  msgid "Like the plugin?"
41
  msgstr "Like de plugin?"
42
 
43
+ #: bws_functions.php:93
44
+ #, php-format
45
+ msgid "%s reviews"
46
+ msgstr ""
47
+
48
  #: bws_functions.php:94
49
  msgid "Rate it"
50
  msgstr "Rate it"
53
  msgid "Need help?"
54
  msgstr "Hulp nodig?"
55
 
56
+ #: bws_functions.php:104 bws_functions.php:917 class-bws-settings.php:1058
57
  msgid "Visit Help Center"
58
  msgstr "Bezoek het Helpcentrum"
59
 
61
  msgid "Want to support the plugin?"
62
  msgstr "Geef ondersteuning aan de plug-in?"
63
 
64
+ #: bws_functions.php:108 bws_menu.php:560
65
  msgid "Donate"
66
  msgstr "Doneer"
67
 
77
  "otherwise the Pro plugin will be deactivated."
78
  msgstr ""
79
 
80
+ #: bws_functions.php:128 bws_functions.php:341 bws_menu.php:631
81
+ #: class-bws-settings.php:144
82
  msgid "Learn More"
83
  msgstr "Leer meer"
84
 
98
  "Uw licentie is verlopen. Om voort te gaan met ondersteuning voor top-"
99
  "prioriteit en plugin-updates, moet u het uitbreiden."
100
 
101
+ #: bws_functions.php:147 bws_functions.php:389 deprecated.php:586
102
  msgid "Learn more"
103
  msgstr "Leer meer"
104
 
128
  msgid "Thank you for installing %s plugin!"
129
  msgstr "Dank u voor het installeren van %s plugin!"
130
 
131
+ #: bws_functions.php:210
132
  msgid "Let's get started"
133
  msgstr "Laten we aan de slag gaan"
134
 
135
+ #: bws_functions.php:211 bws_functions.php:244 bws_menu.php:564
136
+ #: bws_menu.php:566
137
  msgid "Settings"
138
  msgstr "Settings"
139
 
140
+ #: bws_functions.php:213 bws_menu.php:326 class-bws-settings.php:747
141
+ #: class-bws-settings.php:1060 class-bws-settings.php:1070 deprecated.php:697
142
  msgid "or"
143
  msgstr "of"
144
 
145
+ #: bws_functions.php:214 bws_functions.php:246
146
  msgid "Add New"
147
  msgstr "Nieuwe toevoegen"
148
 
149
+ #: bws_functions.php:218 bws_functions.php:228 bws_functions.php:332
150
+ #: bws_functions.php:385 bws_functions.php:487
151
  msgid "Close notice"
152
  msgstr "Opmerking sluiten"
153
 
154
+ #: bws_functions.php:233
155
  msgid "Thank you for installing plugins by BestWebSoft!"
156
  msgstr "Dank u voor het installeren van een plugin van BestWebSoft!"
157
 
158
+ #: bws_functions.php:235
159
  msgid "More Details"
160
  msgstr "Meer details"
161
 
162
+ #: bws_functions.php:236
163
  msgid "Less Details"
164
  msgstr "Minder details"
165
 
166
+ #: bws_functions.php:264
167
  msgid "Deprecated function(-s) is used on the site here:"
168
  msgstr "Deprecated functie(-s) word hier op de site gebruikt:"
169
 
170
+ #: bws_functions.php:278
171
  msgid ""
172
  "This function(-s) will be removed over time. Please update the product(-s)."
173
  msgstr ""
174
  "Deze function(-s) zal mettertijd worden verwijderd. Update het product of "
175
  "producten."
176
 
177
+ #: bws_functions.php:337
178
  msgid "It’s time to upgrade your"
179
  msgstr "Het is tijd om te upgraden, "
180
 
181
+ #: bws_functions.php:337
182
  msgid "to"
183
  msgstr "aan"
184
 
185
+ #: bws_functions.php:337
186
  msgid "version!"
187
  msgstr "versie!"
188
 
189
+ #: bws_functions.php:338
190
  msgid "Extend standard plugin functionality with new great options."
191
  msgstr ""
192
  "Verleng de standaard plugin functionaliteit met nieuwe geweldige opties."
193
 
194
+ #: bws_functions.php:389
195
  #, php-format
196
  msgid ""
197
  "Your license key for %s expires on %s and you won't be granted TOP-PRIORITY "
200
  "Uw licentiesleutel voor %s verloopt uit op %s en u krijgt geen TOP-"
201
  "PRIORITEIT SUPPORT of UPDATES."
202
 
203
+ #: bws_functions.php:482
204
  #, php-format
205
  msgid "Thank you for choosing %s plugin!"
206
  msgstr "Bedankt voor het kiezen van %s plugin!"
207
 
208
+ #: bws_functions.php:483
209
  msgid ""
210
  "If you have a feature, suggestion or idea you'd like to see in the plugin, "
211
  "we'd love to hear about it!"
213
  "Als u een feature, suggestie of idee hebt dat u graag wilt zien in de "
214
  "plugin, zouden we het graag willen horen!"
215
 
216
+ #: bws_functions.php:484
217
  msgid "Suggest a Feature"
218
  msgstr "Deel een idee"
219
 
220
+ #: bws_functions.php:500 class-bws-settings.php:540 class-bws-settings.php:543
221
+ #: class-bws-settings.php:595 class-bws-settings.php:598
222
  msgid "Notice"
223
  msgstr "Opmerking"
224
 
225
+ #: bws_functions.php:500
226
  msgid "The plugin's settings have been changed."
227
  msgstr "De instellingen van de plugin zijn gewijzigd."
228
 
229
+ #: bws_functions.php:501 class-bws-settings.php:183 class-bws-settings.php:203
230
+ #: deprecated.php:642
231
  msgid "Save Changes"
232
  msgstr "Bewerkingen opslaan"
233
 
234
+ #: bws_functions.php:515
235
  msgid ""
236
  "You can always look at premium options by checking the \"Pro Options\" in "
237
  "the \"Misc\" tab."
239
  "U kunt altijd premium opties bekijken door de \"Pro Options\" in het tabblad "
240
  "\"Misc\" te controleren."
241
 
242
+ #: bws_functions.php:653
243
  msgid "Add BWS Shortcode"
244
  msgstr ""
245
 
246
+ #: bws_functions.php:654
247
  msgid "Add BWS Plugins Shortcode"
248
  msgstr ""
249
 
250
+ #: bws_functions.php:673
251
  msgid "Add shortcode"
252
  msgstr "Shortcode toevoegen"
253
 
254
+ #: bws_functions.php:673
255
  msgid "Add BestWebSoft plugins' shortcodes using this button."
256
  msgstr "Voeg BestWebSoft plugins shortcodes toe aan deze knop."
257
 
258
+ #: bws_functions.php:729
259
  msgid "Close"
260
  msgstr "Sluiten"
261
 
262
+ #: bws_functions.php:821
263
  msgid "Are you sure you want to restore default settings?"
264
  msgstr "Weet u zeker dat u de standaardinstellingen wilt herstellen?"
265
 
266
+ #: bws_functions.php:824
267
  msgid "Yes, restore all settings"
268
  msgstr "Ja, herstel alle instellingen"
269
 
270
+ #: bws_functions.php:825
271
  msgid "No, go back to the settings page"
272
  msgstr "Nee, ga terug naar de instellingen"
273
 
274
+ #: bws_functions.php:867
275
  msgid "Plugin"
276
  msgstr "Plugin"
277
 
278
+ #: bws_functions.php:876
279
  msgid "Shortcode settings"
280
  msgstr "Shortcode instellingen"
281
 
282
+ #: bws_functions.php:881
283
  msgid "The shortcode will be inserted"
284
  msgstr "De shortcode wordt ingevoegd"
285
 
286
+ #: bws_functions.php:922
287
  msgid "FAQ"
288
  msgstr "FAQ"
289
 
290
+ #: bws_functions.php:928
291
  msgid "For more information:"
292
  msgstr "Voor meer informatie:"
293
 
294
+ #: bws_functions.php:929
295
  msgid "Documentation"
296
  msgstr "Documentatie"
297
 
298
+ #: bws_functions.php:930
299
  msgid "Video Instructions"
300
  msgstr "Video Instructies"
301
 
302
+ #: bws_functions.php:931
303
  msgid "Submit a Request"
304
  msgstr "Verzend een verzoek"
305
 
306
+ #: bws_menu.php:101 class-bws-settings.php:792 deprecated.php:323
307
  msgid "Wrong license key"
308
  msgstr "Incorrecte licentiesleutel"
309
 
310
+ #: bws_menu.php:122 class-bws-settings.php:818 class-bws-settings.php:885
311
+ #: class-bws-settings.php:921 deprecated.php:133 deprecated.php:199
312
+ #: deprecated.php:353
313
  msgid ""
314
  "Something went wrong. Please try again later. If the error appears again, "
315
  "please contact us"
317
  "Er is iets fout gegaan. Probeer het later nogmaals. Als de fout zich blijft "
318
  "voordoen, neem dan contact met ons op"
319
 
320
+ #: bws_menu.php:122 class-bws-settings.php:818 class-bws-settings.php:885
321
+ #: class-bws-settings.php:921 deprecated.php:133 deprecated.php:199
322
+ #: deprecated.php:353
323
  msgid "We are sorry for inconvenience."
324
  msgstr "Het spijt ons voor het ongemak."
325
 
326
+ #: bws_menu.php:128 class-bws-settings.php:824 class-bws-settings.php:927
327
+ #: deprecated.php:139 deprecated.php:359
328
  msgid "Wrong license key."
329
  msgstr "Verkeerde licentiesleutel."
330
 
340
  msgid "Log in"
341
  msgstr "Log in"
342
 
343
+ #: bws_menu.php:132 bws_menu.php:332 deprecated.php:261
344
  msgid "Unfortunately, you have exceeded the number of available tries per day."
345
  msgstr "Helaas heb je het aantal beschikbare pogingen per dag overschreden."
346
 
347
+ #: bws_menu.php:134 deprecated.php:365
348
  #, php-format
349
  msgid ""
350
  "Unfortunately, Your license has expired. To continue getting top-priority "
353
  "Helaas is uw licentie verlopen. Om voort te gaan met ondersteuning voor top-"
354
  "prioriteit en plugin-updates, moet u deze uitbreiden in uw %s"
355
 
356
+ #: bws_menu.php:136 class-bws-settings.php:935 deprecated.php:367
357
  msgid ""
358
  "Unfortunately, the Pro licence was already installed to this domain. The Pro "
359
  "Trial license can be installed only once."
361
  "Helaas is de Pro licentie al geïnstalleerd op dit domein. De Pro Trial "
362
  "licentie kan slechts één keer geïnstalleerd worden."
363
 
364
+ #: bws_menu.php:142 class-bws-settings.php:839 deprecated.php:153
365
  msgid "The license key is valid."
366
  msgstr "De licentiesleutel is geldig."
367
 
368
+ #: bws_menu.php:144 class-bws-settings.php:842 deprecated.php:156
369
  msgid "Your license will expire on"
370
  msgstr "Uw licentie vervalt op"
371
 
372
  #: bws_menu.php:146
373
+ msgid "Congratulations! Pro Membership license is activated successfully."
374
  msgstr ""
 
375
 
376
+ #: bws_menu.php:153 class-bws-settings.php:1007 deprecated.php:436
377
  msgid ""
378
  "Something went wrong. Try again later or upload the plugin manually. We are "
379
  "sorry for inconvenience."
527
  msgid "Please enter a valid email address."
528
  msgstr "Gelieve een geldig e-mailadres in te geven."
529
 
530
+ #: bws_menu.php:262
531
+ #, php-format
532
+ msgid "Email with system info is sent to %s."
533
+ msgstr ""
534
 
535
+ #: bws_menu.php:266
536
  msgid "Thank you for contacting us."
537
  msgstr "Bedankt voor het contact met ons opnemen."
538
 
539
+ #: bws_menu.php:289
540
  msgid "Sorry, email message could not be delivered."
541
  msgstr "Sorry, e-mailbericht kon niet worden geleverd."
542
 
543
+ #: bws_menu.php:305 bws_menu.php:309 bws_menu.php:358 deprecated.php:91
544
  msgid "Plugins"
545
  msgstr "Plugins"
546
 
547
+ #: bws_menu.php:306 bws_menu.php:310 bws_menu.php:618 deprecated.php:92
548
  msgid "Themes"
549
  msgstr "Thema's"
550
 
551
+ #: bws_menu.php:307 bws_menu.php:311 bws_menu.php:648
552
  msgid "System status"
553
  msgstr "Systeem status"
554
 
555
+ #: bws_menu.php:315
556
  msgid "Support"
557
  msgstr "Support"
558
 
559
+ #: bws_menu.php:316
560
  msgid "Manage purchased licenses & subscriptions"
561
  msgstr "Beheerde licenties en abonnementen beheren"
562
 
563
+ #: bws_menu.php:324
564
  #, php-format
565
  msgid "Get Access to %s+ Premium Plugins"
566
  msgstr "Krijg toegang tot %s+ Premium plugins"
567
 
568
+ #: bws_menu.php:326
569
  msgid "Subscribe to Pro Membership"
570
  msgstr "Abonneer je op de Pro Membership"
571
 
572
+ #: bws_menu.php:334 bws_menu.php:345 class-bws-settings.php:760
573
  #: deprecated.php:227
574
  msgid "Check license key"
575
  msgstr "Controleer de licentiesleutel"
576
 
577
+ #: bws_menu.php:337
578
  msgid "Enter your license key"
579
  msgstr "Vul uw licentiesleutel in"
580
 
581
+ #: bws_menu.php:343 bws_menu.php:570 bws_menu.php:579
582
+ #: class-bws-settings.php:739 deprecated.php:259 deprecated.php:267
583
+ #: deprecated.php:631 deprecated.php:703 deprecated.php:712
584
  msgid "Activate"
585
  msgstr "Activateer"
586
 
587
+ #: bws_menu.php:359
588
  msgid "Upload Plugin"
589
  msgstr "Upload Plugin"
590
 
591
+ #: bws_menu.php:363
592
  #, php-format
593
  msgid ""
594
  "The plugin generated %d characters of <strong>unexpected output</strong> "
601
  "met syndicationfeeds of andere problemen zijn; probeer deze plugin uit te "
602
  "schakelen of te verwijderen."
603
 
604
+ #: bws_menu.php:365
605
  msgid ""
606
  "Plugin could not be activated because it triggered a <strong>fatal error</"
607
  "strong>."
609
  "Plugin kan niet geactiveerd worden omdat het er <strong>fatal error</strong> "
610
  "zich voordoet."
611
 
612
+ #: bws_menu.php:368
613
  msgid "Plugin <strong>activated</strong>."
614
  msgstr "Plugin <strong>geactiveerd</strong>."
615
 
616
+ #: bws_menu.php:375
617
  msgid "Installing Plugin"
618
  msgstr "Installatie Plugin bezig"
619
 
620
+ #: bws_menu.php:381
621
  msgid "Downloading install package from"
622
  msgstr "Installatiepakket downloaden vanaf"
623
 
624
+ #: bws_menu.php:398 bws_menu.php:429 bws_menu.php:440 deprecated.php:388
625
+ #: deprecated.php:410 deprecated.php:432
 
 
626
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
627
  msgstr ""
628
  "Het ziparchief kon niet worden geladen. Gelieve de plugin handmatig te "
629
  "uploaden"
630
 
631
+ #: bws_menu.php:406
632
  msgid "Unpacking the package"
633
  msgstr "Uitpakken van het pakket"
634
 
635
+ #: bws_menu.php:411 bws_menu.php:419
636
  msgid "Installing the plugin"
637
  msgstr "De plugin installeren"
638
 
639
+ #: bws_menu.php:415 deprecated.php:400
640
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
641
  msgstr ""
642
  "Kan het zip-bestand niet openen. Gelieve de plugin handmatig te uploaden"
643
 
644
+ #: bws_menu.php:422 deprecated.php:406
645
  msgid ""
646
  "Your server does not support either ZipArchive or Phar. Please, upload the "
647
  "plugin manually"
649
  "Uw server ondersteunt geen ZipArchive of Phar. Gelieve de plugin handmatig "
650
  "te uploaden"
651
 
652
+ #: bws_menu.php:425
653
  #, php-format
654
  msgid "The plugin %s is successfully installed."
655
  msgstr "De plugin %s is succesvol geïnstalleerd."
656
 
657
+ #: bws_menu.php:432 deprecated.php:413
658
  msgid "UploadDir is not writable. Please, upload the plugin manually"
659
  msgstr ""
660
  "UploadDir is kan niet worden weggeschreven. Gelieve de plugin handmatig te "
661
  "uploaden"
662
 
663
+ #: bws_menu.php:437
664
  msgid "Activate Plugin"
665
  msgstr "Activateer Plugin"
666
 
667
+ #: bws_menu.php:437 bws_menu.php:443
668
  msgid "Return to BestWebSoft Panel"
669
  msgstr "Terug naar het BestWebSoft Paneel"
670
 
671
+ #: bws_menu.php:451 bws_menu.php:471 bws_menu.php:600
672
  msgid "All"
673
  msgstr "Alle"
674
 
675
+ #: bws_menu.php:454 bws_menu.php:637
676
  msgid "Installed"
677
  msgstr "Geinstalleerd"
678
 
679
+ #: bws_menu.php:457
680
  msgid "Not Installed"
681
  msgstr "Niet geinstalleerd"
682
 
683
+ #: bws_menu.php:464
684
  msgid "Filter results"
685
  msgstr "Filter resultaten"
686
 
687
+ #: bws_menu.php:467 bws_menu.php:596
688
  msgid "Category"
689
  msgstr "Categorieen"
690
 
691
+ #: bws_menu.php:531
692
  msgid "Not installed"
693
  msgstr "Niet geinstalleerd"
694
 
695
+ #: bws_menu.php:535
696
  msgid "Renew to get updates"
697
  msgstr "Vernieuw om updates te verkrijgen"
698
 
699
+ #: bws_menu.php:538
700
  #, php-format
701
  msgid "Update to v %s"
702
  msgstr "Update naar v %s"
703
 
704
+ #: bws_menu.php:550 bws_menu.php:573 bws_menu.php:582
705
  msgid "Install Now"
706
  msgstr "Installeer nu"
707
 
708
+ #: bws_menu.php:556 class-bws-settings.php:157 class-bws-settings.php:1067
709
  msgid "Upgrade to Pro"
710
  msgstr "Upgrade naar Pro"
711
 
712
+ #: bws_menu.php:570 bws_menu.php:579
713
  msgid "Activate this plugin"
714
  msgstr "Activateer deze plugin"
715
 
716
+ #: bws_menu.php:582
717
  msgid "Install this plugin"
718
  msgstr "Installeer deze plugin"
719
 
720
+ #: bws_menu.php:591
721
  msgid "Nothing found. Try another criteria."
722
  msgstr "Niks gevonden. Probeer een ander criteria."
723
 
724
+ #: bws_menu.php:628
725
  #, php-format
726
  msgid "By %s"
727
  msgstr "By %s"
728
 
729
+ #: bws_menu.php:635
730
  msgid "Already Installed"
731
  msgstr "Reeds geinstalleerd"
732
 
733
+ #: bws_menu.php:645
734
+ msgid "Browse More WordPress Themes"
735
+ msgstr ""
736
 
737
+ #: bws_menu.php:654
738
  msgid "Send to support"
739
  msgstr "Stuur uw vraag"
740
 
741
+ #: bws_menu.php:661
742
  msgid "Send to custom email &#187;"
743
  msgstr "Verzend naar aangepaste e-mail &#187;"
744
 
792
  msgid "Custom Code"
793
  msgstr "Maatwerk Code"
794
 
795
+ #: class-bws-settings.php:427 deprecated.php:498
796
  msgid "You do not have sufficient permissions to edit plugins for this site."
797
  msgstr ""
798
  "U heeft niet voldoende permissies om plugins voor deze website te bewerken."
799
 
800
+ #: class-bws-settings.php:432 deprecated.php:620
801
  msgid "These styles will be added to the header on all pages of your site."
802
  msgstr ""
803
  "Deze stijlen worden toegevoegd aan de koptekst op alle pagina's van uw "
804
  "website."
805
 
806
+ #: class-bws-settings.php:435 deprecated.php:622
807
  #, php-format
808
  msgid ""
809
  "This PHP code will be hooked to the %s action and will be printed on front "
817
  msgstr ""
818
  "Deze code wordt toegevoegd aan de koptekst op alle pagina's van uw website."
819
 
820
+ #: class-bws-settings.php:446 deprecated.php:646
821
  #, php-format
822
  msgid ""
823
  "You need to make this files writable before you can save your changes. See "
826
  "U moet deze bestanden schrijfrechten geven voordat u de wijzigingen kunt "
827
  "opslaan. Zie %s de Codex %s voor meer informatie."
828
 
829
+ #: class-bws-settings.php:456 deprecated.php:628
830
  msgid "Browsing"
831
  msgstr "Browsing"
832
 
835
  msgid "Activate custom %s code."
836
  msgstr "Activateer maatwerk %s code."
837
 
838
+ #: class-bws-settings.php:469 deprecated.php:635
839
  #, php-format
840
  msgid "Learn more about %s"
841
  msgstr "Leer meer over %s"
842
 
843
+ #: class-bws-settings.php:531
844
  msgid "Miscellaneous Settings"
845
  msgstr "Diversen instellingen"
846
 
847
+ #: class-bws-settings.php:540 class-bws-settings.php:595
848
  #, php-format
849
  msgid ""
850
  "It is prohibited to change %s settings on this site in the %s network "
853
  "Het is verboden om %s instellingen op deze website te wijzigen in de %s "
854
  "netwerkinstellingen."
855
 
856
+ #: class-bws-settings.php:543 class-bws-settings.php:598
857
  #, php-format
858
  msgid ""
859
  "It is prohibited to view %s settings on this site in the %s network settings."
861
  "Het is verboden om %s instellingen op deze website te bekijken in de %s "
862
  "netwerkinstellingen."
863
 
864
+ #: class-bws-settings.php:552
865
  msgid "Pro Options"
866
  msgstr "Pro Opties"
867
 
868
+ #: class-bws-settings.php:556
869
  msgid "Enable to display plugin Pro options."
870
  msgstr "Schakel in om plugin Pro opties te zien."
871
 
872
+ #: class-bws-settings.php:562
873
  msgid "Track Usage"
874
  msgstr "Track gebruik"
875
 
876
+ #: class-bws-settings.php:566
877
  msgid ""
878
  "Enable to allow tracking plugin usage anonymously in order to make it better."
879
  msgstr ""
880
  "Activeer het gebruik van anonieme tracking van de bijbehorende plug-in, om "
881
  "het product beter te maken."
882
 
883
+ #: class-bws-settings.php:571
884
  msgid "Default Settings"
885
  msgstr "Standaard instellingen"
886
 
887
+ #: class-bws-settings.php:573
888
  msgid "Restore Settings"
889
  msgstr "Instellingen herstellen"
890
 
891
+ #: class-bws-settings.php:574
892
  msgid "This will restore plugin settings to defaults."
893
  msgstr ""
894
  "Dit zal de plugininstellingen herstellen naar de standaardinstellingen."
895
 
896
+ #: class-bws-settings.php:586
897
  msgid "Import / Export"
898
  msgstr "Import / Export"
899
 
900
+ #: class-bws-settings.php:702 class-bws-settings.php:735
901
+ #: class-bws-settings.php:757
902
  msgid "License Key"
903
  msgstr "Licentiesleutel"
904
 
905
+ #: class-bws-settings.php:725
906
  msgid "Congratulations! Pro license is activated successfully."
907
  msgstr "Hartelijk gefeliciteerd! De Pro licentie is succesvol geactiveerd."
908
 
909
+ #: class-bws-settings.php:726
910
  #, php-format
911
  msgid "You will be automatically redirected to the %s in %s seconds."
912
  msgstr "U wordt automatisch doorgestuurd naar %s in %s seconden."
913
 
914
+ #: class-bws-settings.php:726
915
  msgid "Settings page"
916
  msgstr "Instellingen"
917
 
918
+ #: class-bws-settings.php:741
919
  #, php-format
920
  msgid "Enter your license key to activate %s and get premium plugin features."
921
  msgstr ""
922
  "Voer uw licentiesleutel in om %s te activeren en premium-pluginfuncties te "
923
  "krijgen."
924
 
925
+ #: class-bws-settings.php:744 class-bws-settings.php:931 deprecated.php:363
926
+ #: deprecated.php:706
927
  msgid ""
928
  "Unfortunately, you have exceeded the number of available tries per day. "
929
  "Please, upload the plugin manually."
931
  "Helaas heeft u het aantal beschikbare pogingen per dag overschreden. Gelieve "
932
  "de plugin handmatig te uploaden."
933
 
934
+ #: class-bws-settings.php:747 deprecated.php:697
935
  #, php-format
936
  msgid "Start Your Free %s-Day Trial Now"
937
  msgstr "Start nu uw gratis %s dag trial"
938
 
939
+ #: class-bws-settings.php:762
940
  msgid ""
941
  "If necessary, you can check if the license key is correct or reenter it in "
942
  "the field below."
944
  "Indien nodig kunt u controleren of de licentiesleutel juist is of u voert "
945
  "het opnieuw in het onderstaande veld."
946
 
947
+ #: class-bws-settings.php:767
948
  msgid "Manage License Settings"
949
  msgstr "Beheer licentie instellingen"
950
 
951
+ #: class-bws-settings.php:769
952
  msgid "Login to Client Area"
953
  msgstr "Inloggen op client gebied"
954
 
955
+ #: class-bws-settings.php:771
956
  msgid ""
957
  "Manage active licenses, download BWS products, and view your payment history "
958
  "using BestWebSoft Client Area."
960
  "Beheer actieve licenties, download BWS-producten en bekijk uw de "
961
  "betalingsgeschiedenis met behulp van de BestWebSoft Klanten Omgeving."
962
 
963
+ #: class-bws-settings.php:826 class-bws-settings.php:929 deprecated.php:141
964
+ #: deprecated.php:361
965
  msgid "This license key is bound to another site."
966
  msgstr "Deze licentiesleutel is gebonden aan een andere website."
967
 
968
+ #: class-bws-settings.php:828 deprecated.php:143
969
  msgid ""
970
  "This license key is valid, but Your license has expired. If you want to "
971
  "update our plugin in future, you should extend the license."
973
  "Deze licentiesleutel is geldig, maar uw licentie is verlopen. Als u onze "
974
  "plugin in de toekomst wilt bijwerken, moet u de licentie verlengen."
975
 
976
+ #: class-bws-settings.php:830 deprecated.php:145
977
  msgid "Unfortunately, you have exceeded the number of available tries."
978
  msgstr "Helaas heeft u het aantal beschikbare pogingen overschreden."
979
 
980
+ #: class-bws-settings.php:832 deprecated.php:147
981
  msgid ""
982
  "Unfortunately, the Pro Trial licence was already installed to this domain. "
983
  "The Pro Trial license can be installed only once."
985
  "Helaas, de Pro Trial licentie was al geïnstalleerd op dit domein. De Pro "
986
  "Trial License kan helaas maar eenmalig gebruikt worden."
987
 
988
+ #: class-bws-settings.php:837 deprecated.php:151
989
  msgid "The Pro Trial license key is valid."
990
  msgstr "De Pro Trial licentiesleutel is geldig."
991
 
992
+ #: class-bws-settings.php:845 deprecated.php:159 deprecated.php:246
993
  #, php-format
994
  msgid ""
995
  "In order to continue using the plugin it is necessary to buy a %s license."
996
  msgstr ""
997
  "Om door te gaan met de plugin is het nodig om een %s licentie te kopen."
998
 
999
+ #: class-bws-settings.php:933
1000
+ #, php-format
1001
+ msgid ""
1002
+ "Unfortunately, Your license has expired. To continue getting top-priority "
1003
+ "support and plugin updates, you should extend it in your %s."
1004
+ msgstr ""
1005
+
1006
+ #: class-bws-settings.php:959 class-bws-settings.php:981
1007
+ #: class-bws-settings.php:1003
1008
+ msgid "Failed to download the zip archive. Please, upload the plugin manually."
1009
+ msgstr ""
1010
+
1011
+ #: class-bws-settings.php:971
1012
+ msgid "Failed to open the zip archive. Please, upload the plugin manually."
1013
+ msgstr ""
1014
+
1015
+ #: class-bws-settings.php:977
1016
+ msgid ""
1017
+ "Your server does not support either ZipArchive or Phar. Please, upload the "
1018
+ "plugin manually."
1019
+ msgstr ""
1020
+
1021
+ #: class-bws-settings.php:984
1022
+ msgid "UploadDir is not writable. Please, upload the plugin manually."
1023
+ msgstr ""
1024
+
1025
+ #: class-bws-settings.php:1042 deprecated.php:464
1026
  msgid "Please, enter Your license key"
1027
  msgstr "Vul alstublieft uw licentiesleutel in"
1028
 
1029
+ #: class-bws-settings.php:1054
1030
  msgid "Need Help?"
1031
  msgstr "Hulp nodig?"
1032
 
1033
+ #: class-bws-settings.php:1056
1034
  msgid "Read the Instruction"
1035
  msgstr "Lees de instructie"
1036
 
1037
+ #: class-bws-settings.php:1060
1038
  msgid "Watch the Video"
1039
  msgstr "Bekijk de Video"
1040
 
1041
+ #: class-bws-settings.php:1071
1042
  msgid "Start Your Free Trial"
1043
  msgstr "Begin uw gratis proefperiode"
1044
 
1045
+ #: deactivation-form.php:27
1046
  msgid "Need help? We are ready to answer your questions."
1047
  msgstr ""
1048
 
1049
+ #: deactivation-form.php:27
1050
  msgid "Contact Support"
1051
  msgstr ""
1052
 
1053
+ #: deactivation-form.php:32
1054
  msgid "The plugin is not working"
1055
  msgstr ""
1056
 
1057
+ #: deactivation-form.php:34
1058
  msgid "Kindly share what didn't work so we can fix it in future updates..."
1059
  msgstr ""
1060
 
1061
+ #: deactivation-form.php:38
1062
  msgid "The plugin didn't work as expected"
1063
  msgstr ""
1064
 
1065
+ #: deactivation-form.php:40
1066
  msgid "What did you expect?"
1067
  msgstr ""
1068
 
1069
+ #: deactivation-form.php:44
1070
  msgid "The plugin suddenly stopped working"
1071
  msgstr ""
1072
 
1073
+ #: deactivation-form.php:51
1074
  msgid "The plugin broke my site"
1075
  msgstr ""
1076
 
1077
+ #: deactivation-form.php:58
1078
  msgid "I couldn't understand how to get it work"
1079
  msgstr ""
1080
 
1081
+ #: deactivation-form.php:65
1082
  msgid "I found a better plugin"
1083
  msgstr ""
1084
 
1085
+ #: deactivation-form.php:67
1086
  msgid "What's the plugin name?"
1087
  msgstr ""
1088
 
1089
+ #: deactivation-form.php:71
1090
  msgid "The plugin is great, but I need specific feature that you don't support"
1091
  msgstr ""
1092
 
1093
+ #: deactivation-form.php:73
1094
  msgid "What feature?"
1095
  msgstr ""
1096
 
1097
+ #: deactivation-form.php:77
1098
  msgid "I no longer need the plugin"
1099
  msgstr ""
1100
 
1101
+ #: deactivation-form.php:83
1102
  msgid "It's a temporary deactivation, I'm just debugging an issue"
1103
  msgstr ""
1104
 
1105
+ #: deactivation-form.php:89
1106
  msgid "Other"
1107
  msgstr "Anders"
1108
 
1109
+ #: deactivation-form.php:123
1110
  msgid "Quick Feedback"
1111
  msgstr ""
1112
 
1113
+ #: deactivation-form.php:124
1114
  msgid "If you have a moment, please let us know why you are deactivating"
1115
  msgstr ""
1116
 
1117
+ #: deactivation-form.php:127
1118
+ msgid "Send website data and allow to contact me back"
1119
  msgstr ""
1120
 
1121
+ #: deactivation-form.php:132
1122
  msgid "Cancel"
1123
  msgstr ""
1124
 
1125
+ #: deactivation-form.php:233
1126
  msgid "Processing"
1127
  msgstr ""
1128
 
1129
+ #: deactivation-form.php:262
1130
  msgid "Submit & Deactivate"
1131
  msgstr ""
1132
 
1133
+ #: deactivation-form.php:277
1134
  msgid "Please tell us the reason so we can improve it."
1135
  msgstr ""
1136
 
1137
+ #: deactivation-form.php:345
1138
  msgid "Deactivate"
1139
  msgstr ""
1140
 
1164
  "(Uw gebruikersnaam is het e-mailadres dat is opgegeven tijdens de aankoop). "
1165
  "Indien nodig, verstuur alstublieft \"Verstuur uw wachtwoord?\" Verzoek."
1166
 
1167
+ #: deprecated.php:246
1168
  msgid "After that, you can activate it by entering your license key."
1169
  msgstr "Daarna kunt u activeren door uw licentiesleutel in te voeren."
1170
 
1171
+ #: deprecated.php:249 deprecated.php:691
1172
  msgid "License key can be found in the"
1173
  msgstr "Licentiesleutel is te vinden in de"
1174
 
1175
+ #: deprecated.php:251 deprecated.php:693
1176
  msgid "(your username is the email address specified during the purchase)."
1177
  msgstr ""
1178
  "(Uw gebruikersnaam is het e-mailadres dat is opgegeven tijdens de aankoop)."
1179
 
1180
+ #: deprecated.php:279
1181
  msgid ""
1182
  "Congratulations! The Pro license of the plugin is activated successfully."
1183
  msgstr ""
1184
  "Hartelijk gefeliciteerd! De Pro-licentie van de plugin is succesvol "
1185
  "geactiveerd."
1186
 
1187
+ #: deprecated.php:281 deprecated.php:672
1188
  msgid "Please, go to"
1189
  msgstr "Ga aub naar"
1190
 
1191
+ #: deprecated.php:281 deprecated.php:672
1192
  msgid "the setting page"
1193
  msgstr "de instellingen"
1194
 
1195
+ #: deprecated.php:282 deprecated.php:673
1196
  msgid "You will be redirected automatically in 5 seconds."
1197
  msgstr "U wordt na 5 seconden automatisch doorverwezen."
1198
 
1199
+ #: deprecated.php:316
1200
  msgid "Check premium options on the plugin settings page!"
1201
  msgstr "Controleer de premiumopties op de pagina met Plugin-instellingen!"
1202
 
1203
+ #: deprecated.php:479
1204
  msgid "Restore all plugin settings to defaults"
1205
  msgstr "Herstel alle plugin-instellingen naar de standaardinstellingen"
1206
 
1207
+ #: deprecated.php:481
1208
  msgid "Restore settings"
1209
  msgstr "Herstel instellingen"
1210
 
1211
+ #: deprecated.php:550 deprecated.php:577
1212
  #, php-format
1213
  msgid "File %s edited successfully."
1214
  msgstr "Bestand %s is succesvol bewerkt"
1215
 
1216
+ #: deprecated.php:552 deprecated.php:579
1217
  msgid "Not enough permissions to create or update the file"
1218
  msgstr "Niet genoeg rechten om het bestand te maken of aan te passen"
1219
 
1220
+ #: deprecated.php:582
1221
  msgid "Not enough permissions to create the file"
1222
  msgstr "Niet genoeg rechten om het bestand te maken"
1223
 
1224
+ #: deprecated.php:626
1225
  msgid "Editing"
1226
  msgstr "Bewerken"
1227
 
1228
+ #: deprecated.php:670
1229
  msgid ""
1230
  "Congratulations! Pro version of the plugin is installed and activated "
1231
  "successfully."
1233
  "Hartelijk gefeliciteerd! De Pro-versie van de plugin is succesvol "
1234
  "geïnstalleerd en geactiveerd."
1235
 
1236
+ #: deprecated.php:680
1237
  msgid "Show Pro features"
1238
  msgstr "Toon de Pro functies"
1239
 
1240
+ #: deprecated.php:687
1241
  msgid "Enter your license key to install and activate"
1242
  msgstr "Voer uw licentiesleutel in om te installeren en te activeren"
1243
 
1244
+ #: deprecated.php:689
1245
  msgid "version of the plugin."
1246
  msgstr "versie van de plugin."
1247
 
1281
  msgid "SMM"
1282
  msgstr ""
1283
 
1284
+ #: product_list.php:22
1285
+ msgid "Best secure captcha plugin to protect your WordPress forms."
 
1286
  msgstr ""
1287
 
1288
+ #: product_list.php:32
1289
  msgid "Create your personal car rental/booking and reservation website."
1290
  msgstr ""
1291
 
1292
+ #: product_list.php:42
1293
  msgid ""
1294
  "Allow customers to reach you using secure contact form plugin any website "
1295
  "must have."
1296
  msgstr ""
1297
 
1298
+ #: product_list.php:52
1299
  msgid "Add unlimited number of contact forms to WordPress website."
1300
  msgstr ""
1301
 
1302
+ #: product_list.php:62
1303
  msgid "Save and manage Contact Form messages. Never lose important data."
1304
  msgstr ""
1305
 
1306
+ #: product_list.php:72
1307
  msgid "Add unlimited custom pages to WordPress admin dashboard."
1308
  msgstr ""
1309
 
1310
+ #: product_list.php:79
1311
  msgid "Add custom fields to WordPress website search results."
1312
  msgstr ""
1313
 
1314
+ #: product_list.php:86
1315
  msgid ""
1316
  "Add custom post types and taxonomies to WordPress website search results."
1317
  msgstr ""
1318
 
1319
+ #: product_list.php:96
1320
  msgid "Add PayPal and 2CO donate buttons to receive charity payments."
1321
  msgstr ""
1322
 
1323
+ #: product_list.php:103
1324
  msgid ""
1325
  "Get latest error log messages to diagnose website problems. Define and fix "
1326
  "issues faster."
1327
  msgstr ""
1328
 
1329
+ #: product_list.php:110
1330
  msgid ""
1331
  "Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and "
1332
  "widgets."
1333
  msgstr ""
1334
 
1335
+ #: product_list.php:120
1336
  msgid ""
1337
  "Add beautiful galleries, albums & images to your WordPress website in a few "
1338
  "clicks."
1339
  msgstr ""
1340
 
1341
+ #: product_list.php:130
1342
  msgid ""
1343
  "Add Google +1, Share, Follow, Hangout buttons and profile badge to WordPress "
1344
  "posts, pages and widgets."
1345
  msgstr ""
1346
 
1347
+ #: product_list.php:140
1348
  msgid ""
1349
  "Stronger security solution which protects your WordPress website from hacks "
1350
  "and unauthorized login attempts."
1351
  msgstr ""
1352
 
1353
+ #: product_list.php:150
1354
  msgid ""
1355
  "Add Adsense ads to WordPress website pages, posts, custom posts, search "
1356
  "results, categories, tags, and widgets."
1357
  msgstr ""
1358
 
1359
+ #: product_list.php:160
1360
  msgid "Add Google Analytics code to WordPress website and track basic stats."
1361
  msgstr ""
1362
 
1363
+ #: product_list.php:170
1364
  msgid ""
1365
  "Protect WordPress website forms from spam entries with Google Captcha "
1366
  "(reCaptcha)."
1367
  msgstr ""
1368
 
1369
+ #: product_list.php:180
1370
  msgid "Add customized Google maps to WordPress posts, pages and widgets."
1371
  msgstr ""
1372
 
1373
+ #: product_list.php:190
1374
  msgid ""
1375
  "Generate and add XML sitemap to WordPress website. Help search engines index "
1376
  "your blog."
1377
  msgstr ""
1378
 
1379
+ #: product_list.php:200
1380
  msgid ""
1381
  "Replace external WordPress website links with Google shortlinks and track "
1382
  "click stats."
1383
  msgstr ""
1384
 
1385
+ #: product_list.php:207
1386
  msgid ""
1387
  "Protect WordPress website – allow and deny access for certain IP addresses, "
1388
  "hostnames, etc."
1389
  msgstr ""
1390
 
1391
+ #: product_list.php:217
1392
  msgid ""
1393
  "Create your personal job board and listing WordPress website. Search jobs, "
1394
  "submit CV/resumes, choose candidates."
1395
  msgstr ""
1396
 
1397
+ #: product_list.php:224
1398
  msgid ""
1399
  "Protect WordPress website against brute force attacks. Limit rate of login "
1400
  "attempts."
1401
  msgstr ""
1402
 
1403
+ #: product_list.php:234
1404
  msgid ""
1405
  "Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. "
1406
  "5 plugins included – profile, insider, etc."
1407
  msgstr ""
1408
 
1409
+ #: product_list.php:244
1410
  msgid ""
1411
  "Translate WordPress website content to other languages manually. Create "
1412
  "multilingual pages, posts, widgets, menus, etc."
1413
  msgstr ""
1414
 
1415
+ #: product_list.php:254
1416
  msgid ""
1417
  "Add customizable pagination to WordPress website. Split long content to "
1418
  "multiple pages for better navigation."
1419
  msgstr ""
1420
 
1421
+ #: product_list.php:264
1422
  msgid ""
1423
  "Generate PDF files and print WordPress posts/pages. Customize document "
1424
  "header/footer styles and appearance."
1425
  msgstr ""
1426
 
1427
+ #: product_list.php:274
1428
  msgid ""
1429
  "Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, "
1430
  "Profile) to WordPress posts, pages and widgets."
1431
  msgstr ""
1432
 
1433
+ #: product_list.php:284
1434
  msgid ""
1435
  "Create your personal portfolio WordPress website. Manage and showcase past "
1436
  "projects to get more clients."
1437
  msgstr ""
1438
 
1439
+ #: product_list.php:294
1440
  msgid "Export WordPress posts to CSV file format easily. Configure data order."
1441
  msgstr ""
1442
 
1443
+ #: product_list.php:301
1444
  msgid ""
1445
  "Add extra fields to default WordPress user profile. The easiest way to "
1446
  "create and manage additional custom values."
1447
  msgstr ""
1448
 
1449
+ #: product_list.php:308
1450
  msgid ""
1451
  "Add and display HTML advertisement banner on WordPress website. Customize "
1452
  "bar styles and appearance."
1453
  msgstr ""
1454
 
1455
+ #: product_list.php:318
1456
  msgid ""
1457
  "Add customizable quotes and tips blocks to WordPress posts, pages and "
1458
  "widgets."
1459
  msgstr ""
1460
 
1461
+ #: product_list.php:325
1462
  msgid ""
1463
  "Add rating plugin to your WordPress website to receive feedback from your "
1464
  "customers."
1465
  msgstr ""
1466
 
1467
+ #: product_list.php:332
1468
  msgid ""
1469
  "Create your personal real estate WordPress website. Sell, rent and buy "
1470
  "properties. Add, search and browse listings easily."
1471
  msgstr ""
1472
 
1473
+ #: product_list.php:342
1474
  msgid ""
1475
  "Add related, featured, latest, and popular posts to your WordPress website. "
1476
  "Connect your blog readers with a relevant content."
1477
  msgstr ""
1478
 
1479
+ #: product_list.php:349
1480
  msgid ""
1481
  "Send bulk email messages to WordPress users. Custom templates, advanced "
1482
  "settings and detailed reports."
1483
  msgstr ""
1484
 
1485
+ #: product_list.php:359
1486
  msgid ""
1487
  "The best responsive slider plugin for your WordPress website. Create "
1488
  "beautifully animated slides just in a few clicks."
1489
  msgstr ""
1490
 
1491
+ #: product_list.php:366
1492
  msgid ""
1493
  "Configure SMTP server to receive email messages from WordPress to Gmail, "
1494
  "Yahoo, Hotmail and other services."
1495
  msgstr ""
1496
 
1497
+ #: product_list.php:373
1498
  msgid ""
1499
  "Add social media buttons and widgets to WordPress posts, pages and widgets. "
1500
  "FB, Twitter, G+1, Pinterest, LinkedIn."
1501
  msgstr ""
1502
 
1503
+ #: product_list.php:383
1504
  msgid ""
1505
  "Add social media login, registration, and commenting to your WordPress "
1506
  "website."
1507
  msgstr ""
1508
 
1509
+ #: product_list.php:390
1510
  msgid ""
1511
  "Add email newsletter sign up form to WordPress posts, pages and widgets. "
1512
  "Collect data and subscribe your users."
1513
  msgstr ""
1514
 
1515
+ #: product_list.php:400
1516
  msgid ""
1517
  "Add testimonials and feedbacks from your customers to WordPress website "
1518
  "posts, pages, and widgets."
1519
  msgstr ""
1520
 
1521
+ #: product_list.php:407
1522
  msgid ""
1523
  "Best timesheet plugin for WordPress. Track employee time, streamline "
1524
  "attendance and generate reports."
1525
  msgstr ""
1526
 
1527
+ #: product_list.php:417
1528
  msgid ""
1529
  "Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts "
1530
  "and pages."
1531
  msgstr ""
1532
 
1533
+ #: product_list.php:427
1534
  msgid ""
1535
  "Automatically check and update WordPress website core with all installed "
1536
  "plugins and themes to the latest versions."
1537
  msgstr ""
1538
 
1539
+ #: product_list.php:437
1540
  msgid ""
1541
  "Powerful user role management plugin for WordPress website. Create, edit, "
1542
  "copy, and delete user roles."
1543
  msgstr ""
1544
 
1545
+ #: product_list.php:447
1546
  msgid ""
1547
  "Display live count of online visitors who are currently browsing your "
1548
  "WordPress website."
1549
  msgstr ""
1550
 
1551
+ #: product_list.php:457
1552
  msgid ""
1553
  "Backup and export Zendesk Help Center content automatically to your "
1554
  "WordPress website database."
1555
  msgstr ""
1556
 
1557
+ #~ msgid "Congratulations! Pro Membership license is activated successfully."
1558
+ #~ msgstr ""
1559
+ #~ "Hartelijk gefeliciteerd! Uw Pro Membership licentie is succesvol "
1560
+ #~ "geactiveerd."
1561
+
1562
+ #~ msgid "Email with system info is sent to"
1563
+ #~ msgstr "E-mail met systeeminformatie wordt verzonden naar"
1564
+
1565
+ #~ msgid "Browse Free WordPress Themes"
1566
+ #~ msgstr "Browse Gratis WordPress Themas"
1567
+
1568
  #~ msgid ""
1569
  #~ "You can use one license of the Pro plugin for one domain only. Please "
1570
  #~ "check and edit your license or domain if necessary using you personal "
bws_menu/languages/bestwebsoft-pl_PL.mo CHANGED
Binary file
bws_menu/languages/bestwebsoft-pl_PL.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2017-08-28 09:55+0300\n"
6
- "PO-Revision-Date: 2017-08-28 09:55+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Damian Dąbrowski <contact@codester.pl>\n"
9
  "Language: pl_PL\n"
@@ -43,6 +43,11 @@ msgstr "Wtyczki"
43
  msgid "Like the plugin?"
44
  msgstr "Oceń wtyczkę"
45
 
 
 
 
 
 
46
  #: bws_functions.php:94
47
  msgid "Rate it"
48
  msgstr ""
@@ -51,7 +56,7 @@ msgstr ""
51
  msgid "Need help?"
52
  msgstr "Potrzebujesz pomocy?"
53
 
54
- #: bws_functions.php:104 bws_functions.php:911 class-bws-settings.php:1056
55
  msgid "Visit Help Center"
56
  msgstr ""
57
 
@@ -60,7 +65,7 @@ msgstr ""
60
  msgid "Want to support the plugin?"
61
  msgstr "Oceń wtyczkę"
62
 
63
- #: bws_functions.php:108 bws_menu.php:553
64
  msgid "Donate"
65
  msgstr ""
66
 
@@ -76,7 +81,8 @@ msgid ""
76
  "otherwise the Pro plugin will be deactivated."
77
  msgstr ""
78
 
79
- #: bws_functions.php:128 bws_functions.php:340 class-bws-settings.php:144
 
80
  msgid "Learn More"
81
  msgstr "Dowiedz się więcej"
82
 
@@ -98,7 +104,7 @@ msgstr ""
98
  "Twoja licencja wygasła. Aby podtrzymać szybki dostęp do pomocy i "
99
  "aktualizacji powinieneś przedłużyć licencję."
100
 
101
- #: bws_functions.php:147 bws_functions.php:383 deprecated.php:584
102
  msgid "Learn more"
103
  msgstr "Dowiedz się więcej"
104
 
@@ -128,70 +134,70 @@ msgstr ""
128
  msgid "Thank you for installing %s plugin!"
129
  msgstr ""
130
 
131
- #: bws_functions.php:209
132
  msgid "Let's get started"
133
  msgstr "Zaczynajmny"
134
 
135
- #: bws_functions.php:210 bws_functions.php:243 bws_menu.php:557
136
- #: bws_menu.php:559
137
  msgid "Settings"
138
  msgstr "Ustawienia"
139
 
140
- #: bws_functions.php:212 bws_menu.php:328 class-bws-settings.php:745
141
- #: class-bws-settings.php:1058 class-bws-settings.php:1068 deprecated.php:694
142
  msgid "or"
143
  msgstr "lub"
144
 
145
- #: bws_functions.php:213 bws_functions.php:245
146
  msgid "Add New"
147
  msgstr "Dodaj nowy"
148
 
149
- #: bws_functions.php:217 bws_functions.php:227 bws_functions.php:331
150
- #: bws_functions.php:379 bws_functions.php:481
151
  msgid "Close notice"
152
  msgstr "Zamknij powiadomienie"
153
 
154
- #: bws_functions.php:232
155
  #, fuzzy
156
  msgid "Thank you for installing plugins by BestWebSoft!"
157
  msgstr "Dziękujemy za instalację"
158
 
159
- #: bws_functions.php:234
160
  #, fuzzy
161
  msgid "More Details"
162
  msgstr "Szczegóły"
163
 
164
- #: bws_functions.php:235
165
  #, fuzzy
166
  msgid "Less Details"
167
  msgstr "Szczegóły"
168
 
169
- #: bws_functions.php:263
170
  msgid "Deprecated function(-s) is used on the site here:"
171
  msgstr ""
172
 
173
- #: bws_functions.php:277
174
  msgid ""
175
  "This function(-s) will be removed over time. Please update the product(-s)."
176
  msgstr ""
177
 
178
- #: bws_functions.php:336
179
  msgid "It’s time to upgrade your"
180
  msgstr "Czas by zaktualizować"
181
 
182
- #: bws_functions.php:336
183
  msgid "to"
184
  msgstr "do"
185
 
186
- #: bws_functions.php:336
187
  msgid "version!"
188
  msgstr "wersji!"
189
 
190
- #: bws_functions.php:337
191
  msgid "Extend standard plugin functionality with new great options."
192
  msgstr "Rozszerz podstawowe funkcje wtyczki o nowe wspaniałe opcje."
193
 
194
- #: bws_functions.php:383
195
  #, fuzzy, php-format
196
  msgid ""
197
  "Your license key for %s expires on %s and you won't be granted TOP-PRIORITY "
@@ -200,36 +206,36 @@ msgstr ""
200
  "zostaniesz wówczas pozbawiony SZYBKIEGO DOSTĘDO DO SUPPORTU oraz "
201
  "AKTUALIZACJI."
202
 
203
- #: bws_functions.php:476
204
  #, php-format
205
  msgid "Thank you for choosing %s plugin!"
206
  msgstr ""
207
 
208
- #: bws_functions.php:477
209
  msgid ""
210
  "If you have a feature, suggestion or idea you'd like to see in the plugin, "
211
  "we'd love to hear about it!"
212
  msgstr ""
213
 
214
- #: bws_functions.php:478
215
  msgid "Suggest a Feature"
216
  msgstr ""
217
 
218
- #: bws_functions.php:494 class-bws-settings.php:538 class-bws-settings.php:541
219
- #: class-bws-settings.php:593 class-bws-settings.php:596
220
  msgid "Notice"
221
  msgstr "Uwaga"
222
 
223
- #: bws_functions.php:494
224
  msgid "The plugin's settings have been changed."
225
  msgstr "Ustawienia wtyczki zostały zmienione."
226
 
227
- #: bws_functions.php:495 class-bws-settings.php:183 class-bws-settings.php:203
228
- #: deprecated.php:640
229
  msgid "Save Changes"
230
  msgstr "Zapisz zmiany"
231
 
232
- #: bws_functions.php:509
233
  #, fuzzy
234
  msgid ""
235
  "You can always look at premium options by checking the \"Pro Options\" in "
@@ -238,82 +244,82 @@ msgstr ""
238
  "Zawsze możesz sprawdzić funkcje premium poprzez kliknięcie \"Pokaż funkcje "
239
  "PRO\" w zakładce \"Go PRO\""
240
 
241
- #: bws_functions.php:647
242
  msgid "Add BWS Shortcode"
243
  msgstr ""
244
 
245
- #: bws_functions.php:648
246
  msgid "Add BWS Plugins Shortcode"
247
  msgstr "Dodaj BWS Shortcode"
248
 
249
- #: bws_functions.php:667
250
  #, fuzzy
251
  msgid "Add shortcode"
252
  msgstr "Dodaj BWS Shortcode"
253
 
254
- #: bws_functions.php:667
255
  msgid "Add BestWebSoft plugins' shortcodes using this button."
256
  msgstr ""
257
 
258
- #: bws_functions.php:723
259
  msgid "Close"
260
  msgstr "Zamknij"
261
 
262
- #: bws_functions.php:815
263
  #, fuzzy
264
  msgid "Are you sure you want to restore default settings?"
265
  msgstr ""
266
  "Czy jesteś pewien, że chcesz przywrócić wszystkie ustawienia do wartości "
267
  "domyślnych?"
268
 
269
- #: bws_functions.php:818
270
  msgid "Yes, restore all settings"
271
  msgstr "Tak, przywróć wszystkie ustawienia"
272
 
273
- #: bws_functions.php:819
274
  msgid "No, go back to the settings page"
275
  msgstr "Nie, wróć do ustawień"
276
 
277
- #: bws_functions.php:861
278
  msgid "Plugin"
279
  msgstr "Wtyczka"
280
 
281
- #: bws_functions.php:870
282
  msgid "Shortcode settings"
283
  msgstr "Ustawienia shortcode"
284
 
285
- #: bws_functions.php:875
286
  msgid "The shortcode will be inserted"
287
  msgstr "Shortcode zostanie umieszczony"
288
 
289
- #: bws_functions.php:916
290
  msgid "FAQ"
291
  msgstr "FAQ"
292
 
293
- #: bws_functions.php:922
294
  msgid "For more information:"
295
  msgstr ""
296
 
297
- #: bws_functions.php:923
298
  msgid "Documentation"
299
  msgstr ""
300
 
301
- #: bws_functions.php:924
302
  msgid "Video Instructions"
303
  msgstr ""
304
 
305
- #: bws_functions.php:925
306
  #, fuzzy
307
  msgid "Submit a Request"
308
  msgstr "送信ボタン"
309
 
310
- #: bws_menu.php:101 class-bws-settings.php:790 deprecated.php:322
311
  msgid "Wrong license key"
312
  msgstr "Niepoprawny klucz licencji"
313
 
314
- #: bws_menu.php:122 class-bws-settings.php:816 class-bws-settings.php:883
315
- #: class-bws-settings.php:919 deprecated.php:133 deprecated.php:199
316
- #: deprecated.php:352
317
  msgid ""
318
  "Something went wrong. Please try again later. If the error appears again, "
319
  "please contact us"
@@ -321,14 +327,14 @@ msgstr ""
321
  "Coś poszło nie tak. Spróbuj ponownie później. Jeśli błąd pojawi się ponownie "
322
  "proszę skontaktować się z nami"
323
 
324
- #: bws_menu.php:122 class-bws-settings.php:816 class-bws-settings.php:883
325
- #: class-bws-settings.php:919 deprecated.php:133 deprecated.php:199
326
- #: deprecated.php:352
327
  msgid "We are sorry for inconvenience."
328
  msgstr "Przepraszamy za niedogodności."
329
 
330
- #: bws_menu.php:128 class-bws-settings.php:822 class-bws-settings.php:925
331
- #: deprecated.php:139 deprecated.php:358
332
  msgid "Wrong license key."
333
  msgstr "Niepoprawny klucz licencji"
334
 
@@ -343,11 +349,11 @@ msgstr "Klucz licencji został przypisany do innej strony."
343
  msgid "Log in"
344
  msgstr ""
345
 
346
- #: bws_menu.php:132 bws_menu.php:334 deprecated.php:261
347
  msgid "Unfortunately, you have exceeded the number of available tries per day."
348
  msgstr "Niestety, przekroczono dzienną liczbę dostępnych prób."
349
 
350
- #: bws_menu.php:134 class-bws-settings.php:931 deprecated.php:364
351
  #, fuzzy, php-format
352
  msgid ""
353
  "Unfortunately, Your license has expired. To continue getting top-priority "
@@ -356,7 +362,7 @@ msgstr ""
356
  "Niestety, Twoja licencja wygasła. By nadal korzystać z szybkiego dostępu do "
357
  "wsparcia oraz aktualizacji powinieneś przedłużyć licencję."
358
 
359
- #: bws_menu.php:136 class-bws-settings.php:933 deprecated.php:366
360
  msgid ""
361
  "Unfortunately, the Pro licence was already installed to this domain. The Pro "
362
  "Trial license can be installed only once."
@@ -364,20 +370,19 @@ msgstr ""
364
  "Niestety, licencja PRO była już przypisana do tej domeny. Licencja testowa "
365
  "może być wykorzystana tylko raz."
366
 
367
- #: bws_menu.php:142 class-bws-settings.php:837 deprecated.php:153
368
  msgid "The license key is valid."
369
  msgstr "Klucz licencji jest poprawny"
370
 
371
- #: bws_menu.php:144 class-bws-settings.php:840 deprecated.php:156
372
  msgid "Your license will expire on"
373
  msgstr "Twoja licencja wygaśnie"
374
 
375
  #: bws_menu.php:146
376
- #, fuzzy
377
- msgid "Congratulations! Pro Membership license is activated successfully."
378
- msgstr "Gratulacje! Licencja do wersji PRO została aktywowana pomyślnie."
379
 
380
- #: bws_menu.php:153 class-bws-settings.php:1005 deprecated.php:435
381
  msgid ""
382
  "Something went wrong. Try again later or upload the plugin manually. We are "
383
  "sorry for inconvenience."
@@ -541,71 +546,71 @@ msgstr "Nieaktywne wtyczki"
541
  msgid "Please enter a valid email address."
542
  msgstr "Podaj poprawny adres email"
543
 
544
- #: bws_menu.php:264
545
- #, fuzzy
546
- msgid "Email with system info is sent to"
547
- msgstr "Wiadomość z informacjami systemowymi zostanie wysłana do "
548
 
549
- #: bws_menu.php:268
550
  msgid "Thank you for contacting us."
551
  msgstr "Dziękujemy za kontakt."
552
 
553
- #: bws_menu.php:291
554
  msgid "Sorry, email message could not be delivered."
555
  msgstr "Przepraszamy, wiadomość nie została dostarczona."
556
 
557
- #: bws_menu.php:307 bws_menu.php:311 bws_menu.php:360 deprecated.php:91
558
  msgid "Plugins"
559
  msgstr "Wtyczki"
560
 
561
- #: bws_menu.php:308 bws_menu.php:312 bws_menu.php:611 deprecated.php:92
562
  msgid "Themes"
563
  msgstr "Motywy"
564
 
565
- #: bws_menu.php:309 bws_menu.php:313 bws_menu.php:641
566
  msgid "System status"
567
  msgstr "Status systemu"
568
 
569
- #: bws_menu.php:317
570
  msgid "Support"
571
  msgstr "サポート"
572
 
573
- #: bws_menu.php:318
574
  msgid "Manage purchased licenses & subscriptions"
575
  msgstr ""
576
 
577
- #: bws_menu.php:326
578
  #, php-format
579
  msgid "Get Access to %s+ Premium Plugins"
580
  msgstr ""
581
 
582
- #: bws_menu.php:328
583
  #, fuzzy
584
  msgid "Subscribe to Pro Membership"
585
  msgstr "有効なテーマ"
586
 
587
- #: bws_menu.php:336 bws_menu.php:347 class-bws-settings.php:758
588
  #: deprecated.php:227
589
  msgid "Check license key"
590
  msgstr "Sprawdź klucz licencji"
591
 
592
- #: bws_menu.php:339
593
  #, fuzzy
594
  msgid "Enter your license key"
595
  msgstr "Podaj klucz licencji"
596
 
597
- #: bws_menu.php:345 bws_menu.php:563 bws_menu.php:572
598
- #: class-bws-settings.php:737 deprecated.php:259 deprecated.php:267
599
- #: deprecated.php:629 deprecated.php:700 deprecated.php:709
600
  msgid "Activate"
601
  msgstr "Aktywuj"
602
 
603
- #: bws_menu.php:361
604
  #, fuzzy
605
  msgid "Upload Plugin"
606
  msgstr "Wtyczka"
607
 
608
- #: bws_menu.php:365
609
  #, php-format
610
  msgid ""
611
  "The plugin generated %d characters of <strong>unexpected output</strong> "
@@ -614,150 +619,148 @@ msgid ""
614
  "or removing this plugin."
615
  msgstr ""
616
 
617
- #: bws_menu.php:367
618
  msgid ""
619
  "Plugin could not be activated because it triggered a <strong>fatal error</"
620
  "strong>."
621
  msgstr ""
622
 
623
- #: bws_menu.php:370
624
  msgid "Plugin <strong>activated</strong>."
625
  msgstr ""
626
 
627
- #: bws_menu.php:377
628
  #, fuzzy
629
  msgid "Installing Plugin"
630
  msgstr "Zainstalowane"
631
 
632
- #: bws_menu.php:383
633
  msgid "Downloading install package from"
634
  msgstr ""
635
 
636
- #: bws_menu.php:400 bws_menu.php:431 bws_menu.php:442
637
- #: class-bws-settings.php:957 class-bws-settings.php:979
638
- #: class-bws-settings.php:1001 deprecated.php:387 deprecated.php:409
639
- #: deprecated.php:431
640
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
641
  msgstr ""
642
  "Pobieranie archiwum zip zakończyło się niepowodzeniem. Proszę dodać wtyczkę "
643
  "manualnie"
644
 
645
- #: bws_menu.php:408
646
  msgid "Unpacking the package"
647
  msgstr ""
648
 
649
- #: bws_menu.php:413 bws_menu.php:421
650
  #, fuzzy
651
  msgid "Installing the plugin"
652
  msgstr "Zainstalowane"
653
 
654
- #: bws_menu.php:417 class-bws-settings.php:969 deprecated.php:399
655
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
656
  msgstr ""
657
  "Otwieranie archiwum zip zakończyło się niepowodzeniem. Proszę dodać wtyczkę "
658
  "manualnie"
659
 
660
- #: bws_menu.php:424 class-bws-settings.php:975 deprecated.php:405
661
  msgid ""
662
  "Your server does not support either ZipArchive or Phar. Please, upload the "
663
  "plugin manually"
664
  msgstr ""
665
  "Twój serwer nie wspiera ZipAcrchive lub Phar. Proszę dodać wtyczkę manualnie"
666
 
667
- #: bws_menu.php:427
668
  #, php-format
669
  msgid "The plugin %s is successfully installed."
670
  msgstr ""
671
 
672
- #: bws_menu.php:434 class-bws-settings.php:982 deprecated.php:412
673
  msgid "UploadDir is not writable. Please, upload the plugin manually"
674
  msgstr ""
675
  "Folder uploadu jest chroniony przez zapisem. Proszę dodać wtyczkę manualnie"
676
 
677
- #: bws_menu.php:439
678
  #, fuzzy
679
  msgid "Activate Plugin"
680
  msgstr "Aktywne wtyczki"
681
 
682
- #: bws_menu.php:439 bws_menu.php:445
683
  msgid "Return to BestWebSoft Panel"
684
  msgstr ""
685
 
686
- #: bws_menu.php:449 bws_menu.php:464 bws_menu.php:593
687
  msgid "All"
688
  msgstr "Wszystko"
689
 
690
- #: bws_menu.php:450 bws_menu.php:630
691
  msgid "Installed"
692
  msgstr "Zainstalowane"
693
 
694
- #: bws_menu.php:451
695
  #, fuzzy
696
  msgid "Not Installed"
697
  msgstr "Zainstalowane"
698
 
699
- #: bws_menu.php:457
700
  msgid "Filter results"
701
  msgstr ""
702
 
703
- #: bws_menu.php:460 bws_menu.php:589
704
  msgid "Category"
705
  msgstr ""
706
 
707
- #: bws_menu.php:524
708
  #, fuzzy
709
  msgid "Not installed"
710
  msgstr "Zainstalowane"
711
 
712
- #: bws_menu.php:528
713
  #, fuzzy
714
  msgid "Renew to get updates"
715
  msgstr "ページに転送"
716
 
717
- #: bws_menu.php:531
718
  #, fuzzy, php-format
719
  msgid "Update to v %s"
720
  msgstr "Aktualizuj do wersji %s"
721
 
722
- #: bws_menu.php:543 bws_menu.php:566 bws_menu.php:575
723
  msgid "Install Now"
724
  msgstr "Instaluj teraz"
725
 
726
- #: bws_menu.php:549 class-bws-settings.php:157 class-bws-settings.php:1065
727
  msgid "Upgrade to Pro"
728
  msgstr ""
729
 
730
- #: bws_menu.php:563 bws_menu.php:572
731
  msgid "Activate this plugin"
732
  msgstr "Aktywuj wtyczkę"
733
 
734
- #: bws_menu.php:575
735
  #, fuzzy
736
  msgid "Install this plugin"
737
  msgstr "Zainstalowane"
738
 
739
- #: bws_menu.php:584
740
  msgid "Nothing found. Try another criteria."
741
  msgstr ""
742
 
743
- #: bws_menu.php:621
744
  #, php-format
745
  msgid "By %s"
746
  msgstr "Od %s"
747
 
748
- #: bws_menu.php:628
749
  msgid "Already Installed"
750
  msgstr "Zainstalowane"
751
 
752
- #: bws_menu.php:638
753
- msgid "Browse Free WordPress Themes"
754
  msgstr ""
755
 
756
- #: bws_menu.php:647
757
  msgid "Send to support"
758
  msgstr "Wyślij do supportu"
759
 
760
- #: bws_menu.php:654
761
  msgid "Send to custom email &#187;"
762
  msgstr "Prześlij na własny adres &#187;"
763
 
@@ -817,15 +820,15 @@ msgstr "Ustawienia wtyczki zostały zmienione."
817
  msgid "Custom Code"
818
  msgstr ""
819
 
820
- #: class-bws-settings.php:427 deprecated.php:497
821
  msgid "You do not have sufficient permissions to edit plugins for this site."
822
  msgstr ""
823
 
824
- #: class-bws-settings.php:432 deprecated.php:618
825
  msgid "These styles will be added to the header on all pages of your site."
826
  msgstr ""
827
 
828
- #: class-bws-settings.php:435 deprecated.php:620
829
  #, php-format
830
  msgid ""
831
  "This PHP code will be hooked to the %s action and will be printed on front "
@@ -836,14 +839,14 @@ msgstr ""
836
  msgid "These code will be added to the header on all pages of your site."
837
  msgstr ""
838
 
839
- #: class-bws-settings.php:446 deprecated.php:644
840
  #, php-format
841
  msgid ""
842
  "You need to make this files writable before you can save your changes. See "
843
  "%s the Codex %s for more information."
844
  msgstr ""
845
 
846
- #: class-bws-settings.php:456 deprecated.php:626
847
  msgid "Browsing"
848
  msgstr ""
849
 
@@ -852,93 +855,93 @@ msgstr ""
852
  msgid "Activate custom %s code."
853
  msgstr ""
854
 
855
- #: class-bws-settings.php:469 deprecated.php:633
856
  #, fuzzy, php-format
857
  msgid "Learn more about %s"
858
  msgstr "Dowiedz się więcej"
859
 
860
- #: class-bws-settings.php:529
861
  msgid "Miscellaneous Settings"
862
  msgstr ""
863
 
864
- #: class-bws-settings.php:538 class-bws-settings.php:593
865
  #, php-format
866
  msgid ""
867
  "It is prohibited to change %s settings on this site in the %s network "
868
  "settings."
869
  msgstr ""
870
 
871
- #: class-bws-settings.php:541 class-bws-settings.php:596
872
  #, php-format
873
  msgid ""
874
  "It is prohibited to view %s settings on this site in the %s network settings."
875
  msgstr ""
876
 
877
- #: class-bws-settings.php:550
878
  #, fuzzy
879
  msgid "Pro Options"
880
  msgstr "Pro Plugins"
881
 
882
- #: class-bws-settings.php:554
883
  msgid "Enable to display plugin Pro options."
884
  msgstr ""
885
 
886
- #: class-bws-settings.php:560
887
  msgid "Track Usage"
888
  msgstr ""
889
 
890
- #: class-bws-settings.php:564
891
  msgid ""
892
  "Enable to allow tracking plugin usage anonymously in order to make it better."
893
  msgstr ""
894
 
895
- #: class-bws-settings.php:569
896
  #, fuzzy
897
  msgid "Default Settings"
898
  msgstr "Ustawienia"
899
 
900
- #: class-bws-settings.php:571
901
  #, fuzzy
902
  msgid "Restore Settings"
903
  msgstr "Przywróć ustawienia"
904
 
905
- #: class-bws-settings.php:572
906
  #, fuzzy
907
  msgid "This will restore plugin settings to defaults."
908
  msgstr "Przywróć wszystkie ustawienia do wartości domyśłnych"
909
 
910
- #: class-bws-settings.php:584
911
  msgid "Import / Export"
912
  msgstr ""
913
 
914
- #: class-bws-settings.php:700 class-bws-settings.php:733
915
- #: class-bws-settings.php:755
916
  #, fuzzy
917
  msgid "License Key"
918
  msgstr "Niepoprawny klucz licencji"
919
 
920
- #: class-bws-settings.php:723
921
  #, fuzzy
922
  msgid "Congratulations! Pro license is activated successfully."
923
  msgstr "Gratulacje! Licencja do wersji PRO została aktywowana pomyślnie."
924
 
925
- #: class-bws-settings.php:724
926
  #, php-format
927
  msgid "You will be automatically redirected to the %s in %s seconds."
928
  msgstr ""
929
 
930
- #: class-bws-settings.php:724
931
  #, fuzzy
932
  msgid "Settings page"
933
  msgstr "設定保存."
934
 
935
- #: class-bws-settings.php:739
936
  #, php-format
937
  msgid "Enter your license key to activate %s and get premium plugin features."
938
  msgstr ""
939
 
940
- #: class-bws-settings.php:742 class-bws-settings.php:929 deprecated.php:362
941
- #: deprecated.php:703
942
  msgid ""
943
  "Unfortunately, you have exceeded the number of available tries per day. "
944
  "Please, upload the plugin manually."
@@ -946,12 +949,12 @@ msgstr ""
946
  "Niestety, przekroczono liczb dostępnych prób na dziś. Proszę dodać wtyczkę "
947
  "manualnie."
948
 
949
- #: class-bws-settings.php:745 deprecated.php:694
950
  #, php-format
951
  msgid "Start Your Free %s-Day Trial Now"
952
  msgstr "Rozpocznij swój darmowy %s-dniowy okres testowy"
953
 
954
- #: class-bws-settings.php:760
955
  #, fuzzy
956
  msgid ""
957
  "If necessary, you can check if the license key is correct or reenter it in "
@@ -961,28 +964,28 @@ msgstr ""
961
  "w polu poniżej. Możesz znaleźć swój klucz na naszej stronie w strefie - "
962
  "Panel Klienta"
963
 
964
- #: class-bws-settings.php:765
965
  msgid "Manage License Settings"
966
  msgstr ""
967
 
968
- #: class-bws-settings.php:767
969
  #, fuzzy
970
  msgid "Login to Client Area"
971
  msgstr "Panel Klienta"
972
 
973
- #: class-bws-settings.php:769
974
  msgid ""
975
  "Manage active licenses, download BWS products, and view your payment history "
976
  "using BestWebSoft Client Area."
977
  msgstr ""
978
 
979
- #: class-bws-settings.php:824 class-bws-settings.php:927 deprecated.php:141
980
- #: deprecated.php:360
981
  #, fuzzy
982
  msgid "This license key is bound to another site."
983
  msgstr "Klucz licencji został przypisany do innej strony."
984
 
985
- #: class-bws-settings.php:826 deprecated.php:143
986
  msgid ""
987
  "This license key is valid, but Your license has expired. If you want to "
988
  "update our plugin in future, you should extend the license."
@@ -990,11 +993,11 @@ msgstr ""
990
  "Klucz jest poprawny, jednak Twoja licencja wygasła. Jeśli chcesz "
991
  "aktualizować naszą wtyczkę w przyszłości powinieneś przedłużyć licencję."
992
 
993
- #: class-bws-settings.php:828 deprecated.php:145
994
  msgid "Unfortunately, you have exceeded the number of available tries."
995
  msgstr "Niestety, przekroczono liczbę dostępnych prób."
996
 
997
- #: class-bws-settings.php:830 deprecated.php:147
998
  msgid ""
999
  "Unfortunately, the Pro Trial licence was already installed to this domain. "
1000
  "The Pro Trial license can be installed only once."
@@ -1002,11 +1005,11 @@ msgstr ""
1002
  "Niestety, licencja PRO była już przypisana do tej domeny. Licencja testowa "
1003
  "może być wykorzystana tylko raz."
1004
 
1005
- #: class-bws-settings.php:835 deprecated.php:151
1006
  msgid "The Pro Trial license key is valid."
1007
  msgstr "Klucz licencji do testowej wersji PRO jest poprawny."
1008
 
1009
- #: class-bws-settings.php:843 deprecated.php:159 deprecated.php:246
1010
  #, php-format
1011
  msgid ""
1012
  "In order to continue using the plugin it is necessary to buy a %s license."
@@ -1014,121 +1017,147 @@ msgstr ""
1014
  "W celu dalszego wykorzystywania wtyczki niezbędne jest wykupienie licencji "
1015
  "%s."
1016
 
1017
- #: class-bws-settings.php:1040 deprecated.php:463
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1018
  msgid "Please, enter Your license key"
1019
  msgstr "Proszę podać klucz licencji."
1020
 
1021
- #: class-bws-settings.php:1052
1022
  #, fuzzy
1023
  msgid "Need Help?"
1024
  msgstr "Potrzebujesz pomocy?"
1025
 
1026
- #: class-bws-settings.php:1054
1027
  msgid "Read the Instruction"
1028
  msgstr ""
1029
 
1030
- #: class-bws-settings.php:1058
1031
  msgid "Watch the Video"
1032
  msgstr ""
1033
 
1034
- #: class-bws-settings.php:1069
1035
  #, fuzzy
1036
  msgid "Start Your Free Trial"
1037
  msgstr "Rozpocznij swój darmowy %s-dniowy okres testowy"
1038
 
1039
- #: deactivation-form.php:26
1040
  msgid "Need help? We are ready to answer your questions."
1041
  msgstr ""
1042
 
1043
- #: deactivation-form.php:26
1044
  msgid "Contact Support"
1045
  msgstr ""
1046
 
1047
- #: deactivation-form.php:31
1048
  msgid "The plugin is not working"
1049
  msgstr ""
1050
 
1051
- #: deactivation-form.php:33
1052
  msgid "Kindly share what didn't work so we can fix it in future updates..."
1053
  msgstr ""
1054
 
1055
- #: deactivation-form.php:37
1056
  msgid "The plugin didn't work as expected"
1057
  msgstr ""
1058
 
1059
- #: deactivation-form.php:39
1060
  msgid "What did you expect?"
1061
  msgstr ""
1062
 
1063
- #: deactivation-form.php:43
1064
  msgid "The plugin suddenly stopped working"
1065
  msgstr ""
1066
 
1067
- #: deactivation-form.php:50
1068
  msgid "The plugin broke my site"
1069
  msgstr ""
1070
 
1071
- #: deactivation-form.php:57
1072
  msgid "I couldn't understand how to get it work"
1073
  msgstr ""
1074
 
1075
- #: deactivation-form.php:64
1076
  msgid "I found a better plugin"
1077
  msgstr ""
1078
 
1079
- #: deactivation-form.php:66
1080
  msgid "What's the plugin name?"
1081
  msgstr ""
1082
 
1083
- #: deactivation-form.php:70
1084
  msgid "The plugin is great, but I need specific feature that you don't support"
1085
  msgstr ""
1086
 
1087
- #: deactivation-form.php:72
1088
  msgid "What feature?"
1089
  msgstr ""
1090
 
1091
- #: deactivation-form.php:76
1092
  msgid "I no longer need the plugin"
1093
  msgstr ""
1094
 
1095
- #: deactivation-form.php:82
1096
  msgid "It's a temporary deactivation, I'm just debugging an issue"
1097
  msgstr ""
1098
 
1099
- #: deactivation-form.php:88
1100
  msgid "Other"
1101
  msgstr ""
1102
 
1103
- #: deactivation-form.php:122
1104
  msgid "Quick Feedback"
1105
  msgstr ""
1106
 
1107
- #: deactivation-form.php:123
1108
  msgid "If you have a moment, please let us know why you are deactivating"
1109
  msgstr ""
1110
 
1111
- #: deactivation-form.php:128
1112
  msgid "Anonymous feedback"
1113
  msgstr ""
1114
 
1115
- #: deactivation-form.php:130
1116
  msgid "Cancel"
1117
  msgstr ""
1118
 
1119
- #: deactivation-form.php:230
1120
  msgid "Processing"
1121
  msgstr ""
1122
 
1123
- #: deactivation-form.php:259
1124
  msgid "Submit & Deactivate"
1125
  msgstr ""
1126
 
1127
- #: deactivation-form.php:276
1128
  msgid "Please tell us the reason so we can improve it."
1129
  msgstr ""
1130
 
1131
- #: deactivation-form.php:344
1132
  msgid "Deactivate"
1133
  msgstr ""
1134
 
@@ -1161,83 +1190,83 @@ msgstr ""
1161
  "(login to adres email podany przy zakupie). Jeśli to koniczne użyj opcji "
1162
  "\"Zgubiłeś swoje hasło?\"."
1163
 
1164
- #: deprecated.php:247
1165
  #, fuzzy
1166
  msgid "After that, you can activate it by entering your license key."
1167
  msgstr "Po wszystkim możesz aktywować wtyczkę poprzez podanie klucza licencji."
1168
 
1169
- #: deprecated.php:249 deprecated.php:688
1170
  msgid "License key can be found in the"
1171
  msgstr ""
1172
 
1173
- #: deprecated.php:251 deprecated.php:690
1174
  #, fuzzy
1175
  msgid "(your username is the email address specified during the purchase)."
1176
  msgstr "(twoja nazwa użytkownika to email podany podczas zakupu)."
1177
 
1178
- #: deprecated.php:278
1179
  #, fuzzy
1180
  msgid ""
1181
  "Congratulations! The Pro license of the plugin is activated successfully."
1182
  msgstr "Gratulacje! Licencja do wersji PRO została aktywowana pomyślnie."
1183
 
1184
- #: deprecated.php:280 deprecated.php:669
1185
  msgid "Please, go to"
1186
  msgstr "Proszę przejść do"
1187
 
1188
- #: deprecated.php:280 deprecated.php:669
1189
  msgid "the setting page"
1190
  msgstr "ustawień"
1191
 
1192
- #: deprecated.php:281 deprecated.php:670
1193
  msgid "You will be redirected automatically in 5 seconds."
1194
  msgstr "Zostaniesz automatycznie przekierowany w ciągu 5 sekund."
1195
 
1196
- #: deprecated.php:315
1197
  msgid "Check premium options on the plugin settings page!"
1198
  msgstr "Sprawdź dodatkowe opcje premium w ustawieniach wtyczki."
1199
 
1200
- #: deprecated.php:478
1201
  msgid "Restore all plugin settings to defaults"
1202
  msgstr "Przywróć wszystkie ustawienia do wartości domyśłnych"
1203
 
1204
- #: deprecated.php:480
1205
  msgid "Restore settings"
1206
  msgstr "Przywróć ustawienia"
1207
 
1208
- #: deprecated.php:548 deprecated.php:575
1209
  #, php-format
1210
  msgid "File %s edited successfully."
1211
  msgstr ""
1212
 
1213
- #: deprecated.php:550 deprecated.php:577
1214
  msgid "Not enough permissions to create or update the file"
1215
  msgstr ""
1216
 
1217
- #: deprecated.php:580
1218
  msgid "Not enough permissions to create the file"
1219
  msgstr ""
1220
 
1221
- #: deprecated.php:624
1222
  msgid "Editing"
1223
  msgstr ""
1224
 
1225
- #: deprecated.php:667
1226
  #, fuzzy
1227
  msgid ""
1228
  "Congratulations! Pro version of the plugin is installed and activated "
1229
  "successfully."
1230
  msgstr "Gratulacje! Wersja PRO została pobrana i aktywowana pomyślnie."
1231
 
1232
- #: deprecated.php:677
1233
  msgid "Show Pro features"
1234
  msgstr "Pokaż funkcje PRO"
1235
 
1236
- #: deprecated.php:684
1237
  msgid "Enter your license key to install and activate"
1238
  msgstr ""
1239
 
1240
- #: deprecated.php:686
1241
  #, fuzzy
1242
  msgid "version of the plugin."
1243
  msgstr "Oceń wtyczkę"
@@ -1552,6 +1581,14 @@ msgid ""
1552
  "WordPress website database."
1553
  msgstr ""
1554
 
 
 
 
 
 
 
 
 
1555
  #~ msgid ""
1556
  #~ "You can use one license of the Pro plugin for one domain only. Please "
1557
  #~ "check and edit your license or domain if necessary using you personal "
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-09-05 14:58+0300\n"
6
+ "PO-Revision-Date: 2017-09-05 14:58+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Damian Dąbrowski <contact@codester.pl>\n"
9
  "Language: pl_PL\n"
43
  msgid "Like the plugin?"
44
  msgstr "Oceń wtyczkę"
45
 
46
+ #: bws_functions.php:93
47
+ #, php-format
48
+ msgid "%s reviews"
49
+ msgstr ""
50
+
51
  #: bws_functions.php:94
52
  msgid "Rate it"
53
  msgstr ""
56
  msgid "Need help?"
57
  msgstr "Potrzebujesz pomocy?"
58
 
59
+ #: bws_functions.php:104 bws_functions.php:917 class-bws-settings.php:1058
60
  msgid "Visit Help Center"
61
  msgstr ""
62
 
65
  msgid "Want to support the plugin?"
66
  msgstr "Oceń wtyczkę"
67
 
68
+ #: bws_functions.php:108 bws_menu.php:560
69
  msgid "Donate"
70
  msgstr ""
71
 
81
  "otherwise the Pro plugin will be deactivated."
82
  msgstr ""
83
 
84
+ #: bws_functions.php:128 bws_functions.php:341 bws_menu.php:631
85
+ #: class-bws-settings.php:144
86
  msgid "Learn More"
87
  msgstr "Dowiedz się więcej"
88
 
104
  "Twoja licencja wygasła. Aby podtrzymać szybki dostęp do pomocy i "
105
  "aktualizacji powinieneś przedłużyć licencję."
106
 
107
+ #: bws_functions.php:147 bws_functions.php:389 deprecated.php:586
108
  msgid "Learn more"
109
  msgstr "Dowiedz się więcej"
110
 
134
  msgid "Thank you for installing %s plugin!"
135
  msgstr ""
136
 
137
+ #: bws_functions.php:210
138
  msgid "Let's get started"
139
  msgstr "Zaczynajmny"
140
 
141
+ #: bws_functions.php:211 bws_functions.php:244 bws_menu.php:564
142
+ #: bws_menu.php:566
143
  msgid "Settings"
144
  msgstr "Ustawienia"
145
 
146
+ #: bws_functions.php:213 bws_menu.php:326 class-bws-settings.php:747
147
+ #: class-bws-settings.php:1060 class-bws-settings.php:1070 deprecated.php:697
148
  msgid "or"
149
  msgstr "lub"
150
 
151
+ #: bws_functions.php:214 bws_functions.php:246
152
  msgid "Add New"
153
  msgstr "Dodaj nowy"
154
 
155
+ #: bws_functions.php:218 bws_functions.php:228 bws_functions.php:332
156
+ #: bws_functions.php:385 bws_functions.php:487
157
  msgid "Close notice"
158
  msgstr "Zamknij powiadomienie"
159
 
160
+ #: bws_functions.php:233
161
  #, fuzzy
162
  msgid "Thank you for installing plugins by BestWebSoft!"
163
  msgstr "Dziękujemy za instalację"
164
 
165
+ #: bws_functions.php:235
166
  #, fuzzy
167
  msgid "More Details"
168
  msgstr "Szczegóły"
169
 
170
+ #: bws_functions.php:236
171
  #, fuzzy
172
  msgid "Less Details"
173
  msgstr "Szczegóły"
174
 
175
+ #: bws_functions.php:264
176
  msgid "Deprecated function(-s) is used on the site here:"
177
  msgstr ""
178
 
179
+ #: bws_functions.php:278
180
  msgid ""
181
  "This function(-s) will be removed over time. Please update the product(-s)."
182
  msgstr ""
183
 
184
+ #: bws_functions.php:337
185
  msgid "It’s time to upgrade your"
186
  msgstr "Czas by zaktualizować"
187
 
188
+ #: bws_functions.php:337
189
  msgid "to"
190
  msgstr "do"
191
 
192
+ #: bws_functions.php:337
193
  msgid "version!"
194
  msgstr "wersji!"
195
 
196
+ #: bws_functions.php:338
197
  msgid "Extend standard plugin functionality with new great options."
198
  msgstr "Rozszerz podstawowe funkcje wtyczki o nowe wspaniałe opcje."
199
 
200
+ #: bws_functions.php:389
201
  #, fuzzy, php-format
202
  msgid ""
203
  "Your license key for %s expires on %s and you won't be granted TOP-PRIORITY "
206
  "zostaniesz wówczas pozbawiony SZYBKIEGO DOSTĘDO DO SUPPORTU oraz "
207
  "AKTUALIZACJI."
208
 
209
+ #: bws_functions.php:482
210
  #, php-format
211
  msgid "Thank you for choosing %s plugin!"
212
  msgstr ""
213
 
214
+ #: bws_functions.php:483
215
  msgid ""
216
  "If you have a feature, suggestion or idea you'd like to see in the plugin, "
217
  "we'd love to hear about it!"
218
  msgstr ""
219
 
220
+ #: bws_functions.php:484
221
  msgid "Suggest a Feature"
222
  msgstr ""
223
 
224
+ #: bws_functions.php:500 class-bws-settings.php:540 class-bws-settings.php:543
225
+ #: class-bws-settings.php:595 class-bws-settings.php:598
226
  msgid "Notice"
227
  msgstr "Uwaga"
228
 
229
+ #: bws_functions.php:500
230
  msgid "The plugin's settings have been changed."
231
  msgstr "Ustawienia wtyczki zostały zmienione."
232
 
233
+ #: bws_functions.php:501 class-bws-settings.php:183 class-bws-settings.php:203
234
+ #: deprecated.php:642
235
  msgid "Save Changes"
236
  msgstr "Zapisz zmiany"
237
 
238
+ #: bws_functions.php:515
239
  #, fuzzy
240
  msgid ""
241
  "You can always look at premium options by checking the \"Pro Options\" in "
244
  "Zawsze możesz sprawdzić funkcje premium poprzez kliknięcie \"Pokaż funkcje "
245
  "PRO\" w zakładce \"Go PRO\""
246
 
247
+ #: bws_functions.php:653
248
  msgid "Add BWS Shortcode"
249
  msgstr ""
250
 
251
+ #: bws_functions.php:654
252
  msgid "Add BWS Plugins Shortcode"
253
  msgstr "Dodaj BWS Shortcode"
254
 
255
+ #: bws_functions.php:673
256
  #, fuzzy
257
  msgid "Add shortcode"
258
  msgstr "Dodaj BWS Shortcode"
259
 
260
+ #: bws_functions.php:673
261
  msgid "Add BestWebSoft plugins' shortcodes using this button."
262
  msgstr ""
263
 
264
+ #: bws_functions.php:729
265
  msgid "Close"
266
  msgstr "Zamknij"
267
 
268
+ #: bws_functions.php:821
269
  #, fuzzy
270
  msgid "Are you sure you want to restore default settings?"
271
  msgstr ""
272
  "Czy jesteś pewien, że chcesz przywrócić wszystkie ustawienia do wartości "
273
  "domyślnych?"
274
 
275
+ #: bws_functions.php:824
276
  msgid "Yes, restore all settings"
277
  msgstr "Tak, przywróć wszystkie ustawienia"
278
 
279
+ #: bws_functions.php:825
280
  msgid "No, go back to the settings page"
281
  msgstr "Nie, wróć do ustawień"
282
 
283
+ #: bws_functions.php:867
284
  msgid "Plugin"
285
  msgstr "Wtyczka"
286
 
287
+ #: bws_functions.php:876
288
  msgid "Shortcode settings"
289
  msgstr "Ustawienia shortcode"
290
 
291
+ #: bws_functions.php:881
292
  msgid "The shortcode will be inserted"
293
  msgstr "Shortcode zostanie umieszczony"
294
 
295
+ #: bws_functions.php:922
296
  msgid "FAQ"
297
  msgstr "FAQ"
298
 
299
+ #: bws_functions.php:928
300
  msgid "For more information:"
301
  msgstr ""
302
 
303
+ #: bws_functions.php:929
304
  msgid "Documentation"
305
  msgstr ""
306
 
307
+ #: bws_functions.php:930
308
  msgid "Video Instructions"
309
  msgstr ""
310
 
311
+ #: bws_functions.php:931
312
  #, fuzzy
313
  msgid "Submit a Request"
314
  msgstr "送信ボタン"
315
 
316
+ #: bws_menu.php:101 class-bws-settings.php:792 deprecated.php:323
317
  msgid "Wrong license key"
318
  msgstr "Niepoprawny klucz licencji"
319
 
320
+ #: bws_menu.php:122 class-bws-settings.php:818 class-bws-settings.php:885
321
+ #: class-bws-settings.php:921 deprecated.php:133 deprecated.php:199
322
+ #: deprecated.php:353
323
  msgid ""
324
  "Something went wrong. Please try again later. If the error appears again, "
325
  "please contact us"
327
  "Coś poszło nie tak. Spróbuj ponownie później. Jeśli błąd pojawi się ponownie "
328
  "proszę skontaktować się z nami"
329
 
330
+ #: bws_menu.php:122 class-bws-settings.php:818 class-bws-settings.php:885
331
+ #: class-bws-settings.php:921 deprecated.php:133 deprecated.php:199
332
+ #: deprecated.php:353
333
  msgid "We are sorry for inconvenience."
334
  msgstr "Przepraszamy za niedogodności."
335
 
336
+ #: bws_menu.php:128 class-bws-settings.php:824 class-bws-settings.php:927
337
+ #: deprecated.php:139 deprecated.php:359
338
  msgid "Wrong license key."
339
  msgstr "Niepoprawny klucz licencji"
340
 
349
  msgid "Log in"
350
  msgstr ""
351
 
352
+ #: bws_menu.php:132 bws_menu.php:332 deprecated.php:261
353
  msgid "Unfortunately, you have exceeded the number of available tries per day."
354
  msgstr "Niestety, przekroczono dzienną liczbę dostępnych prób."
355
 
356
+ #: bws_menu.php:134 deprecated.php:365
357
  #, fuzzy, php-format
358
  msgid ""
359
  "Unfortunately, Your license has expired. To continue getting top-priority "
362
  "Niestety, Twoja licencja wygasła. By nadal korzystać z szybkiego dostępu do "
363
  "wsparcia oraz aktualizacji powinieneś przedłużyć licencję."
364
 
365
+ #: bws_menu.php:136 class-bws-settings.php:935 deprecated.php:367
366
  msgid ""
367
  "Unfortunately, the Pro licence was already installed to this domain. The Pro "
368
  "Trial license can be installed only once."
370
  "Niestety, licencja PRO była już przypisana do tej domeny. Licencja testowa "
371
  "może być wykorzystana tylko raz."
372
 
373
+ #: bws_menu.php:142 class-bws-settings.php:839 deprecated.php:153
374
  msgid "The license key is valid."
375
  msgstr "Klucz licencji jest poprawny"
376
 
377
+ #: bws_menu.php:144 class-bws-settings.php:842 deprecated.php:156
378
  msgid "Your license will expire on"
379
  msgstr "Twoja licencja wygaśnie"
380
 
381
  #: bws_menu.php:146
382
+ msgid "Congratulations! Pro Membership license is activated successfully."
383
+ msgstr ""
 
384
 
385
+ #: bws_menu.php:153 class-bws-settings.php:1007 deprecated.php:436
386
  msgid ""
387
  "Something went wrong. Try again later or upload the plugin manually. We are "
388
  "sorry for inconvenience."
546
  msgid "Please enter a valid email address."
547
  msgstr "Podaj poprawny adres email"
548
 
549
+ #: bws_menu.php:262
550
+ #, php-format
551
+ msgid "Email with system info is sent to %s."
552
+ msgstr ""
553
 
554
+ #: bws_menu.php:266
555
  msgid "Thank you for contacting us."
556
  msgstr "Dziękujemy za kontakt."
557
 
558
+ #: bws_menu.php:289
559
  msgid "Sorry, email message could not be delivered."
560
  msgstr "Przepraszamy, wiadomość nie została dostarczona."
561
 
562
+ #: bws_menu.php:305 bws_menu.php:309 bws_menu.php:358 deprecated.php:91
563
  msgid "Plugins"
564
  msgstr "Wtyczki"
565
 
566
+ #: bws_menu.php:306 bws_menu.php:310 bws_menu.php:618 deprecated.php:92
567
  msgid "Themes"
568
  msgstr "Motywy"
569
 
570
+ #: bws_menu.php:307 bws_menu.php:311 bws_menu.php:648
571
  msgid "System status"
572
  msgstr "Status systemu"
573
 
574
+ #: bws_menu.php:315
575
  msgid "Support"
576
  msgstr "サポート"
577
 
578
+ #: bws_menu.php:316
579
  msgid "Manage purchased licenses & subscriptions"
580
  msgstr ""
581
 
582
+ #: bws_menu.php:324
583
  #, php-format
584
  msgid "Get Access to %s+ Premium Plugins"
585
  msgstr ""
586
 
587
+ #: bws_menu.php:326
588
  #, fuzzy
589
  msgid "Subscribe to Pro Membership"
590
  msgstr "有効なテーマ"
591
 
592
+ #: bws_menu.php:334 bws_menu.php:345 class-bws-settings.php:760
593
  #: deprecated.php:227
594
  msgid "Check license key"
595
  msgstr "Sprawdź klucz licencji"
596
 
597
+ #: bws_menu.php:337
598
  #, fuzzy
599
  msgid "Enter your license key"
600
  msgstr "Podaj klucz licencji"
601
 
602
+ #: bws_menu.php:343 bws_menu.php:570 bws_menu.php:579
603
+ #: class-bws-settings.php:739 deprecated.php:259 deprecated.php:267
604
+ #: deprecated.php:631 deprecated.php:703 deprecated.php:712
605
  msgid "Activate"
606
  msgstr "Aktywuj"
607
 
608
+ #: bws_menu.php:359
609
  #, fuzzy
610
  msgid "Upload Plugin"
611
  msgstr "Wtyczka"
612
 
613
+ #: bws_menu.php:363
614
  #, php-format
615
  msgid ""
616
  "The plugin generated %d characters of <strong>unexpected output</strong> "
619
  "or removing this plugin."
620
  msgstr ""
621
 
622
+ #: bws_menu.php:365
623
  msgid ""
624
  "Plugin could not be activated because it triggered a <strong>fatal error</"
625
  "strong>."
626
  msgstr ""
627
 
628
+ #: bws_menu.php:368
629
  msgid "Plugin <strong>activated</strong>."
630
  msgstr ""
631
 
632
+ #: bws_menu.php:375
633
  #, fuzzy
634
  msgid "Installing Plugin"
635
  msgstr "Zainstalowane"
636
 
637
+ #: bws_menu.php:381
638
  msgid "Downloading install package from"
639
  msgstr ""
640
 
641
+ #: bws_menu.php:398 bws_menu.php:429 bws_menu.php:440 deprecated.php:388
642
+ #: deprecated.php:410 deprecated.php:432
 
 
643
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
644
  msgstr ""
645
  "Pobieranie archiwum zip zakończyło się niepowodzeniem. Proszę dodać wtyczkę "
646
  "manualnie"
647
 
648
+ #: bws_menu.php:406
649
  msgid "Unpacking the package"
650
  msgstr ""
651
 
652
+ #: bws_menu.php:411 bws_menu.php:419
653
  #, fuzzy
654
  msgid "Installing the plugin"
655
  msgstr "Zainstalowane"
656
 
657
+ #: bws_menu.php:415 deprecated.php:400
658
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
659
  msgstr ""
660
  "Otwieranie archiwum zip zakończyło się niepowodzeniem. Proszę dodać wtyczkę "
661
  "manualnie"
662
 
663
+ #: bws_menu.php:422 deprecated.php:406
664
  msgid ""
665
  "Your server does not support either ZipArchive or Phar. Please, upload the "
666
  "plugin manually"
667
  msgstr ""
668
  "Twój serwer nie wspiera ZipAcrchive lub Phar. Proszę dodać wtyczkę manualnie"
669
 
670
+ #: bws_menu.php:425
671
  #, php-format
672
  msgid "The plugin %s is successfully installed."
673
  msgstr ""
674
 
675
+ #: bws_menu.php:432 deprecated.php:413
676
  msgid "UploadDir is not writable. Please, upload the plugin manually"
677
  msgstr ""
678
  "Folder uploadu jest chroniony przez zapisem. Proszę dodać wtyczkę manualnie"
679
 
680
+ #: bws_menu.php:437
681
  #, fuzzy
682
  msgid "Activate Plugin"
683
  msgstr "Aktywne wtyczki"
684
 
685
+ #: bws_menu.php:437 bws_menu.php:443
686
  msgid "Return to BestWebSoft Panel"
687
  msgstr ""
688
 
689
+ #: bws_menu.php:451 bws_menu.php:471 bws_menu.php:600
690
  msgid "All"
691
  msgstr "Wszystko"
692
 
693
+ #: bws_menu.php:454 bws_menu.php:637
694
  msgid "Installed"
695
  msgstr "Zainstalowane"
696
 
697
+ #: bws_menu.php:457
698
  #, fuzzy
699
  msgid "Not Installed"
700
  msgstr "Zainstalowane"
701
 
702
+ #: bws_menu.php:464
703
  msgid "Filter results"
704
  msgstr ""
705
 
706
+ #: bws_menu.php:467 bws_menu.php:596
707
  msgid "Category"
708
  msgstr ""
709
 
710
+ #: bws_menu.php:531
711
  #, fuzzy
712
  msgid "Not installed"
713
  msgstr "Zainstalowane"
714
 
715
+ #: bws_menu.php:535
716
  #, fuzzy
717
  msgid "Renew to get updates"
718
  msgstr "ページに転送"
719
 
720
+ #: bws_menu.php:538
721
  #, fuzzy, php-format
722
  msgid "Update to v %s"
723
  msgstr "Aktualizuj do wersji %s"
724
 
725
+ #: bws_menu.php:550 bws_menu.php:573 bws_menu.php:582
726
  msgid "Install Now"
727
  msgstr "Instaluj teraz"
728
 
729
+ #: bws_menu.php:556 class-bws-settings.php:157 class-bws-settings.php:1067
730
  msgid "Upgrade to Pro"
731
  msgstr ""
732
 
733
+ #: bws_menu.php:570 bws_menu.php:579
734
  msgid "Activate this plugin"
735
  msgstr "Aktywuj wtyczkę"
736
 
737
+ #: bws_menu.php:582
738
  #, fuzzy
739
  msgid "Install this plugin"
740
  msgstr "Zainstalowane"
741
 
742
+ #: bws_menu.php:591
743
  msgid "Nothing found. Try another criteria."
744
  msgstr ""
745
 
746
+ #: bws_menu.php:628
747
  #, php-format
748
  msgid "By %s"
749
  msgstr "Od %s"
750
 
751
+ #: bws_menu.php:635
752
  msgid "Already Installed"
753
  msgstr "Zainstalowane"
754
 
755
+ #: bws_menu.php:645
756
+ msgid "Browse More WordPress Themes"
757
  msgstr ""
758
 
759
+ #: bws_menu.php:654
760
  msgid "Send to support"
761
  msgstr "Wyślij do supportu"
762
 
763
+ #: bws_menu.php:661
764
  msgid "Send to custom email &#187;"
765
  msgstr "Prześlij na własny adres &#187;"
766
 
820
  msgid "Custom Code"
821
  msgstr ""
822
 
823
+ #: class-bws-settings.php:427 deprecated.php:498
824
  msgid "You do not have sufficient permissions to edit plugins for this site."
825
  msgstr ""
826
 
827
+ #: class-bws-settings.php:432 deprecated.php:620
828
  msgid "These styles will be added to the header on all pages of your site."
829
  msgstr ""
830
 
831
+ #: class-bws-settings.php:435 deprecated.php:622
832
  #, php-format
833
  msgid ""
834
  "This PHP code will be hooked to the %s action and will be printed on front "
839
  msgid "These code will be added to the header on all pages of your site."
840
  msgstr ""
841
 
842
+ #: class-bws-settings.php:446 deprecated.php:646
843
  #, php-format
844
  msgid ""
845
  "You need to make this files writable before you can save your changes. See "
846
  "%s the Codex %s for more information."
847
  msgstr ""
848
 
849
+ #: class-bws-settings.php:456 deprecated.php:628
850
  msgid "Browsing"
851
  msgstr ""
852
 
855
  msgid "Activate custom %s code."
856
  msgstr ""
857
 
858
+ #: class-bws-settings.php:469 deprecated.php:635
859
  #, fuzzy, php-format
860
  msgid "Learn more about %s"
861
  msgstr "Dowiedz się więcej"
862
 
863
+ #: class-bws-settings.php:531
864
  msgid "Miscellaneous Settings"
865
  msgstr ""
866
 
867
+ #: class-bws-settings.php:540 class-bws-settings.php:595
868
  #, php-format
869
  msgid ""
870
  "It is prohibited to change %s settings on this site in the %s network "
871
  "settings."
872
  msgstr ""
873
 
874
+ #: class-bws-settings.php:543 class-bws-settings.php:598
875
  #, php-format
876
  msgid ""
877
  "It is prohibited to view %s settings on this site in the %s network settings."
878
  msgstr ""
879
 
880
+ #: class-bws-settings.php:552
881
  #, fuzzy
882
  msgid "Pro Options"
883
  msgstr "Pro Plugins"
884
 
885
+ #: class-bws-settings.php:556
886
  msgid "Enable to display plugin Pro options."
887
  msgstr ""
888
 
889
+ #: class-bws-settings.php:562
890
  msgid "Track Usage"
891
  msgstr ""
892
 
893
+ #: class-bws-settings.php:566
894
  msgid ""
895
  "Enable to allow tracking plugin usage anonymously in order to make it better."
896
  msgstr ""
897
 
898
+ #: class-bws-settings.php:571
899
  #, fuzzy
900
  msgid "Default Settings"
901
  msgstr "Ustawienia"
902
 
903
+ #: class-bws-settings.php:573
904
  #, fuzzy
905
  msgid "Restore Settings"
906
  msgstr "Przywróć ustawienia"
907
 
908
+ #: class-bws-settings.php:574
909
  #, fuzzy
910
  msgid "This will restore plugin settings to defaults."
911
  msgstr "Przywróć wszystkie ustawienia do wartości domyśłnych"
912
 
913
+ #: class-bws-settings.php:586
914
  msgid "Import / Export"
915
  msgstr ""
916
 
917
+ #: class-bws-settings.php:702 class-bws-settings.php:735
918
+ #: class-bws-settings.php:757
919
  #, fuzzy
920
  msgid "License Key"
921
  msgstr "Niepoprawny klucz licencji"
922
 
923
+ #: class-bws-settings.php:725
924
  #, fuzzy
925
  msgid "Congratulations! Pro license is activated successfully."
926
  msgstr "Gratulacje! Licencja do wersji PRO została aktywowana pomyślnie."
927
 
928
+ #: class-bws-settings.php:726
929
  #, php-format
930
  msgid "You will be automatically redirected to the %s in %s seconds."
931
  msgstr ""
932
 
933
+ #: class-bws-settings.php:726
934
  #, fuzzy
935
  msgid "Settings page"
936
  msgstr "設定保存."
937
 
938
+ #: class-bws-settings.php:741
939
  #, php-format
940
  msgid "Enter your license key to activate %s and get premium plugin features."
941
  msgstr ""
942
 
943
+ #: class-bws-settings.php:744 class-bws-settings.php:931 deprecated.php:363
944
+ #: deprecated.php:706
945
  msgid ""
946
  "Unfortunately, you have exceeded the number of available tries per day. "
947
  "Please, upload the plugin manually."
949
  "Niestety, przekroczono liczb dostępnych prób na dziś. Proszę dodać wtyczkę "
950
  "manualnie."
951
 
952
+ #: class-bws-settings.php:747 deprecated.php:697
953
  #, php-format
954
  msgid "Start Your Free %s-Day Trial Now"
955
  msgstr "Rozpocznij swój darmowy %s-dniowy okres testowy"
956
 
957
+ #: class-bws-settings.php:762
958
  #, fuzzy
959
  msgid ""
960
  "If necessary, you can check if the license key is correct or reenter it in "
964
  "w polu poniżej. Możesz znaleźć swój klucz na naszej stronie w strefie - "
965
  "Panel Klienta"
966
 
967
+ #: class-bws-settings.php:767
968
  msgid "Manage License Settings"
969
  msgstr ""
970
 
971
+ #: class-bws-settings.php:769
972
  #, fuzzy
973
  msgid "Login to Client Area"
974
  msgstr "Panel Klienta"
975
 
976
+ #: class-bws-settings.php:771
977
  msgid ""
978
  "Manage active licenses, download BWS products, and view your payment history "
979
  "using BestWebSoft Client Area."
980
  msgstr ""
981
 
982
+ #: class-bws-settings.php:826 class-bws-settings.php:929 deprecated.php:141
983
+ #: deprecated.php:361
984
  #, fuzzy
985
  msgid "This license key is bound to another site."
986
  msgstr "Klucz licencji został przypisany do innej strony."
987
 
988
+ #: class-bws-settings.php:828 deprecated.php:143
989
  msgid ""
990
  "This license key is valid, but Your license has expired. If you want to "
991
  "update our plugin in future, you should extend the license."
993
  "Klucz jest poprawny, jednak Twoja licencja wygasła. Jeśli chcesz "
994
  "aktualizować naszą wtyczkę w przyszłości powinieneś przedłużyć licencję."
995
 
996
+ #: class-bws-settings.php:830 deprecated.php:145
997
  msgid "Unfortunately, you have exceeded the number of available tries."
998
  msgstr "Niestety, przekroczono liczbę dostępnych prób."
999
 
1000
+ #: class-bws-settings.php:832 deprecated.php:147
1001
  msgid ""
1002
  "Unfortunately, the Pro Trial licence was already installed to this domain. "
1003
  "The Pro Trial license can be installed only once."
1005
  "Niestety, licencja PRO była już przypisana do tej domeny. Licencja testowa "
1006
  "może być wykorzystana tylko raz."
1007
 
1008
+ #: class-bws-settings.php:837 deprecated.php:151
1009
  msgid "The Pro Trial license key is valid."
1010
  msgstr "Klucz licencji do testowej wersji PRO jest poprawny."
1011
 
1012
+ #: class-bws-settings.php:845 deprecated.php:159 deprecated.php:246
1013
  #, php-format
1014
  msgid ""
1015
  "In order to continue using the plugin it is necessary to buy a %s license."
1017
  "W celu dalszego wykorzystywania wtyczki niezbędne jest wykupienie licencji "
1018
  "%s."
1019
 
1020
+ #: class-bws-settings.php:933
1021
+ #, php-format
1022
+ msgid ""
1023
+ "Unfortunately, Your license has expired. To continue getting top-priority "
1024
+ "support and plugin updates, you should extend it in your %s."
1025
+ msgstr ""
1026
+
1027
+ #: class-bws-settings.php:959 class-bws-settings.php:981
1028
+ #: class-bws-settings.php:1003
1029
+ msgid "Failed to download the zip archive. Please, upload the plugin manually."
1030
+ msgstr ""
1031
+
1032
+ #: class-bws-settings.php:971
1033
+ msgid "Failed to open the zip archive. Please, upload the plugin manually."
1034
+ msgstr ""
1035
+
1036
+ #: class-bws-settings.php:977
1037
+ msgid ""
1038
+ "Your server does not support either ZipArchive or Phar. Please, upload the "
1039
+ "plugin manually."
1040
+ msgstr ""
1041
+
1042
+ #: class-bws-settings.php:984
1043
+ msgid "UploadDir is not writable. Please, upload the plugin manually."
1044
+ msgstr ""
1045
+
1046
+ #: class-bws-settings.php:1042 deprecated.php:464
1047
  msgid "Please, enter Your license key"
1048
  msgstr "Proszę podać klucz licencji."
1049
 
1050
+ #: class-bws-settings.php:1054
1051
  #, fuzzy
1052
  msgid "Need Help?"
1053
  msgstr "Potrzebujesz pomocy?"
1054
 
1055
+ #: class-bws-settings.php:1056
1056
  msgid "Read the Instruction"
1057
  msgstr ""
1058
 
1059
+ #: class-bws-settings.php:1060
1060
  msgid "Watch the Video"
1061
  msgstr ""
1062
 
1063
+ #: class-bws-settings.php:1071
1064
  #, fuzzy
1065
  msgid "Start Your Free Trial"
1066
  msgstr "Rozpocznij swój darmowy %s-dniowy okres testowy"
1067
 
1068
+ #: deactivation-form.php:27
1069
  msgid "Need help? We are ready to answer your questions."
1070
  msgstr ""
1071
 
1072
+ #: deactivation-form.php:27
1073
  msgid "Contact Support"
1074
  msgstr ""
1075
 
1076
+ #: deactivation-form.php:32
1077
  msgid "The plugin is not working"
1078
  msgstr ""
1079
 
1080
+ #: deactivation-form.php:34
1081
  msgid "Kindly share what didn't work so we can fix it in future updates..."
1082
  msgstr ""
1083
 
1084
+ #: deactivation-form.php:38
1085
  msgid "The plugin didn't work as expected"
1086
  msgstr ""
1087
 
1088
+ #: deactivation-form.php:40
1089
  msgid "What did you expect?"
1090
  msgstr ""
1091
 
1092
+ #: deactivation-form.php:44
1093
  msgid "The plugin suddenly stopped working"
1094
  msgstr ""
1095
 
1096
+ #: deactivation-form.php:51
1097
  msgid "The plugin broke my site"
1098
  msgstr ""
1099
 
1100
+ #: deactivation-form.php:58
1101
  msgid "I couldn't understand how to get it work"
1102
  msgstr ""
1103
 
1104
+ #: deactivation-form.php:65
1105
  msgid "I found a better plugin"
1106
  msgstr ""
1107
 
1108
+ #: deactivation-form.php:67
1109
  msgid "What's the plugin name?"
1110
  msgstr ""
1111
 
1112
+ #: deactivation-form.php:71
1113
  msgid "The plugin is great, but I need specific feature that you don't support"
1114
  msgstr ""
1115
 
1116
+ #: deactivation-form.php:73
1117
  msgid "What feature?"
1118
  msgstr ""
1119
 
1120
+ #: deactivation-form.php:77
1121
  msgid "I no longer need the plugin"
1122
  msgstr ""
1123
 
1124
+ #: deactivation-form.php:83
1125
  msgid "It's a temporary deactivation, I'm just debugging an issue"
1126
  msgstr ""
1127
 
1128
+ #: deactivation-form.php:89
1129
  msgid "Other"
1130
  msgstr ""
1131
 
1132
+ #: deactivation-form.php:123
1133
  msgid "Quick Feedback"
1134
  msgstr ""
1135
 
1136
+ #: deactivation-form.php:124
1137
  msgid "If you have a moment, please let us know why you are deactivating"
1138
  msgstr ""
1139
 
1140
+ #: deactivation-form.php:129
1141
  msgid "Anonymous feedback"
1142
  msgstr ""
1143
 
1144
+ #: deactivation-form.php:131
1145
  msgid "Cancel"
1146
  msgstr ""
1147
 
1148
+ #: deactivation-form.php:229
1149
  msgid "Processing"
1150
  msgstr ""
1151
 
1152
+ #: deactivation-form.php:258
1153
  msgid "Submit & Deactivate"
1154
  msgstr ""
1155
 
1156
+ #: deactivation-form.php:273
1157
  msgid "Please tell us the reason so we can improve it."
1158
  msgstr ""
1159
 
1160
+ #: deactivation-form.php:341
1161
  msgid "Deactivate"
1162
  msgstr ""
1163
 
1190
  "(login to adres email podany przy zakupie). Jeśli to koniczne użyj opcji "
1191
  "\"Zgubiłeś swoje hasło?\"."
1192
 
1193
+ #: deprecated.php:246
1194
  #, fuzzy
1195
  msgid "After that, you can activate it by entering your license key."
1196
  msgstr "Po wszystkim możesz aktywować wtyczkę poprzez podanie klucza licencji."
1197
 
1198
+ #: deprecated.php:249 deprecated.php:691
1199
  msgid "License key can be found in the"
1200
  msgstr ""
1201
 
1202
+ #: deprecated.php:251 deprecated.php:693
1203
  #, fuzzy
1204
  msgid "(your username is the email address specified during the purchase)."
1205
  msgstr "(twoja nazwa użytkownika to email podany podczas zakupu)."
1206
 
1207
+ #: deprecated.php:279
1208
  #, fuzzy
1209
  msgid ""
1210
  "Congratulations! The Pro license of the plugin is activated successfully."
1211
  msgstr "Gratulacje! Licencja do wersji PRO została aktywowana pomyślnie."
1212
 
1213
+ #: deprecated.php:281 deprecated.php:672
1214
  msgid "Please, go to"
1215
  msgstr "Proszę przejść do"
1216
 
1217
+ #: deprecated.php:281 deprecated.php:672
1218
  msgid "the setting page"
1219
  msgstr "ustawień"
1220
 
1221
+ #: deprecated.php:282 deprecated.php:673
1222
  msgid "You will be redirected automatically in 5 seconds."
1223
  msgstr "Zostaniesz automatycznie przekierowany w ciągu 5 sekund."
1224
 
1225
+ #: deprecated.php:316
1226
  msgid "Check premium options on the plugin settings page!"
1227
  msgstr "Sprawdź dodatkowe opcje premium w ustawieniach wtyczki."
1228
 
1229
+ #: deprecated.php:479
1230
  msgid "Restore all plugin settings to defaults"
1231
  msgstr "Przywróć wszystkie ustawienia do wartości domyśłnych"
1232
 
1233
+ #: deprecated.php:481
1234
  msgid "Restore settings"
1235
  msgstr "Przywróć ustawienia"
1236
 
1237
+ #: deprecated.php:550 deprecated.php:577
1238
  #, php-format
1239
  msgid "File %s edited successfully."
1240
  msgstr ""
1241
 
1242
+ #: deprecated.php:552 deprecated.php:579
1243
  msgid "Not enough permissions to create or update the file"
1244
  msgstr ""
1245
 
1246
+ #: deprecated.php:582
1247
  msgid "Not enough permissions to create the file"
1248
  msgstr ""
1249
 
1250
+ #: deprecated.php:626
1251
  msgid "Editing"
1252
  msgstr ""
1253
 
1254
+ #: deprecated.php:670
1255
  #, fuzzy
1256
  msgid ""
1257
  "Congratulations! Pro version of the plugin is installed and activated "
1258
  "successfully."
1259
  msgstr "Gratulacje! Wersja PRO została pobrana i aktywowana pomyślnie."
1260
 
1261
+ #: deprecated.php:680
1262
  msgid "Show Pro features"
1263
  msgstr "Pokaż funkcje PRO"
1264
 
1265
+ #: deprecated.php:687
1266
  msgid "Enter your license key to install and activate"
1267
  msgstr ""
1268
 
1269
+ #: deprecated.php:689
1270
  #, fuzzy
1271
  msgid "version of the plugin."
1272
  msgstr "Oceń wtyczkę"
1581
  "WordPress website database."
1582
  msgstr ""
1583
 
1584
+ #, fuzzy
1585
+ #~ msgid "Congratulations! Pro Membership license is activated successfully."
1586
+ #~ msgstr "Gratulacje! Licencja do wersji PRO została aktywowana pomyślnie."
1587
+
1588
+ #, fuzzy
1589
+ #~ msgid "Email with system info is sent to"
1590
+ #~ msgstr "Wiadomość z informacjami systemowymi zostanie wysłana do "
1591
+
1592
  #~ msgid ""
1593
  #~ "You can use one license of the Pro plugin for one domain only. Please "
1594
  #~ "check and edit your license or domain if necessary using you personal "
bws_menu/languages/bestwebsoft-ru_RU.mo CHANGED
Binary file
bws_menu/languages/bestwebsoft-ru_RU.po CHANGED
@@ -2,11 +2,11 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2017-08-28 09:55+0300\n"
6
- "PO-Revision-Date: 2017-08-28 10:12+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <https://support.bestwebsoft.com>\n"
9
- "Language: ru_RU\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
@@ -14,6 +14,8 @@ msgstr ""
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Generator: Poedit 1.8.7.1\n"
 
 
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
  #: bws_functions.php:73 bws_functions.php:191
@@ -40,6 +42,11 @@ msgstr "Страницу плагинов"
40
  msgid "Like the plugin?"
41
  msgstr "Понравился плагин?"
42
 
 
 
 
 
 
43
  #: bws_functions.php:94
44
  msgid "Rate it"
45
  msgstr "Оценить"
@@ -48,7 +55,7 @@ msgstr "Оценить"
48
  msgid "Need help?"
49
  msgstr "Нужна помощь?"
50
 
51
- #: bws_functions.php:104 bws_functions.php:911 class-bws-settings.php:1056
52
  msgid "Visit Help Center"
53
  msgstr "Перейти в Help Center"
54
 
@@ -56,7 +63,7 @@ msgstr "Перейти в Help Center"
56
  msgid "Want to support the plugin?"
57
  msgstr "Хотите поддержать плагин?"
58
 
59
- #: bws_functions.php:108 bws_menu.php:553
60
  msgid "Donate"
61
  msgstr "Пожертвовать"
62
 
@@ -76,7 +83,8 @@ msgstr ""
76
  "используя Ваш личный Client Area. Мы настоятельно рекомендуем вам решить "
77
  "проблему в течение 24 часов, в противном случае плагин будет деактивирован."
78
 
79
- #: bws_functions.php:128 bws_functions.php:340 class-bws-settings.php:144
 
80
  msgid "Learn More"
81
  msgstr "Подробнее"
82
 
@@ -97,7 +105,7 @@ msgstr ""
97
  "плагин в дальнейшем и иметь приоритетную тех.поддержку, то вам нужно "
98
  "продлить лицензию."
99
 
100
- #: bws_functions.php:147 bws_functions.php:383 deprecated.php:584
101
  msgid "Learn more"
102
  msgstr "Подробнее"
103
 
@@ -127,69 +135,69 @@ msgstr ""
127
  msgid "Thank you for installing %s plugin!"
128
  msgstr "Спасибо, что установили %s плагин!"
129
 
130
- #: bws_functions.php:209
131
  msgid "Let's get started"
132
  msgstr "Давайте начнем"
133
 
134
- #: bws_functions.php:210 bws_functions.php:243 bws_menu.php:557
135
- #: bws_menu.php:559
136
  msgid "Settings"
137
  msgstr "Настройки"
138
 
139
- #: bws_functions.php:212 bws_menu.php:328 class-bws-settings.php:745
140
- #: class-bws-settings.php:1058 class-bws-settings.php:1068 deprecated.php:694
141
  msgid "or"
142
  msgstr "или"
143
 
144
- #: bws_functions.php:213 bws_functions.php:245
145
  msgid "Add New"
146
  msgstr "Добавить"
147
 
148
- #: bws_functions.php:217 bws_functions.php:227 bws_functions.php:331
149
- #: bws_functions.php:379 bws_functions.php:481
150
  msgid "Close notice"
151
  msgstr "Закрыть"
152
 
153
- #: bws_functions.php:232
154
  msgid "Thank you for installing plugins by BestWebSoft!"
155
  msgstr "Спасибо за установку плагинов компании BestWebSoft!"
156
 
157
- #: bws_functions.php:234
158
  msgid "More Details"
159
  msgstr "Детали"
160
 
161
- #: bws_functions.php:235
162
  msgid "Less Details"
163
  msgstr "Скрыть детали"
164
 
165
- #: bws_functions.php:263
166
  msgid "Deprecated function(-s) is used on the site here:"
167
  msgstr "Устаревшие функции используются на сайте здесь:"
168
 
169
- #: bws_functions.php:277
170
  msgid ""
171
  "This function(-s) will be removed over time. Please update the product(-s)."
172
  msgstr ""
173
  "Эти функции будет удалены через некоторое время. Пожалуйста, обновите "
174
  "продукт."
175
 
176
- #: bws_functions.php:336
177
  msgid "It’s time to upgrade your"
178
  msgstr "Настало время обновить Ваш"
179
 
180
- #: bws_functions.php:336
181
  msgid "to"
182
  msgstr "до"
183
 
184
- #: bws_functions.php:336
185
  msgid "version!"
186
  msgstr "версии!"
187
 
188
- #: bws_functions.php:337
189
  msgid "Extend standard plugin functionality with new great options."
190
  msgstr "Расширяет возможности стандартного функционала плагина."
191
 
192
- #: bws_functions.php:383
193
  #, php-format
194
  msgid ""
195
  "Your license key for %s expires on %s and you won't be granted TOP-PRIORITY "
@@ -198,12 +206,12 @@ msgstr ""
198
  "Ваш лицензионный ключ для %s истекает %s и вы не будете получать "
199
  "приоритетную тех.поддержку или обновления."
200
 
201
- #: bws_functions.php:476
202
  #, php-format
203
  msgid "Thank you for choosing %s plugin!"
204
  msgstr "Спасибо за выбор плагина %s!"
205
 
206
- #: bws_functions.php:477
207
  msgid ""
208
  "If you have a feature, suggestion or idea you'd like to see in the plugin, "
209
  "we'd love to hear about it!"
@@ -212,25 +220,25 @@ msgstr ""
212
  "функционала плагина, пожалуйста, присылайте их нам! Мы вседа открыты для "
213
  "новых идей!"
214
 
215
- #: bws_functions.php:478
216
  msgid "Suggest a Feature"
217
  msgstr "Предложить функционал"
218
 
219
- #: bws_functions.php:494 class-bws-settings.php:538 class-bws-settings.php:541
220
- #: class-bws-settings.php:593 class-bws-settings.php:596
221
  msgid "Notice"
222
  msgstr "Внимание"
223
 
224
- #: bws_functions.php:494
225
  msgid "The plugin's settings have been changed."
226
  msgstr "Настройки плагина были изменены"
227
 
228
- #: bws_functions.php:495 class-bws-settings.php:183 class-bws-settings.php:203
229
- #: deprecated.php:640
230
  msgid "Save Changes"
231
  msgstr "Сохранить изменения"
232
 
233
- #: bws_functions.php:509
234
  msgid ""
235
  "You can always look at premium options by checking the \"Pro Options\" in "
236
  "the \"Misc\" tab."
@@ -238,79 +246,79 @@ msgstr ""
238
  "Вы всегда можете просмотреть премиум опции нажав на кнопку \"Pro опции\" на "
239
  "вкладке \"Разное\"."
240
 
241
- #: bws_functions.php:647
242
  msgid "Add BWS Shortcode"
243
  msgstr "Добавить BWS шорткод"
244
 
245
- #: bws_functions.php:648
246
  msgid "Add BWS Plugins Shortcode"
247
  msgstr "Добавить шорткод BWS Плагина"
248
 
249
- #: bws_functions.php:667
250
  msgid "Add shortcode"
251
  msgstr "Добавить шорткод"
252
 
253
- #: bws_functions.php:667
254
  msgid "Add BestWebSoft plugins' shortcodes using this button."
255
  msgstr "Добавьте шорткоды BestWebSoft плагинов с помощью этой кнопки."
256
 
257
- #: bws_functions.php:723
258
  msgid "Close"
259
  msgstr "Закрыть"
260
 
261
- #: bws_functions.php:815
262
  msgid "Are you sure you want to restore default settings?"
263
  msgstr ""
264
  "Вы уверены что хотите восстановить все настройки плагина к настройкам по "
265
  "умолчанию?"
266
 
267
- #: bws_functions.php:818
268
  msgid "Yes, restore all settings"
269
  msgstr "Да, восстановить все настройки"
270
 
271
- #: bws_functions.php:819
272
  msgid "No, go back to the settings page"
273
  msgstr "Нет, вернуться на страницу настроек"
274
 
275
- #: bws_functions.php:861
276
  msgid "Plugin"
277
  msgstr "Плагин"
278
 
279
- #: bws_functions.php:870
280
  msgid "Shortcode settings"
281
  msgstr "Настройки шорткода"
282
 
283
- #: bws_functions.php:875
284
  msgid "The shortcode will be inserted"
285
  msgstr "Будет вставлен шорткод"
286
 
287
- #: bws_functions.php:916
288
  msgid "FAQ"
289
  msgstr "FAQ"
290
 
291
- #: bws_functions.php:922
292
  msgid "For more information:"
293
  msgstr "Для дополнительной информации:"
294
 
295
- #: bws_functions.php:923
296
  msgid "Documentation"
297
  msgstr "Документация"
298
 
299
- #: bws_functions.php:924
300
  msgid "Video Instructions"
301
  msgstr "Видео инструкции"
302
 
303
- #: bws_functions.php:925
304
  msgid "Submit a Request"
305
  msgstr "Отправить запрос"
306
 
307
- #: bws_menu.php:101 class-bws-settings.php:790 deprecated.php:322
308
  msgid "Wrong license key"
309
  msgstr "Неправильный лицензионный ключ"
310
 
311
- #: bws_menu.php:122 class-bws-settings.php:816 class-bws-settings.php:883
312
- #: class-bws-settings.php:919 deprecated.php:133 deprecated.php:199
313
- #: deprecated.php:352
314
  msgid ""
315
  "Something went wrong. Please try again later. If the error appears again, "
316
  "please contact us"
@@ -318,14 +326,14 @@ msgstr ""
318
  "Что-то пошло не так. Повторите попытку позже. Если ошибка появится снова, "
319
  "пожалуйста, свяжитесь с нами"
320
 
321
- #: bws_menu.php:122 class-bws-settings.php:816 class-bws-settings.php:883
322
- #: class-bws-settings.php:919 deprecated.php:133 deprecated.php:199
323
- #: deprecated.php:352
324
  msgid "We are sorry for inconvenience."
325
  msgstr "Приносим извинения за неудобства."
326
 
327
- #: bws_menu.php:128 class-bws-settings.php:822 class-bws-settings.php:925
328
- #: deprecated.php:139 deprecated.php:358
329
  msgid "Wrong license key."
330
  msgstr "Неправильный лицензионный ключ."
331
 
@@ -340,11 +348,11 @@ msgstr ""
340
  msgid "Log in"
341
  msgstr "Авторизоваться"
342
 
343
- #: bws_menu.php:132 bws_menu.php:334 deprecated.php:261
344
  msgid "Unfortunately, you have exceeded the number of available tries per day."
345
  msgstr "К сожалению, вы превысили количество доступных попыток."
346
 
347
- #: bws_menu.php:134 class-bws-settings.php:931 deprecated.php:364
348
  #, php-format
349
  msgid ""
350
  "Unfortunately, Your license has expired. To continue getting top-priority "
@@ -354,7 +362,7 @@ msgstr ""
354
  "обновлений и приоритетной тех.поддержки, вам необходимо продлить лицензию в "
355
  "вашей %s"
356
 
357
- #: bws_menu.php:136 class-bws-settings.php:933 deprecated.php:366
358
  msgid ""
359
  "Unfortunately, the Pro licence was already installed to this domain. The Pro "
360
  "Trial license can be installed only once."
@@ -362,19 +370,19 @@ msgstr ""
362
  "К сожалению, Pro лицензия уже была установлена на этом доменен. Pro Trial "
363
  "лицензия может быть установлена только один раз."
364
 
365
- #: bws_menu.php:142 class-bws-settings.php:837 deprecated.php:153
366
  msgid "The license key is valid."
367
  msgstr "Лицензионный ключ действителен."
368
 
369
- #: bws_menu.php:144 class-bws-settings.php:840 deprecated.php:156
370
  msgid "Your license will expire on"
371
  msgstr "Ваша лицензия истечет"
372
 
373
  #: bws_menu.php:146
374
- msgid "Congratulations! Pro Membership license is activated successfully."
375
  msgstr "Поздравляем! Pro Membership лицензия успешно активирована."
376
 
377
- #: bws_menu.php:153 class-bws-settings.php:1005 deprecated.php:435
378
  msgid ""
379
  "Something went wrong. Try again later or upload the plugin manually. We are "
380
  "sorry for inconvenience."
@@ -528,67 +536,68 @@ msgstr "Неактивированные плагины"
528
  msgid "Please enter a valid email address."
529
  msgstr "Пожалуйста, введите валидный емайл."
530
 
531
- #: bws_menu.php:264
532
- msgid "Email with system info is sent to"
533
- msgstr "Емейл с системной информацией отправлен на"
 
534
 
535
- #: bws_menu.php:268
536
  msgid "Thank you for contacting us."
537
  msgstr "Спасибо что связались с нами."
538
 
539
- #: bws_menu.php:291
540
  msgid "Sorry, email message could not be delivered."
541
  msgstr "Извините, ваш емейл не может быть отправлен."
542
 
543
- #: bws_menu.php:307 bws_menu.php:311 bws_menu.php:360 deprecated.php:91
544
  msgid "Plugins"
545
  msgstr "Плагины"
546
 
547
- #: bws_menu.php:308 bws_menu.php:312 bws_menu.php:611 deprecated.php:92
548
  msgid "Themes"
549
  msgstr "Темы"
550
 
551
- #: bws_menu.php:309 bws_menu.php:313 bws_menu.php:641
552
  msgid "System status"
553
  msgstr "Системная информация"
554
 
555
- #: bws_menu.php:317
556
  msgid "Support"
557
  msgstr "Тех. поддержка"
558
 
559
- #: bws_menu.php:318
560
  msgid "Manage purchased licenses & subscriptions"
561
  msgstr "Управление купленными лицензиями и подписками"
562
 
563
- #: bws_menu.php:326
564
  #, php-format
565
  msgid "Get Access to %s+ Premium Plugins"
566
  msgstr "Получить доступ к %s+ премиум плагинам"
567
 
568
- #: bws_menu.php:328
569
  msgid "Subscribe to Pro Membership"
570
  msgstr "Подписаться на Pro Membership"
571
 
572
- #: bws_menu.php:336 bws_menu.php:347 class-bws-settings.php:758
573
  #: deprecated.php:227
574
  msgid "Check license key"
575
  msgstr "Проверка лицензионного ключа"
576
 
577
- #: bws_menu.php:339
578
  msgid "Enter your license key"
579
  msgstr "Ваш лицензионный ключ"
580
 
581
- #: bws_menu.php:345 bws_menu.php:563 bws_menu.php:572
582
- #: class-bws-settings.php:737 deprecated.php:259 deprecated.php:267
583
- #: deprecated.php:629 deprecated.php:700 deprecated.php:709
584
  msgid "Activate"
585
  msgstr "Активировать"
586
 
587
- #: bws_menu.php:361
588
  msgid "Upload Plugin"
589
  msgstr "Добавить новый"
590
 
591
- #: bws_menu.php:365
592
  #, php-format
593
  msgid ""
594
  "The plugin generated %d characters of <strong>unexpected output</strong> "
@@ -601,7 +610,7 @@ msgstr ""
601
  "проблемы с RSS-лентами или другие неполадки, попробуйте деактивировать или "
602
  "удалить этот плагин."
603
 
604
- #: bws_menu.php:367
605
  msgid ""
606
  "Plugin could not be activated because it triggered a <strong>fatal error</"
607
  "strong>."
@@ -609,39 +618,37 @@ msgstr ""
609
  "Плагин не может быть активирован, поскольку он вызвал <strong>фатальную "
610
  "ошибку</strong>."
611
 
612
- #: bws_menu.php:370
613
  msgid "Plugin <strong>activated</strong>."
614
  msgstr "Плагин <strong>активировано</strong>."
615
 
616
- #: bws_menu.php:377
617
  msgid "Installing Plugin"
618
  msgstr "Установка плагина"
619
 
620
- #: bws_menu.php:383
621
  msgid "Downloading install package from"
622
  msgstr "Скачивание установочного пакета из"
623
 
624
- #: bws_menu.php:400 bws_menu.php:431 bws_menu.php:442
625
- #: class-bws-settings.php:957 class-bws-settings.php:979
626
- #: class-bws-settings.php:1001 deprecated.php:387 deprecated.php:409
627
- #: deprecated.php:431
628
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
629
  msgstr ""
630
  "Не удалось загрузить архив плагина. Пожалуйста, загрузите плагин вручную"
631
 
632
- #: bws_menu.php:408
633
  msgid "Unpacking the package"
634
  msgstr "Распаковка пакета"
635
 
636
- #: bws_menu.php:413 bws_menu.php:421
637
  msgid "Installing the plugin"
638
  msgstr "Установка плагина"
639
 
640
- #: bws_menu.php:417 class-bws-settings.php:969 deprecated.php:399
641
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
642
  msgstr "Не удалось открыть архив ZIP. Пожалуйста, загрузите плагин вручную"
643
 
644
- #: bws_menu.php:424 class-bws-settings.php:975 deprecated.php:405
645
  msgid ""
646
  "Your server does not support either ZipArchive or Phar. Please, upload the "
647
  "plugin manually"
@@ -649,95 +656,95 @@ msgstr ""
649
  "Ваш сервер не поддерживает ни библиотеку ZipArchive, ни библиотеку Phar. "
650
  "Пожалуйста, загрузите плагин вручную"
651
 
652
- #: bws_menu.php:427
653
  #, php-format
654
  msgid "The plugin %s is successfully installed."
655
  msgstr "Плагин %s успешно установлен."
656
 
657
- #: bws_menu.php:434 class-bws-settings.php:982 deprecated.php:412
658
  msgid "UploadDir is not writable. Please, upload the plugin manually"
659
  msgstr ""
660
  "Папка загрузки не доступна для записи. Пожалуйста, загрузите плагин вручную"
661
 
662
- #: bws_menu.php:439
663
  msgid "Activate Plugin"
664
  msgstr "Активировать плагин"
665
 
666
- #: bws_menu.php:439 bws_menu.php:445
667
  msgid "Return to BestWebSoft Panel"
668
  msgstr "Возврат к BestWebSoft Panel"
669
 
670
- #: bws_menu.php:449 bws_menu.php:464 bws_menu.php:593
671
  msgid "All"
672
  msgstr "Все"
673
 
674
- #: bws_menu.php:450 bws_menu.php:630
675
  msgid "Installed"
676
  msgstr "Установленные"
677
 
678
- #: bws_menu.php:451
679
  msgid "Not Installed"
680
  msgstr "Не установленные"
681
 
682
- #: bws_menu.php:457
683
  msgid "Filter results"
684
  msgstr "Фильтр результатов"
685
 
686
- #: bws_menu.php:460 bws_menu.php:589
687
  msgid "Category"
688
  msgstr "Категория"
689
 
690
- #: bws_menu.php:524
691
  msgid "Not installed"
692
  msgstr "Не установлен"
693
 
694
- #: bws_menu.php:528
695
  msgid "Renew to get updates"
696
  msgstr "Продлить для обновления"
697
 
698
- #: bws_menu.php:531
699
  #, php-format
700
  msgid "Update to v %s"
701
  msgstr "Обновить до версии %s"
702
 
703
- #: bws_menu.php:543 bws_menu.php:566 bws_menu.php:575
704
  msgid "Install Now"
705
  msgstr "Установить"
706
 
707
- #: bws_menu.php:549 class-bws-settings.php:157 class-bws-settings.php:1065
708
  msgid "Upgrade to Pro"
709
  msgstr "Обновить до Pro"
710
 
711
- #: bws_menu.php:563 bws_menu.php:572
712
  msgid "Activate this plugin"
713
  msgstr "Активировать плагин"
714
 
715
- #: bws_menu.php:575
716
  msgid "Install this plugin"
717
  msgstr "Установить этот плагин"
718
 
719
- #: bws_menu.php:584
720
  msgid "Nothing found. Try another criteria."
721
  msgstr "Ничего не найдено. Попробуйте другие критерии."
722
 
723
- #: bws_menu.php:621
724
  #, php-format
725
  msgid "By %s"
726
  msgstr "%s"
727
 
728
- #: bws_menu.php:628
729
  msgid "Already Installed"
730
  msgstr "Уже установлена"
731
 
732
- #: bws_menu.php:638
733
- msgid "Browse Free WordPress Themes"
734
- msgstr "Обзор бесплатных WordPress тем"
735
 
736
- #: bws_menu.php:647
737
  msgid "Send to support"
738
  msgstr "Отправить в тех. поддержку"
739
 
740
- #: bws_menu.php:654
741
  msgid "Send to custom email &#187;"
742
  msgstr "Отправить на емейл &#187;"
743
 
@@ -791,16 +798,16 @@ msgstr "Все настройки плагина были восстановле
791
  msgid "Custom Code"
792
  msgstr "Пользовательский код"
793
 
794
- #: class-bws-settings.php:427 deprecated.php:497
795
  msgid "You do not have sufficient permissions to edit plugins for this site."
796
  msgstr ""
797
  "У вас недостаточно полномочий, чтобы редактировать плагины на этом сайте."
798
 
799
- #: class-bws-settings.php:432 deprecated.php:618
800
  msgid "These styles will be added to the header on all pages of your site."
801
  msgstr "Эти стили будут добавлены в хедер на всех страницах вашего сайта."
802
 
803
- #: class-bws-settings.php:435 deprecated.php:620
804
  #, php-format
805
  msgid ""
806
  "This PHP code will be hooked to the %s action and will be printed on front "
@@ -813,7 +820,7 @@ msgstr ""
813
  msgid "These code will be added to the header on all pages of your site."
814
  msgstr "Этот код будет добавлен в хедер на всех страницах вашего сайта."
815
 
816
- #: class-bws-settings.php:446 deprecated.php:644
817
  #, php-format
818
  msgid ""
819
  "You need to make this files writable before you can save your changes. See "
@@ -822,7 +829,7 @@ msgstr ""
822
  "Чтобы сохранить изменения, нужно сделать этот файл доступным для записи. "
823
  "Дополнительную информацию можно получить в %s Кодексе %s."
824
 
825
- #: class-bws-settings.php:456 deprecated.php:626
826
  msgid "Browsing"
827
  msgstr "Просмотр"
828
 
@@ -831,16 +838,16 @@ msgstr "Просмотр"
831
  msgid "Activate custom %s code."
832
  msgstr "Активировать пользовательский %s код."
833
 
834
- #: class-bws-settings.php:469 deprecated.php:633
835
  #, php-format
836
  msgid "Learn more about %s"
837
  msgstr "Подробнее о %s"
838
 
839
- #: class-bws-settings.php:529
840
  msgid "Miscellaneous Settings"
841
  msgstr "Прочие настройки"
842
 
843
- #: class-bws-settings.php:538 class-bws-settings.php:593
844
  #, php-format
845
  msgid ""
846
  "It is prohibited to change %s settings on this site in the %s network "
@@ -848,75 +855,75 @@ msgid ""
848
  msgstr ""
849
  "Cетевыми настройками %s запрещается изменять настройки %s на этом сайте."
850
 
851
- #: class-bws-settings.php:541 class-bws-settings.php:596
852
  #, php-format
853
  msgid ""
854
  "It is prohibited to view %s settings on this site in the %s network settings."
855
  msgstr ""
856
  "Cетевыми настройками %s запрещается просматривать настройки %s на этом сайте."
857
 
858
- #: class-bws-settings.php:550
859
  msgid "Pro Options"
860
  msgstr "Pro опции"
861
 
862
- #: class-bws-settings.php:554
863
  msgid "Enable to display plugin Pro options."
864
  msgstr "Включите для отображения Pro опций плагина."
865
 
866
- #: class-bws-settings.php:560
867
  msgid "Track Usage"
868
  msgstr "Собирать статистику"
869
 
870
- #: class-bws-settings.php:564
871
  msgid ""
872
  "Enable to allow tracking plugin usage anonymously in order to make it better."
873
  msgstr ""
874
  "Включить, чтобы разрешить анонимно отслеживать использование и сделать "
875
  "плагин лучше."
876
 
877
- #: class-bws-settings.php:569
878
  msgid "Default Settings"
879
  msgstr "Настройки по умолчанию"
880
 
881
- #: class-bws-settings.php:571
882
  msgid "Restore Settings"
883
  msgstr "Восстановить настройки"
884
 
885
- #: class-bws-settings.php:572
886
  msgid "This will restore plugin settings to defaults."
887
  msgstr "Восстановить все настройки плагина к настройкам по умолчанию."
888
 
889
- #: class-bws-settings.php:584
890
  msgid "Import / Export"
891
  msgstr "Импорт / Экспорт"
892
 
893
- #: class-bws-settings.php:700 class-bws-settings.php:733
894
- #: class-bws-settings.php:755
895
  msgid "License Key"
896
  msgstr "Лицензионный ключ"
897
 
898
- #: class-bws-settings.php:723
899
  msgid "Congratulations! Pro license is activated successfully."
900
  msgstr "Поздравляем! Pro лицензия успешно активирована."
901
 
902
- #: class-bws-settings.php:724
903
  #, php-format
904
  msgid "You will be automatically redirected to the %s in %s seconds."
905
  msgstr "Вы будете автоматически перенаправлены на %s через %s секунд."
906
 
907
- #: class-bws-settings.php:724
908
  msgid "Settings page"
909
  msgstr "страницу Настроек"
910
 
911
- #: class-bws-settings.php:739
912
  #, php-format
913
  msgid "Enter your license key to activate %s and get premium plugin features."
914
  msgstr ""
915
  "Введите лицензионный ключ для активации %s и получения дополнительных "
916
  "возможностей плагина."
917
 
918
- #: class-bws-settings.php:742 class-bws-settings.php:929 deprecated.php:362
919
- #: deprecated.php:703
920
  msgid ""
921
  "Unfortunately, you have exceeded the number of available tries per day. "
922
  "Please, upload the plugin manually."
@@ -924,12 +931,12 @@ msgstr ""
924
  "К сожалению, вы превысили количество доступных попыток в день. Пожалуйста, "
925
  "загрузите плагин вручную."
926
 
927
- #: class-bws-settings.php:745 deprecated.php:694
928
  #, php-format
929
  msgid "Start Your Free %s-Day Trial Now"
930
  msgstr "Попробуйте %s-дневную Trial версию бесплатно"
931
 
932
- #: class-bws-settings.php:760
933
  msgid ""
934
  "If necessary, you can check if the license key is correct or reenter it in "
935
  "the field below."
@@ -937,15 +944,15 @@ msgstr ""
937
  "При необходимости вы можете проверить валидность лицензионного ключа или "
938
  "повторно ввести его в поле ниже."
939
 
940
- #: class-bws-settings.php:765
941
  msgid "Manage License Settings"
942
  msgstr "Управление настройками лицензий"
943
 
944
- #: class-bws-settings.php:767
945
  msgid "Login to Client Area"
946
  msgstr "Зайти в Client Area"
947
 
948
- #: class-bws-settings.php:769
949
  msgid ""
950
  "Manage active licenses, download BWS products, and view your payment history "
951
  "using BestWebSoft Client Area."
@@ -953,12 +960,12 @@ msgstr ""
953
  "Управляй активными лицензиями, загружай BWS продукты, а также просматривай "
954
  "историю платежей с помощью BestWebSoft Client Area."
955
 
956
- #: class-bws-settings.php:824 class-bws-settings.php:927 deprecated.php:141
957
- #: deprecated.php:360
958
  msgid "This license key is bound to another site."
959
  msgstr "Этот лицензионный ключ привязан к другому сайту."
960
 
961
- #: class-bws-settings.php:826 deprecated.php:143
962
  msgid ""
963
  "This license key is valid, but Your license has expired. If you want to "
964
  "update our plugin in future, you should extend the license."
@@ -966,11 +973,11 @@ msgstr ""
966
  "Лицензионный ключ принят, но срок действия лицензии истек. Если вы хотите "
967
  "обновлять плагин в будущем, вы должны продлить лицензию."
968
 
969
- #: class-bws-settings.php:828 deprecated.php:145
970
  msgid "Unfortunately, you have exceeded the number of available tries."
971
  msgstr "К сожалению, вы превысили количество доступных попыток."
972
 
973
- #: class-bws-settings.php:830 deprecated.php:147
974
  msgid ""
975
  "Unfortunately, the Pro Trial licence was already installed to this domain. "
976
  "The Pro Trial license can be installed only once."
@@ -978,136 +985,169 @@ msgstr ""
978
  "К сожалению, Pro Trial версия плагина уже устанавливалась на этот домен. Pro "
979
  "Trial версию можно устанавливать лишь один раз."
980
 
981
- #: class-bws-settings.php:835 deprecated.php:151
982
  msgid "The Pro Trial license key is valid."
983
  msgstr "Ключ Pro Trial версии действителен."
984
 
985
- #: class-bws-settings.php:843 deprecated.php:159 deprecated.php:246
986
  #, php-format
987
  msgid ""
988
  "In order to continue using the plugin it is necessary to buy a %s license."
989
  msgstr ""
990
  "Чтобы продолжить пользоваться плагином, необходимо приобрести %s лицензию."
991
 
992
- #: class-bws-settings.php:1040 deprecated.php:463
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
993
  msgid "Please, enter Your license key"
994
  msgstr "Пожалуйста, введите ваш лицензионный ключ"
995
 
996
- #: class-bws-settings.php:1052
997
  msgid "Need Help?"
998
  msgstr "Нужна помощь?"
999
 
1000
- #: class-bws-settings.php:1054
1001
  msgid "Read the Instruction"
1002
  msgstr "Читать инструкцию"
1003
 
1004
- #: class-bws-settings.php:1058
1005
  msgid "Watch the Video"
1006
  msgstr "Смотреть видео"
1007
 
1008
- #: class-bws-settings.php:1069
1009
  msgid "Start Your Free Trial"
1010
  msgstr "Использовать бесплатную Trial версию"
1011
 
1012
- #: deactivation-form.php:26
1013
  msgid "Need help? We are ready to answer your questions."
1014
  msgstr "Нужна помощь? Мы готовы ответить на ваши вопросы."
1015
 
1016
- #: deactivation-form.php:26
1017
  msgid "Contact Support"
1018
  msgstr "Связаться с тех. поддержкой"
1019
 
1020
- #: deactivation-form.php:31
1021
  msgid "The plugin is not working"
1022
  msgstr "Плагин не работает"
1023
 
1024
- #: deactivation-form.php:33
1025
  msgid "Kindly share what didn't work so we can fix it in future updates..."
1026
  msgstr ""
1027
  "Пожалуйста, сообщите, что не работает, чтобы мы смогли исправить это в "
1028
  "будущих обновлениях..."
1029
 
1030
- #: deactivation-form.php:37
1031
  msgid "The plugin didn't work as expected"
1032
  msgstr "Плагин не работает, как ожидалось"
1033
 
1034
- #: deactivation-form.php:39
1035
  msgid "What did you expect?"
1036
  msgstr "Что именно вы ожидали?"
1037
 
1038
- #: deactivation-form.php:43
1039
  msgid "The plugin suddenly stopped working"
1040
  msgstr "Плагин внезапно перестал работать"
1041
 
1042
- #: deactivation-form.php:50
1043
  msgid "The plugin broke my site"
1044
  msgstr "Плагин сломал мой сайт"
1045
 
1046
- #: deactivation-form.php:57
1047
  msgid "I couldn't understand how to get it work"
1048
  msgstr "Я не могу понять, как заставить его работать"
1049
 
1050
- #: deactivation-form.php:64
1051
  msgid "I found a better plugin"
1052
  msgstr "Я нашел плагин лучше"
1053
 
1054
- #: deactivation-form.php:66
1055
  msgid "What's the plugin name?"
1056
  msgstr "Какое название плагина?"
1057
 
1058
- #: deactivation-form.php:70
1059
  msgid "The plugin is great, but I need specific feature that you don't support"
1060
  msgstr ""
1061
  "Плагин замечательный, но мне нужен определенный функционал, которого у вас "
1062
  "нет"
1063
 
1064
- #: deactivation-form.php:72
1065
  msgid "What feature?"
1066
  msgstr "Какой функционал?"
1067
 
1068
- #: deactivation-form.php:76
1069
  msgid "I no longer need the plugin"
1070
  msgstr "Мне больше не нужен плагин"
1071
 
1072
- #: deactivation-form.php:82
1073
  msgid "It's a temporary deactivation, I'm just debugging an issue"
1074
  msgstr "Это временная деактивация, я просто отлаживаю проблему"
1075
 
1076
- #: deactivation-form.php:88
1077
  msgid "Other"
1078
  msgstr "Другое"
1079
 
1080
- #: deactivation-form.php:122
1081
  msgid "Quick Feedback"
1082
  msgstr "Быстрый отзыв"
1083
 
1084
- #: deactivation-form.php:123
1085
  msgid "If you have a moment, please let us know why you are deactivating"
1086
  msgstr ""
1087
  "Если у вас есть время, пожалуйста, сообщите нам, почему вы деактивируете "
1088
  "плагин"
1089
 
1090
- #: deactivation-form.php:128
1091
- msgid "Anonymous feedback"
1092
- msgstr "Анонимный отзыв"
1093
 
1094
- #: deactivation-form.php:130
1095
  msgid "Cancel"
1096
  msgstr "Отмена"
1097
 
1098
- #: deactivation-form.php:230
1099
  msgid "Processing"
1100
  msgstr "Обработка"
1101
 
1102
- #: deactivation-form.php:259
1103
  msgid "Submit & Deactivate"
1104
  msgstr "Отправить и Деактивировать"
1105
 
1106
- #: deactivation-form.php:276
1107
  msgid "Please tell us the reason so we can improve it."
1108
  msgstr "Пожалуйста, сообщите нам причину, чтобы мы могли улучшить плагин."
1109
 
1110
- #: deactivation-form.php:344
1111
  msgid "Deactivate"
1112
  msgstr "Деактивировать"
1113
 
@@ -1137,79 +1177,79 @@ msgstr ""
1137
  "(ваше имя пользователя - это емейл, указанный при покупке). При "
1138
  "необходимости нажмите \"Забыли пароль?\"."
1139
 
1140
- #: deprecated.php:247
1141
  msgid "After that, you can activate it by entering your license key."
1142
  msgstr "После этого вы сможете активировать его введя лицензионный ключ."
1143
 
1144
- #: deprecated.php:249 deprecated.php:688
1145
  msgid "License key can be found in the"
1146
  msgstr "Лицензионный ключ можно найти в"
1147
 
1148
- #: deprecated.php:251 deprecated.php:690
1149
  msgid "(your username is the email address specified during the purchase)."
1150
  msgstr "(ваше имя пользователя - это емейл, указанный при покупке)."
1151
 
1152
- #: deprecated.php:278
1153
  msgid ""
1154
  "Congratulations! The Pro license of the plugin is activated successfully."
1155
  msgstr "Поздравляем! Pro версия плагина успешно активирована."
1156
 
1157
- #: deprecated.php:280 deprecated.php:669
1158
  msgid "Please, go to"
1159
  msgstr "Пожалуйста, перейдите на"
1160
 
1161
- #: deprecated.php:280 deprecated.php:669
1162
  msgid "the setting page"
1163
  msgstr "страницу настроек"
1164
 
1165
- #: deprecated.php:281 deprecated.php:670
1166
  msgid "You will be redirected automatically in 5 seconds."
1167
  msgstr "Вы будете перенаправлены автоматически через 5 секунд."
1168
 
1169
- #: deprecated.php:315
1170
  msgid "Check premium options on the plugin settings page!"
1171
  msgstr "Просмотрите премиум опции на странице настроек плагина!"
1172
 
1173
- #: deprecated.php:478
1174
  msgid "Restore all plugin settings to defaults"
1175
  msgstr "Восстановить все настройки плагина к настройкам по умолчанию"
1176
 
1177
- #: deprecated.php:480
1178
  msgid "Restore settings"
1179
  msgstr "Восстановить настройки"
1180
 
1181
- #: deprecated.php:548 deprecated.php:575
1182
  #, php-format
1183
  msgid "File %s edited successfully."
1184
  msgstr "Файл %s успешно изменён."
1185
 
1186
- #: deprecated.php:550 deprecated.php:577
1187
  msgid "Not enough permissions to create or update the file"
1188
  msgstr "Не достаточно прав для создания или обновления файла"
1189
 
1190
- #: deprecated.php:580
1191
  msgid "Not enough permissions to create the file"
1192
  msgstr "Не достаточно прав для создания файла"
1193
 
1194
- #: deprecated.php:624
1195
  msgid "Editing"
1196
  msgstr "Редактирование"
1197
 
1198
- #: deprecated.php:667
1199
  msgid ""
1200
  "Congratulations! Pro version of the plugin is installed and activated "
1201
  "successfully."
1202
  msgstr "Поздравляем! Pro версия плагина успешно загружена и активирована."
1203
 
1204
- #: deprecated.php:677
1205
  msgid "Show Pro features"
1206
  msgstr "Показать Pro опции"
1207
 
1208
- #: deprecated.php:684
1209
  msgid "Enter your license key to install and activate"
1210
  msgstr "Введите лицензионный ключ для установки и активации"
1211
 
1212
- #: deprecated.php:686
1213
  msgid "version of the plugin."
1214
  msgstr "версия плагина."
1215
 
@@ -1249,17 +1289,15 @@ msgstr "Поисковая оптимизация"
1249
  msgid "SMM"
1250
  msgstr "СММ"
1251
 
1252
- #: product_list.php:23
1253
- msgid ""
1254
- "Protect WordPress website forms from spam entries by means of math logic."
1255
- msgstr ""
1256
- "Защищайте формы вашего сайта WordPress от взлома путем математической логики."
1257
 
1258
- #: product_list.php:35
1259
  msgid "Create your personal car rental/booking and reservation website."
1260
  msgstr "Создайте свой собственный сайт проката и резервирования автомобилей."
1261
 
1262
- #: product_list.php:45
1263
  msgid ""
1264
  "Allow customers to reach you using secure contact form plugin any website "
1265
  "must have."
@@ -1267,42 +1305,42 @@ msgstr ""
1267
  "Предоставьте возможность клиентам осуществлять связь с вами через безопасный "
1268
  "плагин контактной формы, который должен иметь любой сайт."
1269
 
1270
- #: product_list.php:55
1271
  msgid "Add unlimited number of contact forms to WordPress website."
1272
  msgstr ""
1273
  "Добавляйте неограниченное количество контактных форм на ваш сайт WordPress."
1274
 
1275
- #: product_list.php:65
1276
  msgid "Save and manage Contact Form messages. Never lose important data."
1277
  msgstr ""
1278
  "Сохраняйте и управляйте сообщениями плагина Contact Form. Никогда не теряйте "
1279
  "важные данные."
1280
 
1281
- #: product_list.php:75
1282
  msgid "Add unlimited custom pages to WordPress admin dashboard."
1283
  msgstr ""
1284
  "Добавляйте неограниченное количество пользовательских страниц в панели "
1285
  "администратора WordPress."
1286
 
1287
- #: product_list.php:82
1288
  msgid "Add custom fields to WordPress website search results."
1289
  msgstr ""
1290
  "Добавляйте пользовательские поля в результаты поиска вашего сайта WordPress."
1291
 
1292
- #: product_list.php:89
1293
  msgid ""
1294
  "Add custom post types and taxonomies to WordPress website search results."
1295
  msgstr ""
1296
  "Добавляйте пользовательские типы постов и таксономии в результаты поиска на "
1297
  "вашем сайте WordPress."
1298
 
1299
- #: product_list.php:99
1300
  msgid "Add PayPal and 2CO donate buttons to receive charity payments."
1301
  msgstr ""
1302
  "Добавляйте кнопки PayPal и 2CO, чтобы получать пожертвования и "
1303
  "благотворительные взносы."
1304
 
1305
- #: product_list.php:106
1306
  msgid ""
1307
  "Get latest error log messages to diagnose website problems. Define and fix "
1308
  "issues faster."
@@ -1310,7 +1348,7 @@ msgstr ""
1310
  "Получайте последние сообщения из журнала ошибок для диагностики проблем "
1311
  "сайта. Быстрее выявляйте и устраняйте проблемы."
1312
 
1313
- #: product_list.php:113
1314
  msgid ""
1315
  "Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and "
1316
  "widgets."
@@ -1318,7 +1356,7 @@ msgstr ""
1318
  "Добавляйте кнопки Facebook \"Подписаться\", \"Нравится\" и \"Поделиться\" в "
1319
  "посты, страницы и виджеты сайта WordPress."
1320
 
1321
- #: product_list.php:123
1322
  msgid ""
1323
  "Add beautiful galleries, albums & images to your WordPress website in a few "
1324
  "clicks."
@@ -1326,7 +1364,7 @@ msgstr ""
1326
  "Добавляйте живописные галереи, альбомы и изображения на ваш сайт WordPress "
1327
  "всего в несколько кликов."
1328
 
1329
- #: product_list.php:133
1330
  msgid ""
1331
  "Add Google +1, Share, Follow, Hangout buttons and profile badge to WordPress "
1332
  "posts, pages and widgets."
@@ -1334,7 +1372,7 @@ msgstr ""
1334
  "Добавляйте кнопки Google \"+1\", \"Поделиться\", \"Подписаться\", \"Hangout"
1335
  "\" и значок профиля к постам, страницам и виджетам WordPress."
1336
 
1337
- #: product_list.php:143
1338
  msgid ""
1339
  "Stronger security solution which protects your WordPress website from hacks "
1340
  "and unauthorized login attempts."
@@ -1342,7 +1380,7 @@ msgstr ""
1342
  "Мощнейшее решение для безопасности, которое защищает ваш сайт WordPress от "
1343
  "взломов и неавторизованных попыток входа в систему."
1344
 
1345
- #: product_list.php:153
1346
  msgid ""
1347
  "Add Adsense ads to WordPress website pages, posts, custom posts, search "
1348
  "results, categories, tags, and widgets."
@@ -1350,13 +1388,13 @@ msgstr ""
1350
  "Добавляйте рекламу сервиса Adsense на страницы, посты, пользовательские "
1351
  "посты, результаты поиска, категории, теги и виджеты сайта WordPress."
1352
 
1353
- #: product_list.php:163
1354
  msgid "Add Google Analytics code to WordPress website and track basic stats."
1355
  msgstr ""
1356
  "Добавляйте код Google Analytics на ваш сайт WordPress и отслеживайте базовую "
1357
  "статистику сайта."
1358
 
1359
- #: product_list.php:173
1360
  msgid ""
1361
  "Protect WordPress website forms from spam entries with Google Captcha "
1362
  "(reCaptcha)."
@@ -1364,13 +1402,13 @@ msgstr ""
1364
  "Защищайте формы вашего сайта WordPress от спама с помощью Google Captcha "
1365
  "(reCaptcha)."
1366
 
1367
- #: product_list.php:183
1368
  msgid "Add customized Google maps to WordPress posts, pages and widgets."
1369
  msgstr ""
1370
  "Добавляйте пользовательские карты Google в посты, страницы и виджеты "
1371
  "WordPress."
1372
 
1373
- #: product_list.php:193
1374
  msgid ""
1375
  "Generate and add XML sitemap to WordPress website. Help search engines index "
1376
  "your blog."
@@ -1378,7 +1416,7 @@ msgstr ""
1378
  "Создавайте и добавляйте файлы XML sitemap на ваш сайт WordPress. Помогите "
1379
  "поисковым системам проиндексировать ваш блог."
1380
 
1381
- #: product_list.php:203
1382
  msgid ""
1383
  "Replace external WordPress website links with Google shortlinks and track "
1384
  "click stats."
@@ -1386,7 +1424,7 @@ msgstr ""
1386
  "Замените внешние ссылки сайта WordPress на короткие ссылки Google и "
1387
  "отслеживайте статистику кликов."
1388
 
1389
- #: product_list.php:210
1390
  msgid ""
1391
  "Protect WordPress website – allow and deny access for certain IP addresses, "
1392
  "hostnames, etc."
@@ -1394,7 +1432,7 @@ msgstr ""
1394
  "Защитите свой сайт WordPress - предоставляйте и запрещайте доступ с "
1395
  "определенных IP-адресов, имен хостов и т.д."
1396
 
1397
- #: product_list.php:220
1398
  msgid ""
1399
  "Create your personal job board and listing WordPress website. Search jobs, "
1400
  "submit CV/resumes, choose candidates."
@@ -1403,7 +1441,7 @@ msgstr ""
1403
  "WordPress. Осуществляйте поиск вакансий, подачу резюме/CV кандидата, выбор "
1404
  "кандидатов."
1405
 
1406
- #: product_list.php:227
1407
  msgid ""
1408
  "Protect WordPress website against brute force attacks. Limit rate of login "
1409
  "attempts."
@@ -1411,7 +1449,7 @@ msgstr ""
1411
  "Защищайте свой сайт WordPress от брутфорс-атак. Ограничивайте количество "
1412
  "попыток ввода логина."
1413
 
1414
- #: product_list.php:237
1415
  msgid ""
1416
  "Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. "
1417
  "5 plugins included – profile, insider, etc."
@@ -1420,7 +1458,7 @@ msgstr ""
1420
  "страницам и виджетам WordPress. 5 плагинов включено - Профиль, Инсайдер и т."
1421
  "д."
1422
 
1423
- #: product_list.php:247
1424
  msgid ""
1425
  "Translate WordPress website content to other languages manually. Create "
1426
  "multilingual pages, posts, widgets, menus, etc."
@@ -1428,7 +1466,7 @@ msgstr ""
1428
  "Переводите содержимое сайта WordPress на другие языки вручную. Создавайте "
1429
  "многоязычные страницы, посты, виджеты, меню и т.д."
1430
 
1431
- #: product_list.php:257
1432
  msgid ""
1433
  "Add customizable pagination to WordPress website. Split long content to "
1434
  "multiple pages for better navigation."
@@ -1436,7 +1474,7 @@ msgstr ""
1436
  "Добавляйте настраиваемую пагинацию на ваш сайт WordPress. Разбивайте "
1437
  "объемный контент на несколько страниц для лучшей навигации."
1438
 
1439
- #: product_list.php:267
1440
  msgid ""
1441
  "Generate PDF files and print WordPress posts/pages. Customize document "
1442
  "header/footer styles and appearance."
@@ -1444,7 +1482,7 @@ msgstr ""
1444
  "Создавайте PDF-файлы и печатайте посты/страницы сайта WordPress. "
1445
  "Настраивайте стили хедера/футера документа и его внешний вид."
1446
 
1447
- #: product_list.php:277
1448
  msgid ""
1449
  "Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, "
1450
  "Profile) to WordPress posts, pages and widgets."
@@ -1452,7 +1490,7 @@ msgstr ""
1452
  "Добавляйте кнопки Pinterest \"Подписаться\", \"Сохранить\" и виджеты профиля "
1453
  "(Пин, Доска, Профиль) к постам, страницам и виджетам WordPress."
1454
 
1455
- #: product_list.php:287
1456
  msgid ""
1457
  "Create your personal portfolio WordPress website. Manage and showcase past "
1458
  "projects to get more clients."
@@ -1460,13 +1498,13 @@ msgstr ""
1460
  "Создавайте и добавляйте портфолио на свой сайт WordPress. Управляйте и "
1461
  "демонстрируйте прошлые проекты, чтобы привлечь больше клиентов."
1462
 
1463
- #: product_list.php:297
1464
  msgid "Export WordPress posts to CSV file format easily. Configure data order."
1465
  msgstr ""
1466
  "С легкостью экспортируйте посты WordPress в файлы формата CSV. Настраивайте "
1467
  "порядок отображения данных."
1468
 
1469
- #: product_list.php:304
1470
  msgid ""
1471
  "Add extra fields to default WordPress user profile. The easiest way to "
1472
  "create and manage additional custom values."
@@ -1474,7 +1512,7 @@ msgstr ""
1474
  "Добавляйте пользовательские поля в стандартный профиль WordPress. Самый "
1475
  "простой способ создания и управления дополнительными полями."
1476
 
1477
- #: product_list.php:311
1478
  msgid ""
1479
  "Add and display HTML advertisement banner on WordPress website. Customize "
1480
  "bar styles and appearance."
@@ -1482,7 +1520,7 @@ msgstr ""
1482
  "Добавляйте и отображайте баннерную HTML рекламу на сайте WordPress. "
1483
  "Настраивайте стили и внешний вид баннера."
1484
 
1485
- #: product_list.php:321
1486
  msgid ""
1487
  "Add customizable quotes and tips blocks to WordPress posts, pages and "
1488
  "widgets."
@@ -1490,7 +1528,7 @@ msgstr ""
1490
  "Добавляйте настраиваемые цитаты и подсказки к постам, страницам и виджетам "
1491
  "WordPress."
1492
 
1493
- #: product_list.php:328
1494
  msgid ""
1495
  "Add rating plugin to your WordPress website to receive feedback from your "
1496
  "customers."
@@ -1498,7 +1536,7 @@ msgstr ""
1498
  "Добавляйте систему оценивания и рейтинга на ваш сайт WordPress и получайте "
1499
  "отзывы от ваших клиентов."
1500
 
1501
- #: product_list.php:335
1502
  msgid ""
1503
  "Create your personal real estate WordPress website. Sell, rent and buy "
1504
  "properties. Add, search and browse listings easily."
@@ -1507,7 +1545,7 @@ msgstr ""
1507
  "Продавайте, арендуйте и покупайте недвижимость. Легко добавляйте, находите и "
1508
  "просматривайте листинги."
1509
 
1510
- #: product_list.php:345
1511
  msgid ""
1512
  "Add related, featured, latest, and popular posts to your WordPress website. "
1513
  "Connect your blog readers with a relevant content."
@@ -1515,7 +1553,7 @@ msgstr ""
1515
  "Добавляйте похожие, избранные, последние и популярные посты на ваш сайт "
1516
  "WordPress. Предоставляйте своим читателям контент схожей тематики."
1517
 
1518
- #: product_list.php:352
1519
  msgid ""
1520
  "Send bulk email messages to WordPress users. Custom templates, advanced "
1521
  "settings and detailed reports."
@@ -1523,7 +1561,7 @@ msgstr ""
1523
  "Осуществляйте массовую рассылку писем пользователям WordPress. "
1524
  "Пользовательские шаблоны, дополнительные настройки и подробные отчеты."
1525
 
1526
- #: product_list.php:362
1527
  msgid ""
1528
  "The best responsive slider plugin for your WordPress website. Create "
1529
  "beautifully animated slides just in a few clicks."
@@ -1531,7 +1569,7 @@ msgstr ""
1531
  "Самый лучший адаптивный слайдер для вашего сайта WordPress. Создавайте "
1532
  "красиво анимированные слайды всего в несколько кликов."
1533
 
1534
- #: product_list.php:369
1535
  msgid ""
1536
  "Configure SMTP server to receive email messages from WordPress to Gmail, "
1537
  "Yahoo, Hotmail and other services."
@@ -1540,7 +1578,7 @@ msgstr ""
1540
  "WordPress на такие почтовые службы, как Gmail, Yahoo, Hotmail и многие "
1541
  "другие."
1542
 
1543
- #: product_list.php:376
1544
  msgid ""
1545
  "Add social media buttons and widgets to WordPress posts, pages and widgets. "
1546
  "FB, Twitter, G+1, Pinterest, LinkedIn."
@@ -1548,7 +1586,7 @@ msgstr ""
1548
  "Добавляйте кнопки и виджеты социальных сетей к постам, страницам и виджетам "
1549
  "WordPress. FB, Twitter, G+1, Pinterest, LinkedIn."
1550
 
1551
- #: product_list.php:386
1552
  msgid ""
1553
  "Add social media login, registration, and commenting to your WordPress "
1554
  "website."
@@ -1556,7 +1594,7 @@ msgstr ""
1556
  "Добавляйте на свой сайт WordPress возможность входа, регистрации и "
1557
  "комментирования с использованием существующих аккаунтов социальных сетей."
1558
 
1559
- #: product_list.php:393
1560
  msgid ""
1561
  "Add email newsletter sign up form to WordPress posts, pages and widgets. "
1562
  "Collect data and subscribe your users."
@@ -1564,7 +1602,7 @@ msgstr ""
1564
  "Добавляйте форму подписки на новостную рассылку в посты, страницы и виджеты "
1565
  "WordPress. Собирайте данные и осуществляйте подписку пользователей."
1566
 
1567
- #: product_list.php:403
1568
  msgid ""
1569
  "Add testimonials and feedbacks from your customers to WordPress website "
1570
  "posts, pages, and widgets."
@@ -1572,7 +1610,7 @@ msgstr ""
1572
  "Добавляйте рекомендации и отзывы ваших клиентов в посты, страницы и виджеты "
1573
  "сайта WordPress."
1574
 
1575
- #: product_list.php:410
1576
  msgid ""
1577
  "Best timesheet plugin for WordPress. Track employee time, streamline "
1578
  "attendance and generate reports."
@@ -1580,7 +1618,7 @@ msgstr ""
1580
  "Лучший плагин учёта рабочего времени на сайте WordPress. Отслеживайте время "
1581
  "работы сотрудников, оптимизируйте график работы в офисе и создавайте отчеты."
1582
 
1583
- #: product_list.php:420
1584
  msgid ""
1585
  "Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts "
1586
  "and pages."
@@ -1588,7 +1626,7 @@ msgstr ""
1588
  "Добавляйте кнопки Твиттера \"Читать\", \"Твитнуть\", \"Метка\" и \"Упомянуть"
1589
  "\" к постам и страницам WordPress. "
1590
 
1591
- #: product_list.php:430
1592
  msgid ""
1593
  "Automatically check and update WordPress website core with all installed "
1594
  "plugins and themes to the latest versions."
@@ -1596,7 +1634,7 @@ msgstr ""
1596
  "Выполняйте автоматическую проверку и обновление ядра WordPress до последних "
1597
  "версий со всеми установленными плагинами и темами."
1598
 
1599
- #: product_list.php:440
1600
  msgid ""
1601
  "Powerful user role management plugin for WordPress website. Create, edit, "
1602
  "copy, and delete user roles."
@@ -1604,7 +1642,7 @@ msgstr ""
1604
  "Эффективный плагин управления ролями пользователей для сайта WordPress. "
1605
  "Создавайте, редактируйте, копируйте и удаляйте роли пользователей."
1606
 
1607
- #: product_list.php:450
1608
  msgid ""
1609
  "Display live count of online visitors who are currently browsing your "
1610
  "WordPress website."
@@ -1612,7 +1650,7 @@ msgstr ""
1612
  "Ведите подсчет количества посетителей, которые в настоящее время "
1613
  "просматривают ваш сайт WordPress."
1614
 
1615
- #: product_list.php:460
1616
  msgid ""
1617
  "Backup and export Zendesk Help Center content automatically to your "
1618
  "WordPress website database."
@@ -1620,6 +1658,24 @@ msgstr ""
1620
  "Делайте автоматическое резервное копирование и экспорт содержимого Zendesk "
1621
  "Help Center в базу данных вашего сайта WordPress."
1622
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1623
  #~ msgid ""
1624
  #~ "You can use one license of the Pro plugin for one domain only. Please "
1625
  #~ "check and edit your license or domain if necessary using you personal "
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-09-11 16:44+0300\n"
6
+ "PO-Revision-Date: 2017-09-11 16:44+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <https://support.bestwebsoft.com>\n"
9
+ "Language: ru\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Generator: Poedit 1.8.7.1\n"
17
+ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
18
+ "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
  #: bws_functions.php:73 bws_functions.php:191
42
  msgid "Like the plugin?"
43
  msgstr "Понравился плагин?"
44
 
45
+ #: bws_functions.php:93
46
+ #, php-format
47
+ msgid "%s reviews"
48
+ msgstr "%s отзывы"
49
+
50
  #: bws_functions.php:94
51
  msgid "Rate it"
52
  msgstr "Оценить"
55
  msgid "Need help?"
56
  msgstr "Нужна помощь?"
57
 
58
+ #: bws_functions.php:104 bws_functions.php:917 class-bws-settings.php:1058
59
  msgid "Visit Help Center"
60
  msgstr "Перейти в Help Center"
61
 
63
  msgid "Want to support the plugin?"
64
  msgstr "Хотите поддержать плагин?"
65
 
66
+ #: bws_functions.php:108 bws_menu.php:560
67
  msgid "Donate"
68
  msgstr "Пожертвовать"
69
 
83
  "используя Ваш личный Client Area. Мы настоятельно рекомендуем вам решить "
84
  "проблему в течение 24 часов, в противном случае плагин будет деактивирован."
85
 
86
+ #: bws_functions.php:128 bws_functions.php:341 bws_menu.php:631
87
+ #: class-bws-settings.php:144
88
  msgid "Learn More"
89
  msgstr "Подробнее"
90
 
105
  "плагин в дальнейшем и иметь приоритетную тех.поддержку, то вам нужно "
106
  "продлить лицензию."
107
 
108
+ #: bws_functions.php:147 bws_functions.php:389 deprecated.php:586
109
  msgid "Learn more"
110
  msgstr "Подробнее"
111
 
135
  msgid "Thank you for installing %s plugin!"
136
  msgstr "Спасибо, что установили %s плагин!"
137
 
138
+ #: bws_functions.php:210
139
  msgid "Let's get started"
140
  msgstr "Давайте начнем"
141
 
142
+ #: bws_functions.php:211 bws_functions.php:244 bws_menu.php:564
143
+ #: bws_menu.php:566
144
  msgid "Settings"
145
  msgstr "Настройки"
146
 
147
+ #: bws_functions.php:213 bws_menu.php:326 class-bws-settings.php:747
148
+ #: class-bws-settings.php:1060 class-bws-settings.php:1070 deprecated.php:697
149
  msgid "or"
150
  msgstr "или"
151
 
152
+ #: bws_functions.php:214 bws_functions.php:246
153
  msgid "Add New"
154
  msgstr "Добавить"
155
 
156
+ #: bws_functions.php:218 bws_functions.php:228 bws_functions.php:332
157
+ #: bws_functions.php:385 bws_functions.php:487
158
  msgid "Close notice"
159
  msgstr "Закрыть"
160
 
161
+ #: bws_functions.php:233
162
  msgid "Thank you for installing plugins by BestWebSoft!"
163
  msgstr "Спасибо за установку плагинов компании BestWebSoft!"
164
 
165
+ #: bws_functions.php:235
166
  msgid "More Details"
167
  msgstr "Детали"
168
 
169
+ #: bws_functions.php:236
170
  msgid "Less Details"
171
  msgstr "Скрыть детали"
172
 
173
+ #: bws_functions.php:264
174
  msgid "Deprecated function(-s) is used on the site here:"
175
  msgstr "Устаревшие функции используются на сайте здесь:"
176
 
177
+ #: bws_functions.php:278
178
  msgid ""
179
  "This function(-s) will be removed over time. Please update the product(-s)."
180
  msgstr ""
181
  "Эти функции будет удалены через некоторое время. Пожалуйста, обновите "
182
  "продукт."
183
 
184
+ #: bws_functions.php:337
185
  msgid "It’s time to upgrade your"
186
  msgstr "Настало время обновить Ваш"
187
 
188
+ #: bws_functions.php:337
189
  msgid "to"
190
  msgstr "до"
191
 
192
+ #: bws_functions.php:337
193
  msgid "version!"
194
  msgstr "версии!"
195
 
196
+ #: bws_functions.php:338
197
  msgid "Extend standard plugin functionality with new great options."
198
  msgstr "Расширяет возможности стандартного функционала плагина."
199
 
200
+ #: bws_functions.php:389
201
  #, php-format
202
  msgid ""
203
  "Your license key for %s expires on %s and you won't be granted TOP-PRIORITY "
206
  "Ваш лицензионный ключ для %s истекает %s и вы не будете получать "
207
  "приоритетную тех.поддержку или обновления."
208
 
209
+ #: bws_functions.php:482
210
  #, php-format
211
  msgid "Thank you for choosing %s plugin!"
212
  msgstr "Спасибо за выбор плагина %s!"
213
 
214
+ #: bws_functions.php:483
215
  msgid ""
216
  "If you have a feature, suggestion or idea you'd like to see in the plugin, "
217
  "we'd love to hear about it!"
220
  "функционала плагина, пожалуйста, присылайте их нам! Мы вседа открыты для "
221
  "новых идей!"
222
 
223
+ #: bws_functions.php:484
224
  msgid "Suggest a Feature"
225
  msgstr "Предложить функционал"
226
 
227
+ #: bws_functions.php:500 class-bws-settings.php:540 class-bws-settings.php:543
228
+ #: class-bws-settings.php:595 class-bws-settings.php:598
229
  msgid "Notice"
230
  msgstr "Внимание"
231
 
232
+ #: bws_functions.php:500
233
  msgid "The plugin's settings have been changed."
234
  msgstr "Настройки плагина были изменены"
235
 
236
+ #: bws_functions.php:501 class-bws-settings.php:183 class-bws-settings.php:203
237
+ #: deprecated.php:642
238
  msgid "Save Changes"
239
  msgstr "Сохранить изменения"
240
 
241
+ #: bws_functions.php:515
242
  msgid ""
243
  "You can always look at premium options by checking the \"Pro Options\" in "
244
  "the \"Misc\" tab."
246
  "Вы всегда можете просмотреть премиум опции нажав на кнопку \"Pro опции\" на "
247
  "вкладке \"Разное\"."
248
 
249
+ #: bws_functions.php:653
250
  msgid "Add BWS Shortcode"
251
  msgstr "Добавить BWS шорткод"
252
 
253
+ #: bws_functions.php:654
254
  msgid "Add BWS Plugins Shortcode"
255
  msgstr "Добавить шорткод BWS Плагина"
256
 
257
+ #: bws_functions.php:673
258
  msgid "Add shortcode"
259
  msgstr "Добавить шорткод"
260
 
261
+ #: bws_functions.php:673
262
  msgid "Add BestWebSoft plugins' shortcodes using this button."
263
  msgstr "Добавьте шорткоды BestWebSoft плагинов с помощью этой кнопки."
264
 
265
+ #: bws_functions.php:729
266
  msgid "Close"
267
  msgstr "Закрыть"
268
 
269
+ #: bws_functions.php:821
270
  msgid "Are you sure you want to restore default settings?"
271
  msgstr ""
272
  "Вы уверены что хотите восстановить все настройки плагина к настройкам по "
273
  "умолчанию?"
274
 
275
+ #: bws_functions.php:824
276
  msgid "Yes, restore all settings"
277
  msgstr "Да, восстановить все настройки"
278
 
279
+ #: bws_functions.php:825
280
  msgid "No, go back to the settings page"
281
  msgstr "Нет, вернуться на страницу настроек"
282
 
283
+ #: bws_functions.php:867
284
  msgid "Plugin"
285
  msgstr "Плагин"
286
 
287
+ #: bws_functions.php:876
288
  msgid "Shortcode settings"
289
  msgstr "Настройки шорткода"
290
 
291
+ #: bws_functions.php:881
292
  msgid "The shortcode will be inserted"
293
  msgstr "Будет вставлен шорткод"
294
 
295
+ #: bws_functions.php:922
296
  msgid "FAQ"
297
  msgstr "FAQ"
298
 
299
+ #: bws_functions.php:928
300
  msgid "For more information:"
301
  msgstr "Для дополнительной информации:"
302
 
303
+ #: bws_functions.php:929
304
  msgid "Documentation"
305
  msgstr "Документация"
306
 
307
+ #: bws_functions.php:930
308
  msgid "Video Instructions"
309
  msgstr "Видео инструкции"
310
 
311
+ #: bws_functions.php:931
312
  msgid "Submit a Request"
313
  msgstr "Отправить запрос"
314
 
315
+ #: bws_menu.php:101 class-bws-settings.php:792 deprecated.php:323
316
  msgid "Wrong license key"
317
  msgstr "Неправильный лицензионный ключ"
318
 
319
+ #: bws_menu.php:122 class-bws-settings.php:818 class-bws-settings.php:885
320
+ #: class-bws-settings.php:921 deprecated.php:133 deprecated.php:199
321
+ #: deprecated.php:353
322
  msgid ""
323
  "Something went wrong. Please try again later. If the error appears again, "
324
  "please contact us"
326
  "Что-то пошло не так. Повторите попытку позже. Если ошибка появится снова, "
327
  "пожалуйста, свяжитесь с нами"
328
 
329
+ #: bws_menu.php:122 class-bws-settings.php:818 class-bws-settings.php:885
330
+ #: class-bws-settings.php:921 deprecated.php:133 deprecated.php:199
331
+ #: deprecated.php:353
332
  msgid "We are sorry for inconvenience."
333
  msgstr "Приносим извинения за неудобства."
334
 
335
+ #: bws_menu.php:128 class-bws-settings.php:824 class-bws-settings.php:927
336
+ #: deprecated.php:139 deprecated.php:359
337
  msgid "Wrong license key."
338
  msgstr "Неправильный лицензионный ключ."
339
 
348
  msgid "Log in"
349
  msgstr "Авторизоваться"
350
 
351
+ #: bws_menu.php:132 bws_menu.php:332 deprecated.php:261
352
  msgid "Unfortunately, you have exceeded the number of available tries per day."
353
  msgstr "К сожалению, вы превысили количество доступных попыток."
354
 
355
+ #: bws_menu.php:134 deprecated.php:365
356
  #, php-format
357
  msgid ""
358
  "Unfortunately, Your license has expired. To continue getting top-priority "
362
  "обновлений и приоритетной тех.поддержки, вам необходимо продлить лицензию в "
363
  "вашей %s"
364
 
365
+ #: bws_menu.php:136 class-bws-settings.php:935 deprecated.php:367
366
  msgid ""
367
  "Unfortunately, the Pro licence was already installed to this domain. The Pro "
368
  "Trial license can be installed only once."
370
  "К сожалению, Pro лицензия уже была установлена на этом доменен. Pro Trial "
371
  "лицензия может быть установлена только один раз."
372
 
373
+ #: bws_menu.php:142 class-bws-settings.php:839 deprecated.php:153
374
  msgid "The license key is valid."
375
  msgstr "Лицензионный ключ действителен."
376
 
377
+ #: bws_menu.php:144 class-bws-settings.php:842 deprecated.php:156
378
  msgid "Your license will expire on"
379
  msgstr "Ваша лицензия истечет"
380
 
381
  #: bws_menu.php:146
382
+ msgid "Congratulations! Pro Membership license is activated successfully."
383
  msgstr "Поздравляем! Pro Membership лицензия успешно активирована."
384
 
385
+ #: bws_menu.php:153 class-bws-settings.php:1007 deprecated.php:436
386
  msgid ""
387
  "Something went wrong. Try again later or upload the plugin manually. We are "
388
  "sorry for inconvenience."
536
  msgid "Please enter a valid email address."
537
  msgstr "Пожалуйста, введите валидный емайл."
538
 
539
+ #: bws_menu.php:262
540
+ #, php-format
541
+ msgid "Email with system info is sent to %s."
542
+ msgstr "Емейл с системной информацией отправлен на %s."
543
 
544
+ #: bws_menu.php:266
545
  msgid "Thank you for contacting us."
546
  msgstr "Спасибо что связались с нами."
547
 
548
+ #: bws_menu.php:289
549
  msgid "Sorry, email message could not be delivered."
550
  msgstr "Извините, ваш емейл не может быть отправлен."
551
 
552
+ #: bws_menu.php:305 bws_menu.php:309 bws_menu.php:358 deprecated.php:91
553
  msgid "Plugins"
554
  msgstr "Плагины"
555
 
556
+ #: bws_menu.php:306 bws_menu.php:310 bws_menu.php:618 deprecated.php:92
557
  msgid "Themes"
558
  msgstr "Темы"
559
 
560
+ #: bws_menu.php:307 bws_menu.php:311 bws_menu.php:648
561
  msgid "System status"
562
  msgstr "Системная информация"
563
 
564
+ #: bws_menu.php:315
565
  msgid "Support"
566
  msgstr "Тех. поддержка"
567
 
568
+ #: bws_menu.php:316
569
  msgid "Manage purchased licenses & subscriptions"
570
  msgstr "Управление купленными лицензиями и подписками"
571
 
572
+ #: bws_menu.php:324
573
  #, php-format
574
  msgid "Get Access to %s+ Premium Plugins"
575
  msgstr "Получить доступ к %s+ премиум плагинам"
576
 
577
+ #: bws_menu.php:326
578
  msgid "Subscribe to Pro Membership"
579
  msgstr "Подписаться на Pro Membership"
580
 
581
+ #: bws_menu.php:334 bws_menu.php:345 class-bws-settings.php:760
582
  #: deprecated.php:227
583
  msgid "Check license key"
584
  msgstr "Проверка лицензионного ключа"
585
 
586
+ #: bws_menu.php:337
587
  msgid "Enter your license key"
588
  msgstr "Ваш лицензионный ключ"
589
 
590
+ #: bws_menu.php:343 bws_menu.php:570 bws_menu.php:579
591
+ #: class-bws-settings.php:739 deprecated.php:259 deprecated.php:267
592
+ #: deprecated.php:631 deprecated.php:703 deprecated.php:712
593
  msgid "Activate"
594
  msgstr "Активировать"
595
 
596
+ #: bws_menu.php:359
597
  msgid "Upload Plugin"
598
  msgstr "Добавить новый"
599
 
600
+ #: bws_menu.php:363
601
  #, php-format
602
  msgid ""
603
  "The plugin generated %d characters of <strong>unexpected output</strong> "
610
  "проблемы с RSS-лентами или другие неполадки, попробуйте деактивировать или "
611
  "удалить этот плагин."
612
 
613
+ #: bws_menu.php:365
614
  msgid ""
615
  "Plugin could not be activated because it triggered a <strong>fatal error</"
616
  "strong>."
618
  "Плагин не может быть активирован, поскольку он вызвал <strong>фатальную "
619
  "ошибку</strong>."
620
 
621
+ #: bws_menu.php:368
622
  msgid "Plugin <strong>activated</strong>."
623
  msgstr "Плагин <strong>активировано</strong>."
624
 
625
+ #: bws_menu.php:375
626
  msgid "Installing Plugin"
627
  msgstr "Установка плагина"
628
 
629
+ #: bws_menu.php:381
630
  msgid "Downloading install package from"
631
  msgstr "Скачивание установочного пакета из"
632
 
633
+ #: bws_menu.php:398 bws_menu.php:429 bws_menu.php:440 deprecated.php:388
634
+ #: deprecated.php:410 deprecated.php:432
 
 
635
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
636
  msgstr ""
637
  "Не удалось загрузить архив плагина. Пожалуйста, загрузите плагин вручную"
638
 
639
+ #: bws_menu.php:406
640
  msgid "Unpacking the package"
641
  msgstr "Распаковка пакета"
642
 
643
+ #: bws_menu.php:411 bws_menu.php:419
644
  msgid "Installing the plugin"
645
  msgstr "Установка плагина"
646
 
647
+ #: bws_menu.php:415 deprecated.php:400
648
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
649
  msgstr "Не удалось открыть архив ZIP. Пожалуйста, загрузите плагин вручную"
650
 
651
+ #: bws_menu.php:422 deprecated.php:406
652
  msgid ""
653
  "Your server does not support either ZipArchive or Phar. Please, upload the "
654
  "plugin manually"
656
  "Ваш сервер не поддерживает ни библиотеку ZipArchive, ни библиотеку Phar. "
657
  "Пожалуйста, загрузите плагин вручную"
658
 
659
+ #: bws_menu.php:425
660
  #, php-format
661
  msgid "The plugin %s is successfully installed."
662
  msgstr "Плагин %s успешно установлен."
663
 
664
+ #: bws_menu.php:432 deprecated.php:413
665
  msgid "UploadDir is not writable. Please, upload the plugin manually"
666
  msgstr ""
667
  "Папка загрузки не доступна для записи. Пожалуйста, загрузите плагин вручную"
668
 
669
+ #: bws_menu.php:437
670
  msgid "Activate Plugin"
671
  msgstr "Активировать плагин"
672
 
673
+ #: bws_menu.php:437 bws_menu.php:443
674
  msgid "Return to BestWebSoft Panel"
675
  msgstr "Возврат к BestWebSoft Panel"
676
 
677
+ #: bws_menu.php:451 bws_menu.php:471 bws_menu.php:600
678
  msgid "All"
679
  msgstr "Все"
680
 
681
+ #: bws_menu.php:454 bws_menu.php:637
682
  msgid "Installed"
683
  msgstr "Установленные"
684
 
685
+ #: bws_menu.php:457
686
  msgid "Not Installed"
687
  msgstr "Не установленные"
688
 
689
+ #: bws_menu.php:464
690
  msgid "Filter results"
691
  msgstr "Фильтр результатов"
692
 
693
+ #: bws_menu.php:467 bws_menu.php:596
694
  msgid "Category"
695
  msgstr "Категория"
696
 
697
+ #: bws_menu.php:531
698
  msgid "Not installed"
699
  msgstr "Не установлен"
700
 
701
+ #: bws_menu.php:535
702
  msgid "Renew to get updates"
703
  msgstr "Продлить для обновления"
704
 
705
+ #: bws_menu.php:538
706
  #, php-format
707
  msgid "Update to v %s"
708
  msgstr "Обновить до версии %s"
709
 
710
+ #: bws_menu.php:550 bws_menu.php:573 bws_menu.php:582
711
  msgid "Install Now"
712
  msgstr "Установить"
713
 
714
+ #: bws_menu.php:556 class-bws-settings.php:157 class-bws-settings.php:1067
715
  msgid "Upgrade to Pro"
716
  msgstr "Обновить до Pro"
717
 
718
+ #: bws_menu.php:570 bws_menu.php:579
719
  msgid "Activate this plugin"
720
  msgstr "Активировать плагин"
721
 
722
+ #: bws_menu.php:582
723
  msgid "Install this plugin"
724
  msgstr "Установить этот плагин"
725
 
726
+ #: bws_menu.php:591
727
  msgid "Nothing found. Try another criteria."
728
  msgstr "Ничего не найдено. Попробуйте другие критерии."
729
 
730
+ #: bws_menu.php:628
731
  #, php-format
732
  msgid "By %s"
733
  msgstr "%s"
734
 
735
+ #: bws_menu.php:635
736
  msgid "Already Installed"
737
  msgstr "Уже установлена"
738
 
739
+ #: bws_menu.php:645
740
+ msgid "Browse More WordPress Themes"
741
+ msgstr "Обзор WordPress тем"
742
 
743
+ #: bws_menu.php:654
744
  msgid "Send to support"
745
  msgstr "Отправить в тех. поддержку"
746
 
747
+ #: bws_menu.php:661
748
  msgid "Send to custom email &#187;"
749
  msgstr "Отправить на емейл &#187;"
750
 
798
  msgid "Custom Code"
799
  msgstr "Пользовательский код"
800
 
801
+ #: class-bws-settings.php:427 deprecated.php:498
802
  msgid "You do not have sufficient permissions to edit plugins for this site."
803
  msgstr ""
804
  "У вас недостаточно полномочий, чтобы редактировать плагины на этом сайте."
805
 
806
+ #: class-bws-settings.php:432 deprecated.php:620
807
  msgid "These styles will be added to the header on all pages of your site."
808
  msgstr "Эти стили будут добавлены в хедер на всех страницах вашего сайта."
809
 
810
+ #: class-bws-settings.php:435 deprecated.php:622
811
  #, php-format
812
  msgid ""
813
  "This PHP code will be hooked to the %s action and will be printed on front "
820
  msgid "These code will be added to the header on all pages of your site."
821
  msgstr "Этот код будет добавлен в хедер на всех страницах вашего сайта."
822
 
823
+ #: class-bws-settings.php:446 deprecated.php:646
824
  #, php-format
825
  msgid ""
826
  "You need to make this files writable before you can save your changes. See "
829
  "Чтобы сохранить изменения, нужно сделать этот файл доступным для записи. "
830
  "Дополнительную информацию можно получить в %s Кодексе %s."
831
 
832
+ #: class-bws-settings.php:456 deprecated.php:628
833
  msgid "Browsing"
834
  msgstr "Просмотр"
835
 
838
  msgid "Activate custom %s code."
839
  msgstr "Активировать пользовательский %s код."
840
 
841
+ #: class-bws-settings.php:469 deprecated.php:635
842
  #, php-format
843
  msgid "Learn more about %s"
844
  msgstr "Подробнее о %s"
845
 
846
+ #: class-bws-settings.php:531
847
  msgid "Miscellaneous Settings"
848
  msgstr "Прочие настройки"
849
 
850
+ #: class-bws-settings.php:540 class-bws-settings.php:595
851
  #, php-format
852
  msgid ""
853
  "It is prohibited to change %s settings on this site in the %s network "
855
  msgstr ""
856
  "Cетевыми настройками %s запрещается изменять настройки %s на этом сайте."
857
 
858
+ #: class-bws-settings.php:543 class-bws-settings.php:598
859
  #, php-format
860
  msgid ""
861
  "It is prohibited to view %s settings on this site in the %s network settings."
862
  msgstr ""
863
  "Cетевыми настройками %s запрещается просматривать настройки %s на этом сайте."
864
 
865
+ #: class-bws-settings.php:552
866
  msgid "Pro Options"
867
  msgstr "Pro опции"
868
 
869
+ #: class-bws-settings.php:556
870
  msgid "Enable to display plugin Pro options."
871
  msgstr "Включите для отображения Pro опций плагина."
872
 
873
+ #: class-bws-settings.php:562
874
  msgid "Track Usage"
875
  msgstr "Собирать статистику"
876
 
877
+ #: class-bws-settings.php:566
878
  msgid ""
879
  "Enable to allow tracking plugin usage anonymously in order to make it better."
880
  msgstr ""
881
  "Включить, чтобы разрешить анонимно отслеживать использование и сделать "
882
  "плагин лучше."
883
 
884
+ #: class-bws-settings.php:571
885
  msgid "Default Settings"
886
  msgstr "Настройки по умолчанию"
887
 
888
+ #: class-bws-settings.php:573
889
  msgid "Restore Settings"
890
  msgstr "Восстановить настройки"
891
 
892
+ #: class-bws-settings.php:574
893
  msgid "This will restore plugin settings to defaults."
894
  msgstr "Восстановить все настройки плагина к настройкам по умолчанию."
895
 
896
+ #: class-bws-settings.php:586
897
  msgid "Import / Export"
898
  msgstr "Импорт / Экспорт"
899
 
900
+ #: class-bws-settings.php:702 class-bws-settings.php:735
901
+ #: class-bws-settings.php:757
902
  msgid "License Key"
903
  msgstr "Лицензионный ключ"
904
 
905
+ #: class-bws-settings.php:725
906
  msgid "Congratulations! Pro license is activated successfully."
907
  msgstr "Поздравляем! Pro лицензия успешно активирована."
908
 
909
+ #: class-bws-settings.php:726
910
  #, php-format
911
  msgid "You will be automatically redirected to the %s in %s seconds."
912
  msgstr "Вы будете автоматически перенаправлены на %s через %s секунд."
913
 
914
+ #: class-bws-settings.php:726
915
  msgid "Settings page"
916
  msgstr "страницу Настроек"
917
 
918
+ #: class-bws-settings.php:741
919
  #, php-format
920
  msgid "Enter your license key to activate %s and get premium plugin features."
921
  msgstr ""
922
  "Введите лицензионный ключ для активации %s и получения дополнительных "
923
  "возможностей плагина."
924
 
925
+ #: class-bws-settings.php:744 class-bws-settings.php:931 deprecated.php:363
926
+ #: deprecated.php:706
927
  msgid ""
928
  "Unfortunately, you have exceeded the number of available tries per day. "
929
  "Please, upload the plugin manually."
931
  "К сожалению, вы превысили количество доступных попыток в день. Пожалуйста, "
932
  "загрузите плагин вручную."
933
 
934
+ #: class-bws-settings.php:747 deprecated.php:697
935
  #, php-format
936
  msgid "Start Your Free %s-Day Trial Now"
937
  msgstr "Попробуйте %s-дневную Trial версию бесплатно"
938
 
939
+ #: class-bws-settings.php:762
940
  msgid ""
941
  "If necessary, you can check if the license key is correct or reenter it in "
942
  "the field below."
944
  "При необходимости вы можете проверить валидность лицензионного ключа или "
945
  "повторно ввести его в поле ниже."
946
 
947
+ #: class-bws-settings.php:767
948
  msgid "Manage License Settings"
949
  msgstr "Управление настройками лицензий"
950
 
951
+ #: class-bws-settings.php:769
952
  msgid "Login to Client Area"
953
  msgstr "Зайти в Client Area"
954
 
955
+ #: class-bws-settings.php:771
956
  msgid ""
957
  "Manage active licenses, download BWS products, and view your payment history "
958
  "using BestWebSoft Client Area."
960
  "Управляй активными лицензиями, загружай BWS продукты, а также просматривай "
961
  "историю платежей с помощью BestWebSoft Client Area."
962
 
963
+ #: class-bws-settings.php:826 class-bws-settings.php:929 deprecated.php:141
964
+ #: deprecated.php:361
965
  msgid "This license key is bound to another site."
966
  msgstr "Этот лицензионный ключ привязан к другому сайту."
967
 
968
+ #: class-bws-settings.php:828 deprecated.php:143
969
  msgid ""
970
  "This license key is valid, but Your license has expired. If you want to "
971
  "update our plugin in future, you should extend the license."
973
  "Лицензионный ключ принят, но срок действия лицензии истек. Если вы хотите "
974
  "обновлять плагин в будущем, вы должны продлить лицензию."
975
 
976
+ #: class-bws-settings.php:830 deprecated.php:145
977
  msgid "Unfortunately, you have exceeded the number of available tries."
978
  msgstr "К сожалению, вы превысили количество доступных попыток."
979
 
980
+ #: class-bws-settings.php:832 deprecated.php:147
981
  msgid ""
982
  "Unfortunately, the Pro Trial licence was already installed to this domain. "
983
  "The Pro Trial license can be installed only once."
985
  "К сожалению, Pro Trial версия плагина уже устанавливалась на этот домен. Pro "
986
  "Trial версию можно устанавливать лишь один раз."
987
 
988
+ #: class-bws-settings.php:837 deprecated.php:151
989
  msgid "The Pro Trial license key is valid."
990
  msgstr "Ключ Pro Trial версии действителен."
991
 
992
+ #: class-bws-settings.php:845 deprecated.php:159 deprecated.php:246
993
  #, php-format
994
  msgid ""
995
  "In order to continue using the plugin it is necessary to buy a %s license."
996
  msgstr ""
997
  "Чтобы продолжить пользоваться плагином, необходимо приобрести %s лицензию."
998
 
999
+ #: class-bws-settings.php:933
1000
+ #, php-format
1001
+ msgid ""
1002
+ "Unfortunately, Your license has expired. To continue getting top-priority "
1003
+ "support and plugin updates, you should extend it in your %s."
1004
+ msgstr ""
1005
+ "К сожалению, время использования вашей лицензии истекло. Для получения "
1006
+ "обновлений и приоритетной тех.поддержки, вам необходимо продлить лицензию в "
1007
+ "вашей %s."
1008
+
1009
+ #: class-bws-settings.php:959 class-bws-settings.php:981
1010
+ #: class-bws-settings.php:1003
1011
+ msgid "Failed to download the zip archive. Please, upload the plugin manually."
1012
+ msgstr ""
1013
+ "Не удалось загрузить архив плагина. Пожалуйста, загрузите плагин вручную."
1014
+
1015
+ #: class-bws-settings.php:971
1016
+ msgid "Failed to open the zip archive. Please, upload the plugin manually."
1017
+ msgstr "Не удалось открыть архив ZIP. Пожалуйста, загрузите плагин вручную."
1018
+
1019
+ #: class-bws-settings.php:977
1020
+ msgid ""
1021
+ "Your server does not support either ZipArchive or Phar. Please, upload the "
1022
+ "plugin manually."
1023
+ msgstr ""
1024
+ "Ваш сервер не поддерживает ни библиотеку ZipArchive, ни библиотеку Phar. "
1025
+ "Пожалуйста, загрузите плагин вручную."
1026
+
1027
+ #: class-bws-settings.php:984
1028
+ msgid "UploadDir is not writable. Please, upload the plugin manually."
1029
+ msgstr ""
1030
+ "Папка загрузки не доступна для записи. Пожалуйста, загрузите плагин вручную."
1031
+
1032
+ #: class-bws-settings.php:1042 deprecated.php:464
1033
  msgid "Please, enter Your license key"
1034
  msgstr "Пожалуйста, введите ваш лицензионный ключ"
1035
 
1036
+ #: class-bws-settings.php:1054
1037
  msgid "Need Help?"
1038
  msgstr "Нужна помощь?"
1039
 
1040
+ #: class-bws-settings.php:1056
1041
  msgid "Read the Instruction"
1042
  msgstr "Читать инструкцию"
1043
 
1044
+ #: class-bws-settings.php:1060
1045
  msgid "Watch the Video"
1046
  msgstr "Смотреть видео"
1047
 
1048
+ #: class-bws-settings.php:1071
1049
  msgid "Start Your Free Trial"
1050
  msgstr "Использовать бесплатную Trial версию"
1051
 
1052
+ #: deactivation-form.php:27
1053
  msgid "Need help? We are ready to answer your questions."
1054
  msgstr "Нужна помощь? Мы готовы ответить на ваши вопросы."
1055
 
1056
+ #: deactivation-form.php:27
1057
  msgid "Contact Support"
1058
  msgstr "Связаться с тех. поддержкой"
1059
 
1060
+ #: deactivation-form.php:32
1061
  msgid "The plugin is not working"
1062
  msgstr "Плагин не работает"
1063
 
1064
+ #: deactivation-form.php:34
1065
  msgid "Kindly share what didn't work so we can fix it in future updates..."
1066
  msgstr ""
1067
  "Пожалуйста, сообщите, что не работает, чтобы мы смогли исправить это в "
1068
  "будущих обновлениях..."
1069
 
1070
+ #: deactivation-form.php:38
1071
  msgid "The plugin didn't work as expected"
1072
  msgstr "Плагин не работает, как ожидалось"
1073
 
1074
+ #: deactivation-form.php:40
1075
  msgid "What did you expect?"
1076
  msgstr "Что именно вы ожидали?"
1077
 
1078
+ #: deactivation-form.php:44
1079
  msgid "The plugin suddenly stopped working"
1080
  msgstr "Плагин внезапно перестал работать"
1081
 
1082
+ #: deactivation-form.php:51
1083
  msgid "The plugin broke my site"
1084
  msgstr "Плагин сломал мой сайт"
1085
 
1086
+ #: deactivation-form.php:58
1087
  msgid "I couldn't understand how to get it work"
1088
  msgstr "Я не могу понять, как заставить его работать"
1089
 
1090
+ #: deactivation-form.php:65
1091
  msgid "I found a better plugin"
1092
  msgstr "Я нашел плагин лучше"
1093
 
1094
+ #: deactivation-form.php:67
1095
  msgid "What's the plugin name?"
1096
  msgstr "Какое название плагина?"
1097
 
1098
+ #: deactivation-form.php:71
1099
  msgid "The plugin is great, but I need specific feature that you don't support"
1100
  msgstr ""
1101
  "Плагин замечательный, но мне нужен определенный функционал, которого у вас "
1102
  "нет"
1103
 
1104
+ #: deactivation-form.php:73
1105
  msgid "What feature?"
1106
  msgstr "Какой функционал?"
1107
 
1108
+ #: deactivation-form.php:77
1109
  msgid "I no longer need the plugin"
1110
  msgstr "Мне больше не нужен плагин"
1111
 
1112
+ #: deactivation-form.php:83
1113
  msgid "It's a temporary deactivation, I'm just debugging an issue"
1114
  msgstr "Это временная деактивация, я просто отлаживаю проблему"
1115
 
1116
+ #: deactivation-form.php:89
1117
  msgid "Other"
1118
  msgstr "Другое"
1119
 
1120
+ #: deactivation-form.php:123
1121
  msgid "Quick Feedback"
1122
  msgstr "Быстрый отзыв"
1123
 
1124
+ #: deactivation-form.php:124
1125
  msgid "If you have a moment, please let us know why you are deactivating"
1126
  msgstr ""
1127
  "Если у вас есть время, пожалуйста, сообщите нам, почему вы деактивируете "
1128
  "плагин"
1129
 
1130
+ #: deactivation-form.php:127
1131
+ msgid "Send website data and allow to contact me back"
1132
+ msgstr "Отправить данные сайта и позволить связаться со мной"
1133
 
1134
+ #: deactivation-form.php:132
1135
  msgid "Cancel"
1136
  msgstr "Отмена"
1137
 
1138
+ #: deactivation-form.php:233
1139
  msgid "Processing"
1140
  msgstr "Обработка"
1141
 
1142
+ #: deactivation-form.php:262
1143
  msgid "Submit & Deactivate"
1144
  msgstr "Отправить и Деактивировать"
1145
 
1146
+ #: deactivation-form.php:277
1147
  msgid "Please tell us the reason so we can improve it."
1148
  msgstr "Пожалуйста, сообщите нам причину, чтобы мы могли улучшить плагин."
1149
 
1150
+ #: deactivation-form.php:345
1151
  msgid "Deactivate"
1152
  msgstr "Деактивировать"
1153
 
1177
  "(ваше имя пользователя - это емейл, указанный при покупке). При "
1178
  "необходимости нажмите \"Забыли пароль?\"."
1179
 
1180
+ #: deprecated.php:246
1181
  msgid "After that, you can activate it by entering your license key."
1182
  msgstr "После этого вы сможете активировать его введя лицензионный ключ."
1183
 
1184
+ #: deprecated.php:249 deprecated.php:691
1185
  msgid "License key can be found in the"
1186
  msgstr "Лицензионный ключ можно найти в"
1187
 
1188
+ #: deprecated.php:251 deprecated.php:693
1189
  msgid "(your username is the email address specified during the purchase)."
1190
  msgstr "(ваше имя пользователя - это емейл, указанный при покупке)."
1191
 
1192
+ #: deprecated.php:279
1193
  msgid ""
1194
  "Congratulations! The Pro license of the plugin is activated successfully."
1195
  msgstr "Поздравляем! Pro версия плагина успешно активирована."
1196
 
1197
+ #: deprecated.php:281 deprecated.php:672
1198
  msgid "Please, go to"
1199
  msgstr "Пожалуйста, перейдите на"
1200
 
1201
+ #: deprecated.php:281 deprecated.php:672
1202
  msgid "the setting page"
1203
  msgstr "страницу настроек"
1204
 
1205
+ #: deprecated.php:282 deprecated.php:673
1206
  msgid "You will be redirected automatically in 5 seconds."
1207
  msgstr "Вы будете перенаправлены автоматически через 5 секунд."
1208
 
1209
+ #: deprecated.php:316
1210
  msgid "Check premium options on the plugin settings page!"
1211
  msgstr "Просмотрите премиум опции на странице настроек плагина!"
1212
 
1213
+ #: deprecated.php:479
1214
  msgid "Restore all plugin settings to defaults"
1215
  msgstr "Восстановить все настройки плагина к настройкам по умолчанию"
1216
 
1217
+ #: deprecated.php:481
1218
  msgid "Restore settings"
1219
  msgstr "Восстановить настройки"
1220
 
1221
+ #: deprecated.php:550 deprecated.php:577
1222
  #, php-format
1223
  msgid "File %s edited successfully."
1224
  msgstr "Файл %s успешно изменён."
1225
 
1226
+ #: deprecated.php:552 deprecated.php:579
1227
  msgid "Not enough permissions to create or update the file"
1228
  msgstr "Не достаточно прав для создания или обновления файла"
1229
 
1230
+ #: deprecated.php:582
1231
  msgid "Not enough permissions to create the file"
1232
  msgstr "Не достаточно прав для создания файла"
1233
 
1234
+ #: deprecated.php:626
1235
  msgid "Editing"
1236
  msgstr "Редактирование"
1237
 
1238
+ #: deprecated.php:670
1239
  msgid ""
1240
  "Congratulations! Pro version of the plugin is installed and activated "
1241
  "successfully."
1242
  msgstr "Поздравляем! Pro версия плагина успешно загружена и активирована."
1243
 
1244
+ #: deprecated.php:680
1245
  msgid "Show Pro features"
1246
  msgstr "Показать Pro опции"
1247
 
1248
+ #: deprecated.php:687
1249
  msgid "Enter your license key to install and activate"
1250
  msgstr "Введите лицензионный ключ для установки и активации"
1251
 
1252
+ #: deprecated.php:689
1253
  msgid "version of the plugin."
1254
  msgstr "версия плагина."
1255
 
1289
  msgid "SMM"
1290
  msgstr "СММ"
1291
 
1292
+ #: product_list.php:22
1293
+ msgid "Best secure captcha plugin to protect your WordPress forms."
1294
+ msgstr "Лучший плагин капчи, который защитит формы вашего WordPress сайта."
 
 
1295
 
1296
+ #: product_list.php:32
1297
  msgid "Create your personal car rental/booking and reservation website."
1298
  msgstr "Создайте свой собственный сайт проката и резервирования автомобилей."
1299
 
1300
+ #: product_list.php:42
1301
  msgid ""
1302
  "Allow customers to reach you using secure contact form plugin any website "
1303
  "must have."
1305
  "Предоставьте возможность клиентам осуществлять связь с вами через безопасный "
1306
  "плагин контактной формы, который должен иметь любой сайт."
1307
 
1308
+ #: product_list.php:52
1309
  msgid "Add unlimited number of contact forms to WordPress website."
1310
  msgstr ""
1311
  "Добавляйте неограниченное количество контактных форм на ваш сайт WordPress."
1312
 
1313
+ #: product_list.php:62
1314
  msgid "Save and manage Contact Form messages. Never lose important data."
1315
  msgstr ""
1316
  "Сохраняйте и управляйте сообщениями плагина Contact Form. Никогда не теряйте "
1317
  "важные данные."
1318
 
1319
+ #: product_list.php:72
1320
  msgid "Add unlimited custom pages to WordPress admin dashboard."
1321
  msgstr ""
1322
  "Добавляйте неограниченное количество пользовательских страниц в панели "
1323
  "администратора WordPress."
1324
 
1325
+ #: product_list.php:79
1326
  msgid "Add custom fields to WordPress website search results."
1327
  msgstr ""
1328
  "Добавляйте пользовательские поля в результаты поиска вашего сайта WordPress."
1329
 
1330
+ #: product_list.php:86
1331
  msgid ""
1332
  "Add custom post types and taxonomies to WordPress website search results."
1333
  msgstr ""
1334
  "Добавляйте пользовательские типы постов и таксономии в результаты поиска на "
1335
  "вашем сайте WordPress."
1336
 
1337
+ #: product_list.php:96
1338
  msgid "Add PayPal and 2CO donate buttons to receive charity payments."
1339
  msgstr ""
1340
  "Добавляйте кнопки PayPal и 2CO, чтобы получать пожертвования и "
1341
  "благотворительные взносы."
1342
 
1343
+ #: product_list.php:103
1344
  msgid ""
1345
  "Get latest error log messages to diagnose website problems. Define and fix "
1346
  "issues faster."
1348
  "Получайте последние сообщения из журнала ошибок для диагностики проблем "
1349
  "сайта. Быстрее выявляйте и устраняйте проблемы."
1350
 
1351
+ #: product_list.php:110
1352
  msgid ""
1353
  "Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and "
1354
  "widgets."
1356
  "Добавляйте кнопки Facebook \"Подписаться\", \"Нравится\" и \"Поделиться\" в "
1357
  "посты, страницы и виджеты сайта WordPress."
1358
 
1359
+ #: product_list.php:120
1360
  msgid ""
1361
  "Add beautiful galleries, albums & images to your WordPress website in a few "
1362
  "clicks."
1364
  "Добавляйте живописные галереи, альбомы и изображения на ваш сайт WordPress "
1365
  "всего в несколько кликов."
1366
 
1367
+ #: product_list.php:130
1368
  msgid ""
1369
  "Add Google +1, Share, Follow, Hangout buttons and profile badge to WordPress "
1370
  "posts, pages and widgets."
1372
  "Добавляйте кнопки Google \"+1\", \"Поделиться\", \"Подписаться\", \"Hangout"
1373
  "\" и значок профиля к постам, страницам и виджетам WordPress."
1374
 
1375
+ #: product_list.php:140
1376
  msgid ""
1377
  "Stronger security solution which protects your WordPress website from hacks "
1378
  "and unauthorized login attempts."
1380
  "Мощнейшее решение для безопасности, которое защищает ваш сайт WordPress от "
1381
  "взломов и неавторизованных попыток входа в систему."
1382
 
1383
+ #: product_list.php:150
1384
  msgid ""
1385
  "Add Adsense ads to WordPress website pages, posts, custom posts, search "
1386
  "results, categories, tags, and widgets."
1388
  "Добавляйте рекламу сервиса Adsense на страницы, посты, пользовательские "
1389
  "посты, результаты поиска, категории, теги и виджеты сайта WordPress."
1390
 
1391
+ #: product_list.php:160
1392
  msgid "Add Google Analytics code to WordPress website and track basic stats."
1393
  msgstr ""
1394
  "Добавляйте код Google Analytics на ваш сайт WordPress и отслеживайте базовую "
1395
  "статистику сайта."
1396
 
1397
+ #: product_list.php:170
1398
  msgid ""
1399
  "Protect WordPress website forms from spam entries with Google Captcha "
1400
  "(reCaptcha)."
1402
  "Защищайте формы вашего сайта WordPress от спама с помощью Google Captcha "
1403
  "(reCaptcha)."
1404
 
1405
+ #: product_list.php:180
1406
  msgid "Add customized Google maps to WordPress posts, pages and widgets."
1407
  msgstr ""
1408
  "Добавляйте пользовательские карты Google в посты, страницы и виджеты "
1409
  "WordPress."
1410
 
1411
+ #: product_list.php:190
1412
  msgid ""
1413
  "Generate and add XML sitemap to WordPress website. Help search engines index "
1414
  "your blog."
1416
  "Создавайте и добавляйте файлы XML sitemap на ваш сайт WordPress. Помогите "
1417
  "поисковым системам проиндексировать ваш блог."
1418
 
1419
+ #: product_list.php:200
1420
  msgid ""
1421
  "Replace external WordPress website links with Google shortlinks and track "
1422
  "click stats."
1424
  "Замените внешние ссылки сайта WordPress на короткие ссылки Google и "
1425
  "отслеживайте статистику кликов."
1426
 
1427
+ #: product_list.php:207
1428
  msgid ""
1429
  "Protect WordPress website – allow and deny access for certain IP addresses, "
1430
  "hostnames, etc."
1432
  "Защитите свой сайт WordPress - предоставляйте и запрещайте доступ с "
1433
  "определенных IP-адресов, имен хостов и т.д."
1434
 
1435
+ #: product_list.php:217
1436
  msgid ""
1437
  "Create your personal job board and listing WordPress website. Search jobs, "
1438
  "submit CV/resumes, choose candidates."
1441
  "WordPress. Осуществляйте поиск вакансий, подачу резюме/CV кандидата, выбор "
1442
  "кандидатов."
1443
 
1444
+ #: product_list.php:224
1445
  msgid ""
1446
  "Protect WordPress website against brute force attacks. Limit rate of login "
1447
  "attempts."
1449
  "Защищайте свой сайт WordPress от брутфорс-атак. Ограничивайте количество "
1450
  "попыток ввода логина."
1451
 
1452
+ #: product_list.php:234
1453
  msgid ""
1454
  "Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. "
1455
  "5 plugins included – profile, insider, etc."
1458
  "страницам и виджетам WordPress. 5 плагинов включено - Профиль, Инсайдер и т."
1459
  "д."
1460
 
1461
+ #: product_list.php:244
1462
  msgid ""
1463
  "Translate WordPress website content to other languages manually. Create "
1464
  "multilingual pages, posts, widgets, menus, etc."
1466
  "Переводите содержимое сайта WordPress на другие языки вручную. Создавайте "
1467
  "многоязычные страницы, посты, виджеты, меню и т.д."
1468
 
1469
+ #: product_list.php:254
1470
  msgid ""
1471
  "Add customizable pagination to WordPress website. Split long content to "
1472
  "multiple pages for better navigation."
1474
  "Добавляйте настраиваемую пагинацию на ваш сайт WordPress. Разбивайте "
1475
  "объемный контент на несколько страниц для лучшей навигации."
1476
 
1477
+ #: product_list.php:264
1478
  msgid ""
1479
  "Generate PDF files and print WordPress posts/pages. Customize document "
1480
  "header/footer styles and appearance."
1482
  "Создавайте PDF-файлы и печатайте посты/страницы сайта WordPress. "
1483
  "Настраивайте стили хедера/футера документа и его внешний вид."
1484
 
1485
+ #: product_list.php:274
1486
  msgid ""
1487
  "Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, "
1488
  "Profile) to WordPress posts, pages and widgets."
1490
  "Добавляйте кнопки Pinterest \"Подписаться\", \"Сохранить\" и виджеты профиля "
1491
  "(Пин, Доска, Профиль) к постам, страницам и виджетам WordPress."
1492
 
1493
+ #: product_list.php:284
1494
  msgid ""
1495
  "Create your personal portfolio WordPress website. Manage and showcase past "
1496
  "projects to get more clients."
1498
  "Создавайте и добавляйте портфолио на свой сайт WordPress. Управляйте и "
1499
  "демонстрируйте прошлые проекты, чтобы привлечь больше клиентов."
1500
 
1501
+ #: product_list.php:294
1502
  msgid "Export WordPress posts to CSV file format easily. Configure data order."
1503
  msgstr ""
1504
  "С легкостью экспортируйте посты WordPress в файлы формата CSV. Настраивайте "
1505
  "порядок отображения данных."
1506
 
1507
+ #: product_list.php:301
1508
  msgid ""
1509
  "Add extra fields to default WordPress user profile. The easiest way to "
1510
  "create and manage additional custom values."
1512
  "Добавляйте пользовательские поля в стандартный профиль WordPress. Самый "
1513
  "простой способ создания и управления дополнительными полями."
1514
 
1515
+ #: product_list.php:308
1516
  msgid ""
1517
  "Add and display HTML advertisement banner on WordPress website. Customize "
1518
  "bar styles and appearance."
1520
  "Добавляйте и отображайте баннерную HTML рекламу на сайте WordPress. "
1521
  "Настраивайте стили и внешний вид баннера."
1522
 
1523
+ #: product_list.php:318
1524
  msgid ""
1525
  "Add customizable quotes and tips blocks to WordPress posts, pages and "
1526
  "widgets."
1528
  "Добавляйте настраиваемые цитаты и подсказки к постам, страницам и виджетам "
1529
  "WordPress."
1530
 
1531
+ #: product_list.php:325
1532
  msgid ""
1533
  "Add rating plugin to your WordPress website to receive feedback from your "
1534
  "customers."
1536
  "Добавляйте систему оценивания и рейтинга на ваш сайт WordPress и получайте "
1537
  "отзывы от ваших клиентов."
1538
 
1539
+ #: product_list.php:332
1540
  msgid ""
1541
  "Create your personal real estate WordPress website. Sell, rent and buy "
1542
  "properties. Add, search and browse listings easily."
1545
  "Продавайте, арендуйте и покупайте недвижимость. Легко добавляйте, находите и "
1546
  "просматривайте листинги."
1547
 
1548
+ #: product_list.php:342
1549
  msgid ""
1550
  "Add related, featured, latest, and popular posts to your WordPress website. "
1551
  "Connect your blog readers with a relevant content."
1553
  "Добавляйте похожие, избранные, последние и популярные посты на ваш сайт "
1554
  "WordPress. Предоставляйте своим читателям контент схожей тематики."
1555
 
1556
+ #: product_list.php:349
1557
  msgid ""
1558
  "Send bulk email messages to WordPress users. Custom templates, advanced "
1559
  "settings and detailed reports."
1561
  "Осуществляйте массовую рассылку писем пользователям WordPress. "
1562
  "Пользовательские шаблоны, дополнительные настройки и подробные отчеты."
1563
 
1564
+ #: product_list.php:359
1565
  msgid ""
1566
  "The best responsive slider plugin for your WordPress website. Create "
1567
  "beautifully animated slides just in a few clicks."
1569
  "Самый лучший адаптивный слайдер для вашего сайта WordPress. Создавайте "
1570
  "красиво анимированные слайды всего в несколько кликов."
1571
 
1572
+ #: product_list.php:366
1573
  msgid ""
1574
  "Configure SMTP server to receive email messages from WordPress to Gmail, "
1575
  "Yahoo, Hotmail and other services."
1578
  "WordPress на такие почтовые службы, как Gmail, Yahoo, Hotmail и многие "
1579
  "другие."
1580
 
1581
+ #: product_list.php:373
1582
  msgid ""
1583
  "Add social media buttons and widgets to WordPress posts, pages and widgets. "
1584
  "FB, Twitter, G+1, Pinterest, LinkedIn."
1586
  "Добавляйте кнопки и виджеты социальных сетей к постам, страницам и виджетам "
1587
  "WordPress. FB, Twitter, G+1, Pinterest, LinkedIn."
1588
 
1589
+ #: product_list.php:383
1590
  msgid ""
1591
  "Add social media login, registration, and commenting to your WordPress "
1592
  "website."
1594
  "Добавляйте на свой сайт WordPress возможность входа, регистрации и "
1595
  "комментирования с использованием существующих аккаунтов социальных сетей."
1596
 
1597
+ #: product_list.php:390
1598
  msgid ""
1599
  "Add email newsletter sign up form to WordPress posts, pages and widgets. "
1600
  "Collect data and subscribe your users."
1602
  "Добавляйте форму подписки на новостную рассылку в посты, страницы и виджеты "
1603
  "WordPress. Собирайте данные и осуществляйте подписку пользователей."
1604
 
1605
+ #: product_list.php:400
1606
  msgid ""
1607
  "Add testimonials and feedbacks from your customers to WordPress website "
1608
  "posts, pages, and widgets."
1610
  "Добавляйте рекомендации и отзывы ваших клиентов в посты, страницы и виджеты "
1611
  "сайта WordPress."
1612
 
1613
+ #: product_list.php:407
1614
  msgid ""
1615
  "Best timesheet plugin for WordPress. Track employee time, streamline "
1616
  "attendance and generate reports."
1618
  "Лучший плагин учёта рабочего времени на сайте WordPress. Отслеживайте время "
1619
  "работы сотрудников, оптимизируйте график работы в офисе и создавайте отчеты."
1620
 
1621
+ #: product_list.php:417
1622
  msgid ""
1623
  "Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts "
1624
  "and pages."
1626
  "Добавляйте кнопки Твиттера \"Читать\", \"Твитнуть\", \"Метка\" и \"Упомянуть"
1627
  "\" к постам и страницам WordPress. "
1628
 
1629
+ #: product_list.php:427
1630
  msgid ""
1631
  "Automatically check and update WordPress website core with all installed "
1632
  "plugins and themes to the latest versions."
1634
  "Выполняйте автоматическую проверку и обновление ядра WordPress до последних "
1635
  "версий со всеми установленными плагинами и темами."
1636
 
1637
+ #: product_list.php:437
1638
  msgid ""
1639
  "Powerful user role management plugin for WordPress website. Create, edit, "
1640
  "copy, and delete user roles."
1642
  "Эффективный плагин управления ролями пользователей для сайта WordPress. "
1643
  "Создавайте, редактируйте, копируйте и удаляйте роли пользователей."
1644
 
1645
+ #: product_list.php:447
1646
  msgid ""
1647
  "Display live count of online visitors who are currently browsing your "
1648
  "WordPress website."
1650
  "Ведите подсчет количества посетителей, которые в настоящее время "
1651
  "просматривают ваш сайт WordPress."
1652
 
1653
+ #: product_list.php:457
1654
  msgid ""
1655
  "Backup and export Zendesk Help Center content automatically to your "
1656
  "WordPress website database."
1658
  "Делайте автоматическое резервное копирование и экспорт содержимого Zendesk "
1659
  "Help Center в базу данных вашего сайта WordPress."
1660
 
1661
+ #~ msgid "Anonymous feedback"
1662
+ #~ msgstr "Анонимный отзыв"
1663
+
1664
+ #~ msgid ""
1665
+ #~ "Protect WordPress website forms from spam entries by means of math logic."
1666
+ #~ msgstr ""
1667
+ #~ "Защищайте формы вашего сайта WordPress от взлома путем математической "
1668
+ #~ "логики."
1669
+
1670
+ #~ msgid "Congratulations! Pro Membership license is activated successfully."
1671
+ #~ msgstr "Поздравляем! Pro Membership лицензия успешно активирована."
1672
+
1673
+ #~ msgid "Email with system info is sent to"
1674
+ #~ msgstr "Емейл с системной информацией отправлен на"
1675
+
1676
+ #~ msgid "Browse Free WordPress Themes"
1677
+ #~ msgstr "Обзор бесплатных WordPress тем"
1678
+
1679
  #~ msgid ""
1680
  #~ "You can use one license of the Pro plugin for one domain only. Please "
1681
  #~ "check and edit your license or domain if necessary using you personal "
bws_menu/languages/bestwebsoft-uk.mo CHANGED
Binary file
bws_menu/languages/bestwebsoft-uk.po CHANGED
@@ -2,11 +2,11 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2017-08-28 10:04+0300\n"
6
- "PO-Revision-Date: 2017-08-28 10:13+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <https://support.bestwebsoft.com>\n"
9
- "Language: uk_UA\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
@@ -42,6 +42,11 @@ msgstr "Сторінку Плагінів"
42
  msgid "Like the plugin?"
43
  msgstr "Сподобався плагін?"
44
 
 
 
 
 
 
45
  #: bws_functions.php:94
46
  msgid "Rate it"
47
  msgstr "Оцінити"
@@ -50,7 +55,7 @@ msgstr "Оцінити"
50
  msgid "Need help?"
51
  msgstr "Потрібна допомога?"
52
 
53
- #: bws_functions.php:104 bws_functions.php:911 class-bws-settings.php:1056
54
  msgid "Visit Help Center"
55
  msgstr "Перейти до Help Center"
56
 
@@ -58,7 +63,7 @@ msgstr "Перейти до Help Center"
58
  msgid "Want to support the plugin?"
59
  msgstr "Хочете підтримати плагін?"
60
 
61
- #: bws_functions.php:108 bws_menu.php:553
62
  msgid "Donate"
63
  msgstr "Пожертвувати"
64
 
@@ -78,7 +83,8 @@ msgstr ""
78
  "вкладці Client Area. Ми настійливо рекомендуємо Вам вирішити це питання "
79
  "протягом 24 годин, інакше плагін буде деактивовано."
80
 
81
- #: bws_functions.php:128 bws_functions.php:340 class-bws-settings.php:144
 
82
  msgid "Learn More"
83
  msgstr "Дізнатись більше"
84
 
@@ -98,7 +104,7 @@ msgstr ""
98
  "Строк вашої ліцензії витік. Якщо ви хочете отримувати першочергову технічну "
99
  "підтримку та оновлювати плагін у майбутньому, вам слід подовжити ліцензію."
100
 
101
- #: bws_functions.php:147 bws_functions.php:383 deprecated.php:584
102
  msgid "Learn more"
103
  msgstr "Дізнатись більше"
104
 
@@ -128,68 +134,68 @@ msgstr ""
128
  msgid "Thank you for installing %s plugin!"
129
  msgstr "Дякуємо, що встановили %s плагін!"
130
 
131
- #: bws_functions.php:209
132
  msgid "Let's get started"
133
  msgstr "Розпочнемо"
134
 
135
- #: bws_functions.php:210 bws_functions.php:243 bws_menu.php:557
136
- #: bws_menu.php:559
137
  msgid "Settings"
138
  msgstr "Налаштування"
139
 
140
- #: bws_functions.php:212 bws_menu.php:328 class-bws-settings.php:745
141
- #: class-bws-settings.php:1058 class-bws-settings.php:1068 deprecated.php:694
142
  msgid "or"
143
  msgstr "або"
144
 
145
- #: bws_functions.php:213 bws_functions.php:245
146
  msgid "Add New"
147
  msgstr "Додати"
148
 
149
- #: bws_functions.php:217 bws_functions.php:227 bws_functions.php:331
150
- #: bws_functions.php:379 bws_functions.php:481
151
  msgid "Close notice"
152
  msgstr "Закрити"
153
 
154
- #: bws_functions.php:232
155
  msgid "Thank you for installing plugins by BestWebSoft!"
156
  msgstr "Дякуємо, що встановили плагіни від BestWebSoft!"
157
 
158
- #: bws_functions.php:234
159
  msgid "More Details"
160
  msgstr "Деталі"
161
 
162
- #: bws_functions.php:235
163
  msgid "Less Details"
164
  msgstr "Сховати Деталі"
165
 
166
- #: bws_functions.php:263
167
  msgid "Deprecated function(-s) is used on the site here:"
168
  msgstr "Застарілі функціі використовується на сайті тут:"
169
 
170
- #: bws_functions.php:277
171
  msgid ""
172
  "This function(-s) will be removed over time. Please update the product(-s)."
173
  msgstr ""
174
  "Ці функції буде видалено через деякий час. Будь ласка, поновіть продукт."
175
 
176
- #: bws_functions.php:336
177
  msgid "It’s time to upgrade your"
178
  msgstr "Настав час модернізувати Ваш"
179
 
180
- #: bws_functions.php:336
181
  msgid "to"
182
  msgstr "до"
183
 
184
- #: bws_functions.php:336
185
  msgid "version!"
186
  msgstr "версії!"
187
 
188
- #: bws_functions.php:337
189
  msgid "Extend standard plugin functionality with new great options."
190
  msgstr "Розширює можливості стандартного функціоналу плагіна."
191
 
192
- #: bws_functions.php:383
193
  #, php-format
194
  msgid ""
195
  "Your license key for %s expires on %s and you won't be granted TOP-PRIORITY "
@@ -198,12 +204,12 @@ msgstr ""
198
  "Ваш ліцензійний ключ для %s витікає %s та ви більше не будете отримувати "
199
  "першочергову технічну підтримку та оновлення."
200
 
201
- #: bws_functions.php:476
202
  #, php-format
203
  msgid "Thank you for choosing %s plugin!"
204
  msgstr "Дякую за вибір плагіна %s!"
205
 
206
- #: bws_functions.php:477
207
  msgid ""
208
  "If you have a feature, suggestion or idea you'd like to see in the plugin, "
209
  "we'd love to hear about it!"
@@ -212,25 +218,25 @@ msgstr ""
212
  "функціоналу плагіна, будь ласка, надсилайте їх нам! Ми завжди відкриті для "
213
  "нових ідей!"
214
 
215
- #: bws_functions.php:478
216
  msgid "Suggest a Feature"
217
  msgstr "Запропонувати функціонал"
218
 
219
- #: bws_functions.php:494 class-bws-settings.php:538 class-bws-settings.php:541
220
- #: class-bws-settings.php:593 class-bws-settings.php:596
221
  msgid "Notice"
222
  msgstr "Зауважте"
223
 
224
- #: bws_functions.php:494
225
  msgid "The plugin's settings have been changed."
226
  msgstr "Налаштування плагіну змінено."
227
 
228
- #: bws_functions.php:495 class-bws-settings.php:183 class-bws-settings.php:203
229
- #: deprecated.php:640
230
  msgid "Save Changes"
231
  msgstr "Зберегти зміни"
232
 
233
- #: bws_functions.php:509
234
  msgid ""
235
  "You can always look at premium options by checking the \"Pro Options\" in "
236
  "the \"Misc\" tab."
@@ -238,77 +244,77 @@ msgstr ""
238
  "Ви завжди можете подивитися на преміум опції, натиснувши на кнопку \"Pro "
239
  "опції\" на вкладці \"Різне\"."
240
 
241
- #: bws_functions.php:647
242
  msgid "Add BWS Shortcode"
243
  msgstr "Додати BWS шорткод"
244
 
245
- #: bws_functions.php:648
246
  msgid "Add BWS Plugins Shortcode"
247
  msgstr "Додати шорткод BWS плагіну"
248
 
249
- #: bws_functions.php:667
250
  msgid "Add shortcode"
251
  msgstr "Додати шорткод"
252
 
253
- #: bws_functions.php:667
254
  msgid "Add BestWebSoft plugins' shortcodes using this button."
255
  msgstr "Додайте шорткоди BestWebSoft плагінів за допомогою цієї кнопки."
256
 
257
- #: bws_functions.php:723
258
  msgid "Close"
259
  msgstr "Закрити"
260
 
261
- #: bws_functions.php:815
262
  msgid "Are you sure you want to restore default settings?"
263
  msgstr "Ви впевнені, що хочете скинути налаштування плагіну до стандартних?"
264
 
265
- #: bws_functions.php:818
266
  msgid "Yes, restore all settings"
267
  msgstr "Так, скинути налаштування"
268
 
269
- #: bws_functions.php:819
270
  msgid "No, go back to the settings page"
271
  msgstr "Ні, повернутись назад на сторінку налаштувань"
272
 
273
- #: bws_functions.php:861
274
  msgid "Plugin"
275
  msgstr "Плагін"
276
 
277
- #: bws_functions.php:870
278
  msgid "Shortcode settings"
279
  msgstr "Налаштування шорткоду"
280
 
281
- #: bws_functions.php:875
282
  msgid "The shortcode will be inserted"
283
  msgstr "Буде вставлено шорткод"
284
 
285
- #: bws_functions.php:916
286
  msgid "FAQ"
287
  msgstr "FAQ"
288
 
289
- #: bws_functions.php:922
290
  msgid "For more information:"
291
  msgstr "Для отримання додаткової інформації:"
292
 
293
- #: bws_functions.php:923
294
  msgid "Documentation"
295
  msgstr "Документація"
296
 
297
- #: bws_functions.php:924
298
  msgid "Video Instructions"
299
  msgstr "Відео інструкції"
300
 
301
- #: bws_functions.php:925
302
  msgid "Submit a Request"
303
  msgstr "Надіслати запит"
304
 
305
- #: bws_menu.php:101 class-bws-settings.php:790 deprecated.php:322
306
  msgid "Wrong license key"
307
  msgstr "Невірний ключ ліцензії"
308
 
309
- #: bws_menu.php:122 class-bws-settings.php:816 class-bws-settings.php:883
310
- #: class-bws-settings.php:919 deprecated.php:133 deprecated.php:199
311
- #: deprecated.php:352
312
  msgid ""
313
  "Something went wrong. Please try again later. If the error appears again, "
314
  "please contact us"
@@ -316,14 +322,14 @@ msgstr ""
316
  "Щось не так, спробуйте пізніше. Якщо помилка повториться, будь ласка, "
317
  "повідомте нам"
318
 
319
- #: bws_menu.php:122 class-bws-settings.php:816 class-bws-settings.php:883
320
- #: class-bws-settings.php:919 deprecated.php:133 deprecated.php:199
321
- #: deprecated.php:352
322
  msgid "We are sorry for inconvenience."
323
  msgstr "Просимо вибачення за незручності."
324
 
325
- #: bws_menu.php:128 class-bws-settings.php:822 class-bws-settings.php:925
326
- #: deprecated.php:139 deprecated.php:358
327
  msgid "Wrong license key."
328
  msgstr "Неправильний ліцензійний ключ."
329
 
@@ -338,11 +344,11 @@ msgstr ""
338
  msgid "Log in"
339
  msgstr "Увійти"
340
 
341
- #: bws_menu.php:132 bws_menu.php:334 deprecated.php:261
342
  msgid "Unfortunately, you have exceeded the number of available tries per day."
343
  msgstr "На жаль, ви перевищили кількість допустимих спроб."
344
 
345
- #: bws_menu.php:134 class-bws-settings.php:931 deprecated.php:364
346
  #, php-format
347
  msgid ""
348
  "Unfortunately, Your license has expired. To continue getting top-priority "
@@ -351,7 +357,7 @@ msgstr ""
351
  "На жаль, ваша ліцензія скінчилась. Для того, щоб і надалі отримувати "
352
  "першочергову техпідтримку і оновлення, будь ласка, продовжте ліцензію на %s"
353
 
354
- #: bws_menu.php:136 class-bws-settings.php:933 deprecated.php:366
355
  msgid ""
356
  "Unfortunately, the Pro licence was already installed to this domain. The Pro "
357
  "Trial license can be installed only once."
@@ -359,19 +365,19 @@ msgstr ""
359
  "На жаль, Pro ліцензія уже використовувалась на цьому домені. Тріал Pro "
360
  "версії плагіну можна використати лише один раз."
361
 
362
- #: bws_menu.php:142 class-bws-settings.php:837 deprecated.php:153
363
  msgid "The license key is valid."
364
  msgstr "Ліцензійний ключ дійсний."
365
 
366
- #: bws_menu.php:144 class-bws-settings.php:840 deprecated.php:156
367
  msgid "Your license will expire on"
368
  msgstr "Ваша ліцензія закінчується"
369
 
370
  #: bws_menu.php:146
371
- msgid "Congratulations! Pro Membership license is activated successfully."
372
  msgstr "Вітаємо! Pro Membership ліцензія успішно активована."
373
 
374
- #: bws_menu.php:153 class-bws-settings.php:1005 deprecated.php:435
375
  msgid ""
376
  "Something went wrong. Try again later or upload the plugin manually. We are "
377
  "sorry for inconvenience."
@@ -525,67 +531,68 @@ msgstr "Не активні плагіни"
525
  msgid "Please enter a valid email address."
526
  msgstr "Будь ласка, введіть коректний емейл."
527
 
528
- #: bws_menu.php:264
529
- msgid "Email with system info is sent to"
530
- msgstr "Емейл з системною інформацією надіслано на"
 
531
 
532
- #: bws_menu.php:268
533
  msgid "Thank you for contacting us."
534
  msgstr "Дякуємо, що звернулись до нас."
535
 
536
- #: bws_menu.php:291
537
  msgid "Sorry, email message could not be delivered."
538
  msgstr "Вибачте, ваше емейл не може бути доставлено"
539
 
540
- #: bws_menu.php:307 bws_menu.php:311 bws_menu.php:360 deprecated.php:91
541
  msgid "Plugins"
542
  msgstr "Плагіни"
543
 
544
- #: bws_menu.php:308 bws_menu.php:312 bws_menu.php:611 deprecated.php:92
545
  msgid "Themes"
546
  msgstr "Теми"
547
 
548
- #: bws_menu.php:309 bws_menu.php:313 bws_menu.php:641
549
  msgid "System status"
550
  msgstr "Системна інформація"
551
 
552
- #: bws_menu.php:317
553
  msgid "Support"
554
  msgstr "Підтримка"
555
 
556
- #: bws_menu.php:318
557
  msgid "Manage purchased licenses & subscriptions"
558
  msgstr "Управління придбаними ліцензіями і підписками"
559
 
560
- #: bws_menu.php:326
561
  #, php-format
562
  msgid "Get Access to %s+ Premium Plugins"
563
  msgstr "Отримати доступ до %s+ преміум плагинам"
564
 
565
- #: bws_menu.php:328
566
  msgid "Subscribe to Pro Membership"
567
  msgstr "Підписатися на Pro Membership"
568
 
569
- #: bws_menu.php:336 bws_menu.php:347 class-bws-settings.php:758
570
  #: deprecated.php:227
571
  msgid "Check license key"
572
  msgstr "Перевірте ліцензійний ключ"
573
 
574
- #: bws_menu.php:339
575
  msgid "Enter your license key"
576
  msgstr "Ваш ліцензійний ключ"
577
 
578
- #: bws_menu.php:345 bws_menu.php:563 bws_menu.php:572
579
- #: class-bws-settings.php:737 deprecated.php:259 deprecated.php:267
580
- #: deprecated.php:629 deprecated.php:700 deprecated.php:709
581
  msgid "Activate"
582
  msgstr "Активувати"
583
 
584
- #: bws_menu.php:361
585
  msgid "Upload Plugin"
586
  msgstr "Завантажити плагін"
587
 
588
- #: bws_menu.php:365
589
  #, php-format
590
  msgid ""
591
  "The plugin generated %d characters of <strong>unexpected output</strong> "
@@ -598,7 +605,7 @@ msgstr ""
598
  "надіслані&#8221;, проблеми з каналами чи інші неполадки, спробуйте вимкнути "
599
  "чи видалити цей плагін."
600
 
601
- #: bws_menu.php:367
602
  msgid ""
603
  "Plugin could not be activated because it triggered a <strong>fatal error</"
604
  "strong>."
@@ -606,39 +613,37 @@ msgstr ""
606
  "Плагін не вдалося активувати, бо він спричинив <strong>критичну помилку</"
607
  "strong>."
608
 
609
- #: bws_menu.php:370
610
  msgid "Plugin <strong>activated</strong>."
611
  msgstr "Плагін <strong>активовано</strong>."
612
 
613
- #: bws_menu.php:377
614
  msgid "Installing Plugin"
615
  msgstr "Встановлення плагіну"
616
 
617
- #: bws_menu.php:383
618
  msgid "Downloading install package from"
619
  msgstr "Завантаження встановлюючого пакунку з"
620
 
621
- #: bws_menu.php:400 bws_menu.php:431 bws_menu.php:442
622
- #: class-bws-settings.php:957 class-bws-settings.php:979
623
- #: class-bws-settings.php:1001 deprecated.php:387 deprecated.php:409
624
- #: deprecated.php:431
625
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
626
  msgstr ""
627
  "Помилка при завантаженні zip-архіву. Будь ласка, завантажте плагін вручну"
628
 
629
- #: bws_menu.php:408
630
  msgid "Unpacking the package"
631
  msgstr "Розпакування пакета"
632
 
633
- #: bws_menu.php:413 bws_menu.php:421
634
  msgid "Installing the plugin"
635
  msgstr "Встановлення плагіну"
636
 
637
- #: bws_menu.php:417 class-bws-settings.php:969 deprecated.php:399
638
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
639
  msgstr "Помилка при відкритті zip-архіву. Будь ласка, завантажте плагін вручну"
640
 
641
- #: bws_menu.php:424 class-bws-settings.php:975 deprecated.php:405
642
  msgid ""
643
  "Your server does not support either ZipArchive or Phar. Please, upload the "
644
  "plugin manually"
@@ -646,96 +651,96 @@ msgstr ""
646
  "Ваш сервер не підтримує формати Zip і Phar. Будь ласка, завантажте плагін "
647
  "вручну"
648
 
649
- #: bws_menu.php:427
650
  #, php-format
651
  msgid "The plugin %s is successfully installed."
652
  msgstr "Плагін %s успішно встановлено."
653
 
654
- #: bws_menu.php:434 class-bws-settings.php:982 deprecated.php:412
655
  msgid "UploadDir is not writable. Please, upload the plugin manually"
656
  msgstr ""
657
  "Немає доступу до теки завантажень WordPress. Будь ласка, завантажте плагін "
658
  "вручну"
659
 
660
- #: bws_menu.php:439
661
  msgid "Activate Plugin"
662
  msgstr "Активувати плагін"
663
 
664
- #: bws_menu.php:439 bws_menu.php:445
665
  msgid "Return to BestWebSoft Panel"
666
  msgstr "Назад до BestWebSoft Panel"
667
 
668
- #: bws_menu.php:449 bws_menu.php:464 bws_menu.php:593
669
  msgid "All"
670
  msgstr "Всі"
671
 
672
- #: bws_menu.php:450 bws_menu.php:630
673
  msgid "Installed"
674
  msgstr "Встановлені"
675
 
676
- #: bws_menu.php:451
677
  msgid "Not Installed"
678
  msgstr "Не встановлені"
679
 
680
- #: bws_menu.php:457
681
  msgid "Filter results"
682
  msgstr "Фільтр результатів"
683
 
684
- #: bws_menu.php:460 bws_menu.php:589
685
  msgid "Category"
686
  msgstr "Категорія"
687
 
688
- #: bws_menu.php:524
689
  msgid "Not installed"
690
  msgstr "Не встановлен"
691
 
692
- #: bws_menu.php:528
693
  msgid "Renew to get updates"
694
  msgstr "Продовжити для поновлення"
695
 
696
- #: bws_menu.php:531
697
  #, php-format
698
  msgid "Update to v %s"
699
  msgstr "Оновити до версії %s"
700
 
701
- #: bws_menu.php:543 bws_menu.php:566 bws_menu.php:575
702
  msgid "Install Now"
703
  msgstr "Встановити"
704
 
705
- #: bws_menu.php:549 class-bws-settings.php:157 class-bws-settings.php:1065
706
  msgid "Upgrade to Pro"
707
  msgstr "Оновити до Pro"
708
 
709
- #: bws_menu.php:563 bws_menu.php:572
710
  msgid "Activate this plugin"
711
  msgstr "Активувати плагін"
712
 
713
- #: bws_menu.php:575
714
  msgid "Install this plugin"
715
  msgstr "Встановити плагін"
716
 
717
- #: bws_menu.php:584
718
  msgid "Nothing found. Try another criteria."
719
  msgstr "Нічого не знайдено. Спробуйте інші критерії."
720
 
721
- #: bws_menu.php:621
722
  #, php-format
723
  msgid "By %s"
724
  msgstr "За %s"
725
 
726
- #: bws_menu.php:628
727
  msgid "Already Installed"
728
  msgstr "Уже встановлено %s"
729
 
730
- #: bws_menu.php:638
731
- msgid "Browse Free WordPress Themes"
732
- msgstr "Огляд безкоштовних WordPress тем"
733
 
734
- #: bws_menu.php:647
735
  msgid "Send to support"
736
  msgstr "Відправити службі тех. підтримки"
737
 
738
- #: bws_menu.php:654
739
  msgid "Send to custom email &#187;"
740
  msgstr "Відправити на електронну адресу &#187;"
741
 
@@ -789,15 +794,15 @@ msgstr "Усі налаштування плагіну відновлені."
789
  msgid "Custom Code"
790
  msgstr "Користувацький код"
791
 
792
- #: class-bws-settings.php:427 deprecated.php:497
793
  msgid "You do not have sufficient permissions to edit plugins for this site."
794
  msgstr "У вас недостатньо повноважень для редагування плагінів цього сайту."
795
 
796
- #: class-bws-settings.php:432 deprecated.php:618
797
  msgid "These styles will be added to the header on all pages of your site."
798
  msgstr "Ці стилі будуть додані в заголовок на всіх сторінках вашого сайту."
799
 
800
- #: class-bws-settings.php:435 deprecated.php:620
801
  #, php-format
802
  msgid ""
803
  "This PHP code will be hooked to the %s action and will be printed on front "
@@ -809,7 +814,7 @@ msgstr ""
809
  msgid "These code will be added to the header on all pages of your site."
810
  msgstr "Цей код буде додано в заголовок на всіх сторінках вашого сайту."
811
 
812
- #: class-bws-settings.php:446 deprecated.php:644
813
  #, php-format
814
  msgid ""
815
  "You need to make this files writable before you can save your changes. See "
@@ -818,7 +823,7 @@ msgstr ""
818
  "Вам потрібно зробити цей файл доступним для запису, перед тим як ви зможете "
819
  "зберегти свої зміни. Перегляньте %sКодекс%s для додаткової інформації."
820
 
821
- #: class-bws-settings.php:456 deprecated.php:626
822
  msgid "Browsing"
823
  msgstr "Огляд"
824
 
@@ -827,16 +832,16 @@ msgstr "Огляд"
827
  msgid "Activate custom %s code."
828
  msgstr "Активувати користувацький %s код."
829
 
830
- #: class-bws-settings.php:469 deprecated.php:633
831
  #, php-format
832
  msgid "Learn more about %s"
833
  msgstr "Дізнатись більше про %s"
834
 
835
- #: class-bws-settings.php:529
836
  msgid "Miscellaneous Settings"
837
  msgstr "Інші налаштування"
838
 
839
- #: class-bws-settings.php:538 class-bws-settings.php:593
840
  #, php-format
841
  msgid ""
842
  "It is prohibited to change %s settings on this site in the %s network "
@@ -845,7 +850,7 @@ msgstr ""
845
  "Мережевими налаштуваннями %s забороняється змінювати налаштування %s на "
846
  "цьому сайті."
847
 
848
- #: class-bws-settings.php:541 class-bws-settings.php:596
849
  #, php-format
850
  msgid ""
851
  "It is prohibited to view %s settings on this site in the %s network settings."
@@ -853,68 +858,68 @@ msgstr ""
853
  "Мережевими налаштуваннями %s забороняється дивитися налаштування %s на цьому "
854
  "сайті."
855
 
856
- #: class-bws-settings.php:550
857
  msgid "Pro Options"
858
  msgstr "Pro опції"
859
 
860
- #: class-bws-settings.php:554
861
  msgid "Enable to display plugin Pro options."
862
  msgstr "Увімкніть для відображення Pro опцій плагіна."
863
 
864
- #: class-bws-settings.php:560
865
  msgid "Track Usage"
866
  msgstr "Збирати статистику"
867
 
868
- #: class-bws-settings.php:564
869
  msgid ""
870
  "Enable to allow tracking plugin usage anonymously in order to make it better."
871
  msgstr ""
872
  "Включити, щоб дозволити анонімно відстежувати використання і зробити плагін "
873
  "краще."
874
 
875
- #: class-bws-settings.php:569
876
  msgid "Default Settings"
877
  msgstr "Налаштування за замовчуванням"
878
 
879
- #: class-bws-settings.php:571
880
  msgid "Restore Settings"
881
  msgstr "Відновлення налаштувань"
882
 
883
- #: class-bws-settings.php:572
884
  msgid "This will restore plugin settings to defaults."
885
  msgstr "Відновити всі налаштування плагіна до налаштувань за замовчуванням."
886
 
887
- #: class-bws-settings.php:584
888
  msgid "Import / Export"
889
  msgstr "Імпорт / Експорт"
890
 
891
- #: class-bws-settings.php:700 class-bws-settings.php:733
892
- #: class-bws-settings.php:755
893
  msgid "License Key"
894
  msgstr "Ключ ліцензії"
895
 
896
- #: class-bws-settings.php:723
897
  msgid "Congratulations! Pro license is activated successfully."
898
  msgstr "Вітаємо! Pro ліцензія успішно активована."
899
 
900
- #: class-bws-settings.php:724
901
  #, php-format
902
  msgid "You will be automatically redirected to the %s in %s seconds."
903
  msgstr "Вас буде автоматично перенаправлено на %s через %s секунд."
904
 
905
- #: class-bws-settings.php:724
906
  msgid "Settings page"
907
  msgstr "сторінку налаштувань"
908
 
909
- #: class-bws-settings.php:739
910
  #, php-format
911
  msgid "Enter your license key to activate %s and get premium plugin features."
912
  msgstr ""
913
  "Введіть ліцензійний ключ для активації %s і отримання додаткових можливостей "
914
  "плагіна."
915
 
916
- #: class-bws-settings.php:742 class-bws-settings.php:929 deprecated.php:362
917
- #: deprecated.php:703
918
  msgid ""
919
  "Unfortunately, you have exceeded the number of available tries per day. "
920
  "Please, upload the plugin manually."
@@ -922,12 +927,12 @@ msgstr ""
922
  "На жаль, ви перевищили кількість доступних спроб на день. Будь ласка, "
923
  "завантажте плагін вручну"
924
 
925
- #: class-bws-settings.php:745 deprecated.php:694
926
  #, php-format
927
  msgid "Start Your Free %s-Day Trial Now"
928
  msgstr "Спробуйте %s-денну Trial версію безкоштовно"
929
 
930
- #: class-bws-settings.php:760
931
  msgid ""
932
  "If necessary, you can check if the license key is correct or reenter it in "
933
  "the field below."
@@ -935,15 +940,15 @@ msgstr ""
935
  "При необхідності ви можете перевірити правильність вашого ліцензійного ключа "
936
  "або знову ввести його у полі, що знаходиться нижче."
937
 
938
- #: class-bws-settings.php:765
939
  msgid "Manage License Settings"
940
  msgstr "Управління налаштуваннями ліцензій"
941
 
942
- #: class-bws-settings.php:767
943
  msgid "Login to Client Area"
944
  msgstr "Зайти в Client Area"
945
 
946
- #: class-bws-settings.php:769
947
  msgid ""
948
  "Manage active licenses, download BWS products, and view your payment history "
949
  "using BestWebSoft Client Area."
@@ -951,12 +956,12 @@ msgstr ""
951
  "Керуй активними ліцензіями, завантажуй BWS продукти, а також переглядай "
952
  "історію платежів за допомогою BestWebSoft Client Area."
953
 
954
- #: class-bws-settings.php:824 class-bws-settings.php:927 deprecated.php:141
955
- #: deprecated.php:360
956
  msgid "This license key is bound to another site."
957
  msgstr "Цей ліцензійний ключ прив'язано до іншого сайту."
958
 
959
- #: class-bws-settings.php:826 deprecated.php:143
960
  msgid ""
961
  "This license key is valid, but Your license has expired. If you want to "
962
  "update our plugin in future, you should extend the license."
@@ -964,11 +969,11 @@ msgstr ""
964
  "Даний ліцензійний ключ дійсний, але строк вашої ліцензії витік. Якщо ви "
965
  "хочете оновлювати наш плагін у майбутньому, вам слід подовжити ліцензію."
966
 
967
- #: class-bws-settings.php:828 deprecated.php:145
968
  msgid "Unfortunately, you have exceeded the number of available tries."
969
  msgstr "На жаль, ви перевищили кількість допустимих спроб."
970
 
971
- #: class-bws-settings.php:830 deprecated.php:147
972
  msgid ""
973
  "Unfortunately, the Pro Trial licence was already installed to this domain. "
974
  "The Pro Trial license can be installed only once."
@@ -976,132 +981,166 @@ msgstr ""
976
  "На жаль, Trial Pro версія плагіну уже встановлювалась на цей домен. Trial "
977
  "Pro версію можна встановлювати лише один раз."
978
 
979
- #: class-bws-settings.php:835 deprecated.php:151
980
  msgid "The Pro Trial license key is valid."
981
  msgstr "Ключ тріал Pro версії вірний."
982
 
983
- #: class-bws-settings.php:843 deprecated.php:159 deprecated.php:246
984
  #, php-format
985
  msgid ""
986
  "In order to continue using the plugin it is necessary to buy a %s license."
987
  msgstr "Щоб продовжити користуватись плагіном, потрібно придбати %s ліцензію."
988
 
989
- #: class-bws-settings.php:1040 deprecated.php:463
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
990
  msgid "Please, enter Your license key"
991
  msgstr "Будь ласка, впишіть ваш ліцензійний ключ"
992
 
993
- #: class-bws-settings.php:1052
994
  msgid "Need Help?"
995
  msgstr "Потрібна допомога?"
996
 
997
- #: class-bws-settings.php:1054
998
  msgid "Read the Instruction"
999
  msgstr "Читати інструкцію"
1000
 
1001
- #: class-bws-settings.php:1058
1002
  msgid "Watch the Video"
1003
  msgstr "Дивитися відео"
1004
 
1005
- #: class-bws-settings.php:1069
1006
  msgid "Start Your Free Trial"
1007
  msgstr "Використовувати безкоштовну Trial версію"
1008
 
1009
- #: deactivation-form.php:26
1010
  msgid "Need help? We are ready to answer your questions."
1011
  msgstr "Потрібна допомога? Ми готові відповісти на ваші питання."
1012
 
1013
- #: deactivation-form.php:26
1014
  msgid "Contact Support"
1015
  msgstr "Зв'язатися з тех. підтримкою"
1016
 
1017
- #: deactivation-form.php:31
1018
  msgid "The plugin is not working"
1019
  msgstr "Плагін не працює"
1020
 
1021
- #: deactivation-form.php:33
1022
  msgid "Kindly share what didn't work so we can fix it in future updates..."
1023
  msgstr ""
1024
  "Будь ласка, повідомте, що не працює, щоб ми змогли виправити це в майбутніх "
1025
  "оновленнях..."
1026
 
1027
- #: deactivation-form.php:37
1028
  msgid "The plugin didn't work as expected"
1029
  msgstr "Плагін не працює, як очікувалося"
1030
 
1031
- #: deactivation-form.php:39
1032
  msgid "What did you expect?"
1033
  msgstr "Що саме ви очікували?"
1034
 
1035
- #: deactivation-form.php:43
1036
  msgid "The plugin suddenly stopped working"
1037
  msgstr "Плагін раптово перестав працювати"
1038
 
1039
- #: deactivation-form.php:50
1040
  msgid "The plugin broke my site"
1041
  msgstr "Плагін зламав мій сайт"
1042
 
1043
- #: deactivation-form.php:57
1044
  msgid "I couldn't understand how to get it work"
1045
  msgstr "Я не можу зрозуміти, як змусити його працювати"
1046
 
1047
- #: deactivation-form.php:64
1048
  msgid "I found a better plugin"
1049
  msgstr "Я знайшов кращий плагін"
1050
 
1051
- #: deactivation-form.php:66
1052
  msgid "What's the plugin name?"
1053
  msgstr "Яка назва плагіна?"
1054
 
1055
- #: deactivation-form.php:70
1056
  msgid "The plugin is great, but I need specific feature that you don't support"
1057
  msgstr "Плагін чудовий, але мені потрібен певний функціонал, якого у вас немає"
1058
 
1059
- #: deactivation-form.php:72
1060
  msgid "What feature?"
1061
  msgstr "Який функціонал?"
1062
 
1063
- #: deactivation-form.php:76
1064
  msgid "I no longer need the plugin"
1065
  msgstr "Плагін мені більше не потрібен"
1066
 
1067
- #: deactivation-form.php:82
1068
  msgid "It's a temporary deactivation, I'm just debugging an issue"
1069
  msgstr "Це тимчасова деактивація, я просто відлагоджую проблему"
1070
 
1071
- #: deactivation-form.php:88
1072
  msgid "Other"
1073
  msgstr "Інше"
1074
 
1075
- #: deactivation-form.php:122
1076
  msgid "Quick Feedback"
1077
  msgstr "Швидкий відгук"
1078
 
1079
- #: deactivation-form.php:123
1080
  msgid "If you have a moment, please let us know why you are deactivating"
1081
  msgstr ""
1082
  "Якщо у вас є час, будь ласка, повідомте нам, чому ви деактивуете плагін"
1083
 
1084
- #: deactivation-form.php:128
1085
- msgid "Anonymous feedback"
1086
- msgstr "Анонімний відгук"
1087
 
1088
- #: deactivation-form.php:130
1089
  msgid "Cancel"
1090
  msgstr "Відміна"
1091
 
1092
- #: deactivation-form.php:230
1093
  msgid "Processing"
1094
  msgstr "Обробка"
1095
 
1096
- #: deactivation-form.php:259
1097
  msgid "Submit & Deactivate"
1098
  msgstr "Надіслати і деактивувати"
1099
 
1100
- #: deactivation-form.php:276
1101
  msgid "Please tell us the reason so we can improve it."
1102
  msgstr "Будь ласка, повідомте нам причину, щоб ми могли покращити плагін."
1103
 
1104
- #: deactivation-form.php:344
1105
  msgid "Deactivate"
1106
  msgstr "Деактивувати"
1107
 
@@ -1132,79 +1171,79 @@ msgstr ""
1132
  "(ваше ім'я користувача - це емейл, який ви вказували при купівлі). При "
1133
  "необхідності, будь ласка, відправте запит на відновлення вашого паролю."
1134
 
1135
- #: deprecated.php:247
1136
  msgid "After that, you can activate it by entering your license key."
1137
  msgstr "Після цього ви зможете активувати його ввівши ліцензійний ключ."
1138
 
1139
- #: deprecated.php:249 deprecated.php:688
1140
  msgid "License key can be found in the"
1141
  msgstr "Ліцензійний ключ можна знайти в"
1142
 
1143
- #: deprecated.php:251 deprecated.php:690
1144
  msgid "(your username is the email address specified during the purchase)."
1145
  msgstr "(ваше ім'я користувача - це емейл, який ви вказували при купівлі)"
1146
 
1147
- #: deprecated.php:278
1148
  msgid ""
1149
  "Congratulations! The Pro license of the plugin is activated successfully."
1150
  msgstr "Вітаємо! Pro версію плагіну успішно активовано."
1151
 
1152
- #: deprecated.php:280 deprecated.php:669
1153
  msgid "Please, go to"
1154
  msgstr "Будь ласка, перейдіть на"
1155
 
1156
- #: deprecated.php:280 deprecated.php:669
1157
  msgid "the setting page"
1158
  msgstr "сторінку установок"
1159
 
1160
- #: deprecated.php:281 deprecated.php:670
1161
  msgid "You will be redirected automatically in 5 seconds."
1162
  msgstr "Вас буде перенаправлено автоматично через 5 секунд."
1163
 
1164
- #: deprecated.php:315
1165
  msgid "Check premium options on the plugin settings page!"
1166
  msgstr "Подивіться преміум опції на сторінці налаштувань плагіна!"
1167
 
1168
- #: deprecated.php:478
1169
  msgid "Restore all plugin settings to defaults"
1170
  msgstr "Скинути налаштування плагіну до стандартних"
1171
 
1172
- #: deprecated.php:480
1173
  msgid "Restore settings"
1174
  msgstr "Скинути налаштування"
1175
 
1176
- #: deprecated.php:548 deprecated.php:575
1177
  #, php-format
1178
  msgid "File %s edited successfully."
1179
  msgstr "Файл %s успішно відредаговано."
1180
 
1181
- #: deprecated.php:550 deprecated.php:577
1182
  msgid "Not enough permissions to create or update the file"
1183
  msgstr "У Вас недостатньо дозволів для створення або поновлення файлу"
1184
 
1185
- #: deprecated.php:580
1186
  msgid "Not enough permissions to create the file"
1187
  msgstr "У Вас недостатньо дозволів для створення файлу"
1188
 
1189
- #: deprecated.php:624
1190
  msgid "Editing"
1191
  msgstr "Редагування"
1192
 
1193
- #: deprecated.php:667
1194
  msgid ""
1195
  "Congratulations! Pro version of the plugin is installed and activated "
1196
  "successfully."
1197
  msgstr "Вітаємо! Pro версію плагіну успішно завантажено та активовано."
1198
 
1199
- #: deprecated.php:677
1200
  msgid "Show Pro features"
1201
  msgstr "Показати Pro опції"
1202
 
1203
- #: deprecated.php:684
1204
  msgid "Enter your license key to install and activate"
1205
  msgstr "Введіть ліцензійний ключ для установки і активації"
1206
 
1207
- #: deprecated.php:686
1208
  msgid "version of the plugin."
1209
  msgstr "версія плагіна."
1210
 
@@ -1244,18 +1283,15 @@ msgstr "Пошукова оптимізація"
1244
  msgid "SMM"
1245
  msgstr "СММ"
1246
 
1247
- #: product_list.php:23
1248
- msgid ""
1249
- "Protect WordPress website forms from spam entries by means of math logic."
1250
- msgstr ""
1251
- "Захищайте форми вашого сайту WordPress від зламування шляхом математичної "
1252
- "логіки."
1253
 
1254
- #: product_list.php:35
1255
  msgid "Create your personal car rental/booking and reservation website."
1256
  msgstr "Створіть свій власний сайт прокату і резервування автомобілів."
1257
 
1258
- #: product_list.php:45
1259
  msgid ""
1260
  "Allow customers to reach you using secure contact form plugin any website "
1261
  "must have."
@@ -1263,40 +1299,40 @@ msgstr ""
1263
  "Надайте можливість клієнтам здійснювати зв'язок з вами через безпечний "
1264
  "плагін контактної форми, який повинен мати будь-який сайт."
1265
 
1266
- #: product_list.php:55
1267
  msgid "Add unlimited number of contact forms to WordPress website."
1268
  msgstr "Додавайте необмежену кількість контактних форм на ваш сайт WordPress."
1269
 
1270
- #: product_list.php:65
1271
  msgid "Save and manage Contact Form messages. Never lose important data."
1272
  msgstr ""
1273
  "Зберігайте і керуйте повідомленнями плагіну Contact Form. Ніколи не "
1274
  "втрачайте важливі дані."
1275
 
1276
- #: product_list.php:75
1277
  msgid "Add unlimited custom pages to WordPress admin dashboard."
1278
  msgstr ""
1279
  "Додавайте необмежену кількість користувацьких сторінок у панелі "
1280
  "адміністратора WordPress."
1281
 
1282
- #: product_list.php:82
1283
  msgid "Add custom fields to WordPress website search results."
1284
  msgstr ""
1285
  "Додавайте користувацькі поля у результати пошуку вашого сайту WordPress."
1286
 
1287
- #: product_list.php:89
1288
  msgid ""
1289
  "Add custom post types and taxonomies to WordPress website search results."
1290
  msgstr ""
1291
  "Додавайте користувацькі типи постів і таксономії у результати пошуку на "
1292
  "вашому сайті WordPress."
1293
 
1294
- #: product_list.php:99
1295
  msgid "Add PayPal and 2CO donate buttons to receive charity payments."
1296
  msgstr ""
1297
  "Додавайте кнопки PayPal і 2CO, щоб отримувати пожертви та благодійні внески."
1298
 
1299
- #: product_list.php:106
1300
  msgid ""
1301
  "Get latest error log messages to diagnose website problems. Define and fix "
1302
  "issues faster."
@@ -1304,7 +1340,7 @@ msgstr ""
1304
  "Отримуйте останні повідомлення з журналу помилок для діагностики проблем "
1305
  "сайту. Швидше виявляйте і усувайте проблеми."
1306
 
1307
- #: product_list.php:113
1308
  msgid ""
1309
  "Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and "
1310
  "widgets."
@@ -1312,7 +1348,7 @@ msgstr ""
1312
  "Додавайте кнопки Facebook \"Підписатися\", \"Подобається\" та \"Поділитися\" "
1313
  "у пости, сторінки і віджети сайту WordPress."
1314
 
1315
- #: product_list.php:123
1316
  msgid ""
1317
  "Add beautiful galleries, albums & images to your WordPress website in a few "
1318
  "clicks."
@@ -1320,7 +1356,7 @@ msgstr ""
1320
  "Додавайте мальовничі галереї, альбоми і зображення на ваш сайт WordPress "
1321
  "всього в декілька кліків."
1322
 
1323
- #: product_list.php:133
1324
  msgid ""
1325
  "Add Google +1, Share, Follow, Hangout buttons and profile badge to WordPress "
1326
  "posts, pages and widgets."
@@ -1328,7 +1364,7 @@ msgstr ""
1328
  "Додавайте кнопки Google \"+1\", \"Поділитися\", \"Підписатися\", \"Hangout\" "
1329
  "і значок профілю до постів, сторінок та віджетів WordPress."
1330
 
1331
- #: product_list.php:143
1332
  msgid ""
1333
  "Stronger security solution which protects your WordPress website from hacks "
1334
  "and unauthorized login attempts."
@@ -1336,7 +1372,7 @@ msgstr ""
1336
  "Найпотужніше рішення безпеки, яке захищає ваш сайт WordPress від зломів та "
1337
  "неавторизованих спроб входу в систему."
1338
 
1339
- #: product_list.php:153
1340
  msgid ""
1341
  "Add Adsense ads to WordPress website pages, posts, custom posts, search "
1342
  "results, categories, tags, and widgets."
@@ -1344,13 +1380,13 @@ msgstr ""
1344
  "Додавайте рекламу сервісу Adsense на сторінки, пости, користувацькі пости, "
1345
  "результати пошуку, категорії, теги і віджети сайту WordPress."
1346
 
1347
- #: product_list.php:163
1348
  msgid "Add Google Analytics code to WordPress website and track basic stats."
1349
  msgstr ""
1350
  "Додавайте код Google Analytics на ваш сайт WordPress та відстежуйте базову "
1351
  "статистику сайту."
1352
 
1353
- #: product_list.php:173
1354
  msgid ""
1355
  "Protect WordPress website forms from spam entries with Google Captcha "
1356
  "(reCaptcha)."
@@ -1358,12 +1394,12 @@ msgstr ""
1358
  "Захищайте форми вашого сайту WordPress від спаму за допомогою Google Captcha "
1359
  "(reCaptcha)."
1360
 
1361
- #: product_list.php:183
1362
  msgid "Add customized Google maps to WordPress posts, pages and widgets."
1363
  msgstr ""
1364
  "Додавайте користувацькі карти Google у пости, сторінки та віджети WordPress."
1365
 
1366
- #: product_list.php:193
1367
  msgid ""
1368
  "Generate and add XML sitemap to WordPress website. Help search engines index "
1369
  "your blog."
@@ -1371,7 +1407,7 @@ msgstr ""
1371
  "Створюйте та додавайте файли XML sitemap на ваш сайт WordPress. Допоможіть "
1372
  "пошуковим системам проіндексувати ваш блог."
1373
 
1374
- #: product_list.php:203
1375
  msgid ""
1376
  "Replace external WordPress website links with Google shortlinks and track "
1377
  "click stats."
@@ -1379,7 +1415,7 @@ msgstr ""
1379
  "Замініть зовнішні посилання сайту WordPress на короткі посилання Google і "
1380
  "відстежуйте статистику кліків."
1381
 
1382
- #: product_list.php:210
1383
  msgid ""
1384
  "Protect WordPress website – allow and deny access for certain IP addresses, "
1385
  "hostnames, etc."
@@ -1387,7 +1423,7 @@ msgstr ""
1387
  "Захистіть свій сайт WordPress - надавайте та забороняйте доступ з певних IP-"
1388
  "адрес, імен хостів і т.д."
1389
 
1390
- #: product_list.php:220
1391
  msgid ""
1392
  "Create your personal job board and listing WordPress website. Search jobs, "
1393
  "submit CV/resumes, choose candidates."
@@ -1396,7 +1432,7 @@ msgstr ""
1396
  "WordPress. Здійснюйте пошук вакансій, подачу резюме/CV кандидата, вибір "
1397
  "кандидатів."
1398
 
1399
- #: product_list.php:227
1400
  msgid ""
1401
  "Protect WordPress website against brute force attacks. Limit rate of login "
1402
  "attempts."
@@ -1404,7 +1440,7 @@ msgstr ""
1404
  "Захищайте свій сайт WordPress від брутфорс-атак. Обмежуйте кількість спроб "
1405
  "введення логіна."
1406
 
1407
- #: product_list.php:237
1408
  msgid ""
1409
  "Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. "
1410
  "5 plugins included – profile, insider, etc."
@@ -1412,7 +1448,7 @@ msgstr ""
1412
  "Додавайте кнопки LinkedIn \"Поділитися\" та \"Відстежувати\" до постів, "
1413
  "сторінок і віджетів WordPress. 5 плагінів включено - Профіль, Інсайдер і т.д."
1414
 
1415
- #: product_list.php:247
1416
  msgid ""
1417
  "Translate WordPress website content to other languages manually. Create "
1418
  "multilingual pages, posts, widgets, menus, etc."
@@ -1420,7 +1456,7 @@ msgstr ""
1420
  "Перекладайте вміст сайту WordPress іншими мовами вручну. Створюйте "
1421
  "багатомовні сторінки, пости, віджети, меню і т.д."
1422
 
1423
- #: product_list.php:257
1424
  msgid ""
1425
  "Add customizable pagination to WordPress website. Split long content to "
1426
  "multiple pages for better navigation."
@@ -1428,7 +1464,7 @@ msgstr ""
1428
  "Додавайте пагінацію з можливістю налаштування на ваш сайт WordPress. "
1429
  "Розбивайте об'ємний контент на декілька сторінок для кращої навігації."
1430
 
1431
- #: product_list.php:267
1432
  msgid ""
1433
  "Generate PDF files and print WordPress posts/pages. Customize document "
1434
  "header/footer styles and appearance."
@@ -1436,7 +1472,7 @@ msgstr ""
1436
  "Створюйте PDF-файли і друкуйте пости/сторінки сайту WordPress. Налаштовуйте "
1437
  "стилі хедера/футера документа і його зовнішній вигляд."
1438
 
1439
- #: product_list.php:277
1440
  msgid ""
1441
  "Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, "
1442
  "Profile) to WordPress posts, pages and widgets."
@@ -1444,7 +1480,7 @@ msgstr ""
1444
  "Додавайте кнопки Pinterest \"Підписатися\", \"Зберегти\" і віджети профілю "
1445
  "(Пін, Дошка, Профіль) до постів, сторінок і віджетів WordPress."
1446
 
1447
- #: product_list.php:287
1448
  msgid ""
1449
  "Create your personal portfolio WordPress website. Manage and showcase past "
1450
  "projects to get more clients."
@@ -1452,13 +1488,13 @@ msgstr ""
1452
  "Створюйте і додавайте портфоліо на свій сайт WordPress. Керуйте і "
1453
  "демонструйте минулі проекти, щоб залучити більше клієнтів."
1454
 
1455
- #: product_list.php:297
1456
  msgid "Export WordPress posts to CSV file format easily. Configure data order."
1457
  msgstr ""
1458
  "З легкістю експортуйте пости WordPress в файли формату CSV. Налаштуйте "
1459
  "порядок відображення даних."
1460
 
1461
- #: product_list.php:304
1462
  msgid ""
1463
  "Add extra fields to default WordPress user profile. The easiest way to "
1464
  "create and manage additional custom values."
@@ -1466,7 +1502,7 @@ msgstr ""
1466
  "Додавайте користувацькі поля у стандартний профіль WordPress. Найпростіший "
1467
  "спосіб створення і управління додатковими полями."
1468
 
1469
- #: product_list.php:311
1470
  msgid ""
1471
  "Add and display HTML advertisement banner on WordPress website. Customize "
1472
  "bar styles and appearance."
@@ -1474,7 +1510,7 @@ msgstr ""
1474
  "Додавайте відображення банерної HTML реклами на сайті WordPress. Налаштуйте "
1475
  "стилі і зовнішній вигляд банеру."
1476
 
1477
- #: product_list.php:321
1478
  msgid ""
1479
  "Add customizable quotes and tips blocks to WordPress posts, pages and "
1480
  "widgets."
@@ -1482,7 +1518,7 @@ msgstr ""
1482
  "Додавайте редаговані цитати та підказки до постів, сторінок і віджетів "
1483
  "WordPress."
1484
 
1485
- #: product_list.php:328
1486
  msgid ""
1487
  "Add rating plugin to your WordPress website to receive feedback from your "
1488
  "customers."
@@ -1490,7 +1526,7 @@ msgstr ""
1490
  "Додавайте систему оцінювання і рейтингу на ваш сайт WordPress і отримуйте "
1491
  "відгуки від ваших клієнтів."
1492
 
1493
- #: product_list.php:335
1494
  msgid ""
1495
  "Create your personal real estate WordPress website. Sell, rent and buy "
1496
  "properties. Add, search and browse listings easily."
@@ -1499,7 +1535,7 @@ msgstr ""
1499
  "Продавайте, орендуйте і купуйте нерухомість. Легко додавайте, знаходьте і "
1500
  "переглядайте лістинги."
1501
 
1502
- #: product_list.php:345
1503
  msgid ""
1504
  "Add related, featured, latest, and popular posts to your WordPress website. "
1505
  "Connect your blog readers with a relevant content."
@@ -1507,7 +1543,7 @@ msgstr ""
1507
  "Додавайте схожі, обрані, останні та популярні пости на ваш сайт WordPress. "
1508
  "Надавайте своїм читачам контент схожої тематики."
1509
 
1510
- #: product_list.php:352
1511
  msgid ""
1512
  "Send bulk email messages to WordPress users. Custom templates, advanced "
1513
  "settings and detailed reports."
@@ -1515,7 +1551,7 @@ msgstr ""
1515
  "Здійснюйте масову розсилку листів користувачам WordPress. Користувацькі "
1516
  "шаблони, додаткові налаштування і детальні звіти."
1517
 
1518
- #: product_list.php:362
1519
  msgid ""
1520
  "The best responsive slider plugin for your WordPress website. Create "
1521
  "beautifully animated slides just in a few clicks."
@@ -1523,7 +1559,7 @@ msgstr ""
1523
  "Найкращий адаптивний слайдер для вашого сайту WordPress. Створюйте красиво "
1524
  "анімовані слайди всього в декілька кліків."
1525
 
1526
- #: product_list.php:369
1527
  msgid ""
1528
  "Configure SMTP server to receive email messages from WordPress to Gmail, "
1529
  "Yahoo, Hotmail and other services."
@@ -1531,7 +1567,7 @@ msgstr ""
1531
  "Налаштовуйте SMTP-сервер, щоб отримувати електронні повідомлення з сайту "
1532
  "WordPress на такі поштові служби, як Gmail, Yahoo, Hotmail і багато інших."
1533
 
1534
- #: product_list.php:376
1535
  msgid ""
1536
  "Add social media buttons and widgets to WordPress posts, pages and widgets. "
1537
  "FB, Twitter, G+1, Pinterest, LinkedIn."
@@ -1539,7 +1575,7 @@ msgstr ""
1539
  "Додавайте кнопки і віджети соціальних мереж до постів, сторінок і віджетів "
1540
  "WordPress. FB, Twitter, G+1, Pinterest, LinkedIn."
1541
 
1542
- #: product_list.php:386
1543
  msgid ""
1544
  "Add social media login, registration, and commenting to your WordPress "
1545
  "website."
@@ -1547,7 +1583,7 @@ msgstr ""
1547
  "Додавайте на свій сайт WordPress можливість входу, реєстрації та "
1548
  "коментування з використанням існуючих акаунтів соціальних мереж."
1549
 
1550
- #: product_list.php:393
1551
  msgid ""
1552
  "Add email newsletter sign up form to WordPress posts, pages and widgets. "
1553
  "Collect data and subscribe your users."
@@ -1555,7 +1591,7 @@ msgstr ""
1555
  "Додавайте форму підписки на розсилку новин у пости, сторінки і віджети "
1556
  "WordPress. Збирайте дані і здійснюйте підписку користувачів."
1557
 
1558
- #: product_list.php:403
1559
  msgid ""
1560
  "Add testimonials and feedbacks from your customers to WordPress website "
1561
  "posts, pages, and widgets."
@@ -1563,7 +1599,7 @@ msgstr ""
1563
  "Додавайте рекомендації та відгуки ваших клієнтів в пости, сторінки і віджети "
1564
  "сайту WordPress."
1565
 
1566
- #: product_list.php:410
1567
  msgid ""
1568
  "Best timesheet plugin for WordPress. Track employee time, streamline "
1569
  "attendance and generate reports."
@@ -1571,7 +1607,7 @@ msgstr ""
1571
  "Кращий плагін обліку робочого часу на сайті WordPress. Відстежуйте час "
1572
  "роботи співробітників, оптимізуйте графік роботи в офісі і створюйте звіти."
1573
 
1574
- #: product_list.php:420
1575
  msgid ""
1576
  "Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts "
1577
  "and pages."
@@ -1579,7 +1615,7 @@ msgstr ""
1579
  "Додавайте кнопки Твіттера \"Читати\", \"Твітнути\", \"Хештеґ\" і \"Згадати\" "
1580
  "до постів і сторінок WordPress."
1581
 
1582
- #: product_list.php:430
1583
  msgid ""
1584
  "Automatically check and update WordPress website core with all installed "
1585
  "plugins and themes to the latest versions."
@@ -1587,7 +1623,7 @@ msgstr ""
1587
  "Виконуйте автоматичну перевірку і оновлення ядра WordPress до останніх "
1588
  "версій з усіма встановленими плагінами та темами."
1589
 
1590
- #: product_list.php:440
1591
  msgid ""
1592
  "Powerful user role management plugin for WordPress website. Create, edit, "
1593
  "copy, and delete user roles."
@@ -1595,7 +1631,7 @@ msgstr ""
1595
  "Ефективний плагін управління ролями користувачів для сайту WordPress. "
1596
  "Створюйте, редагуйте, копіюйте і видаляйте ролі користувачів."
1597
 
1598
- #: product_list.php:450
1599
  msgid ""
1600
  "Display live count of online visitors who are currently browsing your "
1601
  "WordPress website."
@@ -1603,7 +1639,7 @@ msgstr ""
1603
  "Ведіть підрахунок кількості відвідувачів, які в даний час переглядають ваш "
1604
  "сайт WordPress."
1605
 
1606
- #: product_list.php:460
1607
  msgid ""
1608
  "Backup and export Zendesk Help Center content automatically to your "
1609
  "WordPress website database."
@@ -1611,6 +1647,24 @@ msgstr ""
1611
  "Робіть автоматичне резервне копіювання і експорт вмісту Zendesk Help Center "
1612
  "в базу даних вашого сайту WordPress."
1613
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1614
  #~ msgid ""
1615
  #~ "You can use one license of the Pro plugin for one domain only. Please "
1616
  #~ "check and edit your license or domain if necessary using you personal "
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-09-11 16:45+0300\n"
6
+ "PO-Revision-Date: 2017-09-11 16:45+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <https://support.bestwebsoft.com>\n"
9
+ "Language: uk\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
42
  msgid "Like the plugin?"
43
  msgstr "Сподобався плагін?"
44
 
45
+ #: bws_functions.php:93
46
+ #, php-format
47
+ msgid "%s reviews"
48
+ msgstr "%s відгуки"
49
+
50
  #: bws_functions.php:94
51
  msgid "Rate it"
52
  msgstr "Оцінити"
55
  msgid "Need help?"
56
  msgstr "Потрібна допомога?"
57
 
58
+ #: bws_functions.php:104 bws_functions.php:917 class-bws-settings.php:1058
59
  msgid "Visit Help Center"
60
  msgstr "Перейти до Help Center"
61
 
63
  msgid "Want to support the plugin?"
64
  msgstr "Хочете підтримати плагін?"
65
 
66
+ #: bws_functions.php:108 bws_menu.php:560
67
  msgid "Donate"
68
  msgstr "Пожертвувати"
69
 
83
  "вкладці Client Area. Ми настійливо рекомендуємо Вам вирішити це питання "
84
  "протягом 24 годин, інакше плагін буде деактивовано."
85
 
86
+ #: bws_functions.php:128 bws_functions.php:341 bws_menu.php:631
87
+ #: class-bws-settings.php:144
88
  msgid "Learn More"
89
  msgstr "Дізнатись більше"
90
 
104
  "Строк вашої ліцензії витік. Якщо ви хочете отримувати першочергову технічну "
105
  "підтримку та оновлювати плагін у майбутньому, вам слід подовжити ліцензію."
106
 
107
+ #: bws_functions.php:147 bws_functions.php:389 deprecated.php:586
108
  msgid "Learn more"
109
  msgstr "Дізнатись більше"
110
 
134
  msgid "Thank you for installing %s plugin!"
135
  msgstr "Дякуємо, що встановили %s плагін!"
136
 
137
+ #: bws_functions.php:210
138
  msgid "Let's get started"
139
  msgstr "Розпочнемо"
140
 
141
+ #: bws_functions.php:211 bws_functions.php:244 bws_menu.php:564
142
+ #: bws_menu.php:566
143
  msgid "Settings"
144
  msgstr "Налаштування"
145
 
146
+ #: bws_functions.php:213 bws_menu.php:326 class-bws-settings.php:747
147
+ #: class-bws-settings.php:1060 class-bws-settings.php:1070 deprecated.php:697
148
  msgid "or"
149
  msgstr "або"
150
 
151
+ #: bws_functions.php:214 bws_functions.php:246
152
  msgid "Add New"
153
  msgstr "Додати"
154
 
155
+ #: bws_functions.php:218 bws_functions.php:228 bws_functions.php:332
156
+ #: bws_functions.php:385 bws_functions.php:487
157
  msgid "Close notice"
158
  msgstr "Закрити"
159
 
160
+ #: bws_functions.php:233
161
  msgid "Thank you for installing plugins by BestWebSoft!"
162
  msgstr "Дякуємо, що встановили плагіни від BestWebSoft!"
163
 
164
+ #: bws_functions.php:235
165
  msgid "More Details"
166
  msgstr "Деталі"
167
 
168
+ #: bws_functions.php:236
169
  msgid "Less Details"
170
  msgstr "Сховати Деталі"
171
 
172
+ #: bws_functions.php:264
173
  msgid "Deprecated function(-s) is used on the site here:"
174
  msgstr "Застарілі функціі використовується на сайті тут:"
175
 
176
+ #: bws_functions.php:278
177
  msgid ""
178
  "This function(-s) will be removed over time. Please update the product(-s)."
179
  msgstr ""
180
  "Ці функції буде видалено через деякий час. Будь ласка, поновіть продукт."
181
 
182
+ #: bws_functions.php:337
183
  msgid "It’s time to upgrade your"
184
  msgstr "Настав час модернізувати Ваш"
185
 
186
+ #: bws_functions.php:337
187
  msgid "to"
188
  msgstr "до"
189
 
190
+ #: bws_functions.php:337
191
  msgid "version!"
192
  msgstr "версії!"
193
 
194
+ #: bws_functions.php:338
195
  msgid "Extend standard plugin functionality with new great options."
196
  msgstr "Розширює можливості стандартного функціоналу плагіна."
197
 
198
+ #: bws_functions.php:389
199
  #, php-format
200
  msgid ""
201
  "Your license key for %s expires on %s and you won't be granted TOP-PRIORITY "
204
  "Ваш ліцензійний ключ для %s витікає %s та ви більше не будете отримувати "
205
  "першочергову технічну підтримку та оновлення."
206
 
207
+ #: bws_functions.php:482
208
  #, php-format
209
  msgid "Thank you for choosing %s plugin!"
210
  msgstr "Дякую за вибір плагіна %s!"
211
 
212
+ #: bws_functions.php:483
213
  msgid ""
214
  "If you have a feature, suggestion or idea you'd like to see in the plugin, "
215
  "we'd love to hear about it!"
218
  "функціоналу плагіна, будь ласка, надсилайте їх нам! Ми завжди відкриті для "
219
  "нових ідей!"
220
 
221
+ #: bws_functions.php:484
222
  msgid "Suggest a Feature"
223
  msgstr "Запропонувати функціонал"
224
 
225
+ #: bws_functions.php:500 class-bws-settings.php:540 class-bws-settings.php:543
226
+ #: class-bws-settings.php:595 class-bws-settings.php:598
227
  msgid "Notice"
228
  msgstr "Зауважте"
229
 
230
+ #: bws_functions.php:500
231
  msgid "The plugin's settings have been changed."
232
  msgstr "Налаштування плагіну змінено."
233
 
234
+ #: bws_functions.php:501 class-bws-settings.php:183 class-bws-settings.php:203
235
+ #: deprecated.php:642
236
  msgid "Save Changes"
237
  msgstr "Зберегти зміни"
238
 
239
+ #: bws_functions.php:515
240
  msgid ""
241
  "You can always look at premium options by checking the \"Pro Options\" in "
242
  "the \"Misc\" tab."
244
  "Ви завжди можете подивитися на преміум опції, натиснувши на кнопку \"Pro "
245
  "опції\" на вкладці \"Різне\"."
246
 
247
+ #: bws_functions.php:653
248
  msgid "Add BWS Shortcode"
249
  msgstr "Додати BWS шорткод"
250
 
251
+ #: bws_functions.php:654
252
  msgid "Add BWS Plugins Shortcode"
253
  msgstr "Додати шорткод BWS плагіну"
254
 
255
+ #: bws_functions.php:673
256
  msgid "Add shortcode"
257
  msgstr "Додати шорткод"
258
 
259
+ #: bws_functions.php:673
260
  msgid "Add BestWebSoft plugins' shortcodes using this button."
261
  msgstr "Додайте шорткоди BestWebSoft плагінів за допомогою цієї кнопки."
262
 
263
+ #: bws_functions.php:729
264
  msgid "Close"
265
  msgstr "Закрити"
266
 
267
+ #: bws_functions.php:821
268
  msgid "Are you sure you want to restore default settings?"
269
  msgstr "Ви впевнені, що хочете скинути налаштування плагіну до стандартних?"
270
 
271
+ #: bws_functions.php:824
272
  msgid "Yes, restore all settings"
273
  msgstr "Так, скинути налаштування"
274
 
275
+ #: bws_functions.php:825
276
  msgid "No, go back to the settings page"
277
  msgstr "Ні, повернутись назад на сторінку налаштувань"
278
 
279
+ #: bws_functions.php:867
280
  msgid "Plugin"
281
  msgstr "Плагін"
282
 
283
+ #: bws_functions.php:876
284
  msgid "Shortcode settings"
285
  msgstr "Налаштування шорткоду"
286
 
287
+ #: bws_functions.php:881
288
  msgid "The shortcode will be inserted"
289
  msgstr "Буде вставлено шорткод"
290
 
291
+ #: bws_functions.php:922
292
  msgid "FAQ"
293
  msgstr "FAQ"
294
 
295
+ #: bws_functions.php:928
296
  msgid "For more information:"
297
  msgstr "Для отримання додаткової інформації:"
298
 
299
+ #: bws_functions.php:929
300
  msgid "Documentation"
301
  msgstr "Документація"
302
 
303
+ #: bws_functions.php:930
304
  msgid "Video Instructions"
305
  msgstr "Відео інструкції"
306
 
307
+ #: bws_functions.php:931
308
  msgid "Submit a Request"
309
  msgstr "Надіслати запит"
310
 
311
+ #: bws_menu.php:101 class-bws-settings.php:792 deprecated.php:323
312
  msgid "Wrong license key"
313
  msgstr "Невірний ключ ліцензії"
314
 
315
+ #: bws_menu.php:122 class-bws-settings.php:818 class-bws-settings.php:885
316
+ #: class-bws-settings.php:921 deprecated.php:133 deprecated.php:199
317
+ #: deprecated.php:353
318
  msgid ""
319
  "Something went wrong. Please try again later. If the error appears again, "
320
  "please contact us"
322
  "Щось не так, спробуйте пізніше. Якщо помилка повториться, будь ласка, "
323
  "повідомте нам"
324
 
325
+ #: bws_menu.php:122 class-bws-settings.php:818 class-bws-settings.php:885
326
+ #: class-bws-settings.php:921 deprecated.php:133 deprecated.php:199
327
+ #: deprecated.php:353
328
  msgid "We are sorry for inconvenience."
329
  msgstr "Просимо вибачення за незручності."
330
 
331
+ #: bws_menu.php:128 class-bws-settings.php:824 class-bws-settings.php:927
332
+ #: deprecated.php:139 deprecated.php:359
333
  msgid "Wrong license key."
334
  msgstr "Неправильний ліцензійний ключ."
335
 
344
  msgid "Log in"
345
  msgstr "Увійти"
346
 
347
+ #: bws_menu.php:132 bws_menu.php:332 deprecated.php:261
348
  msgid "Unfortunately, you have exceeded the number of available tries per day."
349
  msgstr "На жаль, ви перевищили кількість допустимих спроб."
350
 
351
+ #: bws_menu.php:134 deprecated.php:365
352
  #, php-format
353
  msgid ""
354
  "Unfortunately, Your license has expired. To continue getting top-priority "
357
  "На жаль, ваша ліцензія скінчилась. Для того, щоб і надалі отримувати "
358
  "першочергову техпідтримку і оновлення, будь ласка, продовжте ліцензію на %s"
359
 
360
+ #: bws_menu.php:136 class-bws-settings.php:935 deprecated.php:367
361
  msgid ""
362
  "Unfortunately, the Pro licence was already installed to this domain. The Pro "
363
  "Trial license can be installed only once."
365
  "На жаль, Pro ліцензія уже використовувалась на цьому домені. Тріал Pro "
366
  "версії плагіну можна використати лише один раз."
367
 
368
+ #: bws_menu.php:142 class-bws-settings.php:839 deprecated.php:153
369
  msgid "The license key is valid."
370
  msgstr "Ліцензійний ключ дійсний."
371
 
372
+ #: bws_menu.php:144 class-bws-settings.php:842 deprecated.php:156
373
  msgid "Your license will expire on"
374
  msgstr "Ваша ліцензія закінчується"
375
 
376
  #: bws_menu.php:146
377
+ msgid "Congratulations! Pro Membership license is activated successfully."
378
  msgstr "Вітаємо! Pro Membership ліцензія успішно активована."
379
 
380
+ #: bws_menu.php:153 class-bws-settings.php:1007 deprecated.php:436
381
  msgid ""
382
  "Something went wrong. Try again later or upload the plugin manually. We are "
383
  "sorry for inconvenience."
531
  msgid "Please enter a valid email address."
532
  msgstr "Будь ласка, введіть коректний емейл."
533
 
534
+ #: bws_menu.php:262
535
+ #, php-format
536
+ msgid "Email with system info is sent to %s."
537
+ msgstr "Емейл з системною інформацією надіслано на %s."
538
 
539
+ #: bws_menu.php:266
540
  msgid "Thank you for contacting us."
541
  msgstr "Дякуємо, що звернулись до нас."
542
 
543
+ #: bws_menu.php:289
544
  msgid "Sorry, email message could not be delivered."
545
  msgstr "Вибачте, ваше емейл не може бути доставлено"
546
 
547
+ #: bws_menu.php:305 bws_menu.php:309 bws_menu.php:358 deprecated.php:91
548
  msgid "Plugins"
549
  msgstr "Плагіни"
550
 
551
+ #: bws_menu.php:306 bws_menu.php:310 bws_menu.php:618 deprecated.php:92
552
  msgid "Themes"
553
  msgstr "Теми"
554
 
555
+ #: bws_menu.php:307 bws_menu.php:311 bws_menu.php:648
556
  msgid "System status"
557
  msgstr "Системна інформація"
558
 
559
+ #: bws_menu.php:315
560
  msgid "Support"
561
  msgstr "Підтримка"
562
 
563
+ #: bws_menu.php:316
564
  msgid "Manage purchased licenses & subscriptions"
565
  msgstr "Управління придбаними ліцензіями і підписками"
566
 
567
+ #: bws_menu.php:324
568
  #, php-format
569
  msgid "Get Access to %s+ Premium Plugins"
570
  msgstr "Отримати доступ до %s+ преміум плагинам"
571
 
572
+ #: bws_menu.php:326
573
  msgid "Subscribe to Pro Membership"
574
  msgstr "Підписатися на Pro Membership"
575
 
576
+ #: bws_menu.php:334 bws_menu.php:345 class-bws-settings.php:760
577
  #: deprecated.php:227
578
  msgid "Check license key"
579
  msgstr "Перевірте ліцензійний ключ"
580
 
581
+ #: bws_menu.php:337
582
  msgid "Enter your license key"
583
  msgstr "Ваш ліцензійний ключ"
584
 
585
+ #: bws_menu.php:343 bws_menu.php:570 bws_menu.php:579
586
+ #: class-bws-settings.php:739 deprecated.php:259 deprecated.php:267
587
+ #: deprecated.php:631 deprecated.php:703 deprecated.php:712
588
  msgid "Activate"
589
  msgstr "Активувати"
590
 
591
+ #: bws_menu.php:359
592
  msgid "Upload Plugin"
593
  msgstr "Завантажити плагін"
594
 
595
+ #: bws_menu.php:363
596
  #, php-format
597
  msgid ""
598
  "The plugin generated %d characters of <strong>unexpected output</strong> "
605
  "надіслані&#8221;, проблеми з каналами чи інші неполадки, спробуйте вимкнути "
606
  "чи видалити цей плагін."
607
 
608
+ #: bws_menu.php:365
609
  msgid ""
610
  "Plugin could not be activated because it triggered a <strong>fatal error</"
611
  "strong>."
613
  "Плагін не вдалося активувати, бо він спричинив <strong>критичну помилку</"
614
  "strong>."
615
 
616
+ #: bws_menu.php:368
617
  msgid "Plugin <strong>activated</strong>."
618
  msgstr "Плагін <strong>активовано</strong>."
619
 
620
+ #: bws_menu.php:375
621
  msgid "Installing Plugin"
622
  msgstr "Встановлення плагіну"
623
 
624
+ #: bws_menu.php:381
625
  msgid "Downloading install package from"
626
  msgstr "Завантаження встановлюючого пакунку з"
627
 
628
+ #: bws_menu.php:398 bws_menu.php:429 bws_menu.php:440 deprecated.php:388
629
+ #: deprecated.php:410 deprecated.php:432
 
 
630
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
631
  msgstr ""
632
  "Помилка при завантаженні zip-архіву. Будь ласка, завантажте плагін вручну"
633
 
634
+ #: bws_menu.php:406
635
  msgid "Unpacking the package"
636
  msgstr "Розпакування пакета"
637
 
638
+ #: bws_menu.php:411 bws_menu.php:419
639
  msgid "Installing the plugin"
640
  msgstr "Встановлення плагіну"
641
 
642
+ #: bws_menu.php:415 deprecated.php:400
643
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
644
  msgstr "Помилка при відкритті zip-архіву. Будь ласка, завантажте плагін вручну"
645
 
646
+ #: bws_menu.php:422 deprecated.php:406
647
  msgid ""
648
  "Your server does not support either ZipArchive or Phar. Please, upload the "
649
  "plugin manually"
651
  "Ваш сервер не підтримує формати Zip і Phar. Будь ласка, завантажте плагін "
652
  "вручну"
653
 
654
+ #: bws_menu.php:425
655
  #, php-format
656
  msgid "The plugin %s is successfully installed."
657
  msgstr "Плагін %s успішно встановлено."
658
 
659
+ #: bws_menu.php:432 deprecated.php:413
660
  msgid "UploadDir is not writable. Please, upload the plugin manually"
661
  msgstr ""
662
  "Немає доступу до теки завантажень WordPress. Будь ласка, завантажте плагін "
663
  "вручну"
664
 
665
+ #: bws_menu.php:437
666
  msgid "Activate Plugin"
667
  msgstr "Активувати плагін"
668
 
669
+ #: bws_menu.php:437 bws_menu.php:443
670
  msgid "Return to BestWebSoft Panel"
671
  msgstr "Назад до BestWebSoft Panel"
672
 
673
+ #: bws_menu.php:451 bws_menu.php:471 bws_menu.php:600
674
  msgid "All"
675
  msgstr "Всі"
676
 
677
+ #: bws_menu.php:454 bws_menu.php:637
678
  msgid "Installed"
679
  msgstr "Встановлені"
680
 
681
+ #: bws_menu.php:457
682
  msgid "Not Installed"
683
  msgstr "Не встановлені"
684
 
685
+ #: bws_menu.php:464
686
  msgid "Filter results"
687
  msgstr "Фільтр результатів"
688
 
689
+ #: bws_menu.php:467 bws_menu.php:596
690
  msgid "Category"
691
  msgstr "Категорія"
692
 
693
+ #: bws_menu.php:531
694
  msgid "Not installed"
695
  msgstr "Не встановлен"
696
 
697
+ #: bws_menu.php:535
698
  msgid "Renew to get updates"
699
  msgstr "Продовжити для поновлення"
700
 
701
+ #: bws_menu.php:538
702
  #, php-format
703
  msgid "Update to v %s"
704
  msgstr "Оновити до версії %s"
705
 
706
+ #: bws_menu.php:550 bws_menu.php:573 bws_menu.php:582
707
  msgid "Install Now"
708
  msgstr "Встановити"
709
 
710
+ #: bws_menu.php:556 class-bws-settings.php:157 class-bws-settings.php:1067
711
  msgid "Upgrade to Pro"
712
  msgstr "Оновити до Pro"
713
 
714
+ #: bws_menu.php:570 bws_menu.php:579
715
  msgid "Activate this plugin"
716
  msgstr "Активувати плагін"
717
 
718
+ #: bws_menu.php:582
719
  msgid "Install this plugin"
720
  msgstr "Встановити плагін"
721
 
722
+ #: bws_menu.php:591
723
  msgid "Nothing found. Try another criteria."
724
  msgstr "Нічого не знайдено. Спробуйте інші критерії."
725
 
726
+ #: bws_menu.php:628
727
  #, php-format
728
  msgid "By %s"
729
  msgstr "За %s"
730
 
731
+ #: bws_menu.php:635
732
  msgid "Already Installed"
733
  msgstr "Уже встановлено %s"
734
 
735
+ #: bws_menu.php:645
736
+ msgid "Browse More WordPress Themes"
737
+ msgstr "Огляд WordPress тем"
738
 
739
+ #: bws_menu.php:654
740
  msgid "Send to support"
741
  msgstr "Відправити службі тех. підтримки"
742
 
743
+ #: bws_menu.php:661
744
  msgid "Send to custom email &#187;"
745
  msgstr "Відправити на електронну адресу &#187;"
746
 
794
  msgid "Custom Code"
795
  msgstr "Користувацький код"
796
 
797
+ #: class-bws-settings.php:427 deprecated.php:498
798
  msgid "You do not have sufficient permissions to edit plugins for this site."
799
  msgstr "У вас недостатньо повноважень для редагування плагінів цього сайту."
800
 
801
+ #: class-bws-settings.php:432 deprecated.php:620
802
  msgid "These styles will be added to the header on all pages of your site."
803
  msgstr "Ці стилі будуть додані в заголовок на всіх сторінках вашого сайту."
804
 
805
+ #: class-bws-settings.php:435 deprecated.php:622
806
  #, php-format
807
  msgid ""
808
  "This PHP code will be hooked to the %s action and will be printed on front "
814
  msgid "These code will be added to the header on all pages of your site."
815
  msgstr "Цей код буде додано в заголовок на всіх сторінках вашого сайту."
816
 
817
+ #: class-bws-settings.php:446 deprecated.php:646
818
  #, php-format
819
  msgid ""
820
  "You need to make this files writable before you can save your changes. See "
823
  "Вам потрібно зробити цей файл доступним для запису, перед тим як ви зможете "
824
  "зберегти свої зміни. Перегляньте %sКодекс%s для додаткової інформації."
825
 
826
+ #: class-bws-settings.php:456 deprecated.php:628
827
  msgid "Browsing"
828
  msgstr "Огляд"
829
 
832
  msgid "Activate custom %s code."
833
  msgstr "Активувати користувацький %s код."
834
 
835
+ #: class-bws-settings.php:469 deprecated.php:635
836
  #, php-format
837
  msgid "Learn more about %s"
838
  msgstr "Дізнатись більше про %s"
839
 
840
+ #: class-bws-settings.php:531
841
  msgid "Miscellaneous Settings"
842
  msgstr "Інші налаштування"
843
 
844
+ #: class-bws-settings.php:540 class-bws-settings.php:595
845
  #, php-format
846
  msgid ""
847
  "It is prohibited to change %s settings on this site in the %s network "
850
  "Мережевими налаштуваннями %s забороняється змінювати налаштування %s на "
851
  "цьому сайті."
852
 
853
+ #: class-bws-settings.php:543 class-bws-settings.php:598
854
  #, php-format
855
  msgid ""
856
  "It is prohibited to view %s settings on this site in the %s network settings."
858
  "Мережевими налаштуваннями %s забороняється дивитися налаштування %s на цьому "
859
  "сайті."
860
 
861
+ #: class-bws-settings.php:552
862
  msgid "Pro Options"
863
  msgstr "Pro опції"
864
 
865
+ #: class-bws-settings.php:556
866
  msgid "Enable to display plugin Pro options."
867
  msgstr "Увімкніть для відображення Pro опцій плагіна."
868
 
869
+ #: class-bws-settings.php:562
870
  msgid "Track Usage"
871
  msgstr "Збирати статистику"
872
 
873
+ #: class-bws-settings.php:566
874
  msgid ""
875
  "Enable to allow tracking plugin usage anonymously in order to make it better."
876
  msgstr ""
877
  "Включити, щоб дозволити анонімно відстежувати використання і зробити плагін "
878
  "краще."
879
 
880
+ #: class-bws-settings.php:571
881
  msgid "Default Settings"
882
  msgstr "Налаштування за замовчуванням"
883
 
884
+ #: class-bws-settings.php:573
885
  msgid "Restore Settings"
886
  msgstr "Відновлення налаштувань"
887
 
888
+ #: class-bws-settings.php:574
889
  msgid "This will restore plugin settings to defaults."
890
  msgstr "Відновити всі налаштування плагіна до налаштувань за замовчуванням."
891
 
892
+ #: class-bws-settings.php:586
893
  msgid "Import / Export"
894
  msgstr "Імпорт / Експорт"
895
 
896
+ #: class-bws-settings.php:702 class-bws-settings.php:735
897
+ #: class-bws-settings.php:757
898
  msgid "License Key"
899
  msgstr "Ключ ліцензії"
900
 
901
+ #: class-bws-settings.php:725
902
  msgid "Congratulations! Pro license is activated successfully."
903
  msgstr "Вітаємо! Pro ліцензія успішно активована."
904
 
905
+ #: class-bws-settings.php:726
906
  #, php-format
907
  msgid "You will be automatically redirected to the %s in %s seconds."
908
  msgstr "Вас буде автоматично перенаправлено на %s через %s секунд."
909
 
910
+ #: class-bws-settings.php:726
911
  msgid "Settings page"
912
  msgstr "сторінку налаштувань"
913
 
914
+ #: class-bws-settings.php:741
915
  #, php-format
916
  msgid "Enter your license key to activate %s and get premium plugin features."
917
  msgstr ""
918
  "Введіть ліцензійний ключ для активації %s і отримання додаткових можливостей "
919
  "плагіна."
920
 
921
+ #: class-bws-settings.php:744 class-bws-settings.php:931 deprecated.php:363
922
+ #: deprecated.php:706
923
  msgid ""
924
  "Unfortunately, you have exceeded the number of available tries per day. "
925
  "Please, upload the plugin manually."
927
  "На жаль, ви перевищили кількість доступних спроб на день. Будь ласка, "
928
  "завантажте плагін вручну"
929
 
930
+ #: class-bws-settings.php:747 deprecated.php:697
931
  #, php-format
932
  msgid "Start Your Free %s-Day Trial Now"
933
  msgstr "Спробуйте %s-денну Trial версію безкоштовно"
934
 
935
+ #: class-bws-settings.php:762
936
  msgid ""
937
  "If necessary, you can check if the license key is correct or reenter it in "
938
  "the field below."
940
  "При необхідності ви можете перевірити правильність вашого ліцензійного ключа "
941
  "або знову ввести його у полі, що знаходиться нижче."
942
 
943
+ #: class-bws-settings.php:767
944
  msgid "Manage License Settings"
945
  msgstr "Управління налаштуваннями ліцензій"
946
 
947
+ #: class-bws-settings.php:769
948
  msgid "Login to Client Area"
949
  msgstr "Зайти в Client Area"
950
 
951
+ #: class-bws-settings.php:771
952
  msgid ""
953
  "Manage active licenses, download BWS products, and view your payment history "
954
  "using BestWebSoft Client Area."
956
  "Керуй активними ліцензіями, завантажуй BWS продукти, а також переглядай "
957
  "історію платежів за допомогою BestWebSoft Client Area."
958
 
959
+ #: class-bws-settings.php:826 class-bws-settings.php:929 deprecated.php:141
960
+ #: deprecated.php:361
961
  msgid "This license key is bound to another site."
962
  msgstr "Цей ліцензійний ключ прив'язано до іншого сайту."
963
 
964
+ #: class-bws-settings.php:828 deprecated.php:143
965
  msgid ""
966
  "This license key is valid, but Your license has expired. If you want to "
967
  "update our plugin in future, you should extend the license."
969
  "Даний ліцензійний ключ дійсний, але строк вашої ліцензії витік. Якщо ви "
970
  "хочете оновлювати наш плагін у майбутньому, вам слід подовжити ліцензію."
971
 
972
+ #: class-bws-settings.php:830 deprecated.php:145
973
  msgid "Unfortunately, you have exceeded the number of available tries."
974
  msgstr "На жаль, ви перевищили кількість допустимих спроб."
975
 
976
+ #: class-bws-settings.php:832 deprecated.php:147
977
  msgid ""
978
  "Unfortunately, the Pro Trial licence was already installed to this domain. "
979
  "The Pro Trial license can be installed only once."
981
  "На жаль, Trial Pro версія плагіну уже встановлювалась на цей домен. Trial "
982
  "Pro версію можна встановлювати лише один раз."
983
 
984
+ #: class-bws-settings.php:837 deprecated.php:151
985
  msgid "The Pro Trial license key is valid."
986
  msgstr "Ключ тріал Pro версії вірний."
987
 
988
+ #: class-bws-settings.php:845 deprecated.php:159 deprecated.php:246
989
  #, php-format
990
  msgid ""
991
  "In order to continue using the plugin it is necessary to buy a %s license."
992
  msgstr "Щоб продовжити користуватись плагіном, потрібно придбати %s ліцензію."
993
 
994
+ #: class-bws-settings.php:933
995
+ #, php-format
996
+ msgid ""
997
+ "Unfortunately, Your license has expired. To continue getting top-priority "
998
+ "support and plugin updates, you should extend it in your %s."
999
+ msgstr ""
1000
+ "На жаль, ваша ліцензія скінчилась. Для того, щоб і надалі отримувати "
1001
+ "першочергову тех.підтримку і оновлення, будь ласка, продовжте ліцензію у %s."
1002
+
1003
+ #: class-bws-settings.php:959 class-bws-settings.php:981
1004
+ #: class-bws-settings.php:1003
1005
+ msgid "Failed to download the zip archive. Please, upload the plugin manually."
1006
+ msgstr ""
1007
+ "Помилка при завантаженні zip-архіву. Будь ласка, завантажте плагін вручну."
1008
+
1009
+ #: class-bws-settings.php:971
1010
+ msgid "Failed to open the zip archive. Please, upload the plugin manually."
1011
+ msgstr ""
1012
+ "Помилка при відкритті zip-архіву. Будь ласка, завантажте плагін вручну."
1013
+
1014
+ #: class-bws-settings.php:977
1015
+ msgid ""
1016
+ "Your server does not support either ZipArchive or Phar. Please, upload the "
1017
+ "plugin manually."
1018
+ msgstr ""
1019
+ "Ваш сервер не підтримує формати Zip і Phar. Будь ласка, завантажте плагін "
1020
+ "вручну."
1021
+
1022
+ #: class-bws-settings.php:984
1023
+ msgid "UploadDir is not writable. Please, upload the plugin manually."
1024
+ msgstr ""
1025
+ "Немає доступу до теки завантажень WordPress. Будь ласка, завантажте плагін "
1026
+ "вручну."
1027
+
1028
+ #: class-bws-settings.php:1042 deprecated.php:464
1029
  msgid "Please, enter Your license key"
1030
  msgstr "Будь ласка, впишіть ваш ліцензійний ключ"
1031
 
1032
+ #: class-bws-settings.php:1054
1033
  msgid "Need Help?"
1034
  msgstr "Потрібна допомога?"
1035
 
1036
+ #: class-bws-settings.php:1056
1037
  msgid "Read the Instruction"
1038
  msgstr "Читати інструкцію"
1039
 
1040
+ #: class-bws-settings.php:1060
1041
  msgid "Watch the Video"
1042
  msgstr "Дивитися відео"
1043
 
1044
+ #: class-bws-settings.php:1071
1045
  msgid "Start Your Free Trial"
1046
  msgstr "Використовувати безкоштовну Trial версію"
1047
 
1048
+ #: deactivation-form.php:27
1049
  msgid "Need help? We are ready to answer your questions."
1050
  msgstr "Потрібна допомога? Ми готові відповісти на ваші питання."
1051
 
1052
+ #: deactivation-form.php:27
1053
  msgid "Contact Support"
1054
  msgstr "Зв'язатися з тех. підтримкою"
1055
 
1056
+ #: deactivation-form.php:32
1057
  msgid "The plugin is not working"
1058
  msgstr "Плагін не працює"
1059
 
1060
+ #: deactivation-form.php:34
1061
  msgid "Kindly share what didn't work so we can fix it in future updates..."
1062
  msgstr ""
1063
  "Будь ласка, повідомте, що не працює, щоб ми змогли виправити це в майбутніх "
1064
  "оновленнях..."
1065
 
1066
+ #: deactivation-form.php:38
1067
  msgid "The plugin didn't work as expected"
1068
  msgstr "Плагін не працює, як очікувалося"
1069
 
1070
+ #: deactivation-form.php:40
1071
  msgid "What did you expect?"
1072
  msgstr "Що саме ви очікували?"
1073
 
1074
+ #: deactivation-form.php:44
1075
  msgid "The plugin suddenly stopped working"
1076
  msgstr "Плагін раптово перестав працювати"
1077
 
1078
+ #: deactivation-form.php:51
1079
  msgid "The plugin broke my site"
1080
  msgstr "Плагін зламав мій сайт"
1081
 
1082
+ #: deactivation-form.php:58
1083
  msgid "I couldn't understand how to get it work"
1084
  msgstr "Я не можу зрозуміти, як змусити його працювати"
1085
 
1086
+ #: deactivation-form.php:65
1087
  msgid "I found a better plugin"
1088
  msgstr "Я знайшов кращий плагін"
1089
 
1090
+ #: deactivation-form.php:67
1091
  msgid "What's the plugin name?"
1092
  msgstr "Яка назва плагіна?"
1093
 
1094
+ #: deactivation-form.php:71
1095
  msgid "The plugin is great, but I need specific feature that you don't support"
1096
  msgstr "Плагін чудовий, але мені потрібен певний функціонал, якого у вас немає"
1097
 
1098
+ #: deactivation-form.php:73
1099
  msgid "What feature?"
1100
  msgstr "Який функціонал?"
1101
 
1102
+ #: deactivation-form.php:77
1103
  msgid "I no longer need the plugin"
1104
  msgstr "Плагін мені більше не потрібен"
1105
 
1106
+ #: deactivation-form.php:83
1107
  msgid "It's a temporary deactivation, I'm just debugging an issue"
1108
  msgstr "Це тимчасова деактивація, я просто відлагоджую проблему"
1109
 
1110
+ #: deactivation-form.php:89
1111
  msgid "Other"
1112
  msgstr "Інше"
1113
 
1114
+ #: deactivation-form.php:123
1115
  msgid "Quick Feedback"
1116
  msgstr "Швидкий відгук"
1117
 
1118
+ #: deactivation-form.php:124
1119
  msgid "If you have a moment, please let us know why you are deactivating"
1120
  msgstr ""
1121
  "Якщо у вас є час, будь ласка, повідомте нам, чому ви деактивуете плагін"
1122
 
1123
+ #: deactivation-form.php:127
1124
+ msgid "Send website data and allow to contact me back"
1125
+ msgstr "Надіслати дані сайту і дозволити зв'язатися зі мною"
1126
 
1127
+ #: deactivation-form.php:132
1128
  msgid "Cancel"
1129
  msgstr "Відміна"
1130
 
1131
+ #: deactivation-form.php:233
1132
  msgid "Processing"
1133
  msgstr "Обробка"
1134
 
1135
+ #: deactivation-form.php:262
1136
  msgid "Submit & Deactivate"
1137
  msgstr "Надіслати і деактивувати"
1138
 
1139
+ #: deactivation-form.php:277
1140
  msgid "Please tell us the reason so we can improve it."
1141
  msgstr "Будь ласка, повідомте нам причину, щоб ми могли покращити плагін."
1142
 
1143
+ #: deactivation-form.php:345
1144
  msgid "Deactivate"
1145
  msgstr "Деактивувати"
1146
 
1171
  "(ваше ім'я користувача - це емейл, який ви вказували при купівлі). При "
1172
  "необхідності, будь ласка, відправте запит на відновлення вашого паролю."
1173
 
1174
+ #: deprecated.php:246
1175
  msgid "After that, you can activate it by entering your license key."
1176
  msgstr "Після цього ви зможете активувати його ввівши ліцензійний ключ."
1177
 
1178
+ #: deprecated.php:249 deprecated.php:691
1179
  msgid "License key can be found in the"
1180
  msgstr "Ліцензійний ключ можна знайти в"
1181
 
1182
+ #: deprecated.php:251 deprecated.php:693
1183
  msgid "(your username is the email address specified during the purchase)."
1184
  msgstr "(ваше ім'я користувача - це емейл, який ви вказували при купівлі)"
1185
 
1186
+ #: deprecated.php:279
1187
  msgid ""
1188
  "Congratulations! The Pro license of the plugin is activated successfully."
1189
  msgstr "Вітаємо! Pro версію плагіну успішно активовано."
1190
 
1191
+ #: deprecated.php:281 deprecated.php:672
1192
  msgid "Please, go to"
1193
  msgstr "Будь ласка, перейдіть на"
1194
 
1195
+ #: deprecated.php:281 deprecated.php:672
1196
  msgid "the setting page"
1197
  msgstr "сторінку установок"
1198
 
1199
+ #: deprecated.php:282 deprecated.php:673
1200
  msgid "You will be redirected automatically in 5 seconds."
1201
  msgstr "Вас буде перенаправлено автоматично через 5 секунд."
1202
 
1203
+ #: deprecated.php:316
1204
  msgid "Check premium options on the plugin settings page!"
1205
  msgstr "Подивіться преміум опції на сторінці налаштувань плагіна!"
1206
 
1207
+ #: deprecated.php:479
1208
  msgid "Restore all plugin settings to defaults"
1209
  msgstr "Скинути налаштування плагіну до стандартних"
1210
 
1211
+ #: deprecated.php:481
1212
  msgid "Restore settings"
1213
  msgstr "Скинути налаштування"
1214
 
1215
+ #: deprecated.php:550 deprecated.php:577
1216
  #, php-format
1217
  msgid "File %s edited successfully."
1218
  msgstr "Файл %s успішно відредаговано."
1219
 
1220
+ #: deprecated.php:552 deprecated.php:579
1221
  msgid "Not enough permissions to create or update the file"
1222
  msgstr "У Вас недостатньо дозволів для створення або поновлення файлу"
1223
 
1224
+ #: deprecated.php:582
1225
  msgid "Not enough permissions to create the file"
1226
  msgstr "У Вас недостатньо дозволів для створення файлу"
1227
 
1228
+ #: deprecated.php:626
1229
  msgid "Editing"
1230
  msgstr "Редагування"
1231
 
1232
+ #: deprecated.php:670
1233
  msgid ""
1234
  "Congratulations! Pro version of the plugin is installed and activated "
1235
  "successfully."
1236
  msgstr "Вітаємо! Pro версію плагіну успішно завантажено та активовано."
1237
 
1238
+ #: deprecated.php:680
1239
  msgid "Show Pro features"
1240
  msgstr "Показати Pro опції"
1241
 
1242
+ #: deprecated.php:687
1243
  msgid "Enter your license key to install and activate"
1244
  msgstr "Введіть ліцензійний ключ для установки і активації"
1245
 
1246
+ #: deprecated.php:689
1247
  msgid "version of the plugin."
1248
  msgstr "версія плагіна."
1249
 
1283
  msgid "SMM"
1284
  msgstr "СММ"
1285
 
1286
+ #: product_list.php:22
1287
+ msgid "Best secure captcha plugin to protect your WordPress forms."
1288
+ msgstr "Кращий плагін капчі, який захистить форми вашого WordPress сайту."
 
 
 
1289
 
1290
+ #: product_list.php:32
1291
  msgid "Create your personal car rental/booking and reservation website."
1292
  msgstr "Створіть свій власний сайт прокату і резервування автомобілів."
1293
 
1294
+ #: product_list.php:42
1295
  msgid ""
1296
  "Allow customers to reach you using secure contact form plugin any website "
1297
  "must have."
1299
  "Надайте можливість клієнтам здійснювати зв'язок з вами через безпечний "
1300
  "плагін контактної форми, який повинен мати будь-який сайт."
1301
 
1302
+ #: product_list.php:52
1303
  msgid "Add unlimited number of contact forms to WordPress website."
1304
  msgstr "Додавайте необмежену кількість контактних форм на ваш сайт WordPress."
1305
 
1306
+ #: product_list.php:62
1307
  msgid "Save and manage Contact Form messages. Never lose important data."
1308
  msgstr ""
1309
  "Зберігайте і керуйте повідомленнями плагіну Contact Form. Ніколи не "
1310
  "втрачайте важливі дані."
1311
 
1312
+ #: product_list.php:72
1313
  msgid "Add unlimited custom pages to WordPress admin dashboard."
1314
  msgstr ""
1315
  "Додавайте необмежену кількість користувацьких сторінок у панелі "
1316
  "адміністратора WordPress."
1317
 
1318
+ #: product_list.php:79
1319
  msgid "Add custom fields to WordPress website search results."
1320
  msgstr ""
1321
  "Додавайте користувацькі поля у результати пошуку вашого сайту WordPress."
1322
 
1323
+ #: product_list.php:86
1324
  msgid ""
1325
  "Add custom post types and taxonomies to WordPress website search results."
1326
  msgstr ""
1327
  "Додавайте користувацькі типи постів і таксономії у результати пошуку на "
1328
  "вашому сайті WordPress."
1329
 
1330
+ #: product_list.php:96
1331
  msgid "Add PayPal and 2CO donate buttons to receive charity payments."
1332
  msgstr ""
1333
  "Додавайте кнопки PayPal і 2CO, щоб отримувати пожертви та благодійні внески."
1334
 
1335
+ #: product_list.php:103
1336
  msgid ""
1337
  "Get latest error log messages to diagnose website problems. Define and fix "
1338
  "issues faster."
1340
  "Отримуйте останні повідомлення з журналу помилок для діагностики проблем "
1341
  "сайту. Швидше виявляйте і усувайте проблеми."
1342
 
1343
+ #: product_list.php:110
1344
  msgid ""
1345
  "Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and "
1346
  "widgets."
1348
  "Додавайте кнопки Facebook \"Підписатися\", \"Подобається\" та \"Поділитися\" "
1349
  "у пости, сторінки і віджети сайту WordPress."
1350
 
1351
+ #: product_list.php:120
1352
  msgid ""
1353
  "Add beautiful galleries, albums & images to your WordPress website in a few "
1354
  "clicks."
1356
  "Додавайте мальовничі галереї, альбоми і зображення на ваш сайт WordPress "
1357
  "всього в декілька кліків."
1358
 
1359
+ #: product_list.php:130
1360
  msgid ""
1361
  "Add Google +1, Share, Follow, Hangout buttons and profile badge to WordPress "
1362
  "posts, pages and widgets."
1364
  "Додавайте кнопки Google \"+1\", \"Поділитися\", \"Підписатися\", \"Hangout\" "
1365
  "і значок профілю до постів, сторінок та віджетів WordPress."
1366
 
1367
+ #: product_list.php:140
1368
  msgid ""
1369
  "Stronger security solution which protects your WordPress website from hacks "
1370
  "and unauthorized login attempts."
1372
  "Найпотужніше рішення безпеки, яке захищає ваш сайт WordPress від зломів та "
1373
  "неавторизованих спроб входу в систему."
1374
 
1375
+ #: product_list.php:150
1376
  msgid ""
1377
  "Add Adsense ads to WordPress website pages, posts, custom posts, search "
1378
  "results, categories, tags, and widgets."
1380
  "Додавайте рекламу сервісу Adsense на сторінки, пости, користувацькі пости, "
1381
  "результати пошуку, категорії, теги і віджети сайту WordPress."
1382
 
1383
+ #: product_list.php:160
1384
  msgid "Add Google Analytics code to WordPress website and track basic stats."
1385
  msgstr ""
1386
  "Додавайте код Google Analytics на ваш сайт WordPress та відстежуйте базову "
1387
  "статистику сайту."
1388
 
1389
+ #: product_list.php:170
1390
  msgid ""
1391
  "Protect WordPress website forms from spam entries with Google Captcha "
1392
  "(reCaptcha)."
1394
  "Захищайте форми вашого сайту WordPress від спаму за допомогою Google Captcha "
1395
  "(reCaptcha)."
1396
 
1397
+ #: product_list.php:180
1398
  msgid "Add customized Google maps to WordPress posts, pages and widgets."
1399
  msgstr ""
1400
  "Додавайте користувацькі карти Google у пости, сторінки та віджети WordPress."
1401
 
1402
+ #: product_list.php:190
1403
  msgid ""
1404
  "Generate and add XML sitemap to WordPress website. Help search engines index "
1405
  "your blog."
1407
  "Створюйте та додавайте файли XML sitemap на ваш сайт WordPress. Допоможіть "
1408
  "пошуковим системам проіндексувати ваш блог."
1409
 
1410
+ #: product_list.php:200
1411
  msgid ""
1412
  "Replace external WordPress website links with Google shortlinks and track "
1413
  "click stats."
1415
  "Замініть зовнішні посилання сайту WordPress на короткі посилання Google і "
1416
  "відстежуйте статистику кліків."
1417
 
1418
+ #: product_list.php:207
1419
  msgid ""
1420
  "Protect WordPress website – allow and deny access for certain IP addresses, "
1421
  "hostnames, etc."
1423
  "Захистіть свій сайт WordPress - надавайте та забороняйте доступ з певних IP-"
1424
  "адрес, імен хостів і т.д."
1425
 
1426
+ #: product_list.php:217
1427
  msgid ""
1428
  "Create your personal job board and listing WordPress website. Search jobs, "
1429
  "submit CV/resumes, choose candidates."
1432
  "WordPress. Здійснюйте пошук вакансій, подачу резюме/CV кандидата, вибір "
1433
  "кандидатів."
1434
 
1435
+ #: product_list.php:224
1436
  msgid ""
1437
  "Protect WordPress website against brute force attacks. Limit rate of login "
1438
  "attempts."
1440
  "Захищайте свій сайт WordPress від брутфорс-атак. Обмежуйте кількість спроб "
1441
  "введення логіна."
1442
 
1443
+ #: product_list.php:234
1444
  msgid ""
1445
  "Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. "
1446
  "5 plugins included – profile, insider, etc."
1448
  "Додавайте кнопки LinkedIn \"Поділитися\" та \"Відстежувати\" до постів, "
1449
  "сторінок і віджетів WordPress. 5 плагінів включено - Профіль, Інсайдер і т.д."
1450
 
1451
+ #: product_list.php:244
1452
  msgid ""
1453
  "Translate WordPress website content to other languages manually. Create "
1454
  "multilingual pages, posts, widgets, menus, etc."
1456
  "Перекладайте вміст сайту WordPress іншими мовами вручну. Створюйте "
1457
  "багатомовні сторінки, пости, віджети, меню і т.д."
1458
 
1459
+ #: product_list.php:254
1460
  msgid ""
1461
  "Add customizable pagination to WordPress website. Split long content to "
1462
  "multiple pages for better navigation."
1464
  "Додавайте пагінацію з можливістю налаштування на ваш сайт WordPress. "
1465
  "Розбивайте об'ємний контент на декілька сторінок для кращої навігації."
1466
 
1467
+ #: product_list.php:264
1468
  msgid ""
1469
  "Generate PDF files and print WordPress posts/pages. Customize document "
1470
  "header/footer styles and appearance."
1472
  "Створюйте PDF-файли і друкуйте пости/сторінки сайту WordPress. Налаштовуйте "
1473
  "стилі хедера/футера документа і його зовнішній вигляд."
1474
 
1475
+ #: product_list.php:274
1476
  msgid ""
1477
  "Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, "
1478
  "Profile) to WordPress posts, pages and widgets."
1480
  "Додавайте кнопки Pinterest \"Підписатися\", \"Зберегти\" і віджети профілю "
1481
  "(Пін, Дошка, Профіль) до постів, сторінок і віджетів WordPress."
1482
 
1483
+ #: product_list.php:284
1484
  msgid ""
1485
  "Create your personal portfolio WordPress website. Manage and showcase past "
1486
  "projects to get more clients."
1488
  "Створюйте і додавайте портфоліо на свій сайт WordPress. Керуйте і "
1489
  "демонструйте минулі проекти, щоб залучити більше клієнтів."
1490
 
1491
+ #: product_list.php:294
1492
  msgid "Export WordPress posts to CSV file format easily. Configure data order."
1493
  msgstr ""
1494
  "З легкістю експортуйте пости WordPress в файли формату CSV. Налаштуйте "
1495
  "порядок відображення даних."
1496
 
1497
+ #: product_list.php:301
1498
  msgid ""
1499
  "Add extra fields to default WordPress user profile. The easiest way to "
1500
  "create and manage additional custom values."
1502
  "Додавайте користувацькі поля у стандартний профіль WordPress. Найпростіший "
1503
  "спосіб створення і управління додатковими полями."
1504
 
1505
+ #: product_list.php:308
1506
  msgid ""
1507
  "Add and display HTML advertisement banner on WordPress website. Customize "
1508
  "bar styles and appearance."
1510
  "Додавайте відображення банерної HTML реклами на сайті WordPress. Налаштуйте "
1511
  "стилі і зовнішній вигляд банеру."
1512
 
1513
+ #: product_list.php:318
1514
  msgid ""
1515
  "Add customizable quotes and tips blocks to WordPress posts, pages and "
1516
  "widgets."
1518
  "Додавайте редаговані цитати та підказки до постів, сторінок і віджетів "
1519
  "WordPress."
1520
 
1521
+ #: product_list.php:325
1522
  msgid ""
1523
  "Add rating plugin to your WordPress website to receive feedback from your "
1524
  "customers."
1526
  "Додавайте систему оцінювання і рейтингу на ваш сайт WordPress і отримуйте "
1527
  "відгуки від ваших клієнтів."
1528
 
1529
+ #: product_list.php:332
1530
  msgid ""
1531
  "Create your personal real estate WordPress website. Sell, rent and buy "
1532
  "properties. Add, search and browse listings easily."
1535
  "Продавайте, орендуйте і купуйте нерухомість. Легко додавайте, знаходьте і "
1536
  "переглядайте лістинги."
1537
 
1538
+ #: product_list.php:342
1539
  msgid ""
1540
  "Add related, featured, latest, and popular posts to your WordPress website. "
1541
  "Connect your blog readers with a relevant content."
1543
  "Додавайте схожі, обрані, останні та популярні пости на ваш сайт WordPress. "
1544
  "Надавайте своїм читачам контент схожої тематики."
1545
 
1546
+ #: product_list.php:349
1547
  msgid ""
1548
  "Send bulk email messages to WordPress users. Custom templates, advanced "
1549
  "settings and detailed reports."
1551
  "Здійснюйте масову розсилку листів користувачам WordPress. Користувацькі "
1552
  "шаблони, додаткові налаштування і детальні звіти."
1553
 
1554
+ #: product_list.php:359
1555
  msgid ""
1556
  "The best responsive slider plugin for your WordPress website. Create "
1557
  "beautifully animated slides just in a few clicks."
1559
  "Найкращий адаптивний слайдер для вашого сайту WordPress. Створюйте красиво "
1560
  "анімовані слайди всього в декілька кліків."
1561
 
1562
+ #: product_list.php:366
1563
  msgid ""
1564
  "Configure SMTP server to receive email messages from WordPress to Gmail, "
1565
  "Yahoo, Hotmail and other services."
1567
  "Налаштовуйте SMTP-сервер, щоб отримувати електронні повідомлення з сайту "
1568
  "WordPress на такі поштові служби, як Gmail, Yahoo, Hotmail і багато інших."
1569
 
1570
+ #: product_list.php:373
1571
  msgid ""
1572
  "Add social media buttons and widgets to WordPress posts, pages and widgets. "
1573
  "FB, Twitter, G+1, Pinterest, LinkedIn."
1575
  "Додавайте кнопки і віджети соціальних мереж до постів, сторінок і віджетів "
1576
  "WordPress. FB, Twitter, G+1, Pinterest, LinkedIn."
1577
 
1578
+ #: product_list.php:383
1579
  msgid ""
1580
  "Add social media login, registration, and commenting to your WordPress "
1581
  "website."
1583
  "Додавайте на свій сайт WordPress можливість входу, реєстрації та "
1584
  "коментування з використанням існуючих акаунтів соціальних мереж."
1585
 
1586
+ #: product_list.php:390
1587
  msgid ""
1588
  "Add email newsletter sign up form to WordPress posts, pages and widgets. "
1589
  "Collect data and subscribe your users."
1591
  "Додавайте форму підписки на розсилку новин у пости, сторінки і віджети "
1592
  "WordPress. Збирайте дані і здійснюйте підписку користувачів."
1593
 
1594
+ #: product_list.php:400
1595
  msgid ""
1596
  "Add testimonials and feedbacks from your customers to WordPress website "
1597
  "posts, pages, and widgets."
1599
  "Додавайте рекомендації та відгуки ваших клієнтів в пости, сторінки і віджети "
1600
  "сайту WordPress."
1601
 
1602
+ #: product_list.php:407
1603
  msgid ""
1604
  "Best timesheet plugin for WordPress. Track employee time, streamline "
1605
  "attendance and generate reports."
1607
  "Кращий плагін обліку робочого часу на сайті WordPress. Відстежуйте час "
1608
  "роботи співробітників, оптимізуйте графік роботи в офісі і створюйте звіти."
1609
 
1610
+ #: product_list.php:417
1611
  msgid ""
1612
  "Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts "
1613
  "and pages."
1615
  "Додавайте кнопки Твіттера \"Читати\", \"Твітнути\", \"Хештеґ\" і \"Згадати\" "
1616
  "до постів і сторінок WordPress."
1617
 
1618
+ #: product_list.php:427
1619
  msgid ""
1620
  "Automatically check and update WordPress website core with all installed "
1621
  "plugins and themes to the latest versions."
1623
  "Виконуйте автоматичну перевірку і оновлення ядра WordPress до останніх "
1624
  "версій з усіма встановленими плагінами та темами."
1625
 
1626
+ #: product_list.php:437
1627
  msgid ""
1628
  "Powerful user role management plugin for WordPress website. Create, edit, "
1629
  "copy, and delete user roles."
1631
  "Ефективний плагін управління ролями користувачів для сайту WordPress. "
1632
  "Створюйте, редагуйте, копіюйте і видаляйте ролі користувачів."
1633
 
1634
+ #: product_list.php:447
1635
  msgid ""
1636
  "Display live count of online visitors who are currently browsing your "
1637
  "WordPress website."
1639
  "Ведіть підрахунок кількості відвідувачів, які в даний час переглядають ваш "
1640
  "сайт WordPress."
1641
 
1642
+ #: product_list.php:457
1643
  msgid ""
1644
  "Backup and export Zendesk Help Center content automatically to your "
1645
  "WordPress website database."
1647
  "Робіть автоматичне резервне копіювання і експорт вмісту Zendesk Help Center "
1648
  "в базу даних вашого сайту WordPress."
1649
 
1650
+ #~ msgid "Anonymous feedback"
1651
+ #~ msgstr "Анонімний відгук"
1652
+
1653
+ #~ msgid ""
1654
+ #~ "Protect WordPress website forms from spam entries by means of math logic."
1655
+ #~ msgstr ""
1656
+ #~ "Захищайте форми вашого сайту WordPress від зламування шляхом математичної "
1657
+ #~ "логіки."
1658
+
1659
+ #~ msgid "Congratulations! Pro Membership license is activated successfully."
1660
+ #~ msgstr "Вітаємо! Pro Membership ліцензія успішно активована."
1661
+
1662
+ #~ msgid "Email with system info is sent to"
1663
+ #~ msgstr "Емейл з системною інформацією надіслано на"
1664
+
1665
+ #~ msgid "Browse Free WordPress Themes"
1666
+ #~ msgstr "Огляд безкоштовних WordPress тем"
1667
+
1668
  #~ msgid ""
1669
  #~ "You can use one license of the Pro plugin for one domain only. Please "
1670
  #~ "check and edit your license or domain if necessary using you personal "
bws_menu/product_list.php CHANGED
@@ -16,18 +16,15 @@ $bws_plugins_category = array(
16
  );
17
 
18
  $bws_plugins = array(
19
- /* captcha has pro version only */
20
- 'captcha-pro/captcha-pro.php' => array(
21
  'category' => array( 'security', 'recommended' ),
22
  'name' => 'Captcha',
23
- 'description' => __( 'Protect WordPress website forms from spam entries by means of math logic.', 'bestwebsoft' ),
24
- /*'link' => 'https://bestwebsoft.com/products/wordpress/plugins/captcha/?k=d678516c0990e781edfb6a6c874f0b8a&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version, */
25
- 'settings' => 'admin.php?page=captcha_pro.php',
26
- 'install_url' => 'https://bestwebsoft.com/products/wordpress/plugins/captcha/buy/?k=ff7d65e55e5e7f98f219be9ed711094e&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
27
  'pro_version' => 'captcha-pro/captcha_pro.php',
28
  'purchase' => 'https://bestwebsoft.com/products/wordpress/plugins/captcha/buy/?k=ff7d65e55e5e7f98f219be9ed711094e&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
29
- 'pro_settings' => 'admin.php?page=captcha_pro.php',
30
- 'icon' => bws_menu_url( 'icons/plugins/' ) . 'captcha.png'
31
  ),
32
  'car-rental/car-rental.php' => array(
33
  'category' => array( 'ecommerce' ),
16
  );
17
 
18
  $bws_plugins = array(
19
+ 'captcha-bws/captcha-bws.php' => array(
 
20
  'category' => array( 'security', 'recommended' ),
21
  'name' => 'Captcha',
22
+ 'description' => __( 'Best secure captcha plugin to protect your WordPress forms.', 'bestwebsoft' ),
23
+ 'link' => 'https://bestwebsoft.com/products/wordpress/plugins/captcha/?k=d678516c0990e781edfb6a6c874f0b8a&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
24
+ 'settings' => 'admin.php?page=captcha.php',
 
25
  'pro_version' => 'captcha-pro/captcha_pro.php',
26
  'purchase' => 'https://bestwebsoft.com/products/wordpress/plugins/captcha/buy/?k=ff7d65e55e5e7f98f219be9ed711094e&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
27
+ 'pro_settings' => 'admin.php?page=captcha_pro.php'
 
28
  ),
29
  'car-rental/car-rental.php' => array(
30
  'category' => array( 'ecommerce' ),
google-sitemap-plugin.php CHANGED
@@ -6,7 +6,7 @@ Description: Generate and add XML sitemap to WordPress website. Help search engi
6
  Author: BestWebSoft
7
  Text Domain: google-sitemap-plugin
8
  Domain Path: /languages
9
- Version: 3.1.1
10
  Author URI: https://bestwebsoft.com/
11
  License: GPLv2 or later
12
  */
@@ -71,12 +71,12 @@ if ( ! function_exists( 'gglstmp_admin_menu' ) ) {
71
  'bws_add_menu_render' /* $callable_function */
72
  );
73
 
74
- if ( isset( $submenu['google-sitemap-plugin.php'] ) )
75
  $submenu['google-sitemap-plugin.php'][] = array(
76
  '<span style="color:#d86463"> ' . __( 'Upgrade to Pro', 'google-sitemap-plugin' ) . '</span>',
77
  'manage_options',
78
  'https://bestwebsoft.com/products/wordpress/plugins/google-sitemap/?k=28d4cf0b4ab6f56e703f46f60d34d039&pn=83&v=' . $gglstmp_plugin_info["Version"] . '&wp_v=' . $wp_version );
79
-
80
 
81
  add_action( "load-{$settings}", 'gglstmp_add_tabs' );
82
  }
@@ -95,8 +95,9 @@ if ( ! function_exists( 'gglstmp_init' ) ) {
95
  global $gglstmp_plugin_info;
96
 
97
  if ( empty( $gglstmp_plugin_info ) ) {
98
- if ( ! function_exists( 'get_plugin_data' ) )
99
  require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
 
100
  $gglstmp_plugin_info = get_plugin_data( __FILE__ );
101
  }
102
 
@@ -110,8 +111,9 @@ if ( ! function_exists( 'gglstmp_init' ) ) {
110
  /* Get options from the database */
111
  gglstmp_register_settings();
112
 
113
- if ( 1 == get_option( 'gglstmp_robots' ) )
114
  add_filter( 'robots_txt', 'gglstmp_robots_add_sitemap', 10, 2 );
 
115
 
116
  if ( isset( $_GET['gglstmp_robots'] ) ) {
117
  $robots_txt_url = ABSPATH . 'robots.txt';
@@ -153,8 +155,9 @@ if ( ! function_exists( 'gglstmp_admin_init' ) ) {
153
  }
154
 
155
  if ( isset( $_GET['page'] ) && "google-sitemap-plugin.php" == $_GET['page'] ) {
156
- if ( ! session_id() )
157
  session_start();
 
158
  }
159
  }
160
  }
@@ -178,15 +181,6 @@ if ( ! function_exists( 'gglstmp_register_settings' ) ) {
178
  function gglstmp_register_settings() {
179
  global $gglstmp_options, $gglstmp_plugin_info;
180
 
181
- /**
182
- * Renaming old version options
183
- * @deprecated since 3.0.8
184
- * @todo remove after 28.10.2017
185
- */
186
- if ( function_exists( 'gglstmp_check_old_options' ) )
187
- gglstmp_check_old_options();
188
- /* end @todo */
189
-
190
  if ( ! get_option( 'gglstmp_options' ) ) {
191
  $sitemaprecreate = true;
192
  $options_default = gglstmp_get_options_default();
@@ -207,8 +201,9 @@ if ( ! function_exists( 'gglstmp_register_settings' ) ) {
207
  unset( $gglstmp_options['sitemap'] );
208
  gglstmp_activate();
209
  /* Remove sitemap line from robots if exists */
210
- if ( function_exists( 'gglstmp_clean_robots' ) )
211
  gglstmp_clean_robots();
 
212
  }
213
  /* end @todo */
214
  $gglstmp_options['plugin_option_version'] = $gglstmp_plugin_info["Version"];
@@ -282,6 +277,14 @@ if ( ! function_exists( 'gglstmp_schedule_sitemap' ) ) {
282
  }
283
  }
284
 
 
 
 
 
 
 
 
 
285
  /**
286
  * @since 3.1.0
287
  * Function prepares all the items that should be included into blog's sitemap.
@@ -373,8 +376,9 @@ if ( ! function_exists( 'gglstmp_prepare_sitemap' ) ) {
373
 
374
  $post_types_string = "AND p.`post_type` IN ('" . implode( "','", (array)$post_types ) . "')";
375
 
376
- if ( ! empty( $excluded_posts ) )
377
  $excluded_posts_string = "AND p.`ID` NOT IN (" . implode( ",", $excluded_posts ) . ")";
 
378
 
379
  $posts = $wpdb->get_results(
380
  "SELECT
@@ -459,8 +463,9 @@ if ( ! function_exists( 'gglstmp_prepare_sitemap' ) ) {
459
  if ( count( $elements ) <= $gglstmp_options['limit'] ) {
460
  $part_num = 0;
461
  gglstmp_create_sitemap( $elements, $part_num );
462
- if ( ! $is_multisite )
463
  $create_index = false;
 
464
  } else {
465
  $parts = array_chunk( $elements, $gglstmp_options['limit'] );
466
  foreach ( $parts as $part_num => $part_elements ) {
@@ -493,8 +498,9 @@ if ( ! function_exists( 'gglstmp_prepare_sitemap' ) ) {
493
  * have modified $gglstmp_options global variable by calling 'gglstmp_save_sitemap_info' function
494
  */
495
  update_option( 'gglstmp_options', $gglstmp_options );
496
- if ( $is_multisite )
497
  switch_to_blog( $old_blog );
 
498
  }
499
  }
500
 
@@ -538,8 +544,9 @@ if ( ! function_exists( 'gglstmp_create_sitemap' ) ) {
538
 
539
  $xml->formatOutput = true;
540
 
541
- if ( ! is_writable( ABSPATH ) )
542
  @chmod( ABSPATH, 0755 );
 
543
 
544
  $part_num = ( absint( $part_num ) > 0 ) ? '_' . absint( $part_num ) : '';
545
 
@@ -601,12 +608,14 @@ if ( ! function_exists( 'gglstmp_create_sitemap_index' ) ) {
601
  }
602
 
603
  if ( count( $elements ) > 0 ) {
604
- if ( ! is_writable( ABSPATH ) )
605
  @chmod( ABSPATH, 0755 );
 
606
  $xmlindex->formatOutput = true;
607
  $xmlindex->save( $index_file );
608
- if ( 0 !== $blog_id )
609
  gglstmp_save_sitemap_info( $index_filename, true );
 
610
  } elseif ( file_exists( $index_file ) ) {
611
  unlink( $index_file );
612
  }
@@ -676,9 +685,9 @@ if ( ! function_exists( 'gglstmp_get_sitemap_files' ) ) {
676
  $files = array();
677
 
678
  if ( is_multisite() ) {
679
- if ( 'all' != $blog_id )
680
  $blog_id = ( false === $blog_id ) ? get_current_blog_id() : absint( $blog_id );
681
-
682
  if ( 'all' === $blog_id ) {
683
  /* all existing sitemap files */
684
  $mask = "sitemap*.xml";
@@ -708,10 +717,11 @@ if ( ! function_exists( 'gglstmp_get_sitemap_files' ) ) {
708
  if ( ! function_exists( 'gglstmp_check_sitemap' ) ) {
709
  function gglstmp_check_sitemap( $url ) {
710
  $result = wp_remote_get( esc_url_raw( $url ) );
711
- if ( is_array( $result ) && ! is_wp_error( $result ) )
712
  return $result['response'];
713
- else
714
  return $result;
 
715
  }
716
  }
717
 
@@ -727,7 +737,7 @@ if ( ! function_exists( 'gglstmp_check_sitemap' ) ) {
727
  if ( ! function_exists( 'gglstmp_save_sitemap_info' ) ) {
728
  function gglstmp_save_sitemap_info( $filename = 'sitemap.xml', $is_index = false ) {
729
  global $gglstmp_options;
730
- $xml_url = home_url('/') . $filename;
731
  $xml_path = ABSPATH . $filename;
732
  $is_index = !! $is_index ? 1 : 0 ;
733
 
@@ -763,8 +773,9 @@ if ( ! function_exists ( 'gglstmp_client' ) ) {
763
  function gglstmp_client() {
764
  global $gglstmp_plugin_info;
765
 
766
- if ( ! function_exists( 'google_api_php_client_autoload' ) || class_exists( 'Google_Client' ) )
767
  require_once( dirname( __FILE__ ) . '/google_api/autoload.php' );
 
768
 
769
  $client = new Google_Client();
770
  $client->setClientId( '37374817621-7ujpfn4ai4q98q4nb0gaaq5ga7j7u0ka.apps.googleusercontent.com' );
@@ -803,8 +814,9 @@ if ( ! function_exists( 'gglstmp_plugin_status' ) ) {
803
 
804
  }
805
  }
806
- if ( empty( $result['status'] ) )
807
  $result['status'] = 'not_installed';
 
808
  return $result;
809
  }
810
  }
@@ -885,10 +897,11 @@ if ( ! function_exists( 'gglstmp_get_site_info' ) ) {
885
  <td class="gglstmp_success">' . __( 'Added', 'google-sitemap-plugin' ) . '</td></tr>';
886
 
887
  $return .= '<tr><th>' . __( 'Verification Status', 'google-sitemap-plugin' ) . '</th>';
888
- if ( $wmt_sites_array[ $home_url ] == 'siteOwner' )
889
  $return .= '<td>' . __( 'Verified', 'google-sitemap-plugin' ) . '</td></tr>';
890
- else
891
  $return .= '<td>' . __( 'Not verified', 'google-sitemap-plugin' ) . '</td></tr>';
 
892
 
893
  $webmasters_sitemaps = $webmasters->sitemaps->listSitemaps( $home_url )->getSitemap();
894
 
@@ -898,8 +911,16 @@ if ( ! function_exists( 'gglstmp_get_site_info' ) ) {
898
 
899
  $return .= '<tr><th>' . __( 'Sitemap Status', 'google-sitemap-plugin' ) . '</th>';
900
 
901
- if ( isset( $gglstmp_options['sitemap']['loc'] ) ) {
902
- $url_sitemap = $gglstmp_options['sitemap']['loc'];
 
 
 
 
 
 
 
 
903
  if ( ! array_key_exists( $url_sitemap, $wmt_sitemaps_arr ) ) {
904
  $return .= '<td>' . __( 'Not added', 'google-sitemap-plugin' ) . '</td></tr>';
905
  } else {
@@ -927,7 +948,7 @@ if ( ! function_exists( 'gglstmp_get_site_info' ) ) {
927
  }
928
 
929
  if ( ! empty( $sv_error ) ) {
930
- if ( $sv_error !== true ) {
931
  $return .= '<tr><th></th><td><strong>' . __( 'Error', 'google-sitemap-plugin' ) . ':</strong> ' . $sv_error . '</td></tr>';
932
  }
933
  $return .= '<tr><th></th><td>' . __( "Manual verification required.", 'google-sitemap-plugin' ) . ' <a target="_blank" href="' . $instruction_url . '">' . __( 'Learn More', 'google-sitemap-plugin' ) . '</a></td></tr>';
@@ -942,7 +963,7 @@ if ( ! function_exists( 'gglstmp_delete_site' ) ) {
942
  function gglstmp_delete_site( $webmasters, $site_verification ) {
943
  global $gglstmp_options;
944
 
945
- $home_url = home_url('/');
946
  $return = '<table id="gglstmp_manage_table"><tr><th>' . __( 'Website', 'google-sitemap-plugin' ) . '</th>
947
  <td><a href="' . $home_url . '" target="_blank">' . $home_url . '</a></td></tr>';
948
 
@@ -977,8 +998,9 @@ if ( ! function_exists( 'gglstmp_delete_site' ) ) {
977
  if ( ! empty( $sv_error ) ) {
978
  $return .= '<tr><th>' . __( 'Status', 'google-sitemap-plugin' ) . '</th>
979
  <td>' . __( 'Not added', 'google-sitemap-plugin' ) . '</td></tr>';
980
- if ( $sv_error !== true )
981
  $return .= '<tr><th></th><td><strong>' . __( 'Error', 'google-sitemap-plugin' ) . ':</strong> ' . $sv_error . '</td></tr>';
 
982
  }
983
  $return .= '</table>';
984
  return $return;
@@ -1012,9 +1034,10 @@ if ( ! function_exists( 'gglstmp_add_site' ) ) {
1012
 
1013
  if ( ! empty( $wmt_error ) ) {
1014
  $return .= '<tr><th>' . __( 'Status', 'google-sitemap-plugin' ) . '</th>';
1015
- if ( $wmt_error !== true )
1016
  $return .= '<td><strong>' . __( 'Error', 'google-sitemap-plugin' ) . ':</strong> ' . $wmt_error . '</td></tr>
1017
  <tr><th></th>';
 
1018
  $return .= '<td>' . __( "Manual verification required.", 'google-sitemap-plugin' ) . ' <a target="_blank" href="' . $instruction_url . '">' . __( 'Learn More', 'google-sitemap-plugin' ) . '</a></td></tr>';
1019
  } else {
1020
 
@@ -1048,7 +1071,7 @@ if ( ! function_exists( 'gglstmp_add_site' ) ) {
1048
  }
1049
 
1050
  if ( ! empty( $sv_error ) ) {
1051
- if ( $sv_error !== true ) {
1052
  $return .= '<tr><th>' . __( 'Verification Code', 'google-sitemap-plugin' ) . '</th>
1053
  <td><strong>' . __( 'Error', 'google-sitemap-plugin' ) . ':</strong> ' . $sv_error . '</td></tr>';
1054
  }
@@ -1066,7 +1089,7 @@ if ( ! function_exists( 'gglstmp_add_site' ) ) {
1066
  $site_verification->webResource->insert( 'META', $gglstmp_wmt_resource );
1067
 
1068
  $return .= '<tr><th>' . __( 'Verification Status', 'google-sitemap-plugin' ) . '</th>
1069
- <td class="gglstmp_success">' . ___( 'Verified', 'google-sitemap-plugin' ) . '</td></tr>';
1070
  } catch ( Google_Service_Exception $e ) {
1071
  $error = $e->getErrors();
1072
  $sv_error = isset( $error[0]['message'] ) ? $error[0]['message'] : __( 'Unexpected error', 'google-sitemap-plugin' );
@@ -1080,9 +1103,10 @@ if ( ! function_exists( 'gglstmp_add_site' ) ) {
1080
 
1081
  if ( ! empty( $sv_error ) ) {
1082
  $return .= '<tr><th>' . __( 'Verification Status', 'google-sitemap-plugin' ) . '</th>';
1083
- if ( $sv_error !== true )
1084
  $return .= '<td><strong>' . __( 'Error', 'google-sitemap-plugin' ) . ':</strong> ' . $sv_error . '</td></tr>
1085
  <tr><th></th>';
 
1086
  $return .= '<td>' . __( "Manual verification required.", 'google-sitemap-plugin' ) . ' <a target="_blank" href="' . $instruction_url . '">' . __( 'Learn More', 'google-sitemap-plugin' ) . '</a></td></tr>';
1087
  } else {
1088
 
@@ -1119,9 +1143,10 @@ if ( ! function_exists( 'gglstmp_add_site' ) ) {
1119
  $wmt_error = $e->getMessage();
1120
  }
1121
  if ( ! empty( $wmt_error ) ) {
1122
- if ( $wmt_error !== true )
1123
  $return .= '<td><strong>' . __( 'Error', 'google-sitemap-plugin' ) . ':</strong> ' . $wmt_error . '</td></tr>
1124
  <tr><th></th>';
 
1125
  $return .= '<td>' . __( "Please add the sitemap file manually.", 'google-sitemap-plugin' ) . ' <a target="_blank" href="' . $instruction_url . '">' . __( 'Learn More', 'google-sitemap-plugin' ) . '</a></td></tr>';
1126
  }
1127
  } else {
@@ -1180,8 +1205,8 @@ if ( ! function_exists( 'gglstmp_check_post_status' ) ) {
1180
 
1181
  /* Updating the sitemap after a post or page is trashed or published */
1182
  if ( ! function_exists( 'gglstmp_update_sitemap' ) ) {
1183
- function gglstmp_update_sitemap( $post_id ) {
1184
- if ( ! wp_is_post_revision( $post_id ) ) {
1185
  global $gglstmp_update_sitemap;
1186
  if ( true === $gglstmp_update_sitemap ) {
1187
  gglstmp_register_settings();
@@ -1197,8 +1222,9 @@ if ( ! function_exists( 'gglstmp_action_links' ) ) {
1197
  /* Static so we don't call plugin_basename on every plugin row. */
1198
  if ( ! is_network_admin() && ! is_plugin_active( 'google-sitemap-pro/google-sitemap-pro.php' ) ) {
1199
  static $this_plugin;
1200
- if ( ! $this_plugin )
1201
  $this_plugin = plugin_basename( __FILE__ );
 
1202
  if ( $file == $this_plugin ) {
1203
  $settings_link = '<a href="admin.php?page=google-sitemap-plugin.php">' . __( 'Settings', 'google-sitemap-plugin' ) . '</a>';
1204
  array_unshift( $links, $settings_link );
@@ -1212,8 +1238,9 @@ if ( ! function_exists( 'gglstmp_links' ) ) {
1212
  function gglstmp_links( $links, $file ) {
1213
  $base = plugin_basename( __FILE__ );
1214
  if ( $file == $base ) {
1215
- if ( ! is_network_admin() && ! is_plugin_active( 'google-sitemap-pro/google-sitemap-pro.php' ) )
1216
  $links[] = '<a href="admin.php?page=google-sitemap-plugin.php">' . __( 'Settings', 'google-sitemap-plugin' ) . '</a>';
 
1217
  $links[] = '<a href="https://support.bestwebsoft.com/hc/en-us/sections/200538869" target="_blank">' . __( 'FAQ', 'google-sitemap-plugin' ) . '</a>';
1218
  $links[] = '<a href="https://support.bestwebsoft.com">' . __( 'Support', 'google-sitemap-plugin' ) . '</a>';
1219
  }
@@ -1226,17 +1253,20 @@ if ( ! function_exists ( 'gglstmp_plugin_banner' ) ) {
1226
  global $hook_suffix, $gglstmp_plugin_info, $gglstmp_options;
1227
 
1228
  if ( 'plugins.php' == $hook_suffix ) {
1229
- if ( ! $gglstmp_options )
1230
  gglstmp_register_settings();
 
1231
 
1232
- if ( isset( $gglstmp_options['first_install'] ) && strtotime( '-1 week' ) > $gglstmp_options['first_install'] )
1233
  bws_plugin_banner( $gglstmp_plugin_info, 'gglstmp', 'google-sitemap', '8fbb5d23fd00bdcb213d6c0985d16ec5', '83', '//ps.w.org/google-sitemap-plugin/assets/icon-128x128.png' );
 
1234
 
1235
  bws_plugin_banner_to_settings( $gglstmp_plugin_info, 'gglstmp_options', 'google-sitemap-plugin', 'admin.php?page=google-sitemap-plugin.php' );
1236
  }
1237
 
1238
- if ( isset( $_REQUEST['page'] ) && 'google-sitemap-plugin.php' == $_REQUEST['page'] )
1239
  bws_plugin_suggest_feature_banner( $gglstmp_plugin_info, 'gglstmp_options', 'google-sitemap-plugin' );
 
1240
  }
1241
  }
1242
 
@@ -1267,11 +1297,12 @@ if ( ! function_exists( 'gglstmp_add_sitemap' ) ) {
1267
  $blog_details = get_blog_details( $blog_id );
1268
  if (
1269
  ! is_object( $blog_details ) ||
1270
- $blog_details->archived == 1 ||
1271
- $blog_details->deleted == 1 ||
1272
- $blog_details->spam == 1
1273
- )
1274
  return;
 
1275
  }
1276
 
1277
  gglstmp_schedule_sitemap( $blog_id );
@@ -1300,8 +1331,9 @@ if ( ! function_exists( 'gglstmp_delete_sitemap' ) ) {
1300
  if ( ! function_exists( 'gglstmp_delete_settings' ) ) {
1301
  function gglstmp_delete_settings() {
1302
  global $wpdb;
1303
- if ( ! function_exists( 'get_plugins' ) )
1304
  require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
 
1305
  $all_plugins = get_plugins();
1306
 
1307
  if ( ! array_key_exists( 'google-sitemap-pro/google-sitemap-pro.php', $all_plugins ) ) {
@@ -1340,16 +1372,16 @@ add_action( 'plugins_loaded', 'gglstmp_plugins_loaded' );
1340
  add_action( 'admin_enqueue_scripts', 'gglstmp_add_plugin_stylesheet' );
1341
 
1342
  add_action( 'transition_post_status', 'gglstmp_check_post_status', 10, 3 );
1343
- add_action( 'save_post', 'gglstmp_update_sitemap' );
1344
  add_action( 'trashed_post', 'gglstmp_update_sitemap' );
1345
 
1346
  add_action( 'gglstmp_sitemap_cron','gglstmp_prepare_sitemap' );
1347
 
1348
  /* rebuild sitemap on permalink structure change, on taxonomy term add/edit/delete */
1349
  add_action( 'permalink_structure_changed','gglstmp_schedule_sitemap', 10, 0 );
1350
- add_action( 'created_term','gglstmp_schedule_sitemap', 10, 0 );
1351
- add_action( 'edited_term','gglstmp_schedule_sitemap', 10, 0 );
1352
- add_action( 'delete_term','gglstmp_schedule_sitemap', 10, 0 );
1353
 
1354
  add_filter( 'rewrite_rules_array','gglstmp_rewrite_rules', PHP_INT_MAX, 1 );
1355
 
6
  Author: BestWebSoft
7
  Text Domain: google-sitemap-plugin
8
  Domain Path: /languages
9
+ Version: 3.1.2
10
  Author URI: https://bestwebsoft.com/
11
  License: GPLv2 or later
12
  */
71
  'bws_add_menu_render' /* $callable_function */
72
  );
73
 
74
+ if ( isset( $submenu['google-sitemap-plugin.php'] ) ) {
75
  $submenu['google-sitemap-plugin.php'][] = array(
76
  '<span style="color:#d86463"> ' . __( 'Upgrade to Pro', 'google-sitemap-plugin' ) . '</span>',
77
  'manage_options',
78
  'https://bestwebsoft.com/products/wordpress/plugins/google-sitemap/?k=28d4cf0b4ab6f56e703f46f60d34d039&pn=83&v=' . $gglstmp_plugin_info["Version"] . '&wp_v=' . $wp_version );
79
+ }
80
 
81
  add_action( "load-{$settings}", 'gglstmp_add_tabs' );
82
  }
95
  global $gglstmp_plugin_info;
96
 
97
  if ( empty( $gglstmp_plugin_info ) ) {
98
+ if ( ! function_exists( 'get_plugin_data' ) ) {
99
  require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
100
+ }
101
  $gglstmp_plugin_info = get_plugin_data( __FILE__ );
102
  }
103
 
111
  /* Get options from the database */
112
  gglstmp_register_settings();
113
 
114
+ if ( 1 == get_option( 'gglstmp_robots' ) ) {
115
  add_filter( 'robots_txt', 'gglstmp_robots_add_sitemap', 10, 2 );
116
+ }
117
 
118
  if ( isset( $_GET['gglstmp_robots'] ) ) {
119
  $robots_txt_url = ABSPATH . 'robots.txt';
155
  }
156
 
157
  if ( isset( $_GET['page'] ) && "google-sitemap-plugin.php" == $_GET['page'] ) {
158
+ if ( ! session_id() ) {
159
  session_start();
160
+ }
161
  }
162
  }
163
  }
181
  function gglstmp_register_settings() {
182
  global $gglstmp_options, $gglstmp_plugin_info;
183
 
 
 
 
 
 
 
 
 
 
184
  if ( ! get_option( 'gglstmp_options' ) ) {
185
  $sitemaprecreate = true;
186
  $options_default = gglstmp_get_options_default();
201
  unset( $gglstmp_options['sitemap'] );
202
  gglstmp_activate();
203
  /* Remove sitemap line from robots if exists */
204
+ if ( function_exists( 'gglstmp_clean_robots' ) ) {
205
  gglstmp_clean_robots();
206
+ }
207
  }
208
  /* end @todo */
209
  $gglstmp_options['plugin_option_version'] = $gglstmp_plugin_info["Version"];
277
  }
278
  }
279
 
280
+ if ( ! function_exists( 'gglstmp_edited_term' ) ) {
281
+ function gglstmp_edited_term( $term_id, $tt_id, $taxonomy ) {
282
+ if ( isset( $taxonomy ) && 'nav_menu' != $taxonomy ) {
283
+ gglstmp_schedule_sitemap();
284
+ }
285
+ }
286
+ }
287
+
288
  /**
289
  * @since 3.1.0
290
  * Function prepares all the items that should be included into blog's sitemap.
376
 
377
  $post_types_string = "AND p.`post_type` IN ('" . implode( "','", (array)$post_types ) . "')";
378
 
379
+ if ( ! empty( $excluded_posts ) ) {
380
  $excluded_posts_string = "AND p.`ID` NOT IN (" . implode( ",", $excluded_posts ) . ")";
381
+ }
382
 
383
  $posts = $wpdb->get_results(
384
  "SELECT
463
  if ( count( $elements ) <= $gglstmp_options['limit'] ) {
464
  $part_num = 0;
465
  gglstmp_create_sitemap( $elements, $part_num );
466
+ if ( ! $is_multisite ) {
467
  $create_index = false;
468
+ }
469
  } else {
470
  $parts = array_chunk( $elements, $gglstmp_options['limit'] );
471
  foreach ( $parts as $part_num => $part_elements ) {
498
  * have modified $gglstmp_options global variable by calling 'gglstmp_save_sitemap_info' function
499
  */
500
  update_option( 'gglstmp_options', $gglstmp_options );
501
+ if ( $is_multisite ) {
502
  switch_to_blog( $old_blog );
503
+ }
504
  }
505
  }
506
 
544
 
545
  $xml->formatOutput = true;
546
 
547
+ if ( ! is_writable( ABSPATH ) ) {
548
  @chmod( ABSPATH, 0755 );
549
+ }
550
 
551
  $part_num = ( absint( $part_num ) > 0 ) ? '_' . absint( $part_num ) : '';
552
 
608
  }
609
 
610
  if ( count( $elements ) > 0 ) {
611
+ if ( ! is_writable( ABSPATH ) ) {
612
  @chmod( ABSPATH, 0755 );
613
+ }
614
  $xmlindex->formatOutput = true;
615
  $xmlindex->save( $index_file );
616
+ if ( 0 !== $blog_id ) {
617
  gglstmp_save_sitemap_info( $index_filename, true );
618
+ }
619
  } elseif ( file_exists( $index_file ) ) {
620
  unlink( $index_file );
621
  }
685
  $files = array();
686
 
687
  if ( is_multisite() ) {
688
+ if ( 'all' != $blog_id ) {
689
  $blog_id = ( false === $blog_id ) ? get_current_blog_id() : absint( $blog_id );
690
+ }
691
  if ( 'all' === $blog_id ) {
692
  /* all existing sitemap files */
693
  $mask = "sitemap*.xml";
717
  if ( ! function_exists( 'gglstmp_check_sitemap' ) ) {
718
  function gglstmp_check_sitemap( $url ) {
719
  $result = wp_remote_get( esc_url_raw( $url ) );
720
+ if ( is_array( $result ) && ! is_wp_error( $result ) ) {
721
  return $result['response'];
722
+ } else {
723
  return $result;
724
+ }
725
  }
726
  }
727
 
737
  if ( ! function_exists( 'gglstmp_save_sitemap_info' ) ) {
738
  function gglstmp_save_sitemap_info( $filename = 'sitemap.xml', $is_index = false ) {
739
  global $gglstmp_options;
740
+ $xml_url = home_url( '/' ) . $filename;
741
  $xml_path = ABSPATH . $filename;
742
  $is_index = !! $is_index ? 1 : 0 ;
743
 
773
  function gglstmp_client() {
774
  global $gglstmp_plugin_info;
775
 
776
+ if ( ! function_exists( 'google_api_php_client_autoload' ) || class_exists( 'Google_Client' ) ) {
777
  require_once( dirname( __FILE__ ) . '/google_api/autoload.php' );
778
+ }
779
 
780
  $client = new Google_Client();
781
  $client->setClientId( '37374817621-7ujpfn4ai4q98q4nb0gaaq5ga7j7u0ka.apps.googleusercontent.com' );
814
 
815
  }
816
  }
817
+ if ( empty( $result['status'] ) ) {
818
  $result['status'] = 'not_installed';
819
+ }
820
  return $result;
821
  }
822
  }
897
  <td class="gglstmp_success">' . __( 'Added', 'google-sitemap-plugin' ) . '</td></tr>';
898
 
899
  $return .= '<tr><th>' . __( 'Verification Status', 'google-sitemap-plugin' ) . '</th>';
900
+ if ( $wmt_sites_array[ $home_url ] == 'siteOwner' ) {
901
  $return .= '<td>' . __( 'Verified', 'google-sitemap-plugin' ) . '</td></tr>';
902
+ } else {
903
  $return .= '<td>' . __( 'Not verified', 'google-sitemap-plugin' ) . '</td></tr>';
904
+ }
905
 
906
  $webmasters_sitemaps = $webmasters->sitemaps->listSitemaps( $home_url )->getSitemap();
907
 
911
 
912
  $return .= '<tr><th>' . __( 'Sitemap Status', 'google-sitemap-plugin' ) . '</th>';
913
 
914
+ if ( is_multisite() ) {
915
+ $blog_id = get_current_blog_id();
916
+ $xml_file = 'sitemap_' . $blog_id . '.xml';
917
+ $url_sitemap = home_url( '/' ) . $xml_file;
918
+ } else {
919
+ $xml_file = 'sitemap.xml';
920
+ $url_sitemap = home_url( '/' ) . $xml_file;
921
+ }
922
+
923
+ if ( ! empty( $url_sitemap ) ) {
924
  if ( ! array_key_exists( $url_sitemap, $wmt_sitemaps_arr ) ) {
925
  $return .= '<td>' . __( 'Not added', 'google-sitemap-plugin' ) . '</td></tr>';
926
  } else {
948
  }
949
 
950
  if ( ! empty( $sv_error ) ) {
951
+ if ( true !== $sv_error ) {
952
  $return .= '<tr><th></th><td><strong>' . __( 'Error', 'google-sitemap-plugin' ) . ':</strong> ' . $sv_error . '</td></tr>';
953
  }
954
  $return .= '<tr><th></th><td>' . __( "Manual verification required.", 'google-sitemap-plugin' ) . ' <a target="_blank" href="' . $instruction_url . '">' . __( 'Learn More', 'google-sitemap-plugin' ) . '</a></td></tr>';
963
  function gglstmp_delete_site( $webmasters, $site_verification ) {
964
  global $gglstmp_options;
965
 
966
+ $home_url = home_url( '/' );
967
  $return = '<table id="gglstmp_manage_table"><tr><th>' . __( 'Website', 'google-sitemap-plugin' ) . '</th>
968
  <td><a href="' . $home_url . '" target="_blank">' . $home_url . '</a></td></tr>';
969
 
998
  if ( ! empty( $sv_error ) ) {
999
  $return .= '<tr><th>' . __( 'Status', 'google-sitemap-plugin' ) . '</th>
1000
  <td>' . __( 'Not added', 'google-sitemap-plugin' ) . '</td></tr>';
1001
+ if ( true !== $sv_error ) {
1002
  $return .= '<tr><th></th><td><strong>' . __( 'Error', 'google-sitemap-plugin' ) . ':</strong> ' . $sv_error . '</td></tr>';
1003
+ }
1004
  }
1005
  $return .= '</table>';
1006
  return $return;
1034
 
1035
  if ( ! empty( $wmt_error ) ) {
1036
  $return .= '<tr><th>' . __( 'Status', 'google-sitemap-plugin' ) . '</th>';
1037
+ if ( true !== $wmt_error ) {
1038
  $return .= '<td><strong>' . __( 'Error', 'google-sitemap-plugin' ) . ':</strong> ' . $wmt_error . '</td></tr>
1039
  <tr><th></th>';
1040
+ }
1041
  $return .= '<td>' . __( "Manual verification required.", 'google-sitemap-plugin' ) . ' <a target="_blank" href="' . $instruction_url . '">' . __( 'Learn More', 'google-sitemap-plugin' ) . '</a></td></tr>';
1042
  } else {
1043
 
1071
  }
1072
 
1073
  if ( ! empty( $sv_error ) ) {
1074
+ if ( true !== $sv_error ) {
1075
  $return .= '<tr><th>' . __( 'Verification Code', 'google-sitemap-plugin' ) . '</th>
1076
  <td><strong>' . __( 'Error', 'google-sitemap-plugin' ) . ':</strong> ' . $sv_error . '</td></tr>';
1077
  }
1089
  $site_verification->webResource->insert( 'META', $gglstmp_wmt_resource );
1090
 
1091
  $return .= '<tr><th>' . __( 'Verification Status', 'google-sitemap-plugin' ) . '</th>
1092
+ <td class="gglstmp_success">' . __( 'Verified', 'google-sitemap-plugin' ) . '</td></tr>';
1093
  } catch ( Google_Service_Exception $e ) {
1094
  $error = $e->getErrors();
1095
  $sv_error = isset( $error[0]['message'] ) ? $error[0]['message'] : __( 'Unexpected error', 'google-sitemap-plugin' );
1103
 
1104
  if ( ! empty( $sv_error ) ) {
1105
  $return .= '<tr><th>' . __( 'Verification Status', 'google-sitemap-plugin' ) . '</th>';
1106
+ if ( true !== $sv_error ) {
1107
  $return .= '<td><strong>' . __( 'Error', 'google-sitemap-plugin' ) . ':</strong> ' . $sv_error . '</td></tr>
1108
  <tr><th></th>';
1109
+ }
1110
  $return .= '<td>' . __( "Manual verification required.", 'google-sitemap-plugin' ) . ' <a target="_blank" href="' . $instruction_url . '">' . __( 'Learn More', 'google-sitemap-plugin' ) . '</a></td></tr>';
1111
  } else {
1112
 
1143
  $wmt_error = $e->getMessage();
1144
  }
1145
  if ( ! empty( $wmt_error ) ) {
1146
+ if ( true !== $wmt_error ) {
1147
  $return .= '<td><strong>' . __( 'Error', 'google-sitemap-plugin' ) . ':</strong> ' . $wmt_error . '</td></tr>
1148
  <tr><th></th>';
1149
+ }
1150
  $return .= '<td>' . __( "Please add the sitemap file manually.", 'google-sitemap-plugin' ) . ' <a target="_blank" href="' . $instruction_url . '">' . __( 'Learn More', 'google-sitemap-plugin' ) . '</a></td></tr>';
1151
  }
1152
  } else {
1205
 
1206
  /* Updating the sitemap after a post or page is trashed or published */
1207
  if ( ! function_exists( 'gglstmp_update_sitemap' ) ) {
1208
+ function gglstmp_update_sitemap( $post_id, $post ) {
1209
+ if ( ! wp_is_post_revision( $post_id ) && ( ! isset( $post ) || ( 'nav_menu' != $post->post_type && 'nav_menu_item' != $post->post_type ) ) ) {
1210
  global $gglstmp_update_sitemap;
1211
  if ( true === $gglstmp_update_sitemap ) {
1212
  gglstmp_register_settings();
1222
  /* Static so we don't call plugin_basename on every plugin row. */
1223
  if ( ! is_network_admin() && ! is_plugin_active( 'google-sitemap-pro/google-sitemap-pro.php' ) ) {
1224
  static $this_plugin;
1225
+ if ( ! $this_plugin ) {
1226
  $this_plugin = plugin_basename( __FILE__ );
1227
+ }
1228
  if ( $file == $this_plugin ) {
1229
  $settings_link = '<a href="admin.php?page=google-sitemap-plugin.php">' . __( 'Settings', 'google-sitemap-plugin' ) . '</a>';
1230
  array_unshift( $links, $settings_link );
1238
  function gglstmp_links( $links, $file ) {
1239
  $base = plugin_basename( __FILE__ );
1240
  if ( $file == $base ) {
1241
+ if ( ! is_network_admin() && ! is_plugin_active( 'google-sitemap-pro/google-sitemap-pro.php' ) ) {
1242
  $links[] = '<a href="admin.php?page=google-sitemap-plugin.php">' . __( 'Settings', 'google-sitemap-plugin' ) . '</a>';
1243
+ }
1244
  $links[] = '<a href="https://support.bestwebsoft.com/hc/en-us/sections/200538869" target="_blank">' . __( 'FAQ', 'google-sitemap-plugin' ) . '</a>';
1245
  $links[] = '<a href="https://support.bestwebsoft.com">' . __( 'Support', 'google-sitemap-plugin' ) . '</a>';
1246
  }
1253
  global $hook_suffix, $gglstmp_plugin_info, $gglstmp_options;
1254
 
1255
  if ( 'plugins.php' == $hook_suffix ) {
1256
+ if ( ! $gglstmp_options ) {
1257
  gglstmp_register_settings();
1258
+ }
1259
 
1260
+ if ( isset( $gglstmp_options['first_install'] ) && strtotime( '-1 week' ) > $gglstmp_options['first_install'] ) {
1261
  bws_plugin_banner( $gglstmp_plugin_info, 'gglstmp', 'google-sitemap', '8fbb5d23fd00bdcb213d6c0985d16ec5', '83', '//ps.w.org/google-sitemap-plugin/assets/icon-128x128.png' );
1262
+ }
1263
 
1264
  bws_plugin_banner_to_settings( $gglstmp_plugin_info, 'gglstmp_options', 'google-sitemap-plugin', 'admin.php?page=google-sitemap-plugin.php' );
1265
  }
1266
 
1267
+ if ( isset( $_REQUEST['page'] ) && 'google-sitemap-plugin.php' == $_REQUEST['page'] ) {
1268
  bws_plugin_suggest_feature_banner( $gglstmp_plugin_info, 'gglstmp_options', 'google-sitemap-plugin' );
1269
+ }
1270
  }
1271
  }
1272
 
1297
  $blog_details = get_blog_details( $blog_id );
1298
  if (
1299
  ! is_object( $blog_details ) ||
1300
+ 1 == $blog_details->archived ||
1301
+ 1 == $blog_details->deleted ||
1302
+ 1 == $blog_details->spam
1303
+ ) {
1304
  return;
1305
+ }
1306
  }
1307
 
1308
  gglstmp_schedule_sitemap( $blog_id );
1331
  if ( ! function_exists( 'gglstmp_delete_settings' ) ) {
1332
  function gglstmp_delete_settings() {
1333
  global $wpdb;
1334
+ if ( ! function_exists( 'get_plugins' ) ) {
1335
  require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
1336
+ }
1337
  $all_plugins = get_plugins();
1338
 
1339
  if ( ! array_key_exists( 'google-sitemap-pro/google-sitemap-pro.php', $all_plugins ) ) {
1372
  add_action( 'admin_enqueue_scripts', 'gglstmp_add_plugin_stylesheet' );
1373
 
1374
  add_action( 'transition_post_status', 'gglstmp_check_post_status', 10, 3 );
1375
+ add_action( 'save_post', 'gglstmp_update_sitemap', 10, 2 );
1376
  add_action( 'trashed_post', 'gglstmp_update_sitemap' );
1377
 
1378
  add_action( 'gglstmp_sitemap_cron','gglstmp_prepare_sitemap' );
1379
 
1380
  /* rebuild sitemap on permalink structure change, on taxonomy term add/edit/delete */
1381
  add_action( 'permalink_structure_changed','gglstmp_schedule_sitemap', 10, 0 );
1382
+ add_action( 'created_term','gglstmp_edited_term', 10, 3 );
1383
+ add_action( 'edited_term','gglstmp_edited_term', 10, 3 );
1384
+ add_action( 'delete_term','gglstmp_edited_term', 10, 3 );
1385
 
1386
  add_filter( 'rewrite_rules_array','gglstmp_rewrite_rules', PHP_INT_MAX, 1 );
1387
 
includes/class-gglstmp-settings.php CHANGED
@@ -114,7 +114,7 @@ if ( ! class_exists( 'Gglstmp_Settings_Tabs' ) ) {
114
  } else {
115
 
116
  if ( $this->htaccess_active && $this->htaccess_options && function_exists( 'htccss_generate_htaccess' ) ) {
117
- $gglstmp_allow_xml = ( isset( $_POST[ 'gglstmp_allow_xml' ] ) && $_POST[ 'gglstmp_allow_xml' ] == 1 ) ? 1 : 0;
118
  if ( $gglstmp_allow_xml != $this->htaccess_options['allow_xml'] ) {
119
  $this->htaccess_options['allow_xml'] = $gglstmp_allow_xml;
120
  update_site_option( 'htccss_options', $this->htaccess_options );
@@ -124,15 +124,17 @@ if ( ! class_exists( 'Gglstmp_Settings_Tabs' ) ) {
124
 
125
  $post_types = isset( $_REQUEST['gglstmp_post_types'] ) ? $_REQUEST['gglstmp_post_types'] : array();
126
  $taxonomies = isset( $_REQUEST['gglstmp_taxonomies'] ) ? $_REQUEST['gglstmp_taxonomies'] : array();
127
- if ( $this->options['post_type'] != $post_types || $this->options['taxonomy'] != $taxonomies )
128
  $sitemapcreate = true;
 
129
 
130
  $this->options['post_type'] = $post_types;
131
  $this->options['taxonomy'] = $taxonomies;
132
 
133
  if ( isset( $_POST['gglstmp_limit'] ) ) {
134
- if ( $this->options['limit'] != absint( $_POST['gglstmp_limit'] ) )
135
  $sitemapcreate = true;
 
136
 
137
  $this->options['limit'] = ( absint( $_POST['gglstmp_limit'] ) >= 1000 && absint( $_POST['gglstmp_limit'] ) <= 50000 ) ? absint( $_POST['gglstmp_limit'] ) : 50000;
138
  }
@@ -141,8 +143,9 @@ if ( ! class_exists( 'Gglstmp_Settings_Tabs' ) ) {
141
  update_option( 'gglstmp_robots', $this->robots );
142
  update_option( 'gglstmp_options', $this->options );
143
 
144
- if ( isset( $sitemapcreate ) )
145
  gglstmp_schedule_sitemap();
 
146
 
147
  $message = __( 'Settings saved.', 'google-sitemap-plugin' );
148
  }
@@ -354,8 +357,8 @@ if ( ! class_exists( 'Gglstmp_Settings_Tabs' ) ) {
354
  return $default_options;
355
  }
356
 
357
-
358
  public function display_custom_messages( $save_results ) {
 
359
  if ( $this->is_multisite ) {
360
  $blog_id = get_current_blog_id();
361
  $xml_file = 'sitemap_' . $blog_id . '.xml';
@@ -364,42 +367,57 @@ if ( ! class_exists( 'Gglstmp_Settings_Tabs' ) ) {
364
  }
365
  $xml_url = home_url( '/' . $xml_file );
366
 
367
- if ( class_exists( 'Google_Client' ) && version_compare( Google_Client::LIBVER, '1.1.3', '!=' ) ) {
368
- /* Google Client library of some other product is used! */ ?>
369
- <div class="updated bws-notice inline">
370
- <p><strong><?php _e( 'Note', 'google-sitemap-plugin' ); ?>:&nbsp;</strong><?php _e( 'Another plugin is providing Google Client functionality and may interrupt proper plugin work.', 'google-sitemap-plugin' ); ?></p>
371
- </div>
372
- <?php }
 
 
 
 
 
 
 
 
 
373
 
374
- if ( $this->is_multisite && ! is_subdomain_install() && file_exists( ABSPATH . "sitemap_{$blog_id}.xml" ) && ( ! $this->htaccess_active || $this->htaccess_options['allow_xml'] == 0 ) ) {
375
- $status = gglstmp_check_sitemap( home_url( "/sitemap_{$blog_id}.xml" ) );
376
- if ( ! is_wp_error( $status ) && '200' != $status['code'] ) { ?>
 
 
 
 
 
 
 
 
 
 
377
  <div class="error below-h2">
378
  <p>
379
  <strong><?php _e( 'Error', 'google-sitemap-plugin' ); ?>:</strong> <?php
380
- printf( __( "Can't access XML files on subsites. Add the following rule %s to your %s file in %s after %s or install, activate and enable %s plugin option to resolve this error.", 'google-sitemap-plugin' ),
381
- '<code>RewriteRule ([^/]+\.xml)$ $1 [L]</code>',
382
  '<strong>.htaccess</strong>',
383
- sprintf( '<strong>"%s"</strong>', ABSPATH ),
384
- '<strong>"RewriteBase"</strong>',
385
- 'Htaccess'
386
  ); ?>
387
  </p>
388
  </div>
389
  <?php }
 
390
  } else {
391
- if ( file_exists( ABSPATH . $xml_file ) ) {
392
- printf(
393
- '<div class="updated bws-notice inline"><p><strong>%s</strong></p></div>',
394
- sprintf(
395
- __( "%s is in the site root directory.", 'google-sitemap-plugin' ),
396
- '<a href="' . $xml_url . '" target="_blank">' . __( 'The Sitemap file', 'google-sitemap-plugin' ) . '</a>'
397
- )
398
- );
399
- } else {
400
- gglstmp_schedule_sitemap();
401
- }
402
  }
 
 
 
 
 
 
 
403
  }
404
  }
405
  }
114
  } else {
115
 
116
  if ( $this->htaccess_active && $this->htaccess_options && function_exists( 'htccss_generate_htaccess' ) ) {
117
+ $gglstmp_allow_xml = ( isset( $_POST['gglstmp_allow_xml'] ) && 1 == $_POST['gglstmp_allow_xml'] ) ? 1 : 0;
118
  if ( $gglstmp_allow_xml != $this->htaccess_options['allow_xml'] ) {
119
  $this->htaccess_options['allow_xml'] = $gglstmp_allow_xml;
120
  update_site_option( 'htccss_options', $this->htaccess_options );
124
 
125
  $post_types = isset( $_REQUEST['gglstmp_post_types'] ) ? $_REQUEST['gglstmp_post_types'] : array();
126
  $taxonomies = isset( $_REQUEST['gglstmp_taxonomies'] ) ? $_REQUEST['gglstmp_taxonomies'] : array();
127
+ if ( $this->options['post_type'] != $post_types || $this->options['taxonomy'] != $taxonomies ) {
128
  $sitemapcreate = true;
129
+ }
130
 
131
  $this->options['post_type'] = $post_types;
132
  $this->options['taxonomy'] = $taxonomies;
133
 
134
  if ( isset( $_POST['gglstmp_limit'] ) ) {
135
+ if ( $this->options['limit'] != absint( $_POST['gglstmp_limit'] ) ) {
136
  $sitemapcreate = true;
137
+ }
138
 
139
  $this->options['limit'] = ( absint( $_POST['gglstmp_limit'] ) >= 1000 && absint( $_POST['gglstmp_limit'] ) <= 50000 ) ? absint( $_POST['gglstmp_limit'] ) : 50000;
140
  }
143
  update_option( 'gglstmp_robots', $this->robots );
144
  update_option( 'gglstmp_options', $this->options );
145
 
146
+ if ( isset( $sitemapcreate ) ) {
147
  gglstmp_schedule_sitemap();
148
+ }
149
 
150
  $message = __( 'Settings saved.', 'google-sitemap-plugin' );
151
  }
357
  return $default_options;
358
  }
359
 
 
360
  public function display_custom_messages( $save_results ) {
361
+
362
  if ( $this->is_multisite ) {
363
  $blog_id = get_current_blog_id();
364
  $xml_file = 'sitemap_' . $blog_id . '.xml';
367
  }
368
  $xml_url = home_url( '/' . $xml_file );
369
 
370
+ if ( isset( $xml_file ) && file_exists( ABSPATH . $xml_file ) ) {
371
+
372
+ printf(
373
+ '<div class="updated bws-notice inline"><p><strong>%s</strong></p></div>',
374
+ sprintf(
375
+ __( "%s is in the site root directory.", 'google-sitemap-plugin' ),
376
+ '<a href="' . $xml_url . '" target="_blank">' . __( 'The Sitemap file', 'google-sitemap-plugin' ) . '</a>'
377
+ )
378
+ );
379
+
380
+ if ( ! $this->is_multisite ) {
381
+ $status = gglstmp_check_sitemap( home_url( "/sitemap.xml" ) );
382
+ } else {
383
+ $status = gglstmp_check_sitemap( home_url( "/sitemap_{$blog_id}.xml" ) );
384
+ }
385
 
386
+ if ( ! is_wp_error( $status ) && '200' != $status['code'] ) {
387
+ if ( $this->is_multisite ) {
388
+ $home_url = network_home_url();
389
+ $site_url = network_site_url();
390
+ } else {
391
+ $home_url = home_url();
392
+ $site_url = site_url();
393
+ }
394
+ $home_dir = str_replace( $home_url, '', $site_url );
395
+ if ( '' != $home_dir ) {
396
+ $home_dir .= '/';
397
+ }
398
+ $replace = $home_dir . '$1'; ?>
399
  <div class="error below-h2">
400
  <p>
401
  <strong><?php _e( 'Error', 'google-sitemap-plugin' ); ?>:</strong> <?php
402
+ printf( __( "Can't access XML files. Try to add the following rule %s to your %s file which is located in the root of your website to resolve this error. Find the following line %s and paste the code just after it.", 'google-sitemap-plugin' ),
403
+ '<code>RewriteRule ([^/]+\.xml)$ ' . $replace . ' [L]</code>',
404
  '<strong>.htaccess</strong>',
405
+ '<strong>"RewriteBase /"</strong>'
 
 
406
  ); ?>
407
  </p>
408
  </div>
409
  <?php }
410
+
411
  } else {
412
+ gglstmp_schedule_sitemap();
 
 
 
 
 
 
 
 
 
 
413
  }
414
+
415
+ if ( class_exists( 'Google_Client' ) && version_compare( Google_Client::LIBVER, '1.1.3', '!=' ) ) {
416
+ /* Google Client library of some other product is used! */ ?>
417
+ <div class="updated bws-notice inline">
418
+ <p><strong><?php _e( 'Note', 'google-sitemap-plugin' ); ?>:&nbsp;</strong><?php _e( 'Another plugin is providing Google Client functionality and may interrupt proper plugin work.', 'google-sitemap-plugin' ); ?></p>
419
+ </div>
420
+ <?php }
421
  }
422
  }
423
  }
includes/deprecated.php CHANGED
@@ -3,50 +3,6 @@
3
  * Includes deprecated functions
4
  */
5
 
6
- /**
7
- * Renaming old version options
8
- * @deprecated since 3.0.8
9
- * @todo remove after 28.10.2017
10
- */
11
- if ( ! function_exists( 'gglstmp_check_old_options' ) ) {
12
- function gglstmp_check_old_options() {
13
- if ( is_multisite() ) {
14
- global $wpdb;
15
- if ( get_site_option( 'gglstmp_settings' ) ) {
16
- $old_options = get_site_option( 'gglstmp_settings' );
17
- if ( ! get_site_option( 'gglstmp_options' ) )
18
- add_site_option( 'gglstmp_options', $old_options );
19
- else
20
- update_site_option( 'gglstmp_options', $old_options );
21
- delete_site_option( 'gglstmp_settings' );
22
- }
23
- $blogids = $wpdb->get_col( "SELECT `blog_id` FROM $wpdb->blogs" );
24
- $old_blog = $wpdb->blogid;
25
- foreach ( $blogids as $blog_id ) {
26
- switch_to_blog( $blog_id );
27
- if ( get_option( 'gglstmp_settings' ) ) {
28
- $old_options = get_option( 'gglstmp_settings' );
29
- if ( ! get_option( 'gglstmp_options' ) )
30
- add_option( 'gglstmp_options', $old_options );
31
- else
32
- update_option( 'gglstmp_options', $old_options );
33
- delete_option( 'gglstmp_settings' );
34
- }
35
- }
36
- switch_to_blog( $old_blog );
37
- } else {
38
- if ( get_option( 'gglstmp_settings' ) ) {
39
- $old_options = get_option( 'gglstmp_settings' );
40
- if ( ! get_option( 'gglstmp_options' ) )
41
- add_option( 'gglstmp_options', $old_options );
42
- else
43
- update_option( 'gglstmp_options', $old_options );
44
- delete_option( 'gglstmp_settings' );
45
- }
46
- }
47
- }
48
- }
49
-
50
  /**
51
  * Remove sitemap directive from robots.txt when removing plugin
52
  * @deprecated since 3.1.0
3
  * Includes deprecated functions
4
  */
5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6
  /**
7
  * Remove sitemap directive from robots.txt when removing plugin
8
  * @deprecated since 3.1.0
languages/google-sitemap-plugin-cs_CZ.mo CHANGED
Binary file
languages/google-sitemap-plugin-cs_CZ.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Google Sitemap - BWS\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2017-08-30 14:34+0300\n"
6
- "PO-Revision-Date: 2017-08-30 14:34+0300\n"
7
  "Last-Translator: Mik013\n"
8
  "Language-Team: Mik013\n"
9
  "Language: cs_CZ\n"
@@ -22,14 +22,14 @@ msgstr ""
22
  msgid "Google Sitemap Settings"
23
  msgstr "Nastavení Google Sitemap"
24
 
25
- #: google-sitemap-plugin.php:49 google-sitemap-plugin.php:808
26
- #: google-sitemap-plugin.php:1190 google-sitemap-plugin.php:1203
27
  #: includes/class-gglstmp-settings.php:27
28
  msgid "Settings"
29
  msgstr "Nastavení"
30
 
31
  #: google-sitemap-plugin.php:57 google-sitemap-plugin.php:58
32
- #: google-sitemap-plugin.php:813
33
  msgid "Custom Links"
34
  msgstr "Uživatelské odkazy"
35
 
@@ -37,141 +37,141 @@ msgstr "Uživatelské odkazy"
37
  msgid "Upgrade to Pro"
38
  msgstr "Aktualizovat na Pro"
39
 
40
- #: google-sitemap-plugin.php:343
41
  msgid "Post categories"
42
  msgstr "Rubriky příspěvků"
43
 
44
- #: google-sitemap-plugin.php:344
45
  msgid "Post tags"
46
  msgstr "Štítky příspěvků"
47
 
48
- #: google-sitemap-plugin.php:809
49
  msgid "Please enable JavaScript in your browser."
50
  msgstr "Prosím, povolte JavaScript ve vašem prohlížeči."
51
 
52
- #: google-sitemap-plugin.php:814
53
  msgid "Add New"
54
  msgstr "Přidat nový"
55
 
56
- #: google-sitemap-plugin.php:856 google-sitemap-plugin.php:933
57
- #: google-sitemap-plugin.php:983
58
  msgid "Website"
59
  msgstr "Webová stránka"
60
 
61
- #: google-sitemap-plugin.php:867 google-sitemap-plugin.php:871
62
- #: google-sitemap-plugin.php:949 google-sitemap-plugin.php:965
63
- #: google-sitemap-plugin.php:987 google-sitemap-plugin.php:1001
64
  msgid "Status"
65
  msgstr "Stav"
66
 
67
- #: google-sitemap-plugin.php:868 google-sitemap-plugin.php:891
68
- #: google-sitemap-plugin.php:966
69
  msgid "Not added"
70
  msgstr "Nepřidáno"
71
 
72
- #: google-sitemap-plugin.php:872 google-sitemap-plugin.php:894
73
- #: google-sitemap-plugin.php:988 google-sitemap-plugin.php:1097
74
  msgid "Added"
75
  msgstr "Přidáno"
76
 
77
- #: google-sitemap-plugin.php:874 google-sitemap-plugin.php:1043
78
- #: google-sitemap-plugin.php:1055 google-sitemap-plugin.php:1069
79
  msgid "Verification Status"
80
  msgstr "Stav ověření"
81
 
82
- #: google-sitemap-plugin.php:876
83
  msgid "Verified"
84
  msgstr "Ověřeno"
85
 
86
- #: google-sitemap-plugin.php:878
87
  msgid "Not verified"
88
  msgstr "Nevěřeno"
89
 
90
- #: google-sitemap-plugin.php:886 google-sitemap-plugin.php:1076
91
  msgid "Sitemap Status"
92
  msgstr "Stav sitemap.xml"
93
 
94
- #: google-sitemap-plugin.php:896
95
  msgid "Added with errors."
96
  msgstr "Přidáno s chybami."
97
 
98
- #: google-sitemap-plugin.php:896
99
  msgid "View errors in Google Webmaster Tools"
100
  msgstr "Zobrazit chyby v Google Webmaster Tools"
101
 
102
- #: google-sitemap-plugin.php:899
103
  msgid "Sitemap URL"
104
  msgstr "URL sitemap.xml"
105
 
106
- #: google-sitemap-plugin.php:902 google-sitemap-plugin.php:918
107
- #: google-sitemap-plugin.php:968 google-sitemap-plugin.php:1003
108
- #: google-sitemap-plugin.php:1040 google-sitemap-plugin.php:1071
109
- #: google-sitemap-plugin.php:1110 google-sitemap-plugin.php:1129
110
  #: includes/class-gglstmp-settings.php:379
111
  msgid "Error"
112
  msgstr "Chyba"
113
 
114
- #: google-sitemap-plugin.php:902
115
  msgid "Please check the sitemap file manually."
116
  msgstr "Zkontrolujte soubor sitemap.xml manuálně."
117
 
118
- #: google-sitemap-plugin.php:902 google-sitemap-plugin.php:920
119
- #: google-sitemap-plugin.php:1005 google-sitemap-plugin.php:1044
120
- #: google-sitemap-plugin.php:1073 google-sitemap-plugin.php:1112
121
  #: includes/class-gglstmp-settings.php:233 includes/pro_banners.php:47
122
  msgid "Learn More"
123
  msgstr "Více informací"
124
 
125
- #: google-sitemap-plugin.php:907 google-sitemap-plugin.php:956
126
- #: google-sitemap-plugin.php:991 google-sitemap-plugin.php:1028
127
- #: google-sitemap-plugin.php:1059 google-sitemap-plugin.php:1100
128
  msgid "Unexpected error"
129
  msgstr "Neočekávaná chyba"
130
 
131
- #: google-sitemap-plugin.php:920 google-sitemap-plugin.php:1005
132
- #: google-sitemap-plugin.php:1073
133
  msgid "Manual verification required."
134
  msgstr "Je vyžadováno ruční ověření."
135
 
136
- #: google-sitemap-plugin.php:950
137
  msgid "Deleted"
138
  msgstr "Odstraněno"
139
 
140
- #: google-sitemap-plugin.php:1020 google-sitemap-plugin.php:1023
141
- #: google-sitemap-plugin.php:1039
142
  msgid "Verification Code"
143
  msgstr "Ověřovací kód"
144
 
145
- #: google-sitemap-plugin.php:1021
146
  msgid "Received and added to the site"
147
  msgstr "Přijato a přidáno na web"
148
 
149
- #: google-sitemap-plugin.php:1024
150
  msgid "Received, but has not been added to the site"
151
  msgstr "Přijato avšak nepřidáno na web"
152
 
153
- #: google-sitemap-plugin.php:1112
154
  msgid "Please add the sitemap file manually."
155
  msgstr "Přidejte soubor sitemap.xml manuálně."
156
 
157
- #: google-sitemap-plugin.php:1117
158
  msgid "Error 404"
159
  msgstr "Chyba 404"
160
 
161
- #: google-sitemap-plugin.php:1119
162
  #, php-format
163
  msgid "The sitemap file %s not found."
164
  msgstr "Soubor sitemap.xml %s nebyl nalezen."
165
 
166
- #: google-sitemap-plugin.php:1129
167
  msgid "The sitemap file not found."
168
  msgstr "Soubor sitemap.xml nebyl nalezen."
169
 
170
- #: google-sitemap-plugin.php:1204
171
  msgid "FAQ"
172
  msgstr "Časté dotazy (FAQ)"
173
 
174
- #: google-sitemap-plugin.php:1205
175
  msgid "Support"
176
  msgstr "Podpora"
177
 
2
  msgstr ""
3
  "Project-Id-Version: Google Sitemap - BWS\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-11-22 11:01+0200\n"
6
+ "PO-Revision-Date: 2017-11-22 11:01+0200\n"
7
  "Last-Translator: Mik013\n"
8
  "Language-Team: Mik013\n"
9
  "Language: cs_CZ\n"
22
  msgid "Google Sitemap Settings"
23
  msgstr "Nastavení Google Sitemap"
24
 
25
+ #: google-sitemap-plugin.php:49 google-sitemap-plugin.php:820
26
+ #: google-sitemap-plugin.php:1212 google-sitemap-plugin.php:1225
27
  #: includes/class-gglstmp-settings.php:27
28
  msgid "Settings"
29
  msgstr "Nastavení"
30
 
31
  #: google-sitemap-plugin.php:57 google-sitemap-plugin.php:58
32
+ #: google-sitemap-plugin.php:825
33
  msgid "Custom Links"
34
  msgstr "Uživatelské odkazy"
35
 
37
  msgid "Upgrade to Pro"
38
  msgstr "Aktualizovat na Pro"
39
 
40
+ #: google-sitemap-plugin.php:355
41
  msgid "Post categories"
42
  msgstr "Rubriky příspěvků"
43
 
44
+ #: google-sitemap-plugin.php:356
45
  msgid "Post tags"
46
  msgstr "Štítky příspěvků"
47
 
48
+ #: google-sitemap-plugin.php:821
49
  msgid "Please enable JavaScript in your browser."
50
  msgstr "Prosím, povolte JavaScript ve vašem prohlížeči."
51
 
52
+ #: google-sitemap-plugin.php:826
53
  msgid "Add New"
54
  msgstr "Přidat nový"
55
 
56
+ #: google-sitemap-plugin.php:868 google-sitemap-plugin.php:955
57
+ #: google-sitemap-plugin.php:1005
58
  msgid "Website"
59
  msgstr "Webová stránka"
60
 
61
+ #: google-sitemap-plugin.php:879 google-sitemap-plugin.php:883
62
+ #: google-sitemap-plugin.php:971 google-sitemap-plugin.php:987
63
+ #: google-sitemap-plugin.php:1009 google-sitemap-plugin.php:1023
64
  msgid "Status"
65
  msgstr "Stav"
66
 
67
+ #: google-sitemap-plugin.php:880 google-sitemap-plugin.php:913
68
+ #: google-sitemap-plugin.php:988
69
  msgid "Not added"
70
  msgstr "Nepřidáno"
71
 
72
+ #: google-sitemap-plugin.php:884 google-sitemap-plugin.php:916
73
+ #: google-sitemap-plugin.php:1010 google-sitemap-plugin.php:1119
74
  msgid "Added"
75
  msgstr "Přidáno"
76
 
77
+ #: google-sitemap-plugin.php:886 google-sitemap-plugin.php:1065
78
+ #: google-sitemap-plugin.php:1077 google-sitemap-plugin.php:1091
79
  msgid "Verification Status"
80
  msgstr "Stav ověření"
81
 
82
+ #: google-sitemap-plugin.php:888 google-sitemap-plugin.php:1078
83
  msgid "Verified"
84
  msgstr "Ověřeno"
85
 
86
+ #: google-sitemap-plugin.php:890
87
  msgid "Not verified"
88
  msgstr "Nevěřeno"
89
 
90
+ #: google-sitemap-plugin.php:898 google-sitemap-plugin.php:1098
91
  msgid "Sitemap Status"
92
  msgstr "Stav sitemap.xml"
93
 
94
+ #: google-sitemap-plugin.php:918
95
  msgid "Added with errors."
96
  msgstr "Přidáno s chybami."
97
 
98
+ #: google-sitemap-plugin.php:918
99
  msgid "View errors in Google Webmaster Tools"
100
  msgstr "Zobrazit chyby v Google Webmaster Tools"
101
 
102
+ #: google-sitemap-plugin.php:921
103
  msgid "Sitemap URL"
104
  msgstr "URL sitemap.xml"
105
 
106
+ #: google-sitemap-plugin.php:924 google-sitemap-plugin.php:940
107
+ #: google-sitemap-plugin.php:990 google-sitemap-plugin.php:1025
108
+ #: google-sitemap-plugin.php:1062 google-sitemap-plugin.php:1093
109
+ #: google-sitemap-plugin.php:1132 google-sitemap-plugin.php:1151
110
  #: includes/class-gglstmp-settings.php:379
111
  msgid "Error"
112
  msgstr "Chyba"
113
 
114
+ #: google-sitemap-plugin.php:924
115
  msgid "Please check the sitemap file manually."
116
  msgstr "Zkontrolujte soubor sitemap.xml manuálně."
117
 
118
+ #: google-sitemap-plugin.php:924 google-sitemap-plugin.php:942
119
+ #: google-sitemap-plugin.php:1027 google-sitemap-plugin.php:1066
120
+ #: google-sitemap-plugin.php:1095 google-sitemap-plugin.php:1134
121
  #: includes/class-gglstmp-settings.php:233 includes/pro_banners.php:47
122
  msgid "Learn More"
123
  msgstr "Více informací"
124
 
125
+ #: google-sitemap-plugin.php:929 google-sitemap-plugin.php:978
126
+ #: google-sitemap-plugin.php:1013 google-sitemap-plugin.php:1050
127
+ #: google-sitemap-plugin.php:1081 google-sitemap-plugin.php:1122
128
  msgid "Unexpected error"
129
  msgstr "Neočekávaná chyba"
130
 
131
+ #: google-sitemap-plugin.php:942 google-sitemap-plugin.php:1027
132
+ #: google-sitemap-plugin.php:1095
133
  msgid "Manual verification required."
134
  msgstr "Je vyžadováno ruční ověření."
135
 
136
+ #: google-sitemap-plugin.php:972
137
  msgid "Deleted"
138
  msgstr "Odstraněno"
139
 
140
+ #: google-sitemap-plugin.php:1042 google-sitemap-plugin.php:1045
141
+ #: google-sitemap-plugin.php:1061
142
  msgid "Verification Code"
143
  msgstr "Ověřovací kód"
144
 
145
+ #: google-sitemap-plugin.php:1043
146
  msgid "Received and added to the site"
147
  msgstr "Přijato a přidáno na web"
148
 
149
+ #: google-sitemap-plugin.php:1046
150
  msgid "Received, but has not been added to the site"
151
  msgstr "Přijato avšak nepřidáno na web"
152
 
153
+ #: google-sitemap-plugin.php:1134
154
  msgid "Please add the sitemap file manually."
155
  msgstr "Přidejte soubor sitemap.xml manuálně."
156
 
157
+ #: google-sitemap-plugin.php:1139
158
  msgid "Error 404"
159
  msgstr "Chyba 404"
160
 
161
+ #: google-sitemap-plugin.php:1141
162
  #, php-format
163
  msgid "The sitemap file %s not found."
164
  msgstr "Soubor sitemap.xml %s nebyl nalezen."
165
 
166
+ #: google-sitemap-plugin.php:1151
167
  msgid "The sitemap file not found."
168
  msgstr "Soubor sitemap.xml nebyl nalezen."
169
 
170
+ #: google-sitemap-plugin.php:1226
171
  msgid "FAQ"
172
  msgstr "Časté dotazy (FAQ)"
173
 
174
+ #: google-sitemap-plugin.php:1227
175
  msgid "Support"
176
  msgstr "Podpora"
177
 
languages/google-sitemap-plugin-es_ES.mo CHANGED
Binary file
languages/google-sitemap-plugin-es_ES.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Google Sitemap\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2017-08-14 20:18+0300\n"
6
- "PO-Revision-Date: 2017-08-14 20:18+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: BestWebSoft <wp@bestwebsoft.com>\n"
9
  "Language: es_ES\n"
@@ -13,7 +13,7 @@ msgstr ""
13
  "X-Poedit-KeywordsList: __;_e;_n:1,2c;_x:1,2c\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
- "X-Generator: Poedit 1.5.4\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
@@ -22,14 +22,14 @@ msgstr ""
22
  msgid "Google Sitemap Settings"
23
  msgstr "Ajustes de Google Sitemap"
24
 
25
- #: google-sitemap-plugin.php:49 google-sitemap-plugin.php:808
26
- #: google-sitemap-plugin.php:1189 google-sitemap-plugin.php:1202
27
  #: includes/class-gglstmp-settings.php:27
28
  msgid "Settings"
29
  msgstr "Configuración"
30
 
31
  #: google-sitemap-plugin.php:57 google-sitemap-plugin.php:58
32
- #: google-sitemap-plugin.php:813
33
  msgid "Custom Links"
34
  msgstr ""
35
 
@@ -37,274 +37,144 @@ msgstr ""
37
  msgid "Upgrade to Pro"
38
  msgstr ""
39
 
40
- #: google-sitemap-plugin.php:343
41
  msgid "Post categories"
42
  msgstr ""
43
 
44
- #: google-sitemap-plugin.php:344
45
  msgid "Post tags"
46
  msgstr ""
47
 
48
- #: google-sitemap-plugin.php:809
49
  msgid "Please enable JavaScript in your browser."
50
  msgstr ""
51
 
52
- #: google-sitemap-plugin.php:814
53
  msgid "Add New"
54
  msgstr ""
55
 
56
- #: google-sitemap-plugin.php:855 google-sitemap-plugin.php:932
57
- #: google-sitemap-plugin.php:982
58
  msgid "Website"
59
  msgstr ""
60
 
61
- #: google-sitemap-plugin.php:866 google-sitemap-plugin.php:870
62
- #: google-sitemap-plugin.php:948 google-sitemap-plugin.php:964
63
- #: google-sitemap-plugin.php:986 google-sitemap-plugin.php:1000
64
  msgid "Status"
65
  msgstr ""
66
 
67
- #: google-sitemap-plugin.php:867 google-sitemap-plugin.php:890
68
- #: google-sitemap-plugin.php:965
69
  msgid "Not added"
70
  msgstr ""
71
 
72
- #: google-sitemap-plugin.php:871 google-sitemap-plugin.php:893
73
- #: google-sitemap-plugin.php:987 google-sitemap-plugin.php:1096
74
  msgid "Added"
75
  msgstr ""
76
 
77
- #: google-sitemap-plugin.php:873 google-sitemap-plugin.php:1042
78
- #: google-sitemap-plugin.php:1054 google-sitemap-plugin.php:1068
79
  msgid "Verification Status"
80
  msgstr ""
81
 
82
- #: google-sitemap-plugin.php:875
83
  msgid "Verified"
84
  msgstr ""
85
 
86
- #: google-sitemap-plugin.php:877
87
  msgid "Not verified"
88
  msgstr ""
89
 
90
- #: google-sitemap-plugin.php:885 google-sitemap-plugin.php:1075
91
  msgid "Sitemap Status"
92
  msgstr ""
93
 
94
- #: google-sitemap-plugin.php:895
95
  msgid "Added with errors."
96
  msgstr ""
97
 
98
- #: google-sitemap-plugin.php:895
99
  msgid "View errors in Google Webmaster Tools"
100
  msgstr ""
101
 
102
- #: google-sitemap-plugin.php:898
103
  msgid "Sitemap URL"
104
  msgstr "Sitemap URL"
105
 
106
- #: google-sitemap-plugin.php:901 google-sitemap-plugin.php:917
107
- #: google-sitemap-plugin.php:967 google-sitemap-plugin.php:1002
108
- #: google-sitemap-plugin.php:1039 google-sitemap-plugin.php:1070
109
- #: google-sitemap-plugin.php:1109 google-sitemap-plugin.php:1128
110
  #: includes/class-gglstmp-settings.php:379
111
  msgid "Error"
112
  msgstr ""
113
 
114
- #: google-sitemap-plugin.php:901
115
  msgid "Please check the sitemap file manually."
116
  msgstr ""
117
 
118
- #: google-sitemap-plugin.php:901 google-sitemap-plugin.php:919
119
- #: google-sitemap-plugin.php:1004 google-sitemap-plugin.php:1043
120
- #: google-sitemap-plugin.php:1072 google-sitemap-plugin.php:1111
121
- #: includes/pro_banners.php:47 includes/class-gglstmp-settings.php:233
122
  msgid "Learn More"
123
  msgstr "Aprende más"
124
 
125
- #: google-sitemap-plugin.php:906 google-sitemap-plugin.php:955
126
- #: google-sitemap-plugin.php:990 google-sitemap-plugin.php:1027
127
- #: google-sitemap-plugin.php:1058 google-sitemap-plugin.php:1099
128
  msgid "Unexpected error"
129
  msgstr ""
130
 
131
- #: google-sitemap-plugin.php:919 google-sitemap-plugin.php:1004
132
- #: google-sitemap-plugin.php:1072
133
  msgid "Manual verification required."
134
  msgstr ""
135
 
136
- #: google-sitemap-plugin.php:949
137
  msgid "Deleted"
138
  msgstr ""
139
 
140
- #: google-sitemap-plugin.php:1019 google-sitemap-plugin.php:1022
141
- #: google-sitemap-plugin.php:1038
142
  msgid "Verification Code"
143
  msgstr ""
144
 
145
- #: google-sitemap-plugin.php:1020
146
  msgid "Received and added to the site"
147
  msgstr ""
148
 
149
- #: google-sitemap-plugin.php:1023
150
  msgid "Received, but has not been added to the site"
151
  msgstr ""
152
 
153
- #: google-sitemap-plugin.php:1111
154
  msgid "Please add the sitemap file manually."
155
  msgstr ""
156
 
157
- #: google-sitemap-plugin.php:1116
158
  msgid "Error 404"
159
  msgstr ""
160
 
161
- #: google-sitemap-plugin.php:1118
162
  #, php-format
163
  msgid "The sitemap file %s not found."
164
  msgstr ""
165
 
166
- #: google-sitemap-plugin.php:1128
167
  msgid "The sitemap file not found."
168
  msgstr ""
169
 
170
- #: google-sitemap-plugin.php:1203
171
  msgid "FAQ"
172
  msgstr "FAQ"
173
 
174
- #: google-sitemap-plugin.php:1204
175
  msgid "Support"
176
  msgstr "Soporte"
177
 
178
- #: includes/pro_banners.php:18
179
- #, fuzzy
180
- msgid "This option is available in Pro version of plugin"
181
- msgstr "Esta configuración está disponible en la versión Pro"
182
-
183
- #: includes/pro_banners.php:21 includes/class-gglstmp-settings.php:218
184
- #: includes/class-gglstmp-settings.php:323
185
- msgid "Close"
186
- msgstr "Cerrar"
187
-
188
- #: includes/pro_banners.php:42 includes/pro_banners.php:106
189
- #: includes/pro_banners.php:185
190
- msgid "Change Frequency"
191
- msgstr "Cambiar la frecuencia "
192
-
193
- #: includes/pro_banners.php:45 includes/pro_banners.php:143
194
- #: includes/pro_banners.php:151 includes/pro_banners.php:159
195
- #: includes/pro_banners.php:167 includes/pro_banners.php:175
196
- msgid "Monthly"
197
- msgstr "Mensual"
198
-
199
- #: includes/pro_banners.php:47
200
- msgid ""
201
- "This value provides general information to search engines and tell them how "
202
- "frequently the page is likely to change. It may not correlate exactly to how "
203
- "often they crawl the website."
204
- msgstr ""
205
-
206
- #: includes/pro_banners.php:51
207
- msgid "External Sitemap Update Frequency"
208
- msgstr ""
209
-
210
- #: includes/pro_banners.php:53
211
- msgid "day(-s)"
212
- msgstr ""
213
-
214
- #: includes/pro_banners.php:55
215
- msgid ""
216
- "This option sets how often the external index sitemap files should be "
217
- "checked for updates."
218
- msgstr ""
219
-
220
- #: includes/pro_banners.php:69
221
- msgid "Example of site pages' tree"
222
- msgstr "Ejemplo de sitio páginas árbol "
223
-
224
- #: includes/pro_banners.php:82
225
- msgid "All"
226
- msgstr ""
227
-
228
- #: includes/pro_banners.php:83
229
- msgid "Enabled"
230
- msgstr ""
231
-
232
- #: includes/pro_banners.php:84
233
- msgid "Disabled"
234
- msgstr ""
235
-
236
- #: includes/pro_banners.php:88
237
- msgid "Search"
238
- msgstr "Buscar"
239
-
240
- #: includes/pro_banners.php:93
241
- msgid "Bulk Actions"
242
- msgstr "Acciones masivas"
243
-
244
- #: includes/pro_banners.php:95
245
- msgid "Apply"
246
- msgstr "Aplicar"
247
-
248
- #: includes/pro_banners.php:97
249
- msgid "items"
250
- msgstr ""
251
-
252
- #: includes/pro_banners.php:105 includes/pro_banners.php:184
253
- msgid "Priority"
254
- msgstr "Prioridad"
255
-
256
- #: includes/pro_banners.php:107 includes/pro_banners.php:186
257
- msgid "Last Changed"
258
- msgstr "Último cambio"
259
-
260
- #: includes/pro_banners.php:116
261
- msgid "Please note"
262
- msgstr "Tenga en cuenta"
263
-
264
- #: includes/pro_banners.php:117
265
- #, fuzzy
266
- msgid ""
267
- "All URLs listed in the sitemap.xml must use the same protocol (HTTP or "
268
- "HTTPS) and must be located on the same host as the sitemap.xml. For more "
269
- "info see"
270
- msgstr ""
271
- "Todas las URL enumeradas en el sitemap.xml deben utilizar el mismo protocolo "
272
- "(HTTP o HTTPS) y residir en el mismo host como el sitemap.xml. Para obtener "
273
- "más información, vea"
274
-
275
- #: includes/pro_banners.php:117
276
- msgid "here"
277
- msgstr "aquí"
278
-
279
- #: includes/pro_banners.php:124
280
- msgid "Always"
281
- msgstr "Siempre"
282
-
283
- #: includes/pro_banners.php:128
284
- msgid "Save"
285
- msgstr ""
286
-
287
- #: includes/pro_banners.php:136
288
- msgid "Edit"
289
- msgstr ""
290
-
291
- #: includes/pro_banners.php:137
292
- msgid "Disable"
293
- msgstr ""
294
-
295
- #: includes/pro_banners.php:138 includes/class-gglstmp-settings.php:253
296
- msgid "Delete"
297
- msgstr ""
298
-
299
- #: includes/pro_banners.php:141
300
- msgid "Yes"
301
- msgstr ""
302
-
303
- #: includes/pro_banners.php:149 includes/pro_banners.php:157
304
- #: includes/pro_banners.php:165 includes/pro_banners.php:173
305
- msgid "No"
306
- msgstr ""
307
-
308
  #: includes/class-gglstmp-settings.php:28
309
  msgid "Structure"
310
  msgstr ""
@@ -371,6 +241,11 @@ msgstr ""
371
  msgid "The following string will be added to your .htaccess file"
372
  msgstr "La siguiente cuerda se añadirá al su archivo .htaccess"
373
 
 
 
 
 
 
374
  #: includes/class-gglstmp-settings.php:229
375
  msgid "URLs Limit"
376
  msgstr ""
@@ -412,6 +287,10 @@ msgstr ""
412
  msgid "Add"
413
  msgstr ""
414
 
 
 
 
 
415
  #: includes/class-gglstmp-settings.php:254
416
  msgid "Get Info"
417
  msgstr ""
@@ -497,6 +376,127 @@ msgstr ""
497
  msgid "The Sitemap file"
498
  msgstr "El archivo de Sitemap"
499
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
500
  #~ msgid "Cannot edit \"robots.txt\". Check your permissions"
501
  #~ msgstr "No puede editar \"robots.txt\". Compruebe los permisos del usuario"
502
 
2
  msgstr ""
3
  "Project-Id-Version: Google Sitemap\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-11-22 11:01+0200\n"
6
+ "PO-Revision-Date: 2017-11-22 11:01+0200\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: BestWebSoft <wp@bestwebsoft.com>\n"
9
  "Language: es_ES\n"
13
  "X-Poedit-KeywordsList: __;_e;_n:1,2c;_x:1,2c\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Generator: Poedit 1.8.7.1\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
22
  msgid "Google Sitemap Settings"
23
  msgstr "Ajustes de Google Sitemap"
24
 
25
+ #: google-sitemap-plugin.php:49 google-sitemap-plugin.php:820
26
+ #: google-sitemap-plugin.php:1212 google-sitemap-plugin.php:1225
27
  #: includes/class-gglstmp-settings.php:27
28
  msgid "Settings"
29
  msgstr "Configuración"
30
 
31
  #: google-sitemap-plugin.php:57 google-sitemap-plugin.php:58
32
+ #: google-sitemap-plugin.php:825
33
  msgid "Custom Links"
34
  msgstr ""
35
 
37
  msgid "Upgrade to Pro"
38
  msgstr ""
39
 
40
+ #: google-sitemap-plugin.php:355
41
  msgid "Post categories"
42
  msgstr ""
43
 
44
+ #: google-sitemap-plugin.php:356
45
  msgid "Post tags"
46
  msgstr ""
47
 
48
+ #: google-sitemap-plugin.php:821
49
  msgid "Please enable JavaScript in your browser."
50
  msgstr ""
51
 
52
+ #: google-sitemap-plugin.php:826
53
  msgid "Add New"
54
  msgstr ""
55
 
56
+ #: google-sitemap-plugin.php:868 google-sitemap-plugin.php:955
57
+ #: google-sitemap-plugin.php:1005
58
  msgid "Website"
59
  msgstr ""
60
 
61
+ #: google-sitemap-plugin.php:879 google-sitemap-plugin.php:883
62
+ #: google-sitemap-plugin.php:971 google-sitemap-plugin.php:987
63
+ #: google-sitemap-plugin.php:1009 google-sitemap-plugin.php:1023
64
  msgid "Status"
65
  msgstr ""
66
 
67
+ #: google-sitemap-plugin.php:880 google-sitemap-plugin.php:913
68
+ #: google-sitemap-plugin.php:988
69
  msgid "Not added"
70
  msgstr ""
71
 
72
+ #: google-sitemap-plugin.php:884 google-sitemap-plugin.php:916
73
+ #: google-sitemap-plugin.php:1010 google-sitemap-plugin.php:1119
74
  msgid "Added"
75
  msgstr ""
76
 
77
+ #: google-sitemap-plugin.php:886 google-sitemap-plugin.php:1065
78
+ #: google-sitemap-plugin.php:1077 google-sitemap-plugin.php:1091
79
  msgid "Verification Status"
80
  msgstr ""
81
 
82
+ #: google-sitemap-plugin.php:888 google-sitemap-plugin.php:1078
83
  msgid "Verified"
84
  msgstr ""
85
 
86
+ #: google-sitemap-plugin.php:890
87
  msgid "Not verified"
88
  msgstr ""
89
 
90
+ #: google-sitemap-plugin.php:898 google-sitemap-plugin.php:1098
91
  msgid "Sitemap Status"
92
  msgstr ""
93
 
94
+ #: google-sitemap-plugin.php:918
95
  msgid "Added with errors."
96
  msgstr ""
97
 
98
+ #: google-sitemap-plugin.php:918
99
  msgid "View errors in Google Webmaster Tools"
100
  msgstr ""
101
 
102
+ #: google-sitemap-plugin.php:921
103
  msgid "Sitemap URL"
104
  msgstr "Sitemap URL"
105
 
106
+ #: google-sitemap-plugin.php:924 google-sitemap-plugin.php:940
107
+ #: google-sitemap-plugin.php:990 google-sitemap-plugin.php:1025
108
+ #: google-sitemap-plugin.php:1062 google-sitemap-plugin.php:1093
109
+ #: google-sitemap-plugin.php:1132 google-sitemap-plugin.php:1151
110
  #: includes/class-gglstmp-settings.php:379
111
  msgid "Error"
112
  msgstr ""
113
 
114
+ #: google-sitemap-plugin.php:924
115
  msgid "Please check the sitemap file manually."
116
  msgstr ""
117
 
118
+ #: google-sitemap-plugin.php:924 google-sitemap-plugin.php:942
119
+ #: google-sitemap-plugin.php:1027 google-sitemap-plugin.php:1066
120
+ #: google-sitemap-plugin.php:1095 google-sitemap-plugin.php:1134
121
+ #: includes/class-gglstmp-settings.php:233 includes/pro_banners.php:47
122
  msgid "Learn More"
123
  msgstr "Aprende más"
124
 
125
+ #: google-sitemap-plugin.php:929 google-sitemap-plugin.php:978
126
+ #: google-sitemap-plugin.php:1013 google-sitemap-plugin.php:1050
127
+ #: google-sitemap-plugin.php:1081 google-sitemap-plugin.php:1122
128
  msgid "Unexpected error"
129
  msgstr ""
130
 
131
+ #: google-sitemap-plugin.php:942 google-sitemap-plugin.php:1027
132
+ #: google-sitemap-plugin.php:1095
133
  msgid "Manual verification required."
134
  msgstr ""
135
 
136
+ #: google-sitemap-plugin.php:972
137
  msgid "Deleted"
138
  msgstr ""
139
 
140
+ #: google-sitemap-plugin.php:1042 google-sitemap-plugin.php:1045
141
+ #: google-sitemap-plugin.php:1061
142
  msgid "Verification Code"
143
  msgstr ""
144
 
145
+ #: google-sitemap-plugin.php:1043
146
  msgid "Received and added to the site"
147
  msgstr ""
148
 
149
+ #: google-sitemap-plugin.php:1046
150
  msgid "Received, but has not been added to the site"
151
  msgstr ""
152
 
153
+ #: google-sitemap-plugin.php:1134
154
  msgid "Please add the sitemap file manually."
155
  msgstr ""
156
 
157
+ #: google-sitemap-plugin.php:1139
158
  msgid "Error 404"
159
  msgstr ""
160
 
161
+ #: google-sitemap-plugin.php:1141
162
  #, php-format
163
  msgid "The sitemap file %s not found."
164
  msgstr ""
165
 
166
+ #: google-sitemap-plugin.php:1151
167
  msgid "The sitemap file not found."
168
  msgstr ""
169
 
170
+ #: google-sitemap-plugin.php:1226
171
  msgid "FAQ"
172
  msgstr "FAQ"
173
 
174
+ #: google-sitemap-plugin.php:1227
175
  msgid "Support"
176
  msgstr "Soporte"
177
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
178
  #: includes/class-gglstmp-settings.php:28
179
  msgid "Structure"
180
  msgstr ""
241
  msgid "The following string will be added to your .htaccess file"
242
  msgstr "La siguiente cuerda se añadirá al su archivo .htaccess"
243
 
244
+ #: includes/class-gglstmp-settings.php:218
245
+ #: includes/class-gglstmp-settings.php:323 includes/pro_banners.php:21
246
+ msgid "Close"
247
+ msgstr "Cerrar"
248
+
249
  #: includes/class-gglstmp-settings.php:229
250
  msgid "URLs Limit"
251
  msgstr ""
287
  msgid "Add"
288
  msgstr ""
289
 
290
+ #: includes/class-gglstmp-settings.php:253 includes/pro_banners.php:138
291
+ msgid "Delete"
292
+ msgstr ""
293
+
294
  #: includes/class-gglstmp-settings.php:254
295
  msgid "Get Info"
296
  msgstr ""
376
  msgid "The Sitemap file"
377
  msgstr "El archivo de Sitemap"
378
 
379
+ #: includes/pro_banners.php:18
380
+ #, fuzzy
381
+ msgid "This option is available in Pro version of plugin"
382
+ msgstr "Esta configuración está disponible en la versión Pro"
383
+
384
+ #: includes/pro_banners.php:42 includes/pro_banners.php:106
385
+ #: includes/pro_banners.php:185
386
+ msgid "Change Frequency"
387
+ msgstr "Cambiar la frecuencia "
388
+
389
+ #: includes/pro_banners.php:45 includes/pro_banners.php:143
390
+ #: includes/pro_banners.php:151 includes/pro_banners.php:159
391
+ #: includes/pro_banners.php:167 includes/pro_banners.php:175
392
+ msgid "Monthly"
393
+ msgstr "Mensual"
394
+
395
+ #: includes/pro_banners.php:47
396
+ msgid ""
397
+ "This value provides general information to search engines and tell them how "
398
+ "frequently the page is likely to change. It may not correlate exactly to how "
399
+ "often they crawl the website."
400
+ msgstr ""
401
+
402
+ #: includes/pro_banners.php:51
403
+ msgid "External Sitemap Update Frequency"
404
+ msgstr ""
405
+
406
+ #: includes/pro_banners.php:53
407
+ msgid "day(-s)"
408
+ msgstr ""
409
+
410
+ #: includes/pro_banners.php:55
411
+ msgid ""
412
+ "This option sets how often the external index sitemap files should be "
413
+ "checked for updates."
414
+ msgstr ""
415
+
416
+ #: includes/pro_banners.php:69
417
+ msgid "Example of site pages' tree"
418
+ msgstr "Ejemplo de sitio páginas árbol "
419
+
420
+ #: includes/pro_banners.php:82
421
+ msgid "All"
422
+ msgstr ""
423
+
424
+ #: includes/pro_banners.php:83
425
+ msgid "Enabled"
426
+ msgstr ""
427
+
428
+ #: includes/pro_banners.php:84
429
+ msgid "Disabled"
430
+ msgstr ""
431
+
432
+ #: includes/pro_banners.php:88
433
+ msgid "Search"
434
+ msgstr "Buscar"
435
+
436
+ #: includes/pro_banners.php:93
437
+ msgid "Bulk Actions"
438
+ msgstr "Acciones masivas"
439
+
440
+ #: includes/pro_banners.php:95
441
+ msgid "Apply"
442
+ msgstr "Aplicar"
443
+
444
+ #: includes/pro_banners.php:97
445
+ msgid "items"
446
+ msgstr ""
447
+
448
+ #: includes/pro_banners.php:105 includes/pro_banners.php:184
449
+ msgid "Priority"
450
+ msgstr "Prioridad"
451
+
452
+ #: includes/pro_banners.php:107 includes/pro_banners.php:186
453
+ msgid "Last Changed"
454
+ msgstr "Último cambio"
455
+
456
+ #: includes/pro_banners.php:116
457
+ msgid "Please note"
458
+ msgstr "Tenga en cuenta"
459
+
460
+ #: includes/pro_banners.php:117
461
+ #, fuzzy
462
+ msgid ""
463
+ "All URLs listed in the sitemap.xml must use the same protocol (HTTP or "
464
+ "HTTPS) and must be located on the same host as the sitemap.xml. For more "
465
+ "info see"
466
+ msgstr ""
467
+ "Todas las URL enumeradas en el sitemap.xml deben utilizar el mismo protocolo "
468
+ "(HTTP o HTTPS) y residir en el mismo host como el sitemap.xml. Para obtener "
469
+ "más información, vea"
470
+
471
+ #: includes/pro_banners.php:117
472
+ msgid "here"
473
+ msgstr "aquí"
474
+
475
+ #: includes/pro_banners.php:124
476
+ msgid "Always"
477
+ msgstr "Siempre"
478
+
479
+ #: includes/pro_banners.php:128
480
+ msgid "Save"
481
+ msgstr ""
482
+
483
+ #: includes/pro_banners.php:136
484
+ msgid "Edit"
485
+ msgstr ""
486
+
487
+ #: includes/pro_banners.php:137
488
+ msgid "Disable"
489
+ msgstr ""
490
+
491
+ #: includes/pro_banners.php:141
492
+ msgid "Yes"
493
+ msgstr ""
494
+
495
+ #: includes/pro_banners.php:149 includes/pro_banners.php:157
496
+ #: includes/pro_banners.php:165 includes/pro_banners.php:173
497
+ msgid "No"
498
+ msgstr ""
499
+
500
  #~ msgid "Cannot edit \"robots.txt\". Check your permissions"
501
  #~ msgstr "No puede editar \"robots.txt\". Compruebe los permisos del usuario"
502
 
languages/google-sitemap-plugin-ru_RU.mo CHANGED
Binary file
languages/google-sitemap-plugin-ru_RU.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Google Sitemap\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2017-08-14 20:18+0300\n"
6
- "PO-Revision-Date: 2017-08-14 20:24+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: BestWebSoft <plugin@bestwebsoft.com>\n"
9
  "Language: ru_RU\n"
@@ -13,24 +13,24 @@ msgstr ""
13
  "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
- "X-Generator: Poedit 1.5.4\n"
17
  "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
18
  "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
  #: google-sitemap-plugin.php:38 google-sitemap-plugin.php:48
22
- #: includes/class-gglstmp-settings.php:157
23
  msgid "Google Sitemap Settings"
24
  msgstr "Настройки Google Sitemap"
25
 
26
- #: google-sitemap-plugin.php:49 google-sitemap-plugin.php:808
27
- #: google-sitemap-plugin.php:1189 google-sitemap-plugin.php:1202
28
  #: includes/class-gglstmp-settings.php:27
29
  msgid "Settings"
30
  msgstr "Настройки"
31
 
32
  #: google-sitemap-plugin.php:57 google-sitemap-plugin.php:58
33
- #: google-sitemap-plugin.php:813
34
  msgid "Custom Links"
35
  msgstr "Пользовательские ссылки"
36
 
@@ -38,277 +38,144 @@ msgstr "Пользовательские ссылки"
38
  msgid "Upgrade to Pro"
39
  msgstr "Обновить до Pro"
40
 
41
- #: google-sitemap-plugin.php:343
42
  msgid "Post categories"
43
  msgstr "Рубрики записей"
44
 
45
- #: google-sitemap-plugin.php:344
46
  msgid "Post tags"
47
  msgstr "Метки записей"
48
 
49
- #: google-sitemap-plugin.php:809
50
  msgid "Please enable JavaScript in your browser."
51
  msgstr "Пожалуйста, включите поддержку JavaScript в вашем браузере."
52
 
53
- #: google-sitemap-plugin.php:814
54
  msgid "Add New"
55
  msgstr "Добавить ссылку"
56
 
57
- #: google-sitemap-plugin.php:855 google-sitemap-plugin.php:932
58
- #: google-sitemap-plugin.php:982
59
  msgid "Website"
60
  msgstr "Сайт"
61
 
62
- #: google-sitemap-plugin.php:866 google-sitemap-plugin.php:870
63
- #: google-sitemap-plugin.php:948 google-sitemap-plugin.php:964
64
- #: google-sitemap-plugin.php:986 google-sitemap-plugin.php:1000
65
  msgid "Status"
66
  msgstr "Статус"
67
 
68
- #: google-sitemap-plugin.php:867 google-sitemap-plugin.php:890
69
- #: google-sitemap-plugin.php:965
70
  msgid "Not added"
71
  msgstr "Не добавлено"
72
 
73
- #: google-sitemap-plugin.php:871 google-sitemap-plugin.php:893
74
- #: google-sitemap-plugin.php:987 google-sitemap-plugin.php:1096
75
  msgid "Added"
76
  msgstr "Добавлено"
77
 
78
- #: google-sitemap-plugin.php:873 google-sitemap-plugin.php:1042
79
- #: google-sitemap-plugin.php:1054 google-sitemap-plugin.php:1068
80
  msgid "Verification Status"
81
  msgstr "Статус проверки"
82
 
83
- #: google-sitemap-plugin.php:875
84
  msgid "Verified"
85
  msgstr "Проверено"
86
 
87
- #: google-sitemap-plugin.php:877
88
  msgid "Not verified"
89
  msgstr "Не проверено"
90
 
91
- #: google-sitemap-plugin.php:885 google-sitemap-plugin.php:1075
92
  msgid "Sitemap Status"
93
  msgstr "Статус Sitemap"
94
 
95
- #: google-sitemap-plugin.php:895
96
  msgid "Added with errors."
97
  msgstr "Добавлено с ошибками."
98
 
99
- #: google-sitemap-plugin.php:895
100
  msgid "View errors in Google Webmaster Tools"
101
  msgstr "Просмотреть ошибки в Google Webmaster Tools"
102
 
103
- #: google-sitemap-plugin.php:898
104
  msgid "Sitemap URL"
105
  msgstr "Sitemap URL"
106
 
107
- #: google-sitemap-plugin.php:901 google-sitemap-plugin.php:917
108
- #: google-sitemap-plugin.php:967 google-sitemap-plugin.php:1002
109
- #: google-sitemap-plugin.php:1039 google-sitemap-plugin.php:1070
110
- #: google-sitemap-plugin.php:1109 google-sitemap-plugin.php:1128
111
- #: includes/class-gglstmp-settings.php:379
112
  msgid "Error"
113
  msgstr "Ошибка"
114
 
115
- #: google-sitemap-plugin.php:901
116
  msgid "Please check the sitemap file manually."
117
  msgstr "Пожалуйста, проверьте файл Sitemap вручную."
118
 
119
- #: google-sitemap-plugin.php:901 google-sitemap-plugin.php:919
120
- #: google-sitemap-plugin.php:1004 google-sitemap-plugin.php:1043
121
- #: google-sitemap-plugin.php:1072 google-sitemap-plugin.php:1111
122
- #: includes/pro_banners.php:47 includes/class-gglstmp-settings.php:233
123
  msgid "Learn More"
124
  msgstr "Подробнее"
125
 
126
- #: google-sitemap-plugin.php:906 google-sitemap-plugin.php:955
127
- #: google-sitemap-plugin.php:990 google-sitemap-plugin.php:1027
128
- #: google-sitemap-plugin.php:1058 google-sitemap-plugin.php:1099
129
  msgid "Unexpected error"
130
  msgstr "Неожиданная ошибка"
131
 
132
- #: google-sitemap-plugin.php:919 google-sitemap-plugin.php:1004
133
- #: google-sitemap-plugin.php:1072
134
  msgid "Manual verification required."
135
  msgstr "Требуется ручная проверка."
136
 
137
- #: google-sitemap-plugin.php:949
138
  msgid "Deleted"
139
  msgstr "Удален"
140
 
141
- #: google-sitemap-plugin.php:1019 google-sitemap-plugin.php:1022
142
- #: google-sitemap-plugin.php:1038
143
  msgid "Verification Code"
144
  msgstr "Код подтверждения"
145
 
146
- #: google-sitemap-plugin.php:1020
147
  msgid "Received and added to the site"
148
  msgstr "Получен и добавлен на сайт"
149
 
150
- #: google-sitemap-plugin.php:1023
151
  msgid "Received, but has not been added to the site"
152
  msgstr "Получен, но не добавлен на сайт"
153
 
154
- #: google-sitemap-plugin.php:1111
155
  msgid "Please add the sitemap file manually."
156
  msgstr "Пожалуйста, добавьте файл Sitemap вручную."
157
 
158
- #: google-sitemap-plugin.php:1116
159
  msgid "Error 404"
160
  msgstr "Ошибка 404"
161
 
162
- #: google-sitemap-plugin.php:1118
163
  #, php-format
164
  msgid "The sitemap file %s not found."
165
  msgstr "Файл sitemap %s не найден."
166
 
167
- #: google-sitemap-plugin.php:1128
168
  msgid "The sitemap file not found."
169
  msgstr "Файл sitemap не найден."
170
 
171
- #: google-sitemap-plugin.php:1203
172
  msgid "FAQ"
173
  msgstr "FAQ"
174
 
175
- #: google-sitemap-plugin.php:1204
176
  msgid "Support"
177
  msgstr "Тех.поддержка"
178
 
179
- #: includes/pro_banners.php:18
180
- msgid "This option is available in Pro version of plugin"
181
- msgstr "Данный функционал доступен в Pro версии плагина"
182
-
183
- #: includes/pro_banners.php:21 includes/class-gglstmp-settings.php:218
184
- #: includes/class-gglstmp-settings.php:323
185
- msgid "Close"
186
- msgstr "Закрыть"
187
-
188
- #: includes/pro_banners.php:42 includes/pro_banners.php:106
189
- #: includes/pro_banners.php:185
190
- msgid "Change Frequency"
191
- msgstr "Частота обновления"
192
-
193
- #: includes/pro_banners.php:45 includes/pro_banners.php:143
194
- #: includes/pro_banners.php:151 includes/pro_banners.php:159
195
- #: includes/pro_banners.php:167 includes/pro_banners.php:175
196
- msgid "Monthly"
197
- msgstr "Ежемесячно"
198
-
199
- #: includes/pro_banners.php:47
200
- msgid ""
201
- "This value provides general information to search engines and tell them how "
202
- "frequently the page is likely to change. It may not correlate exactly to how "
203
- "often they crawl the website."
204
- msgstr ""
205
- "Это значение предоставляет общую информацию поисковым системам и сообщает "
206
- "им, как часто страница может измениться. Это может не точно соответствовать "
207
- "тому, как часто они сканируют сайт."
208
-
209
- #: includes/pro_banners.php:51
210
- msgid "External Sitemap Update Frequency"
211
- msgstr "Частота обновления внешних sitemap"
212
-
213
- #: includes/pro_banners.php:53
214
- msgid "day(-s)"
215
- msgstr "дней"
216
-
217
- #: includes/pro_banners.php:55
218
- msgid ""
219
- "This option sets how often the external index sitemap files should be "
220
- "checked for updates."
221
- msgstr ""
222
- "Эта опция устанавливает, как часто будет выполняться проверка на наличие "
223
- "обновлений во внешних файлах sitemap."
224
-
225
- #: includes/pro_banners.php:69
226
- msgid "Example of site pages' tree"
227
- msgstr "Пример дерева страниц сайта"
228
-
229
- #: includes/pro_banners.php:82
230
- msgid "All"
231
- msgstr "Все"
232
-
233
- #: includes/pro_banners.php:83
234
- msgid "Enabled"
235
- msgstr "Активные"
236
-
237
- #: includes/pro_banners.php:84
238
- msgid "Disabled"
239
- msgstr "Неактивные"
240
-
241
- #: includes/pro_banners.php:88
242
- msgid "Search"
243
- msgstr "Поиск"
244
-
245
- #: includes/pro_banners.php:93
246
- msgid "Bulk Actions"
247
- msgstr "Групповые действия"
248
-
249
- #: includes/pro_banners.php:95
250
- msgid "Apply"
251
- msgstr "Применить"
252
-
253
- #: includes/pro_banners.php:97
254
- msgid "items"
255
- msgstr "элементов"
256
-
257
- #: includes/pro_banners.php:105 includes/pro_banners.php:184
258
- msgid "Priority"
259
- msgstr "Приоритет"
260
-
261
- #: includes/pro_banners.php:107 includes/pro_banners.php:186
262
- msgid "Last Changed"
263
- msgstr "Дата изменения"
264
-
265
- #: includes/pro_banners.php:116
266
- msgid "Please note"
267
- msgstr "Пожалуйста, учтите"
268
-
269
- #: includes/pro_banners.php:117
270
- msgid ""
271
- "All URLs listed in the sitemap.xml must use the same protocol (HTTP or "
272
- "HTTPS) and must be located on the same host as the sitemap.xml. For more "
273
- "info see"
274
- msgstr ""
275
- "Все URL-адреса, перечисленные в файле sitemap.xml, должны использовать один "
276
- "и тот же протокол( HTTP или HTTPS ) и размещены на том же хосте, что и файл "
277
- "sitemap.xml. Более подробно Вы можете прочитать"
278
-
279
- #: includes/pro_banners.php:117
280
- msgid "here"
281
- msgstr "здесь"
282
-
283
- #: includes/pro_banners.php:124
284
- msgid "Always"
285
- msgstr "Всегда"
286
-
287
- #: includes/pro_banners.php:128
288
- msgid "Save"
289
- msgstr "Сохранить"
290
-
291
- #: includes/pro_banners.php:136
292
- msgid "Edit"
293
- msgstr "Редактировать"
294
-
295
- #: includes/pro_banners.php:137
296
- msgid "Disable"
297
- msgstr "Деактивировать"
298
-
299
- #: includes/pro_banners.php:138 includes/class-gglstmp-settings.php:253
300
- msgid "Delete"
301
- msgstr "Удалить"
302
-
303
- #: includes/pro_banners.php:141
304
- msgid "Yes"
305
- msgstr "Да"
306
-
307
- #: includes/pro_banners.php:149 includes/pro_banners.php:157
308
- #: includes/pro_banners.php:165 includes/pro_banners.php:173
309
- msgid "No"
310
- msgstr "Нет"
311
-
312
  #: includes/class-gglstmp-settings.php:28
313
  msgid "Structure"
314
  msgstr "Структура"
@@ -321,66 +188,71 @@ msgstr "Разное"
321
  msgid "License Key"
322
  msgstr "Лицензионный ключ"
323
 
324
- #: includes/class-gglstmp-settings.php:147
325
  msgid "Settings saved."
326
  msgstr "Настройки сохранены."
327
 
328
- #: includes/class-gglstmp-settings.php:167
329
  #, php-format
330
  msgctxt "%robots.txt file link%"
331
  msgid "Enable to add a sitemap file path to the %s file."
332
- msgstr "Включите для добавления пути файла Sitemap в файл %s."
333
 
334
- #: includes/class-gglstmp-settings.php:172
335
  #, php-format
336
  msgctxt "%reading settings page link%"
337
  msgid "\"Search Engine Visibility\" option have to be unmarked on the %s."
338
  msgstr "Опция \"Видимость для поисковых систем\" дожна быть не отмечена на %s."
339
 
340
- #: includes/class-gglstmp-settings.php:176
341
  msgctxt "...on the reading settings page."
342
  msgid "Reading Settings page"
343
  msgstr "странице настроек чтения"
344
 
345
- #: includes/class-gglstmp-settings.php:180
346
  msgid ""
347
  "Also, please add the following code to the beginning of your \".htaccess\" "
348
  "file:"
349
  msgstr ""
350
- "Так же, пожалуйста, добавьте следующий код в начало Вашего файла \".htaccess"
351
  "\":"
352
 
353
- #: includes/class-gglstmp-settings.php:194
354
  msgid "This option will be applied to all websites in the network."
355
  msgstr "Эта опция будет применена ко всем сайтам в сети."
356
 
357
- #: includes/class-gglstmp-settings.php:197
358
  msgid "Activate"
359
  msgstr "Активировать"
360
 
361
- #: includes/class-gglstmp-settings.php:201
362
  msgid "Install Now"
363
  msgstr "Установить Сейчас"
364
 
365
- #: includes/class-gglstmp-settings.php:207
366
  #, php-format
367
  msgid "%s Plugin"
368
  msgstr "%s плагин"
369
 
370
- #: includes/class-gglstmp-settings.php:209
371
  #, php-format
372
  msgid "Enable to allow XML files access using %s plugin."
373
  msgstr "Включите, чтобы разрешить доступ к файлам XML с помощью плагина %s."
374
 
375
- #: includes/class-gglstmp-settings.php:210
376
  msgid "The following string will be added to your .htaccess file"
377
  msgstr "В ваш .htaccess файл будет добавлена следующая строка"
378
 
379
- #: includes/class-gglstmp-settings.php:229
 
 
 
 
 
380
  msgid "URLs Limit"
381
  msgstr "Лимит ссылок"
382
 
383
- #: includes/class-gglstmp-settings.php:233
384
  msgid ""
385
  "A sitemap file can't contain more than 50,000 URLs and must be no larger "
386
  "than 50 MB uncompressed."
@@ -388,22 +260,22 @@ msgstr ""
388
  "Файл sitemap не может содержать более 50000 ссылок и не должен превышать "
389
  "50MB в несжатом состоянии."
390
 
391
- #: includes/class-gglstmp-settings.php:234
392
  msgid "Decrease the limit if your sitemap exceeds file size limit."
393
  msgstr ""
394
  "Уменьшите значение если размер файла sitemap превышает допустимое значение."
395
 
396
- #: includes/class-gglstmp-settings.php:235
397
  msgid ""
398
  "When the limit is reached, the sitemap will be splitted into multiple files."
399
  msgstr ""
400
  "Файл sitemap будет разбит на несколько частей при достижении лимита ссылок."
401
 
402
- #: includes/class-gglstmp-settings.php:240
403
  msgid "Google Webmaster Tools"
404
  msgstr "Google Webmaster Tools"
405
 
406
- #: includes/class-gglstmp-settings.php:243
407
  msgid ""
408
  "This hosting does not support сURL, so you cannot add a sitemap file "
409
  "automatically."
@@ -411,23 +283,27 @@ msgstr ""
411
  "Ваш хостинг не поддерживает сURL, поэтому вы не можете добавить sitemap "
412
  "автоматически."
413
 
414
- #: includes/class-gglstmp-settings.php:246
415
  msgid "Logout from Google Webmaster Tools"
416
  msgstr "Выйти из Google Webmaster Tools"
417
 
418
- #: includes/class-gglstmp-settings.php:250
419
  msgid "Manage Website with Google Webmaster Tools"
420
- msgstr "Управление веб-сайтом с помощью Google Webmaster Tools"
421
 
422
- #: includes/class-gglstmp-settings.php:252
423
  msgid "Add"
424
  msgstr "Добавить"
425
 
426
- #: includes/class-gglstmp-settings.php:254
 
 
 
 
427
  msgid "Get Info"
428
  msgstr "Получить информацию"
429
 
430
- #: includes/class-gglstmp-settings.php:256
431
  msgid ""
432
  "Add, delete or get info about this website using your Google Webmaster Tools "
433
  "account."
@@ -435,59 +311,80 @@ msgstr ""
435
  "Добавьте, удалите или получите информацию об этом сайте с помощью своей "
436
  "учетной записи Google Webmaster Tools."
437
 
438
- #: includes/class-gglstmp-settings.php:264
439
  msgid "Get Authorization Code"
440
  msgstr "Получить код авторизации"
441
 
442
- #: includes/class-gglstmp-settings.php:267
443
  msgid "Authorize"
444
  msgstr "Авторизироваться"
445
 
446
- #: includes/class-gglstmp-settings.php:270
447
  msgid "Invalid authorization code. Please try again."
448
  msgstr "Недействительный код авторизации. Пожалуйста, попробуйте еще раз."
449
 
450
- #: includes/class-gglstmp-settings.php:275
451
  msgid "You can also add your sitemap to Google Webmaster Tools manually."
452
  msgstr "Вы также можете вручную добавить sitemap в Google Webmaster Tools."
453
 
454
- #: includes/class-gglstmp-settings.php:275
455
  msgid "Read the instruction"
456
  msgstr "Читать инструкцию"
457
 
458
- #: includes/class-gglstmp-settings.php:290
459
  msgid "Post category"
460
  msgstr "Рубрика записей"
461
 
462
- #: includes/class-gglstmp-settings.php:291
463
  msgid "Post tag"
464
  msgstr "Метка записей"
465
 
466
- #: includes/class-gglstmp-settings.php:293
467
  msgid "Sitemap Structure"
468
  msgstr "Структура Sitemap"
469
 
470
- #: includes/class-gglstmp-settings.php:298
471
  msgid "Post Types"
472
  msgstr "Типы записей"
473
 
474
- #: includes/class-gglstmp-settings.php:305
475
  msgid "Enable to add post type links to the sitemap."
476
  msgstr "Включите, чтобы добавить ссылки типов записей в sitemap."
477
 
478
- #: includes/class-gglstmp-settings.php:309
479
  msgid "Taxonomies"
480
  msgstr "Таксономии"
481
 
482
- #: includes/class-gglstmp-settings.php:316
483
  msgid "Enable to taxonomy links to the sitemap."
484
  msgstr "Включите, чтобы добавить ссылки таксономий в sitemap."
485
 
486
- #: includes/class-gglstmp-settings.php:370
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
487
  msgid "Note"
488
  msgstr "Примечание"
489
 
490
- #: includes/class-gglstmp-settings.php:370
491
  msgid ""
492
  "Another plugin is providing Google Client functionality and may interrupt "
493
  "proper plugin work."
@@ -495,25 +392,138 @@ msgstr ""
495
  "Другой плагин предоставляет функционал для Google Client и может мешать "
496
  "корректной работе плагина."
497
 
498
- #: includes/class-gglstmp-settings.php:380
499
- #, php-format
 
 
 
 
 
 
 
 
 
 
 
 
 
 
500
  msgid ""
501
- "Can't access XML files on subsites. Add the following rule %s to your %s "
502
- "file in %s after %s or install, activate and enable %s plugin option to "
503
- "resolve this error."
504
  msgstr ""
505
- "Невозможно получить доступ к файлам XML на подсайтах. Добавьте следующее "
506
- "правило %s в файл %s в %s после %s или установите, активируйте и включите "
507
- "опцию плагина %s, чтобы устранить эту ошибку."
508
 
509
- #: includes/class-gglstmp-settings.php:395
510
- #, php-format
511
- msgid "%s is in the site root directory."
512
- msgstr "%s находится в корневом каталоге сайта."
513
 
514
- #: includes/class-gglstmp-settings.php:396
515
- msgid "The Sitemap file"
516
- msgstr "Файл Sitemap"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
517
 
518
  #~ msgid "Cannot edit \"robots.txt\". Check your permissions"
519
  #~ msgstr ""
2
  msgstr ""
3
  "Project-Id-Version: Google Sitemap\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-12-28 11:13+0200\n"
6
+ "PO-Revision-Date: 2017-12-28 11:13+0200\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: BestWebSoft <plugin@bestwebsoft.com>\n"
9
  "Language: ru_RU\n"
13
  "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Generator: Poedit 1.8.7.1\n"
17
  "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
18
  "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
  #: google-sitemap-plugin.php:38 google-sitemap-plugin.php:48
22
+ #: includes/class-gglstmp-settings.php:160
23
  msgid "Google Sitemap Settings"
24
  msgstr "Настройки Google Sitemap"
25
 
26
+ #: google-sitemap-plugin.php:49 google-sitemap-plugin.php:833
27
+ #: google-sitemap-plugin.php:1231 google-sitemap-plugin.php:1244
28
  #: includes/class-gglstmp-settings.php:27
29
  msgid "Settings"
30
  msgstr "Настройки"
31
 
32
  #: google-sitemap-plugin.php:57 google-sitemap-plugin.php:58
33
+ #: google-sitemap-plugin.php:838
34
  msgid "Custom Links"
35
  msgstr "Пользовательские ссылки"
36
 
38
  msgid "Upgrade to Pro"
39
  msgstr "Обновить до Pro"
40
 
41
+ #: google-sitemap-plugin.php:359
42
  msgid "Post categories"
43
  msgstr "Рубрики записей"
44
 
45
+ #: google-sitemap-plugin.php:360
46
  msgid "Post tags"
47
  msgstr "Метки записей"
48
 
49
+ #: google-sitemap-plugin.php:834
50
  msgid "Please enable JavaScript in your browser."
51
  msgstr "Пожалуйста, включите поддержку JavaScript в вашем браузере."
52
 
53
+ #: google-sitemap-plugin.php:839
54
  msgid "Add New"
55
  msgstr "Добавить ссылку"
56
 
57
+ #: google-sitemap-plugin.php:881 google-sitemap-plugin.php:969
58
+ #: google-sitemap-plugin.php:1020
59
  msgid "Website"
60
  msgstr "Сайт"
61
 
62
+ #: google-sitemap-plugin.php:892 google-sitemap-plugin.php:896
63
+ #: google-sitemap-plugin.php:985 google-sitemap-plugin.php:1001
64
+ #: google-sitemap-plugin.php:1024 google-sitemap-plugin.php:1038
65
  msgid "Status"
66
  msgstr "Статус"
67
 
68
+ #: google-sitemap-plugin.php:893 google-sitemap-plugin.php:927
69
+ #: google-sitemap-plugin.php:1002
70
  msgid "Not added"
71
  msgstr "Не добавлено"
72
 
73
+ #: google-sitemap-plugin.php:897 google-sitemap-plugin.php:930
74
+ #: google-sitemap-plugin.php:1025 google-sitemap-plugin.php:1136
75
  msgid "Added"
76
  msgstr "Добавлено"
77
 
78
+ #: google-sitemap-plugin.php:899 google-sitemap-plugin.php:1081
79
+ #: google-sitemap-plugin.php:1093 google-sitemap-plugin.php:1107
80
  msgid "Verification Status"
81
  msgstr "Статус проверки"
82
 
83
+ #: google-sitemap-plugin.php:901 google-sitemap-plugin.php:1094
84
  msgid "Verified"
85
  msgstr "Проверено"
86
 
87
+ #: google-sitemap-plugin.php:903
88
  msgid "Not verified"
89
  msgstr "Не проверено"
90
 
91
+ #: google-sitemap-plugin.php:912 google-sitemap-plugin.php:1115
92
  msgid "Sitemap Status"
93
  msgstr "Статус Sitemap"
94
 
95
+ #: google-sitemap-plugin.php:932
96
  msgid "Added with errors."
97
  msgstr "Добавлено с ошибками."
98
 
99
+ #: google-sitemap-plugin.php:932
100
  msgid "View errors in Google Webmaster Tools"
101
  msgstr "Просмотреть ошибки в Google Webmaster Tools"
102
 
103
+ #: google-sitemap-plugin.php:935
104
  msgid "Sitemap URL"
105
  msgstr "Sitemap URL"
106
 
107
+ #: google-sitemap-plugin.php:938 google-sitemap-plugin.php:954
108
+ #: google-sitemap-plugin.php:1004 google-sitemap-plugin.php:1040
109
+ #: google-sitemap-plugin.php:1078 google-sitemap-plugin.php:1109
110
+ #: google-sitemap-plugin.php:1149 google-sitemap-plugin.php:1169
111
+ #: includes/class-gglstmp-settings.php:401
112
  msgid "Error"
113
  msgstr "Ошибка"
114
 
115
+ #: google-sitemap-plugin.php:938
116
  msgid "Please check the sitemap file manually."
117
  msgstr "Пожалуйста, проверьте файл Sitemap вручную."
118
 
119
+ #: google-sitemap-plugin.php:938 google-sitemap-plugin.php:956
120
+ #: google-sitemap-plugin.php:1043 google-sitemap-plugin.php:1082
121
+ #: google-sitemap-plugin.php:1112 google-sitemap-plugin.php:1152
122
+ #: includes/class-gglstmp-settings.php:236 includes/pro_banners.php:47
123
  msgid "Learn More"
124
  msgstr "Подробнее"
125
 
126
+ #: google-sitemap-plugin.php:943 google-sitemap-plugin.php:992
127
+ #: google-sitemap-plugin.php:1028 google-sitemap-plugin.php:1066
128
+ #: google-sitemap-plugin.php:1097 google-sitemap-plugin.php:1139
129
  msgid "Unexpected error"
130
  msgstr "Неожиданная ошибка"
131
 
132
+ #: google-sitemap-plugin.php:956 google-sitemap-plugin.php:1043
133
+ #: google-sitemap-plugin.php:1112
134
  msgid "Manual verification required."
135
  msgstr "Требуется ручная проверка."
136
 
137
+ #: google-sitemap-plugin.php:986
138
  msgid "Deleted"
139
  msgstr "Удален"
140
 
141
+ #: google-sitemap-plugin.php:1058 google-sitemap-plugin.php:1061
142
+ #: google-sitemap-plugin.php:1077
143
  msgid "Verification Code"
144
  msgstr "Код подтверждения"
145
 
146
+ #: google-sitemap-plugin.php:1059
147
  msgid "Received and added to the site"
148
  msgstr "Получен и добавлен на сайт"
149
 
150
+ #: google-sitemap-plugin.php:1062
151
  msgid "Received, but has not been added to the site"
152
  msgstr "Получен, но не добавлен на сайт"
153
 
154
+ #: google-sitemap-plugin.php:1152
155
  msgid "Please add the sitemap file manually."
156
  msgstr "Пожалуйста, добавьте файл Sitemap вручную."
157
 
158
+ #: google-sitemap-plugin.php:1157
159
  msgid "Error 404"
160
  msgstr "Ошибка 404"
161
 
162
+ #: google-sitemap-plugin.php:1159
163
  #, php-format
164
  msgid "The sitemap file %s not found."
165
  msgstr "Файл sitemap %s не найден."
166
 
167
+ #: google-sitemap-plugin.php:1169
168
  msgid "The sitemap file not found."
169
  msgstr "Файл sitemap не найден."
170
 
171
+ #: google-sitemap-plugin.php:1246
172
  msgid "FAQ"
173
  msgstr "FAQ"
174
 
175
+ #: google-sitemap-plugin.php:1247
176
  msgid "Support"
177
  msgstr "Тех.поддержка"
178
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
179
  #: includes/class-gglstmp-settings.php:28
180
  msgid "Structure"
181
  msgstr "Структура"
188
  msgid "License Key"
189
  msgstr "Лицензионный ключ"
190
 
191
+ #: includes/class-gglstmp-settings.php:150
192
  msgid "Settings saved."
193
  msgstr "Настройки сохранены."
194
 
195
+ #: includes/class-gglstmp-settings.php:170
196
  #, php-format
197
  msgctxt "%robots.txt file link%"
198
  msgid "Enable to add a sitemap file path to the %s file."
199
+ msgstr "Включите, чтобы добавить путь файла Sitemap в файл %s."
200
 
201
+ #: includes/class-gglstmp-settings.php:175
202
  #, php-format
203
  msgctxt "%reading settings page link%"
204
  msgid "\"Search Engine Visibility\" option have to be unmarked on the %s."
205
  msgstr "Опция \"Видимость для поисковых систем\" дожна быть не отмечена на %s."
206
 
207
+ #: includes/class-gglstmp-settings.php:179
208
  msgctxt "...on the reading settings page."
209
  msgid "Reading Settings page"
210
  msgstr "странице настроек чтения"
211
 
212
+ #: includes/class-gglstmp-settings.php:183
213
  msgid ""
214
  "Also, please add the following code to the beginning of your \".htaccess\" "
215
  "file:"
216
  msgstr ""
217
+ "Так же, пожалуйста, добавьте следующий код в начало вашего файла \".htaccess"
218
  "\":"
219
 
220
+ #: includes/class-gglstmp-settings.php:197
221
  msgid "This option will be applied to all websites in the network."
222
  msgstr "Эта опция будет применена ко всем сайтам в сети."
223
 
224
+ #: includes/class-gglstmp-settings.php:200
225
  msgid "Activate"
226
  msgstr "Активировать"
227
 
228
+ #: includes/class-gglstmp-settings.php:204
229
  msgid "Install Now"
230
  msgstr "Установить Сейчас"
231
 
232
+ #: includes/class-gglstmp-settings.php:210
233
  #, php-format
234
  msgid "%s Plugin"
235
  msgstr "%s плагин"
236
 
237
+ #: includes/class-gglstmp-settings.php:212
238
  #, php-format
239
  msgid "Enable to allow XML files access using %s plugin."
240
  msgstr "Включите, чтобы разрешить доступ к файлам XML с помощью плагина %s."
241
 
242
+ #: includes/class-gglstmp-settings.php:213
243
  msgid "The following string will be added to your .htaccess file"
244
  msgstr "В ваш .htaccess файл будет добавлена следующая строка"
245
 
246
+ #: includes/class-gglstmp-settings.php:221
247
+ #: includes/class-gglstmp-settings.php:326 includes/pro_banners.php:21
248
+ msgid "Close"
249
+ msgstr "Закрыть"
250
+
251
+ #: includes/class-gglstmp-settings.php:232
252
  msgid "URLs Limit"
253
  msgstr "Лимит ссылок"
254
 
255
+ #: includes/class-gglstmp-settings.php:236
256
  msgid ""
257
  "A sitemap file can't contain more than 50,000 URLs and must be no larger "
258
  "than 50 MB uncompressed."
260
  "Файл sitemap не может содержать более 50000 ссылок и не должен превышать "
261
  "50MB в несжатом состоянии."
262
 
263
+ #: includes/class-gglstmp-settings.php:237
264
  msgid "Decrease the limit if your sitemap exceeds file size limit."
265
  msgstr ""
266
  "Уменьшите значение если размер файла sitemap превышает допустимое значение."
267
 
268
+ #: includes/class-gglstmp-settings.php:238
269
  msgid ""
270
  "When the limit is reached, the sitemap will be splitted into multiple files."
271
  msgstr ""
272
  "Файл sitemap будет разбит на несколько частей при достижении лимита ссылок."
273
 
274
+ #: includes/class-gglstmp-settings.php:243
275
  msgid "Google Webmaster Tools"
276
  msgstr "Google Webmaster Tools"
277
 
278
+ #: includes/class-gglstmp-settings.php:246
279
  msgid ""
280
  "This hosting does not support сURL, so you cannot add a sitemap file "
281
  "automatically."
283
  "Ваш хостинг не поддерживает сURL, поэтому вы не можете добавить sitemap "
284
  "автоматически."
285
 
286
+ #: includes/class-gglstmp-settings.php:249
287
  msgid "Logout from Google Webmaster Tools"
288
  msgstr "Выйти из Google Webmaster Tools"
289
 
290
+ #: includes/class-gglstmp-settings.php:253
291
  msgid "Manage Website with Google Webmaster Tools"
292
+ msgstr "Управляйте веб-сайтом с помощью Google Webmaster Tools"
293
 
294
+ #: includes/class-gglstmp-settings.php:255
295
  msgid "Add"
296
  msgstr "Добавить"
297
 
298
+ #: includes/class-gglstmp-settings.php:256 includes/pro_banners.php:138
299
+ msgid "Delete"
300
+ msgstr "Удалить"
301
+
302
+ #: includes/class-gglstmp-settings.php:257
303
  msgid "Get Info"
304
  msgstr "Получить информацию"
305
 
306
+ #: includes/class-gglstmp-settings.php:259
307
  msgid ""
308
  "Add, delete or get info about this website using your Google Webmaster Tools "
309
  "account."
311
  "Добавьте, удалите или получите информацию об этом сайте с помощью своей "
312
  "учетной записи Google Webmaster Tools."
313
 
314
+ #: includes/class-gglstmp-settings.php:267
315
  msgid "Get Authorization Code"
316
  msgstr "Получить код авторизации"
317
 
318
+ #: includes/class-gglstmp-settings.php:270
319
  msgid "Authorize"
320
  msgstr "Авторизироваться"
321
 
322
+ #: includes/class-gglstmp-settings.php:273
323
  msgid "Invalid authorization code. Please try again."
324
  msgstr "Недействительный код авторизации. Пожалуйста, попробуйте еще раз."
325
 
326
+ #: includes/class-gglstmp-settings.php:278
327
  msgid "You can also add your sitemap to Google Webmaster Tools manually."
328
  msgstr "Вы также можете вручную добавить sitemap в Google Webmaster Tools."
329
 
330
+ #: includes/class-gglstmp-settings.php:278
331
  msgid "Read the instruction"
332
  msgstr "Читать инструкцию"
333
 
334
+ #: includes/class-gglstmp-settings.php:293
335
  msgid "Post category"
336
  msgstr "Рубрика записей"
337
 
338
+ #: includes/class-gglstmp-settings.php:294
339
  msgid "Post tag"
340
  msgstr "Метка записей"
341
 
342
+ #: includes/class-gglstmp-settings.php:296
343
  msgid "Sitemap Structure"
344
  msgstr "Структура Sitemap"
345
 
346
+ #: includes/class-gglstmp-settings.php:301
347
  msgid "Post Types"
348
  msgstr "Типы записей"
349
 
350
+ #: includes/class-gglstmp-settings.php:308
351
  msgid "Enable to add post type links to the sitemap."
352
  msgstr "Включите, чтобы добавить ссылки типов записей в sitemap."
353
 
354
+ #: includes/class-gglstmp-settings.php:312
355
  msgid "Taxonomies"
356
  msgstr "Таксономии"
357
 
358
+ #: includes/class-gglstmp-settings.php:319
359
  msgid "Enable to taxonomy links to the sitemap."
360
  msgstr "Включите, чтобы добавить ссылки таксономий в sitemap."
361
 
362
+ #: includes/class-gglstmp-settings.php:375
363
+ #, php-format
364
+ msgid "%s is in the site root directory."
365
+ msgstr "%s находится в корневом каталоге сайта."
366
+
367
+ #: includes/class-gglstmp-settings.php:376
368
+ msgid "The Sitemap file"
369
+ msgstr "Файл Sitemap"
370
+
371
+ #: includes/class-gglstmp-settings.php:402
372
+ #, php-format
373
+ msgid ""
374
+ "Can't access XML files. Try to add the following rule %s to your %s file "
375
+ "which is located in the root of your website to resolve this error. Find the "
376
+ "following line %s and paste the code just after it."
377
+ msgstr ""
378
+ "Невозможно получить доступ к файлам XML. Чтобы решить данную проблему "
379
+ "попробуйте добавить следующее правило %s в файл %s, который расположен в "
380
+ "корневом каталоге сайта. Найдите следующую строку %s и вставь этот код после "
381
+ "нее."
382
+
383
+ #: includes/class-gglstmp-settings.php:418
384
  msgid "Note"
385
  msgstr "Примечание"
386
 
387
+ #: includes/class-gglstmp-settings.php:418
388
  msgid ""
389
  "Another plugin is providing Google Client functionality and may interrupt "
390
  "proper plugin work."
392
  "Другой плагин предоставляет функционал для Google Client и может мешать "
393
  "корректной работе плагина."
394
 
395
+ #: includes/pro_banners.php:18
396
+ msgid "This option is available in Pro version of plugin"
397
+ msgstr "Данный функционал доступен в Pro версии плагина"
398
+
399
+ #: includes/pro_banners.php:42 includes/pro_banners.php:106
400
+ #: includes/pro_banners.php:185
401
+ msgid "Change Frequency"
402
+ msgstr "Частота обновления"
403
+
404
+ #: includes/pro_banners.php:45 includes/pro_banners.php:143
405
+ #: includes/pro_banners.php:151 includes/pro_banners.php:159
406
+ #: includes/pro_banners.php:167 includes/pro_banners.php:175
407
+ msgid "Monthly"
408
+ msgstr "Ежемесячно"
409
+
410
+ #: includes/pro_banners.php:47
411
  msgid ""
412
+ "This value provides general information to search engines and tell them how "
413
+ "frequently the page is likely to change. It may not correlate exactly to how "
414
+ "often they crawl the website."
415
  msgstr ""
416
+ "Это значение предоставляет общую информацию поисковым системам и сообщает "
417
+ "им, как часто страница может измениться. Это может не точно соответствовать "
418
+ "тому, как часто они сканируют сайт."
419
 
420
+ #: includes/pro_banners.php:51
421
+ msgid "External Sitemap Update Frequency"
422
+ msgstr "Частота обновления внешних sitemap"
 
423
 
424
+ #: includes/pro_banners.php:53
425
+ msgid "day(-s)"
426
+ msgstr "дней"
427
+
428
+ #: includes/pro_banners.php:55
429
+ msgid ""
430
+ "This option sets how often the external index sitemap files should be "
431
+ "checked for updates."
432
+ msgstr ""
433
+ "Эта опция устанавливает, как часто будет выполняться проверка на наличие "
434
+ "обновлений во внешних файлах sitemap."
435
+
436
+ #: includes/pro_banners.php:69
437
+ msgid "Example of site pages' tree"
438
+ msgstr "Пример дерева страниц сайта"
439
+
440
+ #: includes/pro_banners.php:82
441
+ msgid "All"
442
+ msgstr "Все"
443
+
444
+ #: includes/pro_banners.php:83
445
+ msgid "Enabled"
446
+ msgstr "Активные"
447
+
448
+ #: includes/pro_banners.php:84
449
+ msgid "Disabled"
450
+ msgstr "Неактивные"
451
+
452
+ #: includes/pro_banners.php:88
453
+ msgid "Search"
454
+ msgstr "Поиск"
455
+
456
+ #: includes/pro_banners.php:93
457
+ msgid "Bulk Actions"
458
+ msgstr "Групповые действия"
459
+
460
+ #: includes/pro_banners.php:95
461
+ msgid "Apply"
462
+ msgstr "Применить"
463
+
464
+ #: includes/pro_banners.php:97
465
+ msgid "items"
466
+ msgstr "элементов"
467
+
468
+ #: includes/pro_banners.php:105 includes/pro_banners.php:184
469
+ msgid "Priority"
470
+ msgstr "Приоритет"
471
+
472
+ #: includes/pro_banners.php:107 includes/pro_banners.php:186
473
+ msgid "Last Changed"
474
+ msgstr "Дата изменения"
475
+
476
+ #: includes/pro_banners.php:116
477
+ msgid "Please note"
478
+ msgstr "Пожалуйста, учтите"
479
+
480
+ #: includes/pro_banners.php:117
481
+ msgid ""
482
+ "All URLs listed in the sitemap.xml must use the same protocol (HTTP or "
483
+ "HTTPS) and must be located on the same host as the sitemap.xml. For more "
484
+ "info see"
485
+ msgstr ""
486
+ "Все URL-адреса, перечисленные в файле sitemap.xml, должны использовать один "
487
+ "и тот же протокол( HTTP или HTTPS ) и размещены на том же хосте, что и файл "
488
+ "sitemap.xml. Более подробно Вы можете прочитать"
489
+
490
+ #: includes/pro_banners.php:117
491
+ msgid "here"
492
+ msgstr "здесь"
493
+
494
+ #: includes/pro_banners.php:124
495
+ msgid "Always"
496
+ msgstr "Всегда"
497
+
498
+ #: includes/pro_banners.php:128
499
+ msgid "Save"
500
+ msgstr "Сохранить"
501
+
502
+ #: includes/pro_banners.php:136
503
+ msgid "Edit"
504
+ msgstr "Редактировать"
505
+
506
+ #: includes/pro_banners.php:137
507
+ msgid "Disable"
508
+ msgstr "Деактивировать"
509
+
510
+ #: includes/pro_banners.php:141
511
+ msgid "Yes"
512
+ msgstr "Да"
513
+
514
+ #: includes/pro_banners.php:149 includes/pro_banners.php:157
515
+ #: includes/pro_banners.php:165 includes/pro_banners.php:173
516
+ msgid "No"
517
+ msgstr "Нет"
518
+
519
+ #~ msgid ""
520
+ #~ "Can't access XML files on subsites. Add the following rule %s to your %s "
521
+ #~ "file in %s after %s or install, activate and enable %s plugin option to "
522
+ #~ "resolve this error."
523
+ #~ msgstr ""
524
+ #~ "Невозможно получить доступ к файлам XML на подсайтах. Добавьте следующее "
525
+ #~ "правило %s в файл %s в %s после %s или установите, активируйте и включите "
526
+ #~ "опцию плагина %s, чтобы устранить эту ошибку."
527
 
528
  #~ msgid "Cannot edit \"robots.txt\". Check your permissions"
529
  #~ msgstr ""
languages/google-sitemap-plugin-uk.mo CHANGED
Binary file
languages/google-sitemap-plugin-uk.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Google Sitemap\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2017-08-14 20:22+0300\n"
6
- "PO-Revision-Date: 2017-08-14 20:30+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: BestWebSoft <plugin@bestwebsoft.com>\n"
9
  "Language: uk\n"
@@ -13,24 +13,24 @@ msgstr ""
13
  "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
- "X-Generator: Poedit 1.5.4\n"
17
  "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
18
  "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
  #: google-sitemap-plugin.php:38 google-sitemap-plugin.php:48
22
- #: includes/class-gglstmp-settings.php:157
23
  msgid "Google Sitemap Settings"
24
  msgstr "Налаштування Google Sitemap"
25
 
26
- #: google-sitemap-plugin.php:49 google-sitemap-plugin.php:808
27
- #: google-sitemap-plugin.php:1189 google-sitemap-plugin.php:1202
28
  #: includes/class-gglstmp-settings.php:27
29
  msgid "Settings"
30
  msgstr "Налаштування"
31
 
32
  #: google-sitemap-plugin.php:57 google-sitemap-plugin.php:58
33
- #: google-sitemap-plugin.php:813
34
  msgid "Custom Links"
35
  msgstr "Користувацькі посилання"
36
 
@@ -38,277 +38,144 @@ msgstr "Користувацькі посилання"
38
  msgid "Upgrade to Pro"
39
  msgstr "Оновитися на Pro"
40
 
41
- #: google-sitemap-plugin.php:343
42
  msgid "Post categories"
43
  msgstr "Категорії записів"
44
 
45
- #: google-sitemap-plugin.php:344
46
  msgid "Post tags"
47
  msgstr "Позначки записів"
48
 
49
- #: google-sitemap-plugin.php:809
50
  msgid "Please enable JavaScript in your browser."
51
  msgstr "Будь ласка, увімкніть JavaScript у вашому браузері."
52
 
53
- #: google-sitemap-plugin.php:814
54
  msgid "Add New"
55
  msgstr "Додати посилання"
56
 
57
- #: google-sitemap-plugin.php:855 google-sitemap-plugin.php:932
58
- #: google-sitemap-plugin.php:982
59
  msgid "Website"
60
  msgstr "Сайт"
61
 
62
- #: google-sitemap-plugin.php:866 google-sitemap-plugin.php:870
63
- #: google-sitemap-plugin.php:948 google-sitemap-plugin.php:964
64
- #: google-sitemap-plugin.php:986 google-sitemap-plugin.php:1000
65
  msgid "Status"
66
  msgstr "Статус"
67
 
68
- #: google-sitemap-plugin.php:867 google-sitemap-plugin.php:890
69
- #: google-sitemap-plugin.php:965
70
  msgid "Not added"
71
  msgstr "Не додано"
72
 
73
- #: google-sitemap-plugin.php:871 google-sitemap-plugin.php:893
74
- #: google-sitemap-plugin.php:987 google-sitemap-plugin.php:1096
75
  msgid "Added"
76
  msgstr "Додано"
77
 
78
- #: google-sitemap-plugin.php:873 google-sitemap-plugin.php:1042
79
- #: google-sitemap-plugin.php:1054 google-sitemap-plugin.php:1068
80
  msgid "Verification Status"
81
  msgstr "Статус перевірки"
82
 
83
- #: google-sitemap-plugin.php:875
84
  msgid "Verified"
85
  msgstr "Перевірено"
86
 
87
- #: google-sitemap-plugin.php:877
88
  msgid "Not verified"
89
  msgstr "Не перевірено"
90
 
91
- #: google-sitemap-plugin.php:885 google-sitemap-plugin.php:1075
92
  msgid "Sitemap Status"
93
  msgstr "Статус Sitemap"
94
 
95
- #: google-sitemap-plugin.php:895
96
  msgid "Added with errors."
97
  msgstr "Додано з помилками."
98
 
99
- #: google-sitemap-plugin.php:895
100
  msgid "View errors in Google Webmaster Tools"
101
  msgstr "Подивитися помилки у Google Webmaster Tools"
102
 
103
- #: google-sitemap-plugin.php:898
104
  msgid "Sitemap URL"
105
  msgstr "Sitemap URL"
106
 
107
- #: google-sitemap-plugin.php:901 google-sitemap-plugin.php:917
108
- #: google-sitemap-plugin.php:967 google-sitemap-plugin.php:1002
109
- #: google-sitemap-plugin.php:1039 google-sitemap-plugin.php:1070
110
- #: google-sitemap-plugin.php:1109 google-sitemap-plugin.php:1128
111
- #: includes/class-gglstmp-settings.php:379
112
  msgid "Error"
113
  msgstr "Помилка"
114
 
115
- #: google-sitemap-plugin.php:901
116
  msgid "Please check the sitemap file manually."
117
  msgstr "Будь ласка, перевірте файл sitemap вручну."
118
 
119
- #: google-sitemap-plugin.php:901 google-sitemap-plugin.php:919
120
- #: google-sitemap-plugin.php:1004 google-sitemap-plugin.php:1043
121
- #: google-sitemap-plugin.php:1072 google-sitemap-plugin.php:1111
122
- #: includes/pro_banners.php:47 includes/class-gglstmp-settings.php:233
123
  msgid "Learn More"
124
  msgstr "Дізнатись більше"
125
 
126
- #: google-sitemap-plugin.php:906 google-sitemap-plugin.php:955
127
- #: google-sitemap-plugin.php:990 google-sitemap-plugin.php:1027
128
- #: google-sitemap-plugin.php:1058 google-sitemap-plugin.php:1099
129
  msgid "Unexpected error"
130
  msgstr "Неочікуванна помилка"
131
 
132
- #: google-sitemap-plugin.php:919 google-sitemap-plugin.php:1004
133
- #: google-sitemap-plugin.php:1072
134
  msgid "Manual verification required."
135
  msgstr "Потрібна ручна перевірка."
136
 
137
- #: google-sitemap-plugin.php:949
138
  msgid "Deleted"
139
  msgstr "Видалено"
140
 
141
- #: google-sitemap-plugin.php:1019 google-sitemap-plugin.php:1022
142
- #: google-sitemap-plugin.php:1038
143
  msgid "Verification Code"
144
  msgstr "Код підтвердження"
145
 
146
- #: google-sitemap-plugin.php:1020
147
  msgid "Received and added to the site"
148
  msgstr "Отриман і додан на сайт"
149
 
150
- #: google-sitemap-plugin.php:1023
151
  msgid "Received, but has not been added to the site"
152
  msgstr "Отриман, але не додан на сайт"
153
 
154
- #: google-sitemap-plugin.php:1111
155
  msgid "Please add the sitemap file manually."
156
  msgstr "Будь ласка, додайте файл Sitemap вручну."
157
 
158
- #: google-sitemap-plugin.php:1116
159
  msgid "Error 404"
160
  msgstr "Помилка 404"
161
 
162
- #: google-sitemap-plugin.php:1118
163
  #, php-format
164
  msgid "The sitemap file %s not found."
165
  msgstr "Файл sitemap %s не знайдено."
166
 
167
- #: google-sitemap-plugin.php:1128
168
  msgid "The sitemap file not found."
169
  msgstr "Файл sitemap не знайдено."
170
 
171
- #: google-sitemap-plugin.php:1203
172
  msgid "FAQ"
173
  msgstr "FAQ"
174
 
175
- #: google-sitemap-plugin.php:1204
176
  msgid "Support"
177
  msgstr "Підтримка"
178
 
179
- #: includes/pro_banners.php:18
180
- msgid "This option is available in Pro version of plugin"
181
- msgstr "Ця опція наявна в Pro версії плагіну"
182
-
183
- #: includes/pro_banners.php:21 includes/class-gglstmp-settings.php:218
184
- #: includes/class-gglstmp-settings.php:323
185
- msgid "Close"
186
- msgstr "Закрити"
187
-
188
- #: includes/pro_banners.php:42 includes/pro_banners.php:106
189
- #: includes/pro_banners.php:185
190
- msgid "Change Frequency"
191
- msgstr "Частота оновлення"
192
-
193
- #: includes/pro_banners.php:45 includes/pro_banners.php:143
194
- #: includes/pro_banners.php:151 includes/pro_banners.php:159
195
- #: includes/pro_banners.php:167 includes/pro_banners.php:175
196
- msgid "Monthly"
197
- msgstr "щомісяця"
198
-
199
- #: includes/pro_banners.php:47
200
- msgid ""
201
- "This value provides general information to search engines and tell them how "
202
- "frequently the page is likely to change. It may not correlate exactly to how "
203
- "often they crawl the website."
204
- msgstr ""
205
- "Це значення надає загальну інформацію пошуковим системам і повідомляє їм, як "
206
- "часто сторінка може змінитися. Це може не точно відповідати тому, як часто "
207
- "вони сканують сайт."
208
-
209
- #: includes/pro_banners.php:51
210
- msgid "External Sitemap Update Frequency"
211
- msgstr "Частота оновлення зовнішніх sitemap"
212
-
213
- #: includes/pro_banners.php:53
214
- msgid "day(-s)"
215
- msgstr "днів"
216
-
217
- #: includes/pro_banners.php:55
218
- msgid ""
219
- "This option sets how often the external index sitemap files should be "
220
- "checked for updates."
221
- msgstr ""
222
- "Ця опція встановлює, як часто буде виконуватися перевірка на наявність "
223
- "оновлень у зовнішніх файлах sitemap."
224
-
225
- #: includes/pro_banners.php:69
226
- msgid "Example of site pages' tree"
227
- msgstr "Приклад дерева сторінок сайту"
228
-
229
- #: includes/pro_banners.php:82
230
- msgid "All"
231
- msgstr "Всі"
232
-
233
- #: includes/pro_banners.php:83
234
- msgid "Enabled"
235
- msgstr "Активні"
236
-
237
- #: includes/pro_banners.php:84
238
- msgid "Disabled"
239
- msgstr "Деактивовані"
240
-
241
- #: includes/pro_banners.php:88
242
- msgid "Search"
243
- msgstr "Пошук"
244
-
245
- #: includes/pro_banners.php:93
246
- msgid "Bulk Actions"
247
- msgstr "Групові дії"
248
-
249
- #: includes/pro_banners.php:95
250
- msgid "Apply"
251
- msgstr "Застосувати"
252
-
253
- #: includes/pro_banners.php:97
254
- msgid "items"
255
- msgstr "елементів"
256
-
257
- #: includes/pro_banners.php:105 includes/pro_banners.php:184
258
- msgid "Priority"
259
- msgstr "Пріоритет"
260
-
261
- #: includes/pro_banners.php:107 includes/pro_banners.php:186
262
- msgid "Last Changed"
263
- msgstr "Дата зміни"
264
-
265
- #: includes/pro_banners.php:116
266
- msgid "Please note"
267
- msgstr "Будь ласка, зауважте"
268
-
269
- #: includes/pro_banners.php:117
270
- msgid ""
271
- "All URLs listed in the sitemap.xml must use the same protocol (HTTP or "
272
- "HTTPS) and must be located on the same host as the sitemap.xml. For more "
273
- "info see"
274
- msgstr ""
275
- "Всі URL-адреси, що містяться в sitemap.xml, повинні використовувати той "
276
- "самий протокол ( HTTP або HTTPS ) та розміщені на тому ж хості, що і файл "
277
- "sitemap.xml. Для отримання більш детальної інформації прочитайте"
278
-
279
- #: includes/pro_banners.php:117
280
- msgid "here"
281
- msgstr "тут"
282
-
283
- #: includes/pro_banners.php:124
284
- msgid "Always"
285
- msgstr "завжди"
286
-
287
- #: includes/pro_banners.php:128
288
- msgid "Save"
289
- msgstr "Зберегти"
290
-
291
- #: includes/pro_banners.php:136
292
- msgid "Edit"
293
- msgstr "Редагувати"
294
-
295
- #: includes/pro_banners.php:137
296
- msgid "Disable"
297
- msgstr "Деактивувати"
298
-
299
- #: includes/pro_banners.php:138 includes/class-gglstmp-settings.php:253
300
- msgid "Delete"
301
- msgstr "Видалити"
302
-
303
- #: includes/pro_banners.php:141
304
- msgid "Yes"
305
- msgstr "Так"
306
-
307
- #: includes/pro_banners.php:149 includes/pro_banners.php:157
308
- #: includes/pro_banners.php:165 includes/pro_banners.php:173
309
- msgid "No"
310
- msgstr "Ні"
311
-
312
  #: includes/class-gglstmp-settings.php:28
313
  msgid "Structure"
314
  msgstr "Структура"
@@ -321,67 +188,72 @@ msgstr "Різне"
321
  msgid "License Key"
322
  msgstr "Ліцензійний ключ"
323
 
324
- #: includes/class-gglstmp-settings.php:147
325
  msgid "Settings saved."
326
  msgstr "Налаштування збережено."
327
 
328
- #: includes/class-gglstmp-settings.php:167
329
  #, php-format
330
  msgctxt "%robots.txt file link%"
331
  msgid "Enable to add a sitemap file path to the %s file."
332
- msgstr "Увімкніть для додання шляха до файлу Sitemap в файл %s."
333
 
334
- #: includes/class-gglstmp-settings.php:172
335
  #, php-format
336
  msgctxt "%reading settings page link%"
337
  msgid "\"Search Engine Visibility\" option have to be unmarked on the %s."
338
  msgstr ""
339
  "Опція \"Видимість для пошукових систем\" повинна бути не відзначена на %s."
340
 
341
- #: includes/class-gglstmp-settings.php:176
342
  msgctxt "...on the reading settings page."
343
  msgid "Reading Settings page"
344
  msgstr "сторінці налаштувань читання"
345
 
346
- #: includes/class-gglstmp-settings.php:180
347
  msgid ""
348
  "Also, please add the following code to the beginning of your \".htaccess\" "
349
  "file:"
350
  msgstr ""
351
- "Також, будь ласка, додайте наступний код у початок Вашого файлу \".htaccess"
352
  "\":"
353
 
354
- #: includes/class-gglstmp-settings.php:194
355
  msgid "This option will be applied to all websites in the network."
356
  msgstr "Ця опція буде застосована до всіх сайтів в мережі."
357
 
358
- #: includes/class-gglstmp-settings.php:197
359
  msgid "Activate"
360
  msgstr "Активувати"
361
 
362
- #: includes/class-gglstmp-settings.php:201
363
  msgid "Install Now"
364
  msgstr "Встановити зараз"
365
 
366
- #: includes/class-gglstmp-settings.php:207
367
  #, php-format
368
  msgid "%s Plugin"
369
  msgstr "%s плагін"
370
 
371
- #: includes/class-gglstmp-settings.php:209
372
  #, php-format
373
  msgid "Enable to allow XML files access using %s plugin."
374
  msgstr "Увімкніть, щоб дозволити доступ до файлів XML за допомогою плагіна %s."
375
 
376
- #: includes/class-gglstmp-settings.php:210
377
  msgid "The following string will be added to your .htaccess file"
378
  msgstr "До вашого .htaccess файл буде додано наступну строку"
379
 
380
- #: includes/class-gglstmp-settings.php:229
 
 
 
 
 
381
  msgid "URLs Limit"
382
  msgstr "Ліміт посилань"
383
 
384
- #: includes/class-gglstmp-settings.php:233
385
  msgid ""
386
  "A sitemap file can't contain more than 50,000 URLs and must be no larger "
387
  "than 50 MB uncompressed."
@@ -389,22 +261,22 @@ msgstr ""
389
  "Файл sitemap не може містити більш 50000 посилань і не повинен перевищувати "
390
  "50MB в нестислому стані."
391
 
392
- #: includes/class-gglstmp-settings.php:234
393
  msgid "Decrease the limit if your sitemap exceeds file size limit."
394
  msgstr ""
395
  "Зменшіть значення якщо розмір файлу sitemap перевищує допустиме значення."
396
 
397
- #: includes/class-gglstmp-settings.php:235
398
  msgid ""
399
  "When the limit is reached, the sitemap will be splitted into multiple files."
400
  msgstr ""
401
  "Файл sitemap буде розбитий на кілька частин при досягненні ліміту посилань."
402
 
403
- #: includes/class-gglstmp-settings.php:240
404
  msgid "Google Webmaster Tools"
405
  msgstr "Google Webmaster Tools"
406
 
407
- #: includes/class-gglstmp-settings.php:243
408
  msgid ""
409
  "This hosting does not support сURL, so you cannot add a sitemap file "
410
  "automatically."
@@ -412,23 +284,27 @@ msgstr ""
412
  "Ваш хостінг не підтримує сURL, отже ви не можете додати файл Sitemap "
413
  "автоматично."
414
 
415
- #: includes/class-gglstmp-settings.php:246
416
  msgid "Logout from Google Webmaster Tools"
417
  msgstr "Вийти з Google Webmaster Tools"
418
 
419
- #: includes/class-gglstmp-settings.php:250
420
  msgid "Manage Website with Google Webmaster Tools"
421
- msgstr "Управління веб-сайтом за допомогою Google Webmaster Tools"
422
 
423
- #: includes/class-gglstmp-settings.php:252
424
  msgid "Add"
425
  msgstr "Додати"
426
 
427
- #: includes/class-gglstmp-settings.php:254
 
 
 
 
428
  msgid "Get Info"
429
  msgstr "Отримати інформацію"
430
 
431
- #: includes/class-gglstmp-settings.php:256
432
  msgid ""
433
  "Add, delete or get info about this website using your Google Webmaster Tools "
434
  "account."
@@ -436,59 +312,80 @@ msgstr ""
436
  "Додайте, видаліть або отримайте інформацію про цей сайт за допомогою свого "
437
  "облікового запису Google Webmaster Tools."
438
 
439
- #: includes/class-gglstmp-settings.php:264
440
  msgid "Get Authorization Code"
441
  msgstr "Отримати код авторизації"
442
 
443
- #: includes/class-gglstmp-settings.php:267
444
  msgid "Authorize"
445
  msgstr "Авторизуватись"
446
 
447
- #: includes/class-gglstmp-settings.php:270
448
  msgid "Invalid authorization code. Please try again."
449
  msgstr "Невірний код авторизації. Будь ласка спробуйте ще раз."
450
 
451
- #: includes/class-gglstmp-settings.php:275
452
  msgid "You can also add your sitemap to Google Webmaster Tools manually."
453
  msgstr "Ви також можете додати sitemap в Google Webmaster Tools вручну."
454
 
455
- #: includes/class-gglstmp-settings.php:275
456
  msgid "Read the instruction"
457
  msgstr "Читати інструкцію"
458
 
459
- #: includes/class-gglstmp-settings.php:290
460
  msgid "Post category"
461
  msgstr "Категорія записів"
462
 
463
- #: includes/class-gglstmp-settings.php:291
464
  msgid "Post tag"
465
  msgstr "Позначка записів"
466
 
467
- #: includes/class-gglstmp-settings.php:293
468
  msgid "Sitemap Structure"
469
  msgstr "Структура Sitemap"
470
 
471
- #: includes/class-gglstmp-settings.php:298
472
  msgid "Post Types"
473
  msgstr "Типи записів"
474
 
475
- #: includes/class-gglstmp-settings.php:305
476
  msgid "Enable to add post type links to the sitemap."
477
  msgstr "Увімкніть, щоб додати посилання типів записів в sitemap."
478
 
479
- #: includes/class-gglstmp-settings.php:309
480
  msgid "Taxonomies"
481
  msgstr "Таксономії"
482
 
483
- #: includes/class-gglstmp-settings.php:316
484
  msgid "Enable to taxonomy links to the sitemap."
485
  msgstr "Увімкніть, щоб додати посилання таксономій в sitemap."
486
 
487
- #: includes/class-gglstmp-settings.php:370
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
488
  msgid "Note"
489
  msgstr "Примітка"
490
 
491
- #: includes/class-gglstmp-settings.php:370
492
  msgid ""
493
  "Another plugin is providing Google Client functionality and may interrupt "
494
  "proper plugin work."
@@ -496,25 +393,138 @@ msgstr ""
496
  "Сторонній плагін вже надає функціонал для Google Client, що може заважати "
497
  "коректній роботі плагіна."
498
 
499
- #: includes/class-gglstmp-settings.php:380
500
- #, php-format
 
 
 
 
 
 
 
 
 
 
 
 
 
 
501
  msgid ""
502
- "Can't access XML files on subsites. Add the following rule %s to your %s "
503
- "file in %s after %s or install, activate and enable %s plugin option to "
504
- "resolve this error."
505
  msgstr ""
506
- "Неможливо отримати доступ до файлів XML на підсайтах. Додайте наступне "
507
- "правило %s в файл %s в %s після %s або встановіть, активуйте і включіть "
508
- "опцію плагіна %s, щоб усунути цю помилку."
509
 
510
- #: includes/class-gglstmp-settings.php:395
511
- #, php-format
512
- msgid "%s is in the site root directory."
513
- msgstr "%s знаходиться в кореневому каталозі сайту."
514
 
515
- #: includes/class-gglstmp-settings.php:396
516
- msgid "The Sitemap file"
517
- msgstr "Файл Sitemap"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
518
 
519
  #~ msgid "Cannot edit \"robots.txt\". Check your permissions"
520
  #~ msgstr "Неможливо відредагувати файл \"robots.txt\". Перевірте свої права"
2
  msgstr ""
3
  "Project-Id-Version: Google Sitemap\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-12-28 11:14+0200\n"
6
+ "PO-Revision-Date: 2017-12-28 11:14+0200\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: BestWebSoft <plugin@bestwebsoft.com>\n"
9
  "Language: uk\n"
13
  "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Generator: Poedit 1.8.7.1\n"
17
  "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
18
  "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
  #: google-sitemap-plugin.php:38 google-sitemap-plugin.php:48
22
+ #: includes/class-gglstmp-settings.php:160
23
  msgid "Google Sitemap Settings"
24
  msgstr "Налаштування Google Sitemap"
25
 
26
+ #: google-sitemap-plugin.php:49 google-sitemap-plugin.php:833
27
+ #: google-sitemap-plugin.php:1231 google-sitemap-plugin.php:1244
28
  #: includes/class-gglstmp-settings.php:27
29
  msgid "Settings"
30
  msgstr "Налаштування"
31
 
32
  #: google-sitemap-plugin.php:57 google-sitemap-plugin.php:58
33
+ #: google-sitemap-plugin.php:838
34
  msgid "Custom Links"
35
  msgstr "Користувацькі посилання"
36
 
38
  msgid "Upgrade to Pro"
39
  msgstr "Оновитися на Pro"
40
 
41
+ #: google-sitemap-plugin.php:359
42
  msgid "Post categories"
43
  msgstr "Категорії записів"
44
 
45
+ #: google-sitemap-plugin.php:360
46
  msgid "Post tags"
47
  msgstr "Позначки записів"
48
 
49
+ #: google-sitemap-plugin.php:834
50
  msgid "Please enable JavaScript in your browser."
51
  msgstr "Будь ласка, увімкніть JavaScript у вашому браузері."
52
 
53
+ #: google-sitemap-plugin.php:839
54
  msgid "Add New"
55
  msgstr "Додати посилання"
56
 
57
+ #: google-sitemap-plugin.php:881 google-sitemap-plugin.php:969
58
+ #: google-sitemap-plugin.php:1020
59
  msgid "Website"
60
  msgstr "Сайт"
61
 
62
+ #: google-sitemap-plugin.php:892 google-sitemap-plugin.php:896
63
+ #: google-sitemap-plugin.php:985 google-sitemap-plugin.php:1001
64
+ #: google-sitemap-plugin.php:1024 google-sitemap-plugin.php:1038
65
  msgid "Status"
66
  msgstr "Статус"
67
 
68
+ #: google-sitemap-plugin.php:893 google-sitemap-plugin.php:927
69
+ #: google-sitemap-plugin.php:1002
70
  msgid "Not added"
71
  msgstr "Не додано"
72
 
73
+ #: google-sitemap-plugin.php:897 google-sitemap-plugin.php:930
74
+ #: google-sitemap-plugin.php:1025 google-sitemap-plugin.php:1136
75
  msgid "Added"
76
  msgstr "Додано"
77
 
78
+ #: google-sitemap-plugin.php:899 google-sitemap-plugin.php:1081
79
+ #: google-sitemap-plugin.php:1093 google-sitemap-plugin.php:1107
80
  msgid "Verification Status"
81
  msgstr "Статус перевірки"
82
 
83
+ #: google-sitemap-plugin.php:901 google-sitemap-plugin.php:1094
84
  msgid "Verified"
85
  msgstr "Перевірено"
86
 
87
+ #: google-sitemap-plugin.php:903
88
  msgid "Not verified"
89
  msgstr "Не перевірено"
90
 
91
+ #: google-sitemap-plugin.php:912 google-sitemap-plugin.php:1115
92
  msgid "Sitemap Status"
93
  msgstr "Статус Sitemap"
94
 
95
+ #: google-sitemap-plugin.php:932
96
  msgid "Added with errors."
97
  msgstr "Додано з помилками."
98
 
99
+ #: google-sitemap-plugin.php:932
100
  msgid "View errors in Google Webmaster Tools"
101
  msgstr "Подивитися помилки у Google Webmaster Tools"
102
 
103
+ #: google-sitemap-plugin.php:935
104
  msgid "Sitemap URL"
105
  msgstr "Sitemap URL"
106
 
107
+ #: google-sitemap-plugin.php:938 google-sitemap-plugin.php:954
108
+ #: google-sitemap-plugin.php:1004 google-sitemap-plugin.php:1040
109
+ #: google-sitemap-plugin.php:1078 google-sitemap-plugin.php:1109
110
+ #: google-sitemap-plugin.php:1149 google-sitemap-plugin.php:1169
111
+ #: includes/class-gglstmp-settings.php:401
112
  msgid "Error"
113
  msgstr "Помилка"
114
 
115
+ #: google-sitemap-plugin.php:938
116
  msgid "Please check the sitemap file manually."
117
  msgstr "Будь ласка, перевірте файл sitemap вручну."
118
 
119
+ #: google-sitemap-plugin.php:938 google-sitemap-plugin.php:956
120
+ #: google-sitemap-plugin.php:1043 google-sitemap-plugin.php:1082
121
+ #: google-sitemap-plugin.php:1112 google-sitemap-plugin.php:1152
122
+ #: includes/class-gglstmp-settings.php:236 includes/pro_banners.php:47
123
  msgid "Learn More"
124
  msgstr "Дізнатись більше"
125
 
126
+ #: google-sitemap-plugin.php:943 google-sitemap-plugin.php:992
127
+ #: google-sitemap-plugin.php:1028 google-sitemap-plugin.php:1066
128
+ #: google-sitemap-plugin.php:1097 google-sitemap-plugin.php:1139
129
  msgid "Unexpected error"
130
  msgstr "Неочікуванна помилка"
131
 
132
+ #: google-sitemap-plugin.php:956 google-sitemap-plugin.php:1043
133
+ #: google-sitemap-plugin.php:1112
134
  msgid "Manual verification required."
135
  msgstr "Потрібна ручна перевірка."
136
 
137
+ #: google-sitemap-plugin.php:986
138
  msgid "Deleted"
139
  msgstr "Видалено"
140
 
141
+ #: google-sitemap-plugin.php:1058 google-sitemap-plugin.php:1061
142
+ #: google-sitemap-plugin.php:1077
143
  msgid "Verification Code"
144
  msgstr "Код підтвердження"
145
 
146
+ #: google-sitemap-plugin.php:1059
147
  msgid "Received and added to the site"
148
  msgstr "Отриман і додан на сайт"
149
 
150
+ #: google-sitemap-plugin.php:1062
151
  msgid "Received, but has not been added to the site"
152
  msgstr "Отриман, але не додан на сайт"
153
 
154
+ #: google-sitemap-plugin.php:1152
155
  msgid "Please add the sitemap file manually."
156
  msgstr "Будь ласка, додайте файл Sitemap вручну."
157
 
158
+ #: google-sitemap-plugin.php:1157
159
  msgid "Error 404"
160
  msgstr "Помилка 404"
161
 
162
+ #: google-sitemap-plugin.php:1159
163
  #, php-format
164
  msgid "The sitemap file %s not found."
165
  msgstr "Файл sitemap %s не знайдено."
166
 
167
+ #: google-sitemap-plugin.php:1169
168
  msgid "The sitemap file not found."
169
  msgstr "Файл sitemap не знайдено."
170
 
171
+ #: google-sitemap-plugin.php:1246
172
  msgid "FAQ"
173
  msgstr "FAQ"
174
 
175
+ #: google-sitemap-plugin.php:1247
176
  msgid "Support"
177
  msgstr "Підтримка"
178
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
179
  #: includes/class-gglstmp-settings.php:28
180
  msgid "Structure"
181
  msgstr "Структура"
188
  msgid "License Key"
189
  msgstr "Ліцензійний ключ"
190
 
191
+ #: includes/class-gglstmp-settings.php:150
192
  msgid "Settings saved."
193
  msgstr "Налаштування збережено."
194
 
195
+ #: includes/class-gglstmp-settings.php:170
196
  #, php-format
197
  msgctxt "%robots.txt file link%"
198
  msgid "Enable to add a sitemap file path to the %s file."
199
+ msgstr "Увімкніть, щоб додати шлях до файлу Sitemap в файл %s."
200
 
201
+ #: includes/class-gglstmp-settings.php:175
202
  #, php-format
203
  msgctxt "%reading settings page link%"
204
  msgid "\"Search Engine Visibility\" option have to be unmarked on the %s."
205
  msgstr ""
206
  "Опція \"Видимість для пошукових систем\" повинна бути не відзначена на %s."
207
 
208
+ #: includes/class-gglstmp-settings.php:179
209
  msgctxt "...on the reading settings page."
210
  msgid "Reading Settings page"
211
  msgstr "сторінці налаштувань читання"
212
 
213
+ #: includes/class-gglstmp-settings.php:183
214
  msgid ""
215
  "Also, please add the following code to the beginning of your \".htaccess\" "
216
  "file:"
217
  msgstr ""
218
+ "Також, будь ласка, додайте наступний код у початок вашого файлу \".htaccess"
219
  "\":"
220
 
221
+ #: includes/class-gglstmp-settings.php:197
222
  msgid "This option will be applied to all websites in the network."
223
  msgstr "Ця опція буде застосована до всіх сайтів в мережі."
224
 
225
+ #: includes/class-gglstmp-settings.php:200
226
  msgid "Activate"
227
  msgstr "Активувати"
228
 
229
+ #: includes/class-gglstmp-settings.php:204
230
  msgid "Install Now"
231
  msgstr "Встановити зараз"
232
 
233
+ #: includes/class-gglstmp-settings.php:210
234
  #, php-format
235
  msgid "%s Plugin"
236
  msgstr "%s плагін"
237
 
238
+ #: includes/class-gglstmp-settings.php:212
239
  #, php-format
240
  msgid "Enable to allow XML files access using %s plugin."
241
  msgstr "Увімкніть, щоб дозволити доступ до файлів XML за допомогою плагіна %s."
242
 
243
+ #: includes/class-gglstmp-settings.php:213
244
  msgid "The following string will be added to your .htaccess file"
245
  msgstr "До вашого .htaccess файл буде додано наступну строку"
246
 
247
+ #: includes/class-gglstmp-settings.php:221
248
+ #: includes/class-gglstmp-settings.php:326 includes/pro_banners.php:21
249
+ msgid "Close"
250
+ msgstr "Закрити"
251
+
252
+ #: includes/class-gglstmp-settings.php:232
253
  msgid "URLs Limit"
254
  msgstr "Ліміт посилань"
255
 
256
+ #: includes/class-gglstmp-settings.php:236
257
  msgid ""
258
  "A sitemap file can't contain more than 50,000 URLs and must be no larger "
259
  "than 50 MB uncompressed."
261
  "Файл sitemap не може містити більш 50000 посилань і не повинен перевищувати "
262
  "50MB в нестислому стані."
263
 
264
+ #: includes/class-gglstmp-settings.php:237
265
  msgid "Decrease the limit if your sitemap exceeds file size limit."
266
  msgstr ""
267
  "Зменшіть значення якщо розмір файлу sitemap перевищує допустиме значення."
268
 
269
+ #: includes/class-gglstmp-settings.php:238
270
  msgid ""
271
  "When the limit is reached, the sitemap will be splitted into multiple files."
272
  msgstr ""
273
  "Файл sitemap буде розбитий на кілька частин при досягненні ліміту посилань."
274
 
275
+ #: includes/class-gglstmp-settings.php:243
276
  msgid "Google Webmaster Tools"
277
  msgstr "Google Webmaster Tools"
278
 
279
+ #: includes/class-gglstmp-settings.php:246
280
  msgid ""
281
  "This hosting does not support сURL, so you cannot add a sitemap file "
282
  "automatically."
284
  "Ваш хостінг не підтримує сURL, отже ви не можете додати файл Sitemap "
285
  "автоматично."
286
 
287
+ #: includes/class-gglstmp-settings.php:249
288
  msgid "Logout from Google Webmaster Tools"
289
  msgstr "Вийти з Google Webmaster Tools"
290
 
291
+ #: includes/class-gglstmp-settings.php:253
292
  msgid "Manage Website with Google Webmaster Tools"
293
+ msgstr "Керуйте веб-сайтом за допомогою Google Webmaster Tools"
294
 
295
+ #: includes/class-gglstmp-settings.php:255
296
  msgid "Add"
297
  msgstr "Додати"
298
 
299
+ #: includes/class-gglstmp-settings.php:256 includes/pro_banners.php:138
300
+ msgid "Delete"
301
+ msgstr "Видалити"
302
+
303
+ #: includes/class-gglstmp-settings.php:257
304
  msgid "Get Info"
305
  msgstr "Отримати інформацію"
306
 
307
+ #: includes/class-gglstmp-settings.php:259
308
  msgid ""
309
  "Add, delete or get info about this website using your Google Webmaster Tools "
310
  "account."
312
  "Додайте, видаліть або отримайте інформацію про цей сайт за допомогою свого "
313
  "облікового запису Google Webmaster Tools."
314
 
315
+ #: includes/class-gglstmp-settings.php:267
316
  msgid "Get Authorization Code"
317
  msgstr "Отримати код авторизації"
318
 
319
+ #: includes/class-gglstmp-settings.php:270
320
  msgid "Authorize"
321
  msgstr "Авторизуватись"
322
 
323
+ #: includes/class-gglstmp-settings.php:273
324
  msgid "Invalid authorization code. Please try again."
325
  msgstr "Невірний код авторизації. Будь ласка спробуйте ще раз."
326
 
327
+ #: includes/class-gglstmp-settings.php:278
328
  msgid "You can also add your sitemap to Google Webmaster Tools manually."
329
  msgstr "Ви також можете додати sitemap в Google Webmaster Tools вручну."
330
 
331
+ #: includes/class-gglstmp-settings.php:278
332
  msgid "Read the instruction"
333
  msgstr "Читати інструкцію"
334
 
335
+ #: includes/class-gglstmp-settings.php:293
336
  msgid "Post category"
337
  msgstr "Категорія записів"
338
 
339
+ #: includes/class-gglstmp-settings.php:294
340
  msgid "Post tag"
341
  msgstr "Позначка записів"
342
 
343
+ #: includes/class-gglstmp-settings.php:296
344
  msgid "Sitemap Structure"
345
  msgstr "Структура Sitemap"
346
 
347
+ #: includes/class-gglstmp-settings.php:301
348
  msgid "Post Types"
349
  msgstr "Типи записів"
350
 
351
+ #: includes/class-gglstmp-settings.php:308
352
  msgid "Enable to add post type links to the sitemap."
353
  msgstr "Увімкніть, щоб додати посилання типів записів в sitemap."
354
 
355
+ #: includes/class-gglstmp-settings.php:312
356
  msgid "Taxonomies"
357
  msgstr "Таксономії"
358
 
359
+ #: includes/class-gglstmp-settings.php:319
360
  msgid "Enable to taxonomy links to the sitemap."
361
  msgstr "Увімкніть, щоб додати посилання таксономій в sitemap."
362
 
363
+ #: includes/class-gglstmp-settings.php:375
364
+ #, php-format
365
+ msgid "%s is in the site root directory."
366
+ msgstr "%s знаходиться в кореневому каталозі сайту."
367
+
368
+ #: includes/class-gglstmp-settings.php:376
369
+ msgid "The Sitemap file"
370
+ msgstr "Файл Sitemap"
371
+
372
+ #: includes/class-gglstmp-settings.php:402
373
+ #, php-format
374
+ msgid ""
375
+ "Can't access XML files. Try to add the following rule %s to your %s file "
376
+ "which is located in the root of your website to resolve this error. Find the "
377
+ "following line %s and paste the code just after it."
378
+ msgstr ""
379
+ "Неможливо отримати доступ до файлiв XML. Щоб вирiшити дану проблему "
380
+ "спробуйте додати наступне правило %s до файлу %s, який знаходиться в "
381
+ "кореневому каталозi сайту. Знайдiть наступну строку %s та додайте цей код "
382
+ "пiсля неї."
383
+
384
+ #: includes/class-gglstmp-settings.php:418
385
  msgid "Note"
386
  msgstr "Примітка"
387
 
388
+ #: includes/class-gglstmp-settings.php:418
389
  msgid ""
390
  "Another plugin is providing Google Client functionality and may interrupt "
391
  "proper plugin work."
393
  "Сторонній плагін вже надає функціонал для Google Client, що може заважати "
394
  "коректній роботі плагіна."
395
 
396
+ #: includes/pro_banners.php:18
397
+ msgid "This option is available in Pro version of plugin"
398
+ msgstr "Ця опція наявна в Pro версії плагіну"
399
+
400
+ #: includes/pro_banners.php:42 includes/pro_banners.php:106
401
+ #: includes/pro_banners.php:185
402
+ msgid "Change Frequency"
403
+ msgstr "Частота оновлення"
404
+
405
+ #: includes/pro_banners.php:45 includes/pro_banners.php:143
406
+ #: includes/pro_banners.php:151 includes/pro_banners.php:159
407
+ #: includes/pro_banners.php:167 includes/pro_banners.php:175
408
+ msgid "Monthly"
409
+ msgstr "щомісяця"
410
+
411
+ #: includes/pro_banners.php:47
412
  msgid ""
413
+ "This value provides general information to search engines and tell them how "
414
+ "frequently the page is likely to change. It may not correlate exactly to how "
415
+ "often they crawl the website."
416
  msgstr ""
417
+ "Це значення надає загальну інформацію пошуковим системам і повідомляє їм, як "
418
+ "часто сторінка може змінитися. Це може не точно відповідати тому, як часто "
419
+ "вони сканують сайт."
420
 
421
+ #: includes/pro_banners.php:51
422
+ msgid "External Sitemap Update Frequency"
423
+ msgstr "Частота оновлення зовнішніх sitemap"
 
424
 
425
+ #: includes/pro_banners.php:53
426
+ msgid "day(-s)"
427
+ msgstr "днів"
428
+
429
+ #: includes/pro_banners.php:55
430
+ msgid ""
431
+ "This option sets how often the external index sitemap files should be "
432
+ "checked for updates."
433
+ msgstr ""
434
+ "Ця опція встановлює, як часто буде виконуватися перевірка на наявність "
435
+ "оновлень у зовнішніх файлах sitemap."
436
+
437
+ #: includes/pro_banners.php:69
438
+ msgid "Example of site pages' tree"
439
+ msgstr "Приклад дерева сторінок сайту"
440
+
441
+ #: includes/pro_banners.php:82
442
+ msgid "All"
443
+ msgstr "Всі"
444
+
445
+ #: includes/pro_banners.php:83
446
+ msgid "Enabled"
447
+ msgstr "Активні"
448
+
449
+ #: includes/pro_banners.php:84
450
+ msgid "Disabled"
451
+ msgstr "Деактивовані"
452
+
453
+ #: includes/pro_banners.php:88
454
+ msgid "Search"
455
+ msgstr "Пошук"
456
+
457
+ #: includes/pro_banners.php:93
458
+ msgid "Bulk Actions"
459
+ msgstr "Групові дії"
460
+
461
+ #: includes/pro_banners.php:95
462
+ msgid "Apply"
463
+ msgstr "Застосувати"
464
+
465
+ #: includes/pro_banners.php:97
466
+ msgid "items"
467
+ msgstr "елементів"
468
+
469
+ #: includes/pro_banners.php:105 includes/pro_banners.php:184
470
+ msgid "Priority"
471
+ msgstr "Пріоритет"
472
+
473
+ #: includes/pro_banners.php:107 includes/pro_banners.php:186
474
+ msgid "Last Changed"
475
+ msgstr "Дата зміни"
476
+
477
+ #: includes/pro_banners.php:116
478
+ msgid "Please note"
479
+ msgstr "Будь ласка, зауважте"
480
+
481
+ #: includes/pro_banners.php:117
482
+ msgid ""
483
+ "All URLs listed in the sitemap.xml must use the same protocol (HTTP or "
484
+ "HTTPS) and must be located on the same host as the sitemap.xml. For more "
485
+ "info see"
486
+ msgstr ""
487
+ "Всі URL-адреси, що містяться в sitemap.xml, повинні використовувати той "
488
+ "самий протокол ( HTTP або HTTPS ) та розміщені на тому ж хості, що і файл "
489
+ "sitemap.xml. Для отримання більш детальної інформації прочитайте"
490
+
491
+ #: includes/pro_banners.php:117
492
+ msgid "here"
493
+ msgstr "тут"
494
+
495
+ #: includes/pro_banners.php:124
496
+ msgid "Always"
497
+ msgstr "завжди"
498
+
499
+ #: includes/pro_banners.php:128
500
+ msgid "Save"
501
+ msgstr "Зберегти"
502
+
503
+ #: includes/pro_banners.php:136
504
+ msgid "Edit"
505
+ msgstr "Редагувати"
506
+
507
+ #: includes/pro_banners.php:137
508
+ msgid "Disable"
509
+ msgstr "Деактивувати"
510
+
511
+ #: includes/pro_banners.php:141
512
+ msgid "Yes"
513
+ msgstr "Так"
514
+
515
+ #: includes/pro_banners.php:149 includes/pro_banners.php:157
516
+ #: includes/pro_banners.php:165 includes/pro_banners.php:173
517
+ msgid "No"
518
+ msgstr "Ні"
519
+
520
+ #~ msgid ""
521
+ #~ "Can't access XML files on subsites. Add the following rule %s to your %s "
522
+ #~ "file in %s after %s or install, activate and enable %s plugin option to "
523
+ #~ "resolve this error."
524
+ #~ msgstr ""
525
+ #~ "Неможливо отримати доступ до файлів XML на підсайтах. Додайте наступне "
526
+ #~ "правило %s в файл %s в %s після %s або встановіть, активуйте і включіть "
527
+ #~ "опцію плагіна %s, щоб усунути цю помилку."
528
 
529
  #~ msgid "Cannot edit \"robots.txt\". Check your permissions"
530
  #~ msgstr "Неможливо відредагувати файл \"robots.txt\". Перевірте свої права"
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: bestwebsoft
3
  Donate link: https://bestwebsoft.com/donate/
4
  Tags: add pages to sitemap, add posts to sitemap, add sitemap, google, google sitemap, google sitemap plugin, sitemap file path, update sitemap, google webmaster tools, site map, sitemaps, webmaster tools
5
  Requires at least: 3.9
6
- Tested up to: 4.8.1
7
- Stable tag: 3.1.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -18,6 +18,8 @@ The plugin supports default WordPress pages as well as custom URLs. It can be al
18
 
19
  Improve your website SEO today!
20
 
 
 
21
  https://www.youtube.com/watch?v=CgYXKRXpj_0
22
 
23
  = Free Features =
@@ -143,6 +145,9 @@ Please make sure that the problem hasn't been discussed yet on our forum (<https
143
 
144
  == Changelog ==
145
 
 
 
 
146
  = V3.1.1 - 31.08.2017 =
147
  * Update : The Czech language file has been updated.
148
 
@@ -329,6 +334,9 @@ Please make sure that the problem hasn't been discussed yet on our forum (<https
329
 
330
  == Upgrade Notice ==
331
 
 
 
 
332
  = V3.1.1 =
333
  * Languages updated.
334
 
3
  Donate link: https://bestwebsoft.com/donate/
4
  Tags: add pages to sitemap, add posts to sitemap, add sitemap, google, google sitemap, google sitemap plugin, sitemap file path, update sitemap, google webmaster tools, site map, sitemaps, webmaster tools
5
  Requires at least: 3.9
6
+ Tested up to: 4.9.1
7
+ Stable tag: 3.1.2
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
18
 
19
  Improve your website SEO today!
20
 
21
+ [View Demo](https://bestwebsoft.com/demo-for-google-sitemap/?ref=readme)
22
+
23
  https://www.youtube.com/watch?v=CgYXKRXpj_0
24
 
25
  = Free Features =
145
 
146
  == Changelog ==
147
 
148
+ = V3.1.2 - 28.12.2017 =
149
+ * Bugfix : Sitemap file updating issue has been fixed.
150
+
151
  = V3.1.1 - 31.08.2017 =
152
  * Update : The Czech language file has been updated.
153
 
334
 
335
  == Upgrade Notice ==
336
 
337
+ = V3.1.2 =
338
+ * Bugs fixed.
339
+
340
  = V3.1.1 =
341
  * Languages updated.
342
 
screenshot-1.png CHANGED
Binary file
screenshot-2.png CHANGED
Binary file
screenshot-3.png CHANGED
Binary file