Gallery by BestWebSoft - Version 4.6.8

Version Description

  • 10.09.2021 =
  • Update : All functionality was updated for WordPress 5.8.1
  • Update : BWS Panel section was updated.
  • Pro : The ability to optimize images has been added.
  • Bugfix : The bug with displaying lightbox was fixed.
Download this release

Release Info

Developer bestwebsoft
Plugin Icon 128x128 Gallery by BestWebSoft
Version 4.6.8
Comparing to
See all releases

Code changes from version 4.6.7 to 4.6.8

Files changed (39) hide show
  1. bws_menu/bws_functions.php +50 -2
  2. bws_menu/bws_menu.php +3 -3
  3. bws_menu/class-bws-settings.php +204 -3
  4. bws_menu/css/general_style.css +72 -1
  5. bws_menu/css/modal.css +2 -1
  6. bws_menu/css/style.css +2 -2
  7. bws_menu/deactivation-form.php +1 -1
  8. bws_menu/images/affiliate-background.png +0 -0
  9. bws_menu/images/earn-icon.svg +18 -0
  10. bws_menu/images/join-icon.svg +41 -0
  11. bws_menu/images/promote-icon.svg +20 -0
  12. bws_menu/js/bws_menu.js +1 -0
  13. bws_menu/js/bws_tooltip.js +5 -1
  14. bws_menu/js/general_script.js +3 -1
  15. bws_menu/js/shortcode-button.js +1 -0
  16. bws_menu/languages/bestwebsoft-cs_CZ.mo +0 -0
  17. bws_menu/languages/bestwebsoft-cs_CZ.po +535 -471
  18. bws_menu/languages/bestwebsoft-es_ES.mo +0 -0
  19. bws_menu/languages/bestwebsoft-es_ES.po +300 -269
  20. bws_menu/languages/bestwebsoft-fr_FR.mo +0 -0
  21. bws_menu/languages/bestwebsoft-fr_FR.po +1010 -593
  22. bws_menu/languages/bestwebsoft-id_ID.mo +0 -0
  23. bws_menu/languages/bestwebsoft-id_ID.po +462 -472
  24. bws_menu/languages/bestwebsoft-nl_NL.mo +0 -0
  25. bws_menu/languages/bestwebsoft-nl_NL.po +465 -466
  26. bws_menu/languages/bestwebsoft-pl_PL.mo +0 -0
  27. bws_menu/languages/bestwebsoft-pl_PL.po +438 -473
  28. bws_menu/languages/bestwebsoft-ru_RU.mo +0 -0
  29. bws_menu/languages/bestwebsoft-ru_RU.po +302 -273
  30. bws_menu/languages/bestwebsoft-uk.mo +0 -0
  31. bws_menu/languages/bestwebsoft-uk.po +303 -273
  32. bws_menu/product_list.php +1 -1
  33. gallery-plugin.php +4 -2
  34. includes/class-gllr-settings.php +18 -1
  35. languages/gallery-plugin-ru_RU.mo +0 -0
  36. languages/gallery-plugin-ru_RU.po +335 -301
  37. languages/gallery-plugin-uk.mo +0 -0
  38. languages/gallery-plugin-uk.po +334 -301
  39. readme.txt +29 -13
bws_menu/bws_functions.php CHANGED
@@ -481,6 +481,53 @@ if ( ! function_exists( 'bws_plugin_suggest_feature_banner' ) ) {
481
  <?php }
482
  }
483
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
484
  if ( ! function_exists( 'bws_show_settings_notice' ) ) {
485
  function bws_show_settings_notice() { ?>
486
  <div id="bws_save_settings_notice" class="updated fade below-h2" style="display:none;">
@@ -697,6 +744,7 @@ if ( ! function_exists( 'bws_enqueue_settings_scripts' ) ) {
697
  function bws_enqueue_settings_scripts() {
698
  wp_enqueue_script( 'jquery-ui-resizable' );
699
  wp_enqueue_script( 'jquery-ui-tabs' );
 
700
  }
701
  }
702
 
@@ -799,7 +847,7 @@ if ( ! class_exists( 'BWS_admin_tooltip' ) ) {
799
  if ( ! in_array( $tooltip_args['position']['edge'], array( 'left', 'right', 'top', 'bottom' ) ) ) {
800
  $tooltip_args['position']['edge'] = 'top';
801
  }
802
- if ( ! in_array( $tooltip_args['position']['align'], array( 'top', 'bottom', 'left', 'right', 'center', ) ) ) {
803
  $tooltip_args['position']['align'] = 'center';
804
  }
805
  }
@@ -957,7 +1005,7 @@ if ( ! function_exists( 'bws_help_tab' ) ) {
957
 
958
  $screen->set_help_sidebar(
959
  '<p><strong>' . __( 'For more information:', 'bestwebsoft' ) . '</strong></p>' .
960
- '<p><a href="https://drive.google.com/folderview?id=0B5l8lO-CaKt9VGh0a09vUjNFNjA&usp=sharing#list" target="_blank">' . __( 'Documentation', 'bestwebsoft' ) . '</a></p>' .
961
  '<p><a href="https://www.youtube.com/user/bestwebsoft/playlists?flow=grid&sort=da&view=1" target="_blank">' . __( 'Video Instructions', 'bestwebsoft' ) . '</a></p>' .
962
  '<p><a href="https://support.bestwebsoft.com/hc/en-us/requests/new" target="_blank">' . __( 'Submit a Request', 'bestwebsoft' ) . '</a></p>'
963
  );
481
  <?php }
482
  }
483
 
484
+ if ( ! function_exists( 'bws_affiliate_postbox' ) ) {
485
+ function bws_affiliate_postbox() {
486
+
487
+ $dismissed = get_user_meta( get_current_user_id(), '_bws_affiliate_postbox_dismissed', true );
488
+
489
+ if ( ! empty( $dismissed ) && strtotime( '-3 month' ) < $dismissed ) {
490
+ return;
491
+ }
492
+
493
+ if ( isset( $_POST['bws_hide_affiliate_banner' ] ) && check_admin_referer( 'bws_affiliate_postbox', 'bws_settings_nonce_name' ) ) {
494
+ update_user_meta( get_current_user_id(), '_bws_affiliate_postbox_dismissed', strtotime( 'now' ) );
495
+ return;
496
+ }
497
+
498
+ $bws_link = esc_url( 'https://bestwebsoft.com/affiliate/?utm_source=plugin&utm_medium=settings&utm_campaign=affiliate_program' ); ?>
499
+ <div id="bws-affiliate-postbox" class="postbox">
500
+ <form action="" method="post">
501
+ <button class="notice-dismiss bws_hide_settings_notice" title="<?php esc_html_e( 'Close notice', 'bestwebsoft' ); ?>"></button>
502
+ <input type="hidden" name="bws_hide_affiliate_banner" value="hide" />
503
+ <?php wp_nonce_field( 'bws_affiliate_postbox', 'bws_settings_nonce_name' ); ?>
504
+ </form>
505
+ <p>BESTWEBSOFT</p>
506
+ <h3><?php esc_html_e( 'Affiliate Program', 'bestwebsoft' ); ?></h3>
507
+ <div class="bws-affiliate-get"><?php printf( esc_html__( 'Get %s', 'bestwebsoft' ), '20%' ); ?></div>
508
+ <div><?php esc_html_e( 'from each BestWebSoft plugin and theme sale you refer', 'bestwebsoft' ); ?></div>
509
+ <div class="bws-row">
510
+ <div class="bws-cell">
511
+ <img src="<?php echo bws_menu_url( "images/join-icon.svg" ); ?>" alt="" />
512
+ <div><?php esc_html_e( 'Join affiliate program', 'bestwebsoft' ); ?></div>
513
+ </div>
514
+ <div class="bws-cell">
515
+ <img src="<?php echo bws_menu_url( "images/promote-icon.svg" ); ?>" alt="" />
516
+ <div><?php esc_html_e( 'Promote and sell products', 'bestwebsoft' ); ?></div>
517
+ </div>
518
+ <div class="bws-cell">
519
+ <img src="<?php echo bws_menu_url( "images/earn-icon.svg" ); ?>" alt="" />
520
+ <div><?php esc_html_e( 'Get commission!', 'bestwebsoft' ); ?></div>
521
+ </div>
522
+ </div>
523
+ <div class="clear"></div>
524
+ <p>
525
+ <a class="button" href="<?php echo $bws_link; ?>" target="_blank"><?php esc_html_e( 'Start Now', 'bestwebsoft' ); ?></a>
526
+ </p>
527
+ </div>
528
+ <?php }
529
+ }
530
+
531
  if ( ! function_exists( 'bws_show_settings_notice' ) ) {
532
  function bws_show_settings_notice() { ?>
533
  <div id="bws_save_settings_notice" class="updated fade below-h2" style="display:none;">
744
  function bws_enqueue_settings_scripts() {
745
  wp_enqueue_script( 'jquery-ui-resizable' );
746
  wp_enqueue_script( 'jquery-ui-tabs' );
747
+ wp_enqueue_style( 'bws-modal-css', bws_menu_url( 'css/modal.css' ) );
748
  }
749
  }
750
 
847
  if ( ! in_array( $tooltip_args['position']['edge'], array( 'left', 'right', 'top', 'bottom' ) ) ) {
848
  $tooltip_args['position']['edge'] = 'top';
849
  }
850
+ if ( ! in_array( $tooltip_args['position']['align'], array( 'top', 'bottom', 'left', 'right', 'center' ) ) ) {
851
  $tooltip_args['position']['align'] = 'center';
852
  }
853
  }
1005
 
1006
  $screen->set_help_sidebar(
1007
  '<p><strong>' . __( 'For more information:', 'bestwebsoft' ) . '</strong></p>' .
1008
+ '<p><a href="https://bestwebsoft.com/documentation/" target="_blank">' . __( 'Documentation', 'bestwebsoft' ) . '</a></p>' .
1009
  '<p><a href="https://www.youtube.com/user/bestwebsoft/playlists?flow=grid&sort=da&view=1" target="_blank">' . __( 'Video Instructions', 'bestwebsoft' ) . '</a></p>' .
1010
  '<p><a href="https://support.bestwebsoft.com/hc/en-us/requests/new" target="_blank">' . __( 'Submit a Request', 'bestwebsoft' ) . '</a></p>'
1011
  );
bws_menu/bws_menu.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  * Function for displaying BestWebSoft menu
4
- * Version: 2.3.6
5
  */
6
 
7
  if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) )
@@ -393,12 +393,12 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
393
  <p>
394
  <strong><?php _e( 'Need help installing the plugin?', 'bestwebsoft' ); ?></strong>
395
  <br>
396
- <a target="_blank" href="https://docs.google.com/document/d/1-hvn6WRvWnOqj5v5pLUk7Awyu87lq5B_dO-Tv-MC9JQ/"><?php _e( 'How to install WordPress plugin from your admin Dashboard (ZIP archive)', 'bestwebsoft' ); ?></a>
397
  </p>
398
  <p>
399
  <strong><?php _e( 'Get Started', 'bestwebsoft' ); ?></strong>
400
  <br>
401
- <a target="_blank" href="https://drive.google.com/drive/u/0/folders/0B5l8lO-CaKt9VGh0a09vUjNFNjA"><?php _e( 'Documentation', 'bestwebsoft' ); ?></a>
402
  <br>
403
  <a target="_blank" href="https://www.youtube.com/user/bestwebsoft"><?php _e( 'Video Instructions', 'bestwebsoft' ); ?></a>
404
  <br>
1
  <?php
2
  /*
3
  * Function for displaying BestWebSoft menu
4
+ * Version: 2.4.0
5
  */
6
 
7
  if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) )
393
  <p>
394
  <strong><?php _e( 'Need help installing the plugin?', 'bestwebsoft' ); ?></strong>
395
  <br>
396
+ <a target="_blank" href="https://bestwebsoft.com/documentation/how-to-install-a-wordpress-product/how-to-install-a-wordpress-plugin/"><?php _e( 'How to install WordPress plugin from your admin Dashboard (ZIP archive)', 'bestwebsoft' ); ?></a>
397
  </p>
398
  <p>
399
  <strong><?php _e( 'Get Started', 'bestwebsoft' ); ?></strong>
400
  <br>
401
+ <a target="_blank" href="https://bestwebsoft.com/documentation/"><?php _e( 'Documentation', 'bestwebsoft' ); ?></a>
402
  <br>
403
  <a target="_blank" href="https://www.youtube.com/user/bestwebsoft"><?php _e( 'Video Instructions', 'bestwebsoft' ); ?></a>
404
  <br>
bws_menu/class-bws-settings.php CHANGED
@@ -230,7 +230,10 @@ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
230
  <?php /**
231
  * action - Display custom metabox
232
  */
233
- do_action( __CLASS__ . '_display_metabox' ); ?>
 
 
 
234
  </div>
235
  </div>
236
  <div id="postbox-container-2" class="postbox-container">
@@ -767,13 +770,13 @@ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
767
  <p>
768
  <strong><?php _e( 'Need help installing the plugin?', 'bestwebsoft' ); ?></strong>
769
  <br>
770
- <a target="_blank" href="https://docs.google.com/document/d/1-hvn6WRvWnOqj5v5pLUk7Awyu87lq5B_dO-Tv-MC9JQ/"><?php _e( 'How to install WordPress plugin from your admin Dashboard (ZIP archive)', 'bestwebsoft' ); ?></a>
771
  </p>
772
  <br>
773
  <p>
774
  <strong><?php _e( 'Get Started', 'bestwebsoft' ); ?></strong>
775
  <br>
776
- <a target="_blank" href="https://drive.google.com/drive/u/0/folders/0B5l8lO-CaKt9VGh0a09vUjNFNjA"><?php _e( 'Documentation', 'bestwebsoft' ); ?></a>
777
  <br>
778
  <a target="_blank" href="https://www.youtube.com/user/bestwebsoft"><?php _e( 'Video Instructions', 'bestwebsoft' ); ?></a>
779
  <br>
@@ -1124,5 +1127,203 @@ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
1124
  update_option( $this->prefix . '_options', $this->options );
1125
  }
1126
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1127
  }
1128
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
230
  <?php /**
231
  * action - Display custom metabox
232
  */
233
+ do_action( __CLASS__ . '_display_metabox' );
234
+
235
+ if ( function_exists( 'bws_affiliate_postbox' ) )
236
+ bws_affiliate_postbox(); ?>
237
  </div>
238
  </div>
239
  <div id="postbox-container-2" class="postbox-container">
770
  <p>
771
  <strong><?php _e( 'Need help installing the plugin?', 'bestwebsoft' ); ?></strong>
772
  <br>
773
+ <a target="_blank" href="https://bestwebsoft.com/documentation/how-to-install-a-wordpress-product/how-to-install-a-wordpress-plugin/"><?php _e( 'How to install WordPress plugin from your admin Dashboard (ZIP archive)', 'bestwebsoft' ); ?></a>
774
  </p>
775
  <br>
776
  <p>
777
  <strong><?php _e( 'Get Started', 'bestwebsoft' ); ?></strong>
778
  <br>
779
+ <a target="_blank" href="https://bestwebsoft.com/documentation/"><?php _e( 'Documentation', 'bestwebsoft' ); ?></a>
780
  <br>
781
  <a target="_blank" href="https://www.youtube.com/user/bestwebsoft"><?php _e( 'Video Instructions', 'bestwebsoft' ); ?></a>
782
  <br>
1127
  update_option( $this->prefix . '_options', $this->options );
1128
  }
1129
  }
1130
+
1131
+ public function add_request_feature() { ?>
1132
+ <div id="bws_request_feature" class="widget-access-link">
1133
+ <button type="button" class="button" ><?php _e( 'Request a Feature', 'bestwebsoft' ); ?></button>
1134
+ </div>
1135
+ <?php $modal_html = '<div class="bws-modal bws-modal-deactivation-feedback bws-modal-request-feature">
1136
+ <div class="bws-modal-dialog">
1137
+ <div class="bws-modal-body">
1138
+ <h2>' . sprintf( __( 'How can we improve %s?', 'bestwebsoft' ), $this->plugins_info['Name'] ) . '</h2>
1139
+ <div class="bws-modal-panel active">
1140
+ <p>' . __( 'We look forward to hear your ideas.', 'bestwebsoft' ) . '</p>
1141
+ <p>
1142
+ <textarea placeholder="' . __( 'Describe your idea', 'bestwebsoft' ) . '..."></textarea>
1143
+ </p>
1144
+ <label class="bws-modal-anonymous-label">
1145
+ <input type="checkbox" /> ' . __( 'Send website data and allow to contact me back', 'bestwebsoft' ) . '
1146
+ </label>
1147
+ </div>
1148
+ </div>
1149
+ <div class="bws-modal-footer">
1150
+ <a href="#" class="button disabled bws-modal-button button-primary">' . __( 'Submit', 'bestwebsoft' ) . '</a>
1151
+ <span class="bws-modal-processing hidden">' . __( 'Processing', 'bestwebsoft' ) . '...</span>
1152
+ <span class="bws-modal-thank-you hidden">' . __( 'Thank you!', 'bestwebsoft' ) . '</span>
1153
+ <div class="clear"></div>
1154
+ </div>
1155
+ </div>
1156
+ </div>';
1157
+
1158
+ $script = "(function($) {
1159
+ var modalHtml = " . json_encode( $modal_html ) . ",
1160
+ \$modal = $( modalHtml );
1161
+
1162
+ \$modal.appendTo( $( 'body' ) );
1163
+
1164
+ $( '#bws_request_feature .button' ).on( 'click', function() {
1165
+ /* Display the dialog box.*/
1166
+ \$modal.addClass( 'active' );
1167
+ $( 'body' ).addClass( 'has-bws-modal' );
1168
+ });
1169
+
1170
+ \$modal.on( 'keypress', 'textarea', function( evt ) {
1171
+ BwsModalEnableButton();
1172
+ });
1173
+
1174
+ \$modal.on( 'click', '.bws-modal-footer .button', function( evt ) {
1175
+ evt.preventDefault();
1176
+
1177
+ if ( $( this ).hasClass( 'disabled' ) ) {
1178
+ return;
1179
+ }
1180
+ var info = \$modal.find( 'textarea' ).val();
1181
+
1182
+ if ( info.length == 0 ) {
1183
+ return;
1184
+ }
1185
+
1186
+ var _parent = $( this ).parents( '.bws-modal:first' ),
1187
+ _this = $( this );
1188
+
1189
+ var is_anonymous = ( \$modal.find( '.bws-modal-anonymous-label' ).find( 'input' ).is( ':checked' ) ) ? 0 : 1;
1190
+
1191
+ $.ajax({
1192
+ url : ajaxurl,
1193
+ method : 'POST',
1194
+ data : {
1195
+ 'action' : 'bws_submit_request_feature_action',
1196
+ 'plugin' : '" . $this->plugin_basename . "',
1197
+ 'info' : info,
1198
+ 'is_anonymous' : is_anonymous,
1199
+ 'bws_ajax_nonce' : '" . wp_create_nonce( 'bws_ajax_nonce' ) . "'
1200
+ },
1201
+ beforeSend: function() {
1202
+ _parent.find( '.bws-modal-footer .bws-modal-button' ).hide();
1203
+ _parent.find( '.bws-modal-footer .bws-modal-processing' ).show();
1204
+ _parent.find( 'textarea, input' ).attr( 'disabled', 'disabled' );
1205
+ },
1206
+ complete : function( message ) {
1207
+ _parent.find( '.bws-modal-footer .bws-modal-processing' ).hide();
1208
+ _parent.find( '.bws-modal-footer .bws-modal-thank-you' ).show();
1209
+ }
1210
+ });
1211
+ });
1212
+
1213
+ /* If the user has clicked outside the window, cancel it. */
1214
+ \$modal.on( 'click', function( evt ) {
1215
+ var \$target = $( evt.target );
1216
+
1217
+ /* If the user has clicked anywhere in the modal dialog, just return. */
1218
+ if ( \$target.hasClass( 'bws-modal-body' ) || \$target.hasClass( 'bws-modal-footer' ) ) {
1219
+ return;
1220
+ }
1221
+
1222
+ /* If the user has not clicked the close button and the clicked element is inside the modal dialog, just return. */
1223
+ if ( ! \$target.hasClass( 'bws-modal-button-close' ) && ( \$target.parents( '.bws-modal-body' ).length > 0 || \$target.parents( '.bws-modal-footer' ).length > 0 ) ) {
1224
+ return;
1225
+ }
1226
+
1227
+ /* Close the modal dialog */
1228
+ \$modal.removeClass( 'active' );
1229
+ $( 'body' ).removeClass( 'has-bws-modal' );
1230
+
1231
+ return false;
1232
+ });
1233
+
1234
+ function BwsModalEnableButton() {
1235
+ \$modal.find( '.bws-modal-button' ).removeClass( 'disabled' ).show();
1236
+ \$modal.find( '.bws-modal-processing' ).hide();
1237
+ }
1238
+
1239
+ function BwsModalDisableButton() {
1240
+ \$modal.find( '.bws-modal-button' ).addClass( 'disabled' );
1241
+ }
1242
+
1243
+ function BwsModalShowPanel() {
1244
+ \$modal.find( '.bws-modal-panel' ).addClass( 'active' );
1245
+ }
1246
+ })(jQuery);";
1247
+
1248
+ /* add script in FOOTER */
1249
+ wp_register_script( 'bws-request-feature-dialog', '', array( 'jquery' ), false, true );
1250
+ wp_enqueue_script( 'bws-request-feature-dialog' );
1251
+ wp_add_inline_script( 'bws-request-feature-dialog', sprintf( $script ) );
1252
+ }
1253
  }
1254
  }
1255
+
1256
+
1257
+ /**
1258
+ * Called after the user has submitted his reason for deactivating the plugin.
1259
+ *
1260
+ * @since 2.1.3
1261
+ */
1262
+ if ( ! function_exists( 'bws_submit_request_feature_action' ) ) {
1263
+ function bws_submit_request_feature_action() {
1264
+ global $bstwbsftwppdtplgns_options, $wp_version, $bstwbsftwppdtplgns_active_plugins, $current_user;
1265
+
1266
+ wp_verify_nonce( $_REQUEST['bws_ajax_nonce'], 'bws_ajax_nonce' );
1267
+
1268
+ $basename = isset( $_REQUEST['plugin'] ) ? stripcslashes( sanitize_text_field( $_REQUEST['plugin'] ) ) : '';
1269
+ $info = stripcslashes( sanitize_text_field( $_REQUEST['info'] ) );
1270
+
1271
+ if ( empty( $info ) || empty( $basename ) ) {
1272
+ exit;
1273
+ }
1274
+
1275
+ $info = substr( $info, 0, 255 );
1276
+ $is_anonymous = isset( $_REQUEST['is_anonymous'] ) && 1 == $_REQUEST['is_anonymous'];
1277
+
1278
+ $options = array(
1279
+ 'product' => $basename,
1280
+ 'info' => $info,
1281
+ );
1282
+
1283
+ if ( ! $is_anonymous ) {
1284
+ if ( ! isset( $bstwbsftwppdtplgns_options ) )
1285
+ $bstwbsftwppdtplgns_options = ( is_multisite() ) ? get_site_option( 'bstwbsftwppdtplgns_options' ) : get_option( 'bstwbsftwppdtplgns_options' );
1286
+
1287
+ if ( ! empty( $bstwbsftwppdtplgns_options['track_usage']['usage_id'] ) ) {
1288
+ $options['usage_id'] = $bstwbsftwppdtplgns_options['track_usage']['usage_id'];
1289
+ } else {
1290
+ $options['usage_id'] = false;
1291
+ $options['url'] = get_bloginfo( 'url' );
1292
+ $options['wp_version'] = $wp_version;
1293
+ $options['is_active'] = false;
1294
+ $options['version'] = $bstwbsftwppdtplgns_active_plugins[ $basename ]['Version'];
1295
+ }
1296
+
1297
+ $options['email'] = $current_user->data->user_email;
1298
+ }
1299
+
1300
+ /* send data */
1301
+ $raw_response = wp_remote_post( 'https://bestwebsoft.com/wp-content/plugins/products-statistics/request-feature/', array(
1302
+ 'method' => 'POST',
1303
+ 'body' => $options,
1304
+ 'timeout' => 15,
1305
+ ) );
1306
+
1307
+ if ( ! is_wp_error( $raw_response ) && 200 == wp_remote_retrieve_response_code( $raw_response ) ) {
1308
+ if ( ! $is_anonymous ) {
1309
+ $response = maybe_unserialize( wp_remote_retrieve_body( $raw_response ) );
1310
+
1311
+ if ( is_array( $response ) && ! empty( $response['usage_id'] ) && $response['usage_id'] != $options['usage_id'] ) {
1312
+ $bstwbsftwppdtplgns_options['track_usage']['usage_id'] = $response['usage_id'];
1313
+
1314
+ if ( is_multisite() )
1315
+ update_site_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
1316
+ else
1317
+ update_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
1318
+ }
1319
+ }
1320
+
1321
+ echo 'done';
1322
+ } else {
1323
+ echo $response->get_error_code() . ': ' . $response->get_error_message();
1324
+ }
1325
+ exit;
1326
+ }
1327
+ }
1328
+
1329
+ add_action( 'wp_ajax_bws_submit_request_feature_action', 'bws_submit_request_feature_action' );
bws_menu/css/general_style.css CHANGED
@@ -425,6 +425,56 @@ div.bws_banner_on_plugin_page .icon {
425
  padding: 15px 20px 21px;
426
  }
427
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
428
  /* display code */
429
  span.bws_code {
430
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0.07);
@@ -483,6 +533,27 @@ span.bws_code {
483
  .bws-tooltip-content a {
484
  color: #00a0d2;
485
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
486
  /*
487
  * bws shortcode insert
488
  */
@@ -816,4 +887,4 @@ span.bws_code {
816
  padding-left: 0;
817
  padding-right: 0;
818
  }
819
- }
425
  padding: 15px 20px 21px;
426
  }
427
  }
428
+ /*
429
+ * affiliate postbox
430
+ */
431
+ #bws-affiliate-postbox {
432
+ background: url("../images/affiliate-background.png") no-repeat center #1a3e59;
433
+ overflow: hidden;
434
+ position: relative;
435
+ padding: 12px;
436
+ color: #ffffff;
437
+ text-align: center;
438
+ }
439
+ #bws-affiliate-postbox .notice-dismiss:active:before,
440
+ #bws-affiliate-postbox .notice-dismiss:focus:before,
441
+ #bws-affiliate-postbox .notice-dismiss:hover:before {
442
+ color: #fff;
443
+ }
444
+ #bws-affiliate-postbox h3 {
445
+ color: #ffffff;
446
+ font-size: 1.3em;
447
+ }
448
+ .bws-affiliate-get {
449
+ color: #f67f48;
450
+ font-size: 1.3em;
451
+ font-weight: bold;
452
+ margin: 10px 0 5px;
453
+ }
454
+ #bws-affiliate-postbox img {
455
+ max-width: 65px;
456
+ margin-bottom: 5px;
457
+ }
458
+ .bws-row {
459
+ margin-top: 25px;
460
+ }
461
+ .bws-cell {
462
+ float: left;
463
+ width: 33.33%;
464
+ }
465
+ .bws-cell div {
466
+ margin: 5px;
467
+ }
468
+ #bws-affiliate-postbox .button {
469
+ background: #dd6930;
470
+ border-color: #dd6930;
471
+ color: #fff;
472
+ margin-top: 5px;
473
+ font-weight: bold;
474
+ }
475
+ #bws-affiliate-postbox .button:hover {
476
+ color: rgba(255, 255, 255, 0.8);
477
+ }
478
  /* display code */
479
  span.bws_code {
480
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0.07);
533
  .bws-tooltip-content a {
534
  color: #00a0d2;
535
  }
536
+ /*
537
+ * styles for Request a Feature link near screen-meta
538
+ */
539
+ #bws_request_feature {
540
+ margin-top: 0;
541
+ }
542
+ #bws_request_feature button {
543
+ border: 1px solid #ccd0d4;
544
+ border-top: none;
545
+ height: auto;
546
+ margin-bottom: 0;
547
+ color: #fff;
548
+ border-radius: 0 0 4px 4px;
549
+ background-color: #0071a1;
550
+ line-height: 1.7;
551
+ box-shadow: 0 0 0 transparent;
552
+ transition: box-shadow .1s linear;
553
+ }
554
+ #bws_request_feature button:hover {
555
+ background-color: #00a0d2;
556
+ }
557
  /*
558
  * bws shortcode insert
559
  */
887
  padding-left: 0;
888
  padding-right: 0;
889
  }
890
+ }
bws_menu/css/modal.css CHANGED
@@ -83,7 +83,8 @@ body.has-bws-modal {
83
  .bws-modal.bws-modal-deactivation-feedback .bws-modal-reason-input input,
84
  .bws-modal.bws-modal-deactivation-feedback .bws-modal-reason-input textarea,
85
  .bws-modal.bws-modal-deactivation-feedback .bws-modal-internal-message input,
86
- .bws-modal.bws-modal-deactivation-feedback .bws-modal-internal-message textarea {
 
87
  width: 100%;
88
  }
89
  .bws-modal.bws-modal-deactivation-feedback li.bws-modal-reason.has-internal-message .bws-modal-internal-message {
83
  .bws-modal.bws-modal-deactivation-feedback .bws-modal-reason-input input,
84
  .bws-modal.bws-modal-deactivation-feedback .bws-modal-reason-input textarea,
85
  .bws-modal.bws-modal-deactivation-feedback .bws-modal-internal-message input,
86
+ .bws-modal.bws-modal-deactivation-feedback .bws-modal-internal-message textarea,
87
+ .bws-modal.bws-modal-request-feature textarea {
88
  width: 100%;
89
  }
90
  .bws-modal.bws-modal-deactivation-feedback li.bws-modal-reason.has-internal-message .bws-modal-internal-message {
bws_menu/css/style.css CHANGED
@@ -152,7 +152,7 @@ body[class*="-bws-panel"] .update-nag {
152
  text-align: left;
153
  line-height: 1;
154
  }
155
- .bws-membership .bws-button {
156
  background: #dd6930;
157
  color: #fff;
158
  text-align: center;
@@ -484,4 +484,4 @@ a.bws_donate {
484
  max-width: 160px;
485
  padding-right: 10px;
486
  }
487
- }
152
  text-align: left;
153
  line-height: 1;
154
  }
155
+ .bws-button {
156
  background: #dd6930;
157
  color: #fff;
158
  text-align: center;
484
  max-width: 160px;
485
  padding-right: 10px;
486
  }
487
+ }
bws_menu/deactivation-form.php CHANGED
@@ -338,7 +338,7 @@ if ( ! function_exists( 'bws_add_deactivation_feedback_dialog_box' ) ) {
338
  /* add script in FOOTER */
339
  wp_register_script( 'bws-deactivation-feedback-dialog-boxes', '', array( 'jquery' ), false, true );
340
  wp_enqueue_script( 'bws-deactivation-feedback-dialog-boxes' );
341
- wp_add_inline_script( 'bws-deactivation-feedback-dialog-boxes', sprintf( $script ) );
342
  }
343
  }
344
 
338
  /* add script in FOOTER */
339
  wp_register_script( 'bws-deactivation-feedback-dialog-boxes', '', array( 'jquery' ), false, true );
340
  wp_enqueue_script( 'bws-deactivation-feedback-dialog-boxes' );
341
+ wp_add_inline_script( 'bws-deactivation-feedback-dialog-boxes', $script );
342
  }
343
  }
344
 
bws_menu/images/affiliate-background.png ADDED
Binary file
bws_menu/images/earn-icon.svg ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <svg width="202" height="202" viewBox="0 0 202 202" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M202 101C202 156.663 156.915 202 101 202C45.0848 202 0 156.663 0 101C0 45.0848 45.0848 0 101 0C156.663 0 202 45.0848 202 101Z" fill="white" fill-opacity="0.47"/>
3
+ <path d="M30.224 88.9104C30.7277 62.9677 52.3886 42.3144 78.5831 42.8181C104.526 43.3218 125.179 64.9827 124.675 91.1772C124.172 117.12 102.511 137.773 76.3162 137.269C50.1217 136.514 29.7202 114.853 30.224 88.9104Z" fill="white"/>
4
+ <path d="M34.758 88.9101C35.2618 65.4862 54.9076 46.5959 78.3316 47.3515C101.756 47.8552 120.646 67.5011 119.89 90.9251C119.386 114.601 99.7406 133.239 76.3166 132.484C52.8927 132.232 34.2543 112.586 34.758 88.9101Z" fill="#3F8ABC"/>
5
+ <path d="M96.9695 102.511C96.9695 91.6808 88.154 88.1546 80.5979 85.384L80.8498 71.2793C84.376 72.2868 87.3984 74.3017 90.169 76.3167L91.4284 77.0723L95.7102 68.7606L94.7027 68.005C89.9171 64.7307 85.3835 62.7157 80.8498 62.212V57.1746H76.568V61.9601C67.2488 62.4638 59.9446 68.7606 60.1964 77.0723C60.1964 87.1471 69.2638 90.6733 76.0643 93.4439L75.8124 109.312C71.2787 108.052 66.4932 104.778 63.4708 101.756L62.2114 100.496L56.9221 108.304L57.9296 109.06C63.2189 113.845 69.7675 116.868 75.8124 117.875V122.913H80.0942V118.127C88.4059 118.127 97.2214 112.082 96.9695 102.511ZM70.2712 77.0723C70.2712 73.2943 73.2937 70.7756 76.568 70.5237L76.3161 83.3691C73.0418 82.1097 70.2712 80.0948 70.2712 77.0723ZM80.3461 109.564L80.5979 94.9551C84.376 96.4663 87.1466 98.4813 87.1466 103.015C87.1466 107.297 83.6204 109.312 80.3461 109.564Z" fill="white"/>
6
+ <path d="M57.6789 56.9226C57.6789 56.9226 56.9233 57.6782 55.9158 58.9376C54.6565 60.1969 53.1453 62.2119 51.3822 64.4787C50.6266 65.7381 49.6191 66.9974 48.8635 68.5086C47.856 69.768 47.3522 71.5311 46.3448 73.0423C45.5891 74.8054 44.8335 76.3166 44.3298 78.0797C44.0779 78.8353 43.8261 79.8428 43.5742 80.8503C43.3223 81.8578 43.3223 82.6134 43.0704 83.6209C42.5667 85.384 42.5667 87.3989 42.3148 89.162C42.063 90.9251 42.3148 92.9401 42.3148 94.7032C42.5667 96.4662 42.8186 98.2293 43.0704 99.7406C43.0704 100.496 43.3223 101.252 43.5742 102.007C43.8261 102.763 44.0779 103.519 44.0779 104.274C44.5817 105.785 44.8335 107.045 45.3373 108.052C45.841 109.06 46.0929 110.067 46.3448 111.075C46.8485 112.838 47.3522 113.593 47.3522 113.593C47.3522 113.593 46.5966 112.838 45.5891 111.327C45.0854 110.571 44.3298 109.815 43.5742 108.808C42.8186 107.8 42.3148 106.541 41.5592 105.282C41.0555 103.77 40.048 102.511 39.5443 100.748C39.0405 98.985 38.2849 97.2219 38.033 95.2069C38.033 94.1994 37.7812 93.1919 37.7812 92.1844C37.5293 91.177 37.5293 90.1695 37.5293 89.162C37.7812 87.147 37.5293 84.8802 38.2849 82.8653C38.5368 81.8578 38.7886 80.8503 39.0405 79.8428C39.2924 78.8353 39.7961 77.8278 40.048 76.8204C40.2999 75.8129 40.8036 74.8054 41.3074 74.0498C41.8111 73.0423 42.3148 72.2867 42.8186 71.5311C43.8261 70.0199 44.8335 68.2568 46.0929 66.9974C47.1004 65.4862 48.3597 64.4787 49.6191 63.2194C50.6266 62.2119 51.8859 61.2044 52.8934 60.4488C53.9009 59.6932 54.9083 59.1894 55.664 58.6857C56.6714 57.4263 57.6789 56.9226 57.6789 56.9226Z" fill="white"/>
7
+ <path d="M96.2148 122.661C96.2148 122.661 96.9705 121.905 97.9779 120.646C99.2373 119.387 100.749 117.372 102.512 115.105C103.267 113.845 104.275 112.586 105.03 111.075C106.038 109.815 106.542 108.052 107.549 106.541C108.305 104.778 109.06 103.267 109.564 101.504C109.816 100.748 110.068 99.7406 110.32 98.7331C110.571 97.7257 110.571 96.97 110.823 95.9626C111.327 94.1995 111.327 92.1845 111.579 90.4214C111.831 88.6583 111.579 86.6434 111.579 84.8803C111.327 83.1172 111.075 81.3541 110.823 79.8429C110.823 79.0873 110.571 78.3316 110.32 77.576C110.068 76.8204 109.816 76.0648 109.816 75.3092C109.312 73.798 109.06 72.5386 108.556 71.5311C108.053 70.5237 107.801 69.5162 107.549 68.5087C107.045 66.7456 106.542 65.99 106.542 65.99C106.542 65.99 107.297 66.7456 108.305 68.2568C108.808 69.0124 109.564 69.768 110.32 70.7755C111.075 71.783 111.579 73.0424 112.335 74.3017C112.838 75.8129 113.846 77.0723 114.35 78.8354C114.853 80.5985 115.609 82.3616 115.861 84.3765C115.861 85.384 116.113 86.3915 116.113 87.399C116.364 88.4065 116.364 89.4139 116.364 90.4214C116.113 92.4364 116.364 94.7032 115.609 96.7182C115.357 97.7257 115.105 98.7331 114.853 99.7406C114.601 100.748 114.098 101.756 113.846 102.763C113.594 103.771 113.09 104.778 112.586 105.534C112.083 106.541 111.579 107.297 111.075 108.052C110.068 109.564 109.06 111.327 107.801 112.586C106.793 114.097 105.534 115.105 104.275 116.364C103.267 117.372 102.008 118.379 101 119.135C99.9929 119.89 99.2373 120.394 98.2298 120.898C97.2223 122.409 96.2148 122.661 96.2148 122.661Z" fill="#C7C7C7"/>
8
+ <path d="M64.4793 119.135C65.235 93.1921 86.6439 72.5387 112.838 73.0425C138.781 73.5462 159.434 95.2071 158.931 121.402C158.427 147.344 136.766 167.998 110.572 167.494C84.3771 166.738 63.9756 145.329 64.4793 119.135Z" fill="white"/>
9
+ <path d="M69.0131 119.387C69.5169 95.9627 89.1628 77.0724 112.587 77.8281C136.011 78.3318 154.901 97.9777 154.145 121.402C153.642 145.077 133.996 163.716 110.572 162.96C87.1478 162.456 68.5094 142.811 69.0131 119.387Z" fill="#3F8ABC"/>
10
+ <path d="M131.225 132.736C131.225 121.905 122.409 118.379 114.853 115.608L115.105 101.504C118.631 102.511 121.654 104.526 124.424 106.541L125.684 107.297L129.965 98.985L129.21 98.2294C124.424 94.955 119.89 92.9401 115.357 92.4363V87.3989H111.075V92.1845C101.756 92.6882 94.4516 98.985 94.7034 107.297C94.7034 117.371 103.771 120.898 110.571 123.668L110.319 139.536C105.786 138.277 101 135.002 97.9778 131.98L96.7184 130.721L91.1772 139.032L92.1847 139.788C97.474 144.573 104.023 147.596 110.068 148.603V153.641H114.349V148.855C122.661 148.603 131.477 142.307 131.225 132.736ZM104.526 107.549C104.526 103.771 107.549 101.252 110.823 101L110.571 113.845C107.297 112.334 104.526 110.319 104.526 107.549ZM114.601 139.788L114.853 125.179C118.631 126.691 121.402 128.706 121.402 133.239C121.402 137.773 117.876 139.536 114.601 139.788Z" fill="white"/>
11
+ <path d="M91.9326 87.147C91.9326 87.147 91.177 87.9026 90.1695 89.1619C88.9101 90.4213 87.3989 92.4362 85.6358 94.7031C84.8802 95.9624 83.8727 97.2218 83.1171 98.733C82.1096 99.9924 81.6059 101.755 80.5984 103.267C79.8428 105.03 79.0872 106.541 78.5835 108.304C78.3316 109.06 78.0797 110.067 77.8278 111.075C77.576 112.082 77.576 112.838 77.3241 113.845C76.8204 115.608 76.8204 117.623 76.5685 119.386C76.3166 121.149 76.5685 123.164 76.5685 124.928C76.8204 126.691 77.0722 128.454 77.3241 129.965C77.3241 130.721 77.576 131.476 77.8278 132.232C78.0797 132.987 78.3316 133.743 78.3316 134.499C78.8353 136.01 79.0872 137.269 79.5909 138.277C80.0947 139.284 80.3466 140.292 80.5984 141.299C81.1022 143.062 81.6059 143.818 81.6059 143.818C81.6059 143.818 80.8503 143.062 79.8428 141.551C79.3391 140.795 78.5835 140.04 77.8278 139.032C77.0722 138.025 76.5685 136.765 75.8129 135.506C75.3091 133.995 74.3017 132.736 73.7979 130.972C73.2942 129.209 72.5386 127.446 72.2867 125.431C72.2867 124.424 72.0348 123.416 72.0348 122.409C71.783 121.401 71.783 120.394 71.783 119.386C72.0348 117.371 71.783 115.105 72.5386 113.09C72.7904 112.082 73.0423 111.075 73.2942 110.067C73.5461 109.06 74.0498 108.052 74.3017 107.045C74.5535 106.037 75.0573 105.03 75.561 104.274C76.0648 103.267 76.5685 102.511 77.0722 101.755C78.0797 100.244 79.0872 98.4811 80.3466 97.2218C81.354 95.7106 82.6134 94.7031 83.8727 93.4437C84.8802 92.4362 86.1396 91.4288 87.1471 90.6732C88.1545 89.9176 89.162 89.4138 89.9176 88.9101C91.177 87.6507 91.9326 87.147 91.9326 87.147Z" fill="white"/>
12
+ <path d="M130.469 152.885C130.469 152.885 131.224 152.13 132.232 150.87C133.491 149.611 135.002 147.596 136.765 145.329C137.521 144.07 138.528 142.81 139.284 141.299C140.291 140.04 140.795 138.277 141.803 136.766C142.558 135.002 143.314 133.491 143.818 131.728C144.07 130.973 144.321 129.965 144.573 128.958C144.825 127.95 144.825 127.194 145.077 126.187C146.084 124.676 146.084 122.913 146.084 120.898C146.336 119.135 146.084 117.12 146.084 115.357C145.833 113.593 145.581 111.83 145.329 110.319C145.329 109.564 145.077 108.808 144.825 108.052C144.573 107.297 144.321 106.541 144.321 105.786C143.818 104.274 143.566 103.015 143.062 102.007C142.558 101 142.306 99.9925 142.055 98.985C141.551 97.2219 141.047 96.4663 141.047 96.4663C141.047 96.4663 141.803 97.2219 142.81 98.7331C143.314 99.4888 144.07 100.244 144.825 101.252C145.581 102.259 146.084 103.519 146.84 104.778C147.344 106.289 148.351 107.549 148.855 109.312C149.359 111.075 150.114 112.838 150.366 114.853C150.366 115.86 150.618 116.868 150.618 117.875C150.87 118.883 150.87 119.89 150.87 120.898C150.618 122.913 150.87 125.18 150.114 127.194C149.863 128.202 149.611 129.209 149.359 130.217C149.107 131.224 148.603 132.232 148.351 133.239C148.099 134.247 147.596 135.254 147.092 136.01C146.588 137.017 146.084 137.773 145.581 138.529C144.573 140.04 143.566 141.803 142.306 143.062C141.299 144.574 140.04 145.581 138.78 146.84C137.773 147.848 136.513 148.855 135.506 149.611C134.498 150.367 133.491 150.87 132.735 151.374C131.476 152.633 130.469 152.885 130.469 152.885Z" fill="white"/>
13
+ <path d="M77.324 80.5986C77.8277 54.656 99.4886 34.0026 125.683 34.5063C151.626 35.0101 172.279 56.6709 171.775 82.8654C171.02 108.808 149.359 129.461 123.416 128.706C97.4736 128.202 76.8202 106.541 77.324 80.5986Z" fill="white"/>
14
+ <path d="M81.8579 80.5986C82.3616 57.1746 102.007 38.2844 125.431 39.04C148.855 39.5437 167.494 59.1896 166.99 82.6135C166.486 106.289 146.84 124.928 123.416 124.172C99.9925 123.668 81.3541 104.023 81.8579 80.5986Z" fill="#3F8ABC"/>
15
+ <path d="M144.07 93.9477C144.07 83.1173 135.255 79.5911 127.698 76.8206L127.95 62.7158C131.476 63.7233 134.499 65.7383 137.27 67.7532L138.529 68.5088L142.811 60.1971L141.803 59.4415C137.018 56.1672 132.484 54.1522 127.95 53.6485V48.6111H123.669V53.3966C114.349 53.9004 107.045 60.1971 107.297 68.5088C107.297 78.5837 116.364 82.1098 123.165 84.8804L122.913 100.748C118.379 99.4889 113.594 96.2146 110.571 93.1921L109.312 91.9328L103.771 100.244L104.778 101C110.068 105.786 116.616 108.808 122.661 109.816V114.853H126.943V110.067C135.506 109.816 144.322 103.771 144.07 93.9477ZM117.372 68.7607C117.372 64.9827 120.394 62.464 123.669 62.2121L123.417 75.0575C120.142 73.7981 117.372 71.7831 117.372 68.7607ZM127.447 101L127.698 86.3916C131.476 87.9028 134.247 89.9178 134.247 94.4515C134.247 98.9851 130.721 100.748 127.447 101Z" fill="white"/>
16
+ <path d="M104.777 48.6111C104.777 48.6111 104.022 49.3667 103.014 50.626C101.755 51.8854 100.244 53.9004 98.4806 56.1672C97.7249 57.4265 96.7175 58.6859 95.9619 60.1971C94.9544 61.4565 94.4506 63.2196 93.4431 64.7308C92.6875 66.4939 91.9319 68.0051 91.4282 69.7682C91.1763 70.5238 90.9244 71.5313 90.6726 72.5388C90.4207 73.5462 90.4207 74.3019 90.1688 75.3093C89.6651 77.0724 89.6651 79.0874 89.4132 80.8505C89.1614 82.6136 89.4132 84.6285 89.4132 86.3916C89.6651 88.1547 89.917 89.9178 90.1688 91.429C90.1688 92.1847 90.4207 92.9403 90.6726 93.6959C90.9244 94.4515 91.1763 95.2071 91.1763 95.9627C91.6801 97.4739 91.9319 98.7333 92.4357 99.7408C92.9394 100.748 93.1913 101.756 93.4431 102.763C93.9469 104.526 94.4506 105.282 94.4506 105.282C94.4506 105.282 93.695 104.526 92.6875 103.015C92.1838 102.259 91.4282 101.504 90.6726 100.496C89.917 99.4889 89.4132 98.2295 88.6576 96.9702C88.1539 95.459 87.1464 94.1996 86.6427 92.4365C86.1389 90.6734 85.3833 88.9103 85.1314 86.8954C85.1314 85.8879 84.8796 84.8804 84.8796 83.8729C84.6277 82.8655 84.6277 81.858 84.6277 80.8505C84.8796 78.8355 84.6277 76.5687 85.3833 74.5537C85.6352 73.5463 85.887 72.5388 86.1389 71.5313C86.3908 70.5238 86.8945 69.5163 87.1464 68.5088C87.3983 67.5014 87.902 66.4939 88.4057 65.7383C88.9095 64.7308 89.4132 63.9752 89.917 63.2196C90.9244 61.7083 91.9319 59.9452 93.1913 58.6859C94.1988 57.1747 95.4581 56.1672 96.7175 54.9078C97.725 53.9004 98.9843 52.8929 99.9918 52.1373C100.999 51.3817 102.007 50.8779 102.762 50.3742C104.022 48.863 104.777 48.6111 104.777 48.6111Z" fill="white"/>
17
+ <path d="M143.315 114.349C143.315 114.349 144.071 113.594 145.078 112.334C146.337 111.075 147.849 109.06 149.612 106.793C150.367 105.534 151.375 104.274 152.13 102.763C153.138 101.504 153.642 99.7408 154.649 98.2296C155.405 96.4665 156.16 94.9553 156.664 93.1922C156.916 92.4366 157.168 91.4291 157.42 90.4216C157.672 89.4141 157.672 88.6585 157.923 87.651C158.427 85.8879 158.427 83.873 158.679 82.1099C158.931 80.3468 158.679 78.3318 158.679 76.5687C158.427 74.8057 158.175 73.0426 157.923 71.5313C157.923 70.7757 157.672 70.0201 157.42 69.2645C157.168 68.5089 156.916 67.7533 156.916 66.9977C156.412 65.4864 156.16 64.2271 155.657 63.2196C155.153 62.2121 154.901 61.2047 154.649 60.1972C154.145 58.4341 153.642 57.6785 153.642 57.6785C153.642 57.6785 154.397 58.4341 155.405 59.9453C155.908 60.7009 156.664 61.4565 157.42 62.464C158.175 63.4715 158.679 64.7308 159.435 65.9902C159.938 67.5014 160.946 68.7608 161.45 70.5239C161.953 72.2869 162.709 74.05 162.961 76.065C162.961 77.0725 163.213 78.08 163.213 79.0874C163.465 80.0949 163.465 81.1024 163.465 82.1099C163.213 84.1249 163.465 86.3917 162.709 88.4066C162.457 89.4141 162.205 90.4216 161.953 91.4291C161.701 92.4366 161.198 93.4441 160.946 94.4515C160.694 95.459 160.19 96.4665 159.686 97.2221C159.183 98.2296 158.679 98.9852 158.175 99.7408C157.168 101.252 156.16 103.015 154.901 104.274C153.893 105.786 152.634 106.793 151.375 108.053C150.367 109.06 149.108 110.068 148.1 110.823C147.093 111.579 146.086 112.082 145.33 112.586C144.322 113.846 143.315 114.349 143.315 114.349Z" fill="white"/>
18
+ </svg>
bws_menu/images/join-icon.svg ADDED
@@ -0,0 +1,41 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <svg width="202" height="202" viewBox="0 0 202 202" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M202 101C202 156.663 156.915 202 101 202C45.0848 202 0 156.663 0 101C0 45.3367 45.0848 0 101 0C156.663 0 202 45.0848 202 101Z" fill="white" fill-opacity="0.47"/>
3
+ <path d="M52.1856 111.848L31.5895 111.346L29.329 112.099L28.5754 112.601V113.103L35.1059 132.681L36.8641 137.951H47.4133L48.418 132.932L54.195 113.103V112.35L52.1856 111.848Z" fill="white"/>
4
+ <path d="M28.4621 113.342C22.669 120.898 13.3498 121.905 11.5867 131.224L11.083 138.277H36.7738L35.0107 132.987L28.4621 113.342Z" fill="#3F8ABC"/>
5
+ <path d="M47.3513 138.277H72.0346L71.5309 131.224C70.2715 124.928 63.2191 121.905 53.8999 113.594L48.3588 133.491L47.3513 138.277Z" fill="#3F8ABC"/>
6
+ <path d="M48.1077 102.511H46.0928H35.2623C32.9955 102.511 31.2324 104.022 31.2324 106.037V115.105C31.2324 117.12 32.9955 118.631 35.2623 118.631H48.1077C50.1227 118.631 51.6339 117.372 52.1377 115.86V115.105V114.853V105.786C52.1377 104.022 50.3746 102.511 48.1077 102.511Z" fill="#FFE2C2"/>
7
+ <path d="M60.7002 85.636C60.1965 85.3842 59.6927 85.8879 59.189 86.6435C59.189 86.3917 59.189 85.8879 59.189 85.636C59.189 74.3019 51.381 64.9827 41.8099 64.9827C32.2389 64.9827 24.4309 74.3019 24.4309 85.636C24.4309 85.8879 24.4309 86.3917 24.4309 86.6435C23.9271 85.8879 23.4234 85.636 22.9197 85.636C21.6603 86.1398 21.4084 89.1622 22.164 92.6884C22.9197 96.2146 24.4309 98.7333 25.6902 98.4814C26.194 98.2296 26.4458 97.9777 26.6977 97.2221C29.7202 105.786 35.2613 113.594 41.8099 113.594C48.3586 113.594 54.1516 105.786 56.9222 97.2221C57.174 97.9777 57.4259 98.4814 57.9296 98.4814C59.189 98.7333 60.7002 96.2146 61.4558 92.6884C62.2114 89.1622 61.9596 86.1398 60.7002 85.636Z" fill="#FFE2C2"/>
8
+ <path d="M30.9804 112.586C30.9804 112.586 31.2323 115.86 37.2771 117.623C43.0702 119.386 39.2921 123.416 39.2921 123.416L34.7584 124.424L31.9879 119.135L30.7285 115.105L30.9804 112.586Z" fill="white"/>
9
+ <path d="M52.3891 113.09C52.3891 113.09 52.1373 116.364 46.0924 118.127C40.2994 119.89 44.0774 123.92 44.0774 123.92L48.6111 124.928L51.3817 119.638L52.641 115.609L52.3891 113.09Z" fill="white"/>
10
+ <path d="M29.4691 112.082L23.1724 115.86L35.0103 132.988L29.4691 112.082Z" fill="white" fill-opacity="0.47"/>
11
+ <path d="M54.1524 111.831L60.701 116.868L48.3594 133.24L54.1524 111.831Z" fill="white" fill-opacity="0.47"/>
12
+ <path d="M40.5738 125.142L37.4438 137.951H46.3121L42.6605 125.142H40.5738Z" fill="#3F8ABC"/>
13
+ <path d="M39.2921 118.379L44.5814 118.631L45.337 122.409L44.3296 126.187H39.544L38.2847 122.661L39.2921 118.379Z" fill="#3F8ABC"/>
14
+ <path d="M23.1727 101.504C19.6465 95.7108 18.3872 89.4141 19.1428 84.3766C20.654 76.8205 23.6764 70.7757 28.462 66.7457C29.2176 61.7083 32.24 58.9377 38.033 58.9377C52.8934 59.9452 60.9532 68.7607 63.9757 82.8654C64.9832 87.9028 63.7238 94.1996 59.9458 99.9926C55.9158 107.801 58.4345 113.594 62.2126 121.653C52.6415 118.631 46.3448 115.357 48.3597 111.327C53.649 99.237 59.442 88.4066 51.8859 78.3318C49.3672 78.3318 38.033 86.3916 31.2325 80.5986C24.432 90.6734 29.9732 101.252 35.0106 112.838C37.0256 116.868 30.7288 120.142 21.1577 123.165C24.9358 115.105 27.2026 109.06 23.1727 101.504Z" fill="#D1AB86"/>
15
+ <path d="M167.997 111.579L145.581 111.327L143.062 112.082L142.307 112.334V113.09L149.359 132.484L151.374 137.773H162.96L163.967 132.988L170.012 113.09L170.264 112.334L167.997 111.579Z" fill="white"/>
16
+ <path d="M142.307 113.09C131.728 115.105 123.417 119.89 123.417 127.698L122.661 137.773H151.374L149.359 132.484L142.307 113.09Z" fill="#3F8ABC"/>
17
+ <path d="M162.96 137.773H190.666L189.911 127.698C189.911 120.394 181.095 115.357 170.013 113.09L163.968 132.988L162.96 137.773Z" fill="#3F8ABC"/>
18
+ <path d="M163.716 102.763H161.449H149.611C147.093 102.763 145.33 104.274 145.33 106.289V115.105C145.33 116.868 147.345 118.631 149.611 118.631H163.716C165.731 118.631 167.494 117.372 167.998 115.86V115.105V114.853V106.289C167.998 104.274 165.983 102.763 163.716 102.763Z" fill="#FFE2C2"/>
19
+ <path d="M177.066 86.6434C176.562 86.3915 175.806 86.8952 175.303 87.6508C175.303 87.399 175.303 86.8952 175.303 86.6434C175.303 75.5611 166.991 66.7456 156.664 66.7456C146.337 66.7456 138.026 75.5611 138.026 86.6434C138.026 86.8952 138.026 87.399 138.026 87.6508C137.522 86.8952 136.766 86.6434 136.263 86.6434C135.003 86.8952 134.5 90.1695 135.255 93.4439C136.011 96.97 137.774 99.2369 139.033 98.985C139.537 98.7331 139.789 98.4813 140.041 97.7256C143.315 106.037 149.36 113.342 156.412 113.342C163.465 113.342 169.761 105.785 172.784 97.7256C173.036 98.4813 173.288 98.985 173.791 98.985C175.051 99.2369 176.814 96.97 177.569 93.4439C178.829 90.1695 178.577 87.1471 177.066 86.6434Z" fill="#FFE2C2"/>
20
+ <path d="M145.077 112.082C145.077 112.082 145.329 115.357 151.878 117.12C158.175 118.883 153.893 122.913 153.893 122.913L148.855 123.92L146.085 118.631L144.825 114.601L145.077 112.082Z" fill="white"/>
21
+ <path d="M168.249 112.838C168.249 112.838 167.997 116.112 161.449 117.875C155.152 119.638 159.434 123.668 159.434 123.668L164.471 124.676L167.494 119.387L168.753 115.357L168.249 112.838Z" fill="white"/>
22
+ <path d="M143.315 110.823L137.522 113.342L149.36 132.484L143.315 110.823Z" fill="white" fill-opacity="0.47"/>
23
+ <path d="M170.265 111.075L175.806 113.846L163.969 132.988L170.265 111.075Z" fill="white" fill-opacity="0.47"/>
24
+ <path d="M155.908 125.431L152.885 137.773H161.449L157.923 125.431H155.908Z" fill="#3F8ABC"/>
25
+ <path d="M154.397 118.127H159.435L160.442 121.905L159.435 125.935H154.397L153.39 122.157L154.397 118.127Z" fill="#3F8ABC"/>
26
+ <path d="M168.25 70.7756C170.769 58.434 133.492 58.9377 138.026 87.651L140.293 97.7258C140.293 97.7258 154.649 89.4141 165.228 76.0649C169.258 77.828 171.273 81.1023 172.028 89.1622L173.036 97.7258L175.302 87.651C175.302 87.651 178.577 66.9976 168.25 70.7756Z" fill="#D1AB86"/>
27
+ <path d="M97.725 145.077L75.8123 110.068L87.1464 101.504L115.608 103.519L126.438 113.594L102.007 147.344C100.747 146.589 99.2362 145.833 97.725 145.077Z" fill="white"/>
28
+ <path d="M118.126 105.785L126.438 107.8C126.438 107.8 139.284 109.815 141.55 113.342C145.832 116.112 146.084 149.611 145.328 149.863C144.573 150.115 105.533 149.863 105.533 149.863C104.022 148.855 102.51 147.848 100.999 147.092L118.126 105.785Z" fill="#3F8ABC"/>
29
+ <path d="M83.621 105.785L75.5611 107.8C75.5611 107.8 62.7158 109.815 60.4489 113.342C56.1671 116.112 55.9153 149.611 56.6709 149.863C57.4265 150.115 107.801 149.863 107.801 149.863C109.312 148.855 104.022 148.351 101 147.092L83.621 105.785Z" fill="#3F8ABC"/>
30
+ <path d="M113.593 87.9028H88.1545V107.801H113.593V87.9028Z" fill="#FFE2C2"/>
31
+ <path d="M80.3469 75.0572C81.8581 90.4212 93.4442 101.755 101 101.755C108.808 101.755 119.639 89.9175 121.654 75.0572C123.417 60.4487 112.334 52.8926 101 52.8926C89.4142 53.1444 78.8357 60.4487 80.3469 75.0572Z" fill="#FFE2C2"/>
32
+ <path d="M122.157 59.9451C120.394 54.152 114.852 47.3516 107.8 45.5885C101.755 44.0772 91.1767 42.3141 81.8575 51.6333C80.5981 52.8927 78.0794 62.4638 78.3313 64.9825C79.3388 74.8054 80.3463 77.3241 80.3463 77.3241L82.865 78.3316C82.865 78.3316 81.6056 75.0573 83.3687 70.2717C83.8724 69.0124 84.3762 67.753 85.1318 66.7456C91.1767 70.0199 102.763 66.4937 109.815 67.2493C114.852 68.0049 115.86 73.5461 118.882 73.7979C119.134 76.3166 118.631 78.0797 118.631 78.0797L121.149 77.0722C121.149 77.0722 121.401 76.3166 121.905 73.7979C122.409 73.7979 122.912 73.7979 122.912 73.7979C122.912 73.7979 124.172 66.9974 122.157 59.9451Z" fill="#D1AB86"/>
33
+ <path d="M119.639 77.5759C118.631 80.5983 117.624 83.6208 119.135 84.1245C120.394 84.6282 123.165 82.3614 124.424 79.339C125.432 76.3165 125.432 73.2941 124.172 73.0422C122.661 72.2866 120.646 74.5534 119.639 77.5759Z" fill="#FFE2C2"/>
34
+ <path d="M82.1092 77.5759C83.1167 80.5983 84.1242 83.6208 82.613 84.1245C81.3536 84.6282 78.583 82.3614 77.3237 79.339C76.3162 76.3165 76.3162 73.2941 77.5755 73.0422C79.0868 72.2866 81.1017 74.5534 82.1092 77.5759Z" fill="#FFE2C2"/>
35
+ <path d="M94.4514 111.075L100.748 116.364L107.297 111.075L100.748 105.785L94.4514 111.075Z" fill="#3F8ABC"/>
36
+ <path d="M102.008 115.104L105.786 133.491L101.252 148.855L95.4595 133.491L99.7413 115.104H102.008Z" fill="#3F8ABC"/>
37
+ <path d="M114.601 97.7258L100.748 105.786L105.282 115.357L115.86 105.534C115.86 105.534 118.631 104.778 117.623 103.519C116.868 102.259 114.601 101 114.601 97.7258Z" fill="white"/>
38
+ <path d="M87.1477 97.7258L100.749 105.786L96.2151 115.357L85.6365 105.282C85.6365 105.282 82.8659 104.526 83.8734 103.267C84.8809 102.259 87.1477 101 87.1477 97.7258Z" fill="white"/>
39
+ <path d="M100.748 146.84L116.364 102.008L121.653 106.289L127.194 109.312L120.394 120.394H117.371L119.386 126.943L100.748 146.84Z" fill="white" fill-opacity="0.47"/>
40
+ <path d="M100.749 146.84L85.3847 102.008L80.0954 106.037L74.0505 109.312L81.3548 120.394H84.3772L82.3623 126.943L100.749 146.84Z" fill="white" fill-opacity="0.47"/>
41
+ </svg>
bws_menu/images/promote-icon.svg ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <svg width="202" height="202" viewBox="0 0 202 202" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0)">
3
+ <path d="M202.007 100.905C202.007 45.1232 156.787 -0.0964947 101.006 -0.0964918C45.2244 -0.0964889 0.00463195 45.1233 0.00463434 100.905C0.00463673 156.686 45.2244 201.906 101.006 201.906C156.787 201.906 202.007 156.686 202.007 100.905Z" fill="white" fill-opacity="0.47"/>
4
+ <path d="M51.8859 150.366C48.6116 158.678 54.6565 164.471 61.2051 164.975C67.7537 165.479 73.5467 157.922 71.2799 151.122C68.7612 144.321 68.2575 144.825 68.2575 144.825C68.2575 144.825 69.0131 143.818 70.0206 142.81C71.028 141.551 71.028 139.536 70.0206 138.277L68.2575 135.758C68.2575 135.758 69.2649 134.75 70.2724 133.491C71.2799 132.232 71.5318 130.217 70.2724 128.957L68.2575 126.691C68.2575 126.691 69.0131 125.683 69.7687 124.424C70.5243 123.164 70.2724 121.149 69.0131 119.89L66.7462 117.623L65.7388 105.785L50.1228 105.282C50.6265 105.03 55.4121 141.803 51.8859 150.366Z" fill="#3F8ABC"/>
5
+ <path d="M142.81 53.6483L170.768 44.3291V145.329L146.085 136.262L141.047 124.424L142.81 53.6483Z" fill="#3F8ABC"/>
6
+ <path d="M154.397 145.329L61.7089 108.052L61.457 83.6208L154.397 44.0771V145.329Z" fill="white"/>
7
+ <path d="M49.8701 95.7108C49.8701 103.519 43.5733 109.564 36.0172 109.564C28.2092 109.564 22.1643 103.267 22.1643 95.7108C22.1643 87.9028 28.4611 81.8579 36.0172 81.8579C43.5733 81.8579 49.8701 87.9028 49.8701 95.7108Z" fill="white"/>
8
+ <path d="M68.2573 80.5984H27.4543V110.823H68.2573V80.5984Z" fill="#3F8ABC"/>
9
+ <path d="M68.2573 101H27.4543V110.823H68.2573V101Z" fill="#3F8ABC"/>
10
+ <path d="M61.4563 104.526H50.374V107.045H61.4563V104.526Z" fill="#F2F2F2"/>
11
+ <path d="M38.5357 85.8876C38.5357 87.147 37.5282 88.4063 36.017 88.4063C34.7576 88.4063 33.4983 87.3988 33.4983 85.8876C33.4983 84.6282 34.5058 83.3689 36.017 83.3689C37.2763 83.3689 38.5357 84.3764 38.5357 85.8876Z" fill="white"/>
12
+ <path d="M60.1965 164.975C65.2339 141.299 59.9446 129.21 52.3885 122.913C53.1441 133.491 53.8997 146.085 52.1366 150.367C48.8623 158.175 53.8997 163.716 60.1965 164.975Z" fill="white"/>
13
+ <path d="M154.396 139.284L160.441 141.551V47.8552L154.396 49.8702V139.284Z" fill="#3F8ABC"/>
14
+ </g>
15
+ <defs>
16
+ <clipPath id="clip0">
17
+ <rect width="202" height="202" fill="white"/>
18
+ </clipPath>
19
+ </defs>
20
+ </svg>
bws_menu/js/bws_menu.js CHANGED
@@ -1,4 +1,5 @@
1
  (function($) {
 
2
  $(document).ready( function() {
3
  var product = $( '.bws_product_box' ),
4
  max = 0;
1
  (function($) {
2
+ "use strict";
3
  $(document).ready( function() {
4
  var product = $( '.bws_product_box' ),
5
  max = 0;
bws_menu/js/bws_tooltip.js CHANGED
@@ -3,6 +3,7 @@
3
  *
4
  */
5
  (function($) {
 
6
  $(document).ready( function() {
7
  jQuery.bwsTooltip = function( pointer_options ) {
8
  var pointer_buttons = pointer_options['buttons'];
@@ -17,7 +18,7 @@
17
  }
18
  }
19
  button = jQuery( button );
20
- button.bind('click.pointer', function () {
21
  t.element.pointer('close');
22
  });
23
  return button;
@@ -51,6 +52,9 @@
51
  };
52
  }
53
  /* adjust position of pointer */
 
 
 
54
  topPos = parseInt( $( "." + pointer_options["tooltip_id"] ).css("top") ) + parseInt( pointer_options['position']['pos-top'] );
55
  leftPos = parseInt( $( "." + pointer_options["tooltip_id"] ).css("left") ) + parseInt( pointer_options['position']['pos-left'] );
56
  if ( pointer_options['position']['align'] == 'left' ) {
3
  *
4
  */
5
  (function($) {
6
+ "use strict";
7
  $(document).ready( function() {
8
  jQuery.bwsTooltip = function( pointer_options ) {
9
  var pointer_buttons = pointer_options['buttons'];
18
  }
19
  }
20
  button = jQuery( button );
21
+ button.on('click.pointer', function () {
22
  t.element.pointer('close');
23
  });
24
  return button;
52
  };
53
  }
54
  /* adjust position of pointer */
55
+ var topPos,
56
+ leftPos,
57
+ pointerZindex;
58
  topPos = parseInt( $( "." + pointer_options["tooltip_id"] ).css("top") ) + parseInt( pointer_options['position']['pos-top'] );
59
  leftPos = parseInt( $( "." + pointer_options["tooltip_id"] ).css("left") ) + parseInt( pointer_options['position']['pos-left'] );
60
  if ( pointer_options['position']['align'] == 'left' ) {
bws_menu/js/general_script.js CHANGED
@@ -1,4 +1,5 @@
1
  function bws_show_settings_notice() {
 
2
  (function($) {
3
  $( '.updated.fade:not(.bws_visible), .error:not(.bws_visible)' ).css( 'display', 'none' );
4
  $( '#bws_save_settings_notice' ).css( 'display', 'block' );
@@ -6,11 +7,12 @@ function bws_show_settings_notice() {
6
  }
7
 
8
  (function($) {
 
9
  $( document ).ready( function() {
10
  /**
11
  * add notice about changing on the settings page
12
  */
13
- $( '.bws_form input, .bws_form textarea, .bws_form select' ).bind( "change paste select", function() {
14
  if ( $( this ).attr( 'type' ) != 'submit' && ! $( this ).hasClass( 'bws_no_bind_notice' ) ) {
15
  bws_show_settings_notice();
16
  };
1
  function bws_show_settings_notice() {
2
+ "use strict";
3
  (function($) {
4
  $( '.updated.fade:not(.bws_visible), .error:not(.bws_visible)' ).css( 'display', 'none' );
5
  $( '#bws_save_settings_notice' ).css( 'display', 'block' );
7
  }
8
 
9
  (function($) {
10
+ "use strict";
11
  $( document ).ready( function() {
12
  /**
13
  * add notice about changing on the settings page
14
  */
15
+ $( '.bws_form input, .bws_form textarea, .bws_form select' ).on( "change paste select", function() {
16
  if ( $( this ).attr( 'type' ) != 'submit' && ! $( this ).hasClass( 'bws_no_bind_notice' ) ) {
17
  bws_show_settings_notice();
18
  };
bws_menu/js/shortcode-button.js CHANGED
@@ -1,4 +1,5 @@
1
  (function($) {
 
2
  if ( typeof bws_shortcode_button != 'undefined' ) {
3
  var win;
4
 
1
  (function($) {
2
+ "use strict";
3
  if ( typeof bws_shortcode_button != 'undefined' ) {
4
  var win;
5
 
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: 2018-03-02 10:14+0200\n"
6
- "PO-Revision-Date: 2018-03-02 10:15+0200\n"
7
  "Last-Translator: Mik013\n"
8
  "Language-Team: Mik013\n"
9
  "Language: cs_CZ\n"
@@ -13,10 +13,10 @@ msgstr ""
13
  "X-Poedit-KeywordsList: __;_e;esc_attr_e\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
20
  msgid "requires"
21
  msgstr "vyžaduje"
22
 
@@ -53,7 +53,7 @@ msgstr "Ohodnoťte jej"
53
  msgid "Need help?"
54
  msgstr "Potřebujete pomoci?"
55
 
56
- #: bws_functions.php:104 bws_functions.php:919 class-bws-settings.php:1058
57
  msgid "Visit Help Center"
58
  msgstr "Navštivte Centrum pomoci"
59
 
@@ -61,7 +61,7 @@ msgstr "Navštivte Centrum pomoci"
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
 
@@ -81,8 +81,8 @@ msgstr ""
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,7 +102,7 @@ msgstr ""
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
 
@@ -119,7 +119,37 @@ msgstr "Poznámka: Používáte zkušební Pro verzi pluginu."
119
  msgid "The Pro Trial license will expire on"
120
  msgstr "Zkušební Pro licence vyprší"
121
 
122
- #: bws_functions.php:193
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
123
  msgid ""
124
  "or higher! We do not guarantee that our plugin will work correctly. Please "
125
  "upgrade to WordPress latest version."
@@ -127,87 +157,57 @@ msgstr ""
127
  "nebo vyšší! Nezaručujeme, že náš plugin bude fungovat správně. Prosím "
128
  "aktualizujte na nejnovější verzi WordPressu."
129
 
130
- #: bws_functions.php:208
131
  #, php-format
132
  msgid "Thank you for installing %s plugin!"
133
  msgstr "Děkujeme vám za instalaci pluginu %s!"
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 "
200
- "SUPPORT or UPDATES."
201
- msgstr ""
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 plugin %s!"
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,25 +215,24 @@ msgstr ""
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,79 +240,70 @@ msgstr ""
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řidat zkrácený kód BWS"
247
-
248
- #: bws_functions.php:654
249
- msgid "Add BWS Plugins Shortcode"
250
- msgstr "Přidat zkrácený kód BWS pluginu"
251
-
252
- #: bws_functions.php:673
253
  msgid "Add shortcode"
254
  msgstr "Přidat zkrácený 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 zkrácené kódy BestWebSoft pluginů."
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í zkrácených kódů"
284
 
285
- #: bws_functions.php:881
286
  msgid "The shortcode will be inserted"
287
  msgstr "Bude vložen zkrácený kód"
288
 
289
- #: bws_functions.php:924
290
  msgid "FAQ"
291
  msgstr ""
292
  "Časté dotazy <acronym title=\"Frequently asked questions\">(FAQ)</acronym>"
293
 
294
- #: bws_functions.php:930
295
  msgid "For more information:"
296
  msgstr "Pro více informací:"
297
 
298
- #: bws_functions.php:931
299
  msgid "Documentation"
300
  msgstr "Dokumentace"
301
 
302
- #: bws_functions.php:932
303
  msgid "Video Instructions"
304
  msgstr "Video instrukce"
305
 
306
- #: bws_functions.php:933
307
  msgid "Submit a Request"
308
  msgstr "Odeslat požadavek"
309
 
310
- #: bws_menu.php:101 class-bws-settings.php:792 deprecated.php:323
311
  msgid "Wrong license key"
312
  msgstr "Špatný licenční klíč"
313
 
314
- #: bws_menu.php:122 class-bws-settings.php:818 class-bws-settings.php:885
315
- #: class-bws-settings.php:921 deprecated.php:133 deprecated.php:199
316
- #: deprecated.php:353
317
  msgid ""
318
  "Something went wrong. Please try again later. If the error appears again, "
319
  "please contact us"
@@ -321,18 +311,16 @@ msgstr ""
321
  "Něco se pokazilo. Prosím zkuste to znovu později. Pokud se chyba objeví "
322
  "znovu, obraťte se na nás"
323
 
324
- #: 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 "Omlouváme se za nepříjemnosti."
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 "Neplatný licenční klíč."
334
 
335
- #: bws_menu.php:130
336
  msgid ""
337
  "This license key is bound to another site. Change it via personal Client "
338
  "Area."
@@ -340,15 +328,15 @@ msgstr ""
340
  "Tento licenční klíč je přidružen k jinému webu. Změňte jej prostřednictvím "
341
  "osobní Klientské zóny."
342
 
343
- #: bws_menu.php:130
344
  msgid "Log in"
345
  msgstr "Přihlášení"
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 "Bohužel, překročili jste dostupný počet pokusů pro daný den."
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,7 +345,7 @@ msgstr ""
357
  "Bohužel, Vaše licence vypršela. Chcete-li pokračovat v získávání top-"
358
  "prioritní podpory a aktualizace pluginu měli byste ji prodloužit ve vašem %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,19 +353,19 @@ msgstr ""
365
  "Bohužel, pro tuto doménu již byla použita Pro licence. Zkušební Pro licence "
366
  "může být instalována pouze jedenkrát."
367
 
368
- #: bws_menu.php:142 class-bws-settings.php:839 deprecated.php:153
369
  msgid "The license key is valid."
370
  msgstr "Licenční klíč je platný."
371
 
372
- #: bws_menu.php:144 class-bws-settings.php:842 deprecated.php:156
373
  msgid "Your license will expire on"
374
  msgstr "Vaše licence vyprší"
375
 
376
- #: bws_menu.php:146
377
  msgid "Congratulations! Pro Membership license is activated successfully."
378
  msgstr "Gratulujeme! PRO členství bylo úspěšně aktivováno."
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."
@@ -385,219 +373,221 @@ msgstr ""
385
  "Něco se pokazilo. Zkuste to později, nebo nahrajte plugin ručně. Omlouváme "
386
  "se za nepříjemnosti."
387
 
388
- #: bws_menu.php:163
389
  msgid "Please enter your license key."
390
  msgstr "Prosím vložte váš licenční klíč."
391
 
392
- #: bws_menu.php:174
393
  msgid "Not set"
394
  msgstr "Nenastaveno"
395
 
396
- #: bws_menu.php:176
397
  msgid "On"
398
  msgstr "Zapnout"
399
 
400
  # vypnout, nebo vypnuto
401
- #: bws_menu.php:176
402
  msgid "Off"
403
  msgstr "Vypnout"
404
 
405
- #: bws_menu.php:177 bws_menu.php:178 bws_menu.php:179 bws_menu.php:180
406
- #: bws_menu.php:181 bws_menu.php:182 bws_menu.php:191
407
  msgid "N/A"
408
  msgstr "N/A"
409
 
410
- #: bws_menu.php:182
411
- msgid " Mb"
 
 
412
  msgstr " Mb"
413
 
414
- #: bws_menu.php:183 bws_menu.php:184 bws_menu.php:185 bws_menu.php:189
415
  msgid "Yes"
416
  msgstr "Ano"
417
 
418
- #: bws_menu.php:183 bws_menu.php:184 bws_menu.php:185 bws_menu.php:189
419
  msgid "No"
420
  msgstr "Ne"
421
 
422
- #: bws_menu.php:196
423
  msgid "WordPress Environment"
424
  msgstr "WordPress prostředí"
425
 
426
- #: bws_menu.php:198
427
  msgid "Home URL"
428
  msgstr "Domovská URL"
429
 
430
- #: bws_menu.php:199
431
  msgid "Website URL"
432
  msgstr "URL webových stránek"
433
 
434
- #: bws_menu.php:200
435
  msgid "WP Version"
436
  msgstr "WP Verze"
437
 
438
- #: bws_menu.php:201
439
  msgid "WP Multisite"
440
  msgstr "WP Multisite"
441
 
442
- #: bws_menu.php:202
443
  msgid "WP Memory Limit"
444
  msgstr "WP pamětový limit (memory limit)"
445
 
446
- #: bws_menu.php:203
447
  msgid "Active Theme"
448
  msgstr "Aktivovat šablonu"
449
 
450
- #: bws_menu.php:203 bws_menu.php:248 bws_menu.php:251
451
  #, php-format
452
  msgid "by %s"
453
  msgstr "od %s"
454
 
455
- #: bws_menu.php:207
456
  msgid "Server Environment"
457
  msgstr "Prostředí"
458
 
459
- #: bws_menu.php:209
460
  msgid "Operating System"
461
  msgstr "Operační systém"
462
 
463
- #: bws_menu.php:210
464
  msgid "Server"
465
  msgstr "Server"
466
 
467
- #: bws_menu.php:211
468
  msgid "PHP Version"
469
  msgstr "PHP Verze"
470
 
471
  # copy
472
- #: bws_menu.php:212
473
  msgid "PHP Allow URL fopen"
474
  msgstr "PHP Allow URL fopen"
475
 
476
- #: bws_menu.php:213
477
  msgid "PHP Memory Limit"
478
  msgstr "PHP Limit paměti"
479
 
480
- #: bws_menu.php:214
481
  msgid "Memory Usage"
482
  msgstr "Využití paměti"
483
 
484
  # copy
485
- #: bws_menu.php:215
486
  msgid "PHP Max Upload Size"
487
  msgstr "PHP Max Upload Size"
488
 
489
  # copy
490
- #: bws_menu.php:216
491
  msgid "PHP Max Post Size"
492
  msgstr "PHP Max Post Size"
493
 
494
  # copy
495
- #: bws_menu.php:217
496
  msgid "PHP Max Script Execute Time"
497
  msgstr "PHP Max Script Execute Time"
498
 
499
- #: bws_menu.php:218
500
  msgid "PHP Exif support"
501
  msgstr "PHP podpora Exif"
502
 
503
- #: bws_menu.php:219
504
  msgid "PHP IPTC support"
505
  msgstr "PHP podpora IPTC"
506
 
507
- #: bws_menu.php:220
508
  msgid "PHP XML support"
509
  msgstr "PHP podpora XML"
510
 
511
- #: bws_menu.php:226
512
  msgid "Database"
513
  msgstr "Databáze"
514
 
515
- #: bws_menu.php:228
516
  msgid "WP DB version"
517
  msgstr "WP verze DB"
518
 
519
- #: bws_menu.php:229
520
  msgid "MySQL version"
521
  msgstr "Verze MYSQL"
522
 
523
- #: bws_menu.php:230
524
  msgid "SQL Mode"
525
  msgstr "Mód SQL"
526
 
527
- #: bws_menu.php:234
528
  msgid "Active Plugins"
529
  msgstr "Aktivní pluginy"
530
 
531
- #: bws_menu.php:239
532
  msgid "Inactive Plugins"
533
  msgstr "Neaktivní pluginy"
534
 
535
- #: bws_menu.php:260
536
  msgid "Please enter a valid email address."
537
  msgstr "Prosím vložte platnou e-mailovou adresu."
538
 
539
- #: bws_menu.php:262
540
  #, php-format
541
  msgid "Email with system info is sent to %s."
542
  msgstr "E-mail s informacemi o systému byl odeslán na %s."
543
 
544
- #: bws_menu.php:266
545
  msgid "Thank you for contacting us."
546
  msgstr "Děkujeme, že jste nás kontaktovali."
547
 
548
- #: bws_menu.php:289
549
  msgid "Sorry, email message could not be delivered."
550
  msgstr "Je nám líto, ale e-mail nemohl být doručen."
551
 
552
- #: bws_menu.php:305 bws_menu.php:309 bws_menu.php:358 deprecated.php:91
553
  msgid "Plugins"
554
  msgstr "Pluginy"
555
 
556
- #: bws_menu.php:306 bws_menu.php:310 bws_menu.php:618 deprecated.php:92
557
  msgid "Themes"
558
  msgstr "Šablony"
559
 
560
- #: bws_menu.php:307 bws_menu.php:311 bws_menu.php:648
561
  msgid "System status"
562
  msgstr "Stav systému"
563
 
564
- #: bws_menu.php:315
565
  msgid "Support"
566
  msgstr "Podpora"
567
 
568
- #: bws_menu.php:316
569
  msgid "Manage purchased licenses & subscriptions"
570
  msgstr "Spravovat zakoupené licence a předplatné"
571
 
572
- #: bws_menu.php:324
573
  #, php-format
574
  msgid "Get Access to %s+ Premium Plugins"
575
  msgstr "Získejte přístup k %s+ Premiovým pluginům"
576
 
577
- #: bws_menu.php:326
578
  msgid "Subscribe to Pro Membership"
579
  msgstr "Přihlaste se k PRO členství"
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 "Zkontrolovat licenční klíč"
585
 
586
- #: bws_menu.php:337
587
  msgid "Enter your license key"
588
  msgstr "Vložte váš licenční klíč"
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 "Aktivovat"
595
 
596
- #: bws_menu.php:359
597
  msgid "Upload Plugin"
598
  msgstr "Nahrát plugin"
599
 
600
- #: bws_menu.php:363
601
  #, php-format
602
  msgid ""
603
  "The plugin generated %d characters of <strong>unexpected output</strong> "
@@ -610,201 +600,207 @@ msgstr ""
610
  "problems with syndication feeds or other issues, pokuste se deaktivovat, "
611
  "nebo odstranit tento plugin."
612
 
613
- #: bws_menu.php:365
614
  msgid ""
615
  "Plugin could not be activated because it triggered a <strong>fatal error</"
616
  "strong>."
617
  msgstr ""
618
  "Plugin nemůže být aktivován, neboť způsobil <strong>závažnou chybu</strong>."
619
 
620
- #: bws_menu.php:368
621
  msgid "Plugin <strong>activated</strong>."
622
  msgstr "Plugin <strong>aktivován</strong>."
623
 
624
- #: bws_menu.php:375
625
- msgid "Installing Plugin"
626
- msgstr "Instalace pluginu"
 
 
627
 
628
- #: bws_menu.php:381
629
- msgid "Downloading install package from"
630
- msgstr "Stahování instalačního balíčku z"
631
 
632
- #: bws_menu.php:398 bws_menu.php:429 bws_menu.php:440 deprecated.php:388
633
- #: deprecated.php:410 deprecated.php:432
634
- msgid "Failed to download the zip archive. Please, upload the plugin manually"
635
- msgstr "Stažení zip archivu selhalo. Prosíme, nahrajte plugin ručně"
636
 
637
- #: bws_menu.php:406
638
- msgid "Unpacking the package"
639
- msgstr "Rozbalování balíčku"
640
 
641
- #: bws_menu.php:411 bws_menu.php:419
642
- msgid "Installing the plugin"
 
 
643
  msgstr "Instalace pluginu"
644
 
645
- #: bws_menu.php:415 deprecated.php:400
646
- msgid "Failed to open the zip archive. Please, upload the plugin manually"
647
- msgstr "Otevření zip archivu selhalo. Prosíme, nahrajte plugin ručně"
648
-
649
- #: bws_menu.php:422 deprecated.php:406
650
- msgid ""
651
- "Your server does not support either ZipArchive or Phar. Please, upload the "
652
- "plugin manually"
653
  msgstr ""
654
- "Váš server nepodporuje buď ZipArchive nebo Phar. Prosím, nahrajte plugin "
655
- "ručně"
656
 
657
- #: bws_menu.php:425
658
- #, php-format
659
- msgid "The plugin %s is successfully installed."
660
- msgstr "Plugin %s úspěšně nainstalován."
 
 
 
 
 
661
 
662
- #: bws_menu.php:432 deprecated.php:413
663
- msgid "UploadDir is not writable. Please, upload the plugin manually"
664
- msgstr "Nelze zapisovat do UploadDir. Prosím, nahrajte plugin ručně"
665
 
666
- #: bws_menu.php:437
667
- msgid "Activate Plugin"
668
- msgstr "Aktivovat plugin"
 
 
669
 
670
- #: bws_menu.php:437 bws_menu.php:443
671
  msgid "Return to BestWebSoft Panel"
672
  msgstr "Návrat na BestWebSoft panel"
673
 
674
- #: bws_menu.php:451 bws_menu.php:471 bws_menu.php:600
675
  msgid "All"
676
  msgstr "Vše"
677
 
678
- #: bws_menu.php:454 bws_menu.php:637
679
  msgid "Installed"
680
  msgstr "Instalováno"
681
 
682
- #: bws_menu.php:457
683
  msgid "Not Installed"
684
  msgstr "Neninstalováno"
685
 
686
- #: bws_menu.php:464
687
  msgid "Filter results"
688
  msgstr "Výsledky filtrování"
689
 
690
- #: bws_menu.php:467 bws_menu.php:596
691
  msgid "Category"
692
  msgstr "Rubriky"
693
 
694
- #: bws_menu.php:531
695
  msgid "Not installed"
696
  msgstr "Neninstalováno"
697
 
698
- #: bws_menu.php:535
699
  msgid "Renew to get updates"
700
  msgstr "Obnovit pro získání aktualizací"
701
 
702
- #: bws_menu.php:538
703
  #, php-format
704
  msgid "Update to v %s"
705
  msgstr "Aktualizovat na %s"
706
 
707
- #: bws_menu.php:550 bws_menu.php:573 bws_menu.php:582
708
- msgid "Install Now"
709
- msgstr "Instalovat nyní"
710
 
711
- #: bws_menu.php:556 class-bws-settings.php:157 class-bws-settings.php:1067
712
  msgid "Upgrade to Pro"
713
  msgstr "Aktualizovat na Pro"
714
 
715
- #: bws_menu.php:570 bws_menu.php:579
716
  msgid "Activate this plugin"
717
  msgstr "Aktivovat tento plugin"
718
 
719
- #: bws_menu.php:582
720
  msgid "Install this plugin"
721
  msgstr "Instalovat tento plugin"
722
 
723
- #: bws_menu.php:591
 
 
 
 
724
  msgid "Nothing found. Try another criteria."
725
  msgstr "Nic nenalezeno. Zkuste jiná kritéria."
726
 
727
  # podle, nebo taky od
728
- #: bws_menu.php:628
729
  #, php-format
730
  msgid "By %s"
731
  msgstr "podle %s"
732
 
733
- #: bws_menu.php:635
734
  msgid "Already Installed"
735
  msgstr "Již instalováno"
736
 
737
- #: bws_menu.php:645
738
  msgid "Browse More WordPress Themes"
739
  msgstr "Procházet další WordPress šablony"
740
 
741
- #: bws_menu.php:654
742
  msgid "Send to support"
743
  msgstr "Odeslat podpoře"
744
 
745
- #: bws_menu.php:661
746
  msgid "Send to custom email &#187;"
747
  msgstr "Odeslat na vlastní e-mail &#187;"
748
 
749
- #: class-bws-settings.php:136
750
  msgid "Information"
751
  msgstr "Informace"
752
 
753
- #: class-bws-settings.php:144
754
  msgid "Inactive"
755
  msgstr "Neaktivní"
756
 
757
- #: class-bws-settings.php:152
758
  msgid "Expired"
759
  msgstr "Expirované"
760
 
761
- #: class-bws-settings.php:155
762
  #, php-format
763
  msgid "%s day(-s) left"
764
  msgstr "%s dnů zbývá"
765
 
766
- #: class-bws-settings.php:161
767
  #, php-format
768
  msgid "Expired on %s"
769
  msgstr "Vypršela dne %s"
770
 
771
- #: class-bws-settings.php:161
772
  msgid "Renew Now"
773
  msgstr "Obnovit nyní"
774
 
775
- #: class-bws-settings.php:163
776
  msgid "Active"
777
  msgstr "Aktivní"
778
 
779
- #: class-bws-settings.php:168
780
  msgid "License"
781
  msgstr "Licence"
782
 
783
- #: class-bws-settings.php:171
784
  msgid "Status"
785
  msgstr "Stav"
786
 
787
- #: class-bws-settings.php:175
788
  msgid "Version"
789
  msgstr "Verze"
790
 
791
- #: class-bws-settings.php:285
792
  msgid "All plugin settings were restored."
793
  msgstr "Všechna nastavení pluginu byla obnovena."
794
 
795
- #: class-bws-settings.php:423
796
  msgid "Custom Code"
797
  msgstr "Vlastní kód"
798
 
799
- #: class-bws-settings.php:427 deprecated.php:498
800
  msgid "You do not have sufficient permissions to edit plugins for this site."
801
  msgstr "Nemáte dostatečná oprávnění pro úpravu pluginů tohoto webu."
802
 
803
- #: class-bws-settings.php:432 deprecated.php:620
804
  msgid "These styles will be added to the header on all pages of your site."
805
  msgstr "Tyto styly budou přidány do hlaviček všech stránek vašeho webu."
806
 
807
- #: class-bws-settings.php:435 deprecated.php:622
808
  #, php-format
809
  msgid ""
810
  "This PHP code will be hooked to the %s action and will be printed on front "
@@ -812,11 +808,11 @@ msgid ""
812
  msgstr ""
813
  "Tento PHP kód bude závislý na %s akci a bude zobrazen pouze na front endu."
814
 
815
- #: class-bws-settings.php:438
816
  msgid "These code will be added to the header on all pages of your site."
817
  msgstr "Tento kód bude přidán do záhlaví všech stránek vašeho webu."
818
 
819
- #: class-bws-settings.php:446 deprecated.php:646
820
  #, php-format
821
  msgid ""
822
  "You need to make this files writable before you can save your changes. See "
@@ -825,98 +821,83 @@ msgstr ""
825
  "Před tím, než budete moci vaše změny uložit, nastavte těmto souborům "
826
  "oprávnění pro zápis. Podívejte se %s na Kodex %s pro více informací."
827
 
828
- #: class-bws-settings.php:456 deprecated.php:628
829
  msgid "Browsing"
830
  msgstr "Procházení"
831
 
832
- #: class-bws-settings.php:461
833
  #, php-format
834
  msgid "Activate custom %s code."
835
  msgstr "Aktivovat vlastní %s kód."
836
 
837
- #: class-bws-settings.php:469 deprecated.php:635
838
  #, php-format
839
  msgid "Learn more about %s"
840
  msgstr "Dozvědět se více o %s"
841
 
842
- #: class-bws-settings.php:531
843
  msgid "Miscellaneous Settings"
844
  msgstr "Různá nastavení"
845
 
846
- #: class-bws-settings.php:540 class-bws-settings.php:595
847
  #, php-format
848
  msgid ""
849
  "It is prohibited to change %s settings on this site in the %s network "
850
  "settings."
851
  msgstr "Je zakázáno měnit nastavení %s na této stránce v %s nastavení sítě."
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."
857
  msgstr "Je zobrazit nastavení %s na této stránce v %s nastavení sítě."
858
 
859
- #: class-bws-settings.php:552
860
  msgid "Pro Options"
861
  msgstr "PRO nastavení"
862
 
863
- #: class-bws-settings.php:556
864
  msgid "Enable to display plugin Pro options."
865
  msgstr "Povolit zobrazení PRO voleb pluginu."
866
 
867
- #: class-bws-settings.php:562
868
  msgid "Track Usage"
869
  msgstr "Sběr statistik"
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
  "Umožnit anonymní sledování využití pluginu tak, aby mohl být dále vylepšován."
876
 
877
- #: class-bws-settings.php:571
878
  msgid "Default Settings"
879
  msgstr "Výchozí nastavení"
880
 
881
- #: class-bws-settings.php:573
882
  msgid "Restore Settings"
883
  msgstr "Obnovit nastavení"
884
 
885
- #: class-bws-settings.php:574
886
  msgid "This will restore plugin settings to defaults."
887
  msgstr "Toto obnoví veškerá nastavení pluginu na výchozí hodnoty."
888
 
889
- #: class-bws-settings.php:586
890
  msgid "Import / Export"
891
  msgstr "Import / Export"
892
 
893
- #: class-bws-settings.php:702 class-bws-settings.php:735
894
- #: class-bws-settings.php:757
895
  msgid "License Key"
896
  msgstr "Licenční klíč"
897
 
898
- #: class-bws-settings.php:725
899
- msgid "Congratulations! Pro license is activated successfully."
900
- msgstr "Gratulujeme! PRO licence byla úspěšně aktivována."
901
-
902
- #: class-bws-settings.php:726
903
- #, php-format
904
- msgid "You will be automatically redirected to the %s in %s seconds."
905
- msgstr "Budete automaticky přesměrováni na %s za %s sekund."
906
-
907
- #: class-bws-settings.php:726
908
- msgid "Settings page"
909
- msgstr "Stránka nastavení"
910
-
911
- #: class-bws-settings.php:741
912
  #, php-format
913
  msgid "Enter your license key to activate %s and get premium plugin features."
914
  msgstr ""
915
  "Vložte váš licenční klíč pro aktivaci %s a získejte tak prémiové fukcе "
916
  "pluginu."
917
 
918
- #: class-bws-settings.php:744 class-bws-settings.php:931 deprecated.php:363
919
- #: deprecated.php:706
920
  msgid ""
921
  "Unfortunately, you have exceeded the number of available tries per day. "
922
  "Please, upload the plugin manually."
@@ -924,12 +905,12 @@ msgstr ""
924
  "Bohužel, jste překročili počet dostupných pokusů za den. Prosím, nahrejte "
925
  "plugin ručně."
926
 
927
- #: class-bws-settings.php:747 deprecated.php:697
928
  #, php-format
929
  msgid "Start Your Free %s-Day Trial Now"
930
  msgstr "Vyzkoušejte %s-denní zkušební verzi zdarma nyní"
931
 
932
- #: class-bws-settings.php:762
933
  msgid ""
934
  "If necessary, you can check if the license key is correct or reenter it in "
935
  "the field below."
@@ -937,15 +918,15 @@ msgstr ""
937
  "V případě potřeby zkontrolujte, je-li licenční klíč správně zadán, případně "
938
  "jej do pole níže vložte znova."
939
 
940
- #: class-bws-settings.php:767
941
  msgid "Manage License Settings"
942
  msgstr "Správa nastavení licencí"
943
 
944
- #: class-bws-settings.php:769
945
  msgid "Login to Client Area"
946
  msgstr "Přihlášení do klientská zóny"
947
 
948
- #: class-bws-settings.php:771
949
  msgid ""
950
  "Manage active licenses, download BWS products, and view your payment history "
951
  "using BestWebSoft Client Area."
@@ -953,12 +934,11 @@ msgstr ""
953
  "Správa aktivních licencí, stahování BWS produktů a zobrazení historie plateb "
954
  "v BestWebSoft klientské zóně."
955
 
956
- #: class-bws-settings.php:826 class-bws-settings.php:929 deprecated.php:141
957
- #: deprecated.php:361
958
  msgid "This license key is bound to another site."
959
  msgstr "Tento licenční klíč je přidružen k jinému webu."
960
 
961
- #: class-bws-settings.php:828 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 +946,11 @@ msgstr ""
966
  "Tento licenční klíč je platný, ale vaše licence vypršela. Chcete-li náš "
967
  "plugin v budoucnosti aktualizovat, měli by jste licenci prodloužit."
968
 
969
- #: class-bws-settings.php:830 deprecated.php:145
970
  msgid "Unfortunately, you have exceeded the number of available tries."
971
  msgstr "Bohužel, překročili jste dostupný počet pokusů."
972
 
973
- #: class-bws-settings.php:832 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,18 +958,18 @@ msgstr ""
978
  "Bohužel, tato zkušební Pro licence již pro tuto doménu byla použita. "
979
  "Zkušební Pro licence může být instalována pouze jedenkrát."
980
 
981
- #: class-bws-settings.php:837 deprecated.php:151
982
  msgid "The Pro Trial license key is valid."
983
  msgstr "Licenční klíč zkušební Pro verze je platný."
984
 
985
- #: class-bws-settings.php:845 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
  "Pokud chcete nadále využívat tento plugin, je nutné zakoupit %s licenci."
991
 
992
- #: class-bws-settings.php:933
993
  #, php-format
994
  msgid ""
995
  "Unfortunately, Your license has expired. To continue getting top-priority "
@@ -998,155 +978,139 @@ msgstr ""
998
  "Bohužel, Vaše licence vypršela. Chcete-li mít nadále přístup k top-prioritní "
999
  "podpoře a aktualizacím pluginu měli byste ji prodloužit ve vašem %s."
1000
 
1001
- #: class-bws-settings.php:959 class-bws-settings.php:981
1002
- #: class-bws-settings.php:1003
1003
- msgid "Failed to download the zip archive. Please, upload the plugin manually."
1004
- msgstr "Stažení zip archivu selhalo. Nahrajte prosím plugin ručně."
1005
-
1006
- #: class-bws-settings.php:971
1007
- msgid "Failed to open the zip archive. Please, upload the plugin manually."
1008
- msgstr "Otevření zip archivu selhalo. Nahrajte prosím plugin ručně."
1009
-
1010
- #: class-bws-settings.php:977
1011
- msgid ""
1012
- "Your server does not support either ZipArchive or Phar. Please, upload the "
1013
- "plugin manually."
1014
- msgstr ""
1015
- "Váš server nepodporuje buď ZipArchive nebo Phar. Prosím, nahrajte plugin "
1016
- "ručně."
1017
-
1018
- #: class-bws-settings.php:984
1019
- msgid "UploadDir is not writable. Please, upload the plugin manually."
1020
- msgstr "Nelze zapisovat do UploadDir. Prosím, nahrajte plugin ručně."
1021
-
1022
- #: class-bws-settings.php:1042 deprecated.php:464
1023
  msgid "Please, enter Your license key"
1024
  msgstr "Prosím, vložte váš licenční klíč"
1025
 
1026
- #: class-bws-settings.php:1054
1027
  msgid "Need Help?"
1028
  msgstr "Potřebujete pomoci?"
1029
 
1030
- #: class-bws-settings.php:1056
1031
  msgid "Read the Instruction"
1032
  msgstr "Přečíst si instrukce"
1033
 
1034
- #: class-bws-settings.php:1060
1035
  msgid "Watch the Video"
1036
  msgstr "Přehrát video"
1037
 
1038
- #: class-bws-settings.php:1071
1039
  msgid "Start Your Free Trial"
1040
  msgstr "Vyzkoušejte po omezenou dobu"
1041
 
1042
- #: deactivation-form.php:27
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1043
  msgid "Need help? We are ready to answer your questions."
1044
  msgstr "Potřebujete pomoc? Rádi zodpovíme Vaše dotazy."
1045
 
1046
- #: deactivation-form.php:27
1047
  msgid "Contact Support"
1048
  msgstr "Kontaktujte podporu"
1049
 
1050
- #: deactivation-form.php:32
1051
  msgid "The plugin is not working"
1052
  msgstr "Plugin nefunguje"
1053
 
1054
- #: deactivation-form.php:34
1055
- msgid "Kindly share what didn't work so we can fix it in future updates..."
1056
- msgstr ""
1057
- "Dejte nám prosím vědět, co nefungovalo, abychom to v budoucích aktualizacích "
1058
- "mohli opravit..."
1059
-
1060
- #: deactivation-form.php:38
1061
  msgid "The plugin didn't work as expected"
1062
  msgstr "Plugin nefungoval podle mých očekávání"
1063
 
1064
- #: deactivation-form.php:40
1065
- msgid "What did you expect?"
1066
- msgstr "Co jste očekávali?"
1067
-
1068
- #: deactivation-form.php:44
1069
  msgid "The plugin suddenly stopped working"
1070
  msgstr "Plugin přestal náhle pracovat"
1071
 
1072
- #: deactivation-form.php:51
1073
  msgid "The plugin broke my site"
1074
  msgstr "Plugin mi rozbil web"
1075
 
1076
- #: deactivation-form.php:58
1077
  msgid "I couldn't understand how to get it work"
1078
  msgstr "Nemohl jsem pochopit, jak to zprovoznit"
1079
 
1080
- #: deactivation-form.php:65
1081
  msgid "I found a better plugin"
1082
  msgstr "Našel jsem lepší plugin"
1083
 
1084
- #: deactivation-form.php:67
1085
- msgid "What's the plugin name?"
1086
- msgstr "Jaké je jméno pluginu?"
1087
-
1088
- #: deactivation-form.php:71
1089
  msgid "The plugin is great, but I need specific feature that you don't support"
1090
  msgstr ""
1091
  "Plugin je skvělý, ale já potřebuji specifickou funkci, kterou nepodporuje"
1092
 
1093
- #: deactivation-form.php:73
1094
- msgid "What feature?"
1095
- msgstr "Jakou funkci?"
1096
-
1097
- #: deactivation-form.php:77
1098
  msgid "I no longer need the plugin"
1099
  msgstr "Nadále již tento plugin nepotřebuji"
1100
 
1101
- #: deactivation-form.php:83
1102
  msgid "It's a temporary deactivation, I'm just debugging an issue"
1103
  msgstr "Jedná se o dočasnou deaktivaci, pouze ladím problém"
1104
 
1105
- #: deactivation-form.php:89
1106
  msgid "Other"
1107
  msgstr "Ostatní"
1108
 
1109
- #: deactivation-form.php:123
1110
  msgid "Quick Feedback"
1111
  msgstr "Rychlá zpětná vazba"
1112
 
1113
- #: deactivation-form.php:124
1114
  msgid "If you have a moment, please let us know why you are deactivating"
1115
  msgstr "Máte-li chvilku, sdělte nám důvod, proč deaktivujete tento plugin"
1116
 
1117
- #: deactivation-form.php:127
1118
- msgid "Send website data and allow to contact me back"
1119
- msgstr "Odeslat data webu a umožnit zpětně mě kontaktovat"
1120
-
1121
- #: deactivation-form.php:132
1122
- msgid "Cancel"
1123
- msgstr "Zrušit"
1124
-
1125
- #: deactivation-form.php:233
1126
- msgid "Processing"
1127
- msgstr "Zpracovává se"
1128
 
1129
- #: deactivation-form.php:262
1130
- msgid "Submit & Deactivate"
 
 
1131
  msgstr "Odeslat a vypnout"
1132
 
1133
- #: deactivation-form.php:277
1134
  msgid "Please tell us the reason so we can improve it."
1135
  msgstr "Prosím, prozraďte nám důvod, abychom jej mohli zlepšit."
1136
 
1137
- #: deactivation-form.php:345
1138
- msgid "Deactivate"
1139
- msgstr "Vypnout"
1140
-
1141
- #: deprecated.php:93
1142
  msgid "System Status"
1143
  msgstr "Stav systému"
1144
 
1145
- #: deprecated.php:204
1146
- msgid "Please, enter your license key"
1147
- msgstr "Prosím, vložte váš licenční klíč"
1148
-
1149
- #: deprecated.php:223
1150
  msgid ""
1151
  "If necessary, you can check if the license key is correct or reenter it in "
1152
  "the field below. You can find your license key on your personal page - "
@@ -1156,7 +1120,7 @@ msgstr ""
1156
  "jej do pole níže vložte znova. Váš licenční klíč najdete na vaší osobní "
1157
  "stránce - Klientská zóna - na našem webu"
1158
 
1159
- #: deprecated.php:223
1160
  msgid ""
1161
  "(your username is the email address specified during the purchase). If "
1162
  "necessary, please submit \"Lost your password?\" request."
@@ -1164,127 +1128,115 @@ msgstr ""
1164
  "(vaše uživatelské jméno je e-mailová adresa uvedena při nákupu). Pokud je to "
1165
  "nutné, prosím odešlete \"Lost your password?\" požadavek."
1166
 
1167
- #: deprecated.php:246
1168
  msgid "After that, you can activate it by entering your license key."
1169
  msgstr "Poté jej lze snadno aktivovat zadáním licenčního klíče."
1170
 
1171
- #: deprecated.php:249 deprecated.php:691
1172
  msgid "License key can be found in the"
1173
  msgstr "Licenční klíč najdete v"
1174
 
1175
- #: deprecated.php:251 deprecated.php:693
1176
  msgid "(your username is the email address specified during the purchase)."
1177
  msgstr "(vaše uživatelské jméno je e-mailová adresa uvedená při nákupu)."
1178
 
1179
- #: deprecated.php:279
1180
  msgid ""
1181
  "Congratulations! The Pro license of the plugin is activated successfully."
1182
  msgstr "Gratulujeme! PRO licence pluginu je úspěšně aktivována."
1183
 
1184
- #: deprecated.php:281 deprecated.php:672
1185
  msgid "Please, go to"
1186
  msgstr "Prosím, přejděte na"
1187
 
1188
- #: deprecated.php:281 deprecated.php:672
1189
  msgid "the setting page"
1190
  msgstr "stránka nastavení"
1191
 
1192
- #: deprecated.php:282 deprecated.php:673
1193
- msgid "You will be redirected automatically in 5 seconds."
1194
- msgstr "Budete automaticky přesměrováni za 5 sekund."
1195
-
1196
- #: deprecated.php:316
1197
- msgid "Check premium options on the plugin settings page!"
1198
- msgstr "Zkontrolujte prémiové možnosti na stránce nastavení pluginů!"
1199
-
1200
- #: deprecated.php:479
1201
  msgid "Restore all plugin settings to defaults"
1202
  msgstr "Obnovit veškerá nastavení pluginu na výchozí hodnoty"
1203
 
1204
- #: deprecated.php:481
1205
  msgid "Restore settings"
1206
  msgstr "Obnovit nastavení"
1207
 
1208
- #: deprecated.php:550 deprecated.php:577
1209
- #, php-format
1210
- msgid "File %s edited successfully."
1211
- msgstr "Soubor %s byl úspěšně upraven."
1212
-
1213
- #: deprecated.php:552 deprecated.php:579
1214
- msgid "Not enough permissions to create or update the file"
1215
- msgstr "Nedostatečná oprávnění pro vytvoření či úpravu souboru"
1216
-
1217
- #: deprecated.php:582
1218
- msgid "Not enough permissions to create the file"
1219
- msgstr "Nedostatečná oprávnění pro vytvoření souboru"
1220
-
1221
- #: deprecated.php:626
1222
- msgid "Editing"
1223
- msgstr "Úprava"
1224
-
1225
- #: deprecated.php:670
1226
  msgid ""
1227
  "Congratulations! Pro version of the plugin is installed and activated "
1228
  "successfully."
1229
  msgstr "Gratulujeme! PRO verze pluginu byla úspěšně instalována a aktivována."
1230
 
1231
- #: deprecated.php:680
1232
  msgid "Show Pro features"
1233
  msgstr "Zobrazit Pro vlastnosti"
1234
 
1235
- #: deprecated.php:687
1236
  msgid "Enter your license key to install and activate"
1237
  msgstr "Vložte váš licenční klíč pro instalaci a aktivaci"
1238
 
1239
- #: deprecated.php:689
1240
  msgid "version of the plugin."
1241
  msgstr "verze pluginu."
1242
 
1243
- #: product_list.php:7
1244
  msgid "Admin Tools"
1245
  msgstr "Administrační nástroje"
1246
 
1247
- #: product_list.php:8
1248
  msgid "Content"
1249
  msgstr "Obsah"
1250
 
1251
- #: product_list.php:9
1252
  msgid "eCommerce"
1253
  msgstr "eCommerce"
1254
 
1255
- #: product_list.php:10
1256
  msgid "Marketing"
1257
  msgstr "Marketing"
1258
 
1259
- #: product_list.php:11
1260
  msgid "Navigation"
1261
  msgstr "Navigace"
1262
 
1263
- #: product_list.php:12
1264
  msgid "Recommended"
1265
  msgstr "Doporučeno"
1266
 
1267
- #: product_list.php:13
1268
  msgid "Security"
1269
  msgstr "Bezpečnost"
1270
 
1271
- #: product_list.php:14
1272
  msgid "SEO"
1273
  msgstr "SEO"
1274
 
1275
- #: product_list.php:15
1276
  msgid "SMM"
1277
  msgstr "SMM"
1278
 
1279
- #: product_list.php:22
 
 
 
 
1280
  msgid "Best secure captcha plugin to protect your WordPress forms."
1281
  msgstr "Nejbezpečnější captcha plugin k ochraně WordPress formulářů."
1282
 
1283
- #: product_list.php:32
1284
- msgid "Create your personal car rental/booking and reservation website."
1285
- msgstr "Vytvořte si osobní rezervační web - auta/hotely."
 
 
 
 
 
 
 
 
 
1286
 
1287
- #: product_list.php:42
1288
  msgid ""
1289
  "Allow customers to reach you using secure contact form plugin any website "
1290
  "must have."
@@ -1292,37 +1244,33 @@ msgstr ""
1292
  "Umožněte zákazníkům kontaktovat vás pomocí pluginu zabezpečeného kontaktního "
1293
  "formuláře, tohle musí mít každý web."
1294
 
1295
- #: product_list.php:52
1296
  msgid "Add unlimited number of contact forms to WordPress website."
1297
  msgstr "Přidávejte neomezený počet kontaktních formulářů na WordPress web."
1298
 
1299
- #: product_list.php:62
1300
  msgid "Save and manage Contact Form messages. Never lose important data."
1301
  msgstr ""
1302
  "Ukládejte a spravujte zprávy z kontaktního formuláře. Už nikdy neztraťte "
1303
  "důležitá data."
1304
 
1305
- #: product_list.php:72
1306
  msgid "Add unlimited custom pages to WordPress admin dashboard."
1307
  msgstr ""
1308
  "Přidávejte neomezený počet vlastních stránek do WordPress admin nástěnky."
1309
 
1310
- #: product_list.php:79
1311
- msgid "Add custom fields to WordPress website search results."
1312
- msgstr "Přidávejte vlastní pole do výsledků vyhledání na webu WordPress."
1313
-
1314
- #: product_list.php:86
1315
  msgid ""
1316
  "Add custom post types and taxonomies to WordPress website search results."
1317
  msgstr ""
1318
  "Přidávejte vlastní typy příspěvků a taxonomie do výsledků vyhledání na webu "
1319
  "WordPress."
1320
 
1321
- #: product_list.php:96
1322
  msgid "Add PayPal and 2CO donate buttons to receive charity payments."
1323
  msgstr "Přidávejte darovací tlačítka PayPal a 2CO pro příjem příspěvků."
1324
 
1325
- #: product_list.php:103
1326
  msgid ""
1327
  "Get latest error log messages to diagnose website problems. Define and fix "
1328
  "issues faster."
@@ -1330,7 +1278,7 @@ msgstr ""
1330
  "Získejte nejnovější zprávy z error logu při diagnostice problémů s webem. "
1331
  "Definujte a opravte problémy rychleji."
1332
 
1333
- #: product_list.php:110
1334
  msgid ""
1335
  "Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and "
1336
  "widgets."
@@ -1338,7 +1286,7 @@ msgstr ""
1338
  "Přidávejte Facebooková tlačítka sledovat, to se mi líbí a sdílet do "
1339
  "WordPress příspěvků, stránek a widgetů."
1340
 
1341
- #: product_list.php:120
1342
  msgid ""
1343
  "Add beautiful galleries, albums & images to your WordPress website in a few "
1344
  "clicks."
@@ -1346,15 +1294,7 @@ msgstr ""
1346
  "Přidávejte na váš WordPress web krásné galerie, alba a obrázky během "
1347
  "několika kliknutí."
1348
 
1349
- #: product_list.php:130
1350
- msgid ""
1351
- "Add Google +1, Share, Follow, Hangout buttons and profile badge to WordPress "
1352
- "posts, pages and widgets."
1353
- msgstr ""
1354
- "Přidávejte Google +1 tlačítka sdílet, sledovat, Hangout a profile badge do "
1355
- "WordPress příspěvků, stránek a widgetů."
1356
-
1357
- #: product_list.php:140
1358
  msgid ""
1359
  "Stronger security solution which protects your WordPress website from hacks "
1360
  "and unauthorized login attempts."
@@ -1362,7 +1302,7 @@ msgstr ""
1362
  "Silnější bezpečnostní řešení, které chrání vaše webové stránky WordPress od "
1363
  "hacků a pokusů o neoprávněné přihlášení."
1364
 
1365
- #: product_list.php:150
1366
  msgid ""
1367
  "Add Adsense ads to WordPress website pages, posts, custom posts, search "
1368
  "results, categories, tags, and widgets."
@@ -1370,26 +1310,28 @@ msgstr ""
1370
  "Přidávejte reklamy Adsense do webu WordPress, příspěvky, vlastní příspěvky, "
1371
  "výsledky vyhledávání, rubriky, štítky a widgety."
1372
 
1373
- #: product_list.php:160
1374
  msgid "Add Google Analytics code to WordPress website and track basic stats."
1375
  msgstr ""
1376
  "Přidávejte Google Analytics kód do WordPress webu a sledujte základní "
1377
  "statistiky."
1378
 
1379
- #: product_list.php:170
1380
- msgid ""
1381
- "Protect WordPress website forms from spam entries with Google Captcha "
1382
- "(reCaptcha)."
 
 
1383
  msgstr ""
1384
  "Chraňte WordPress webové formuláře před spamem s Google Captcha (\"reCAPTCHA"
1385
  "\")."
1386
 
1387
- #: product_list.php:180
1388
  msgid "Add customized Google maps to WordPress posts, pages and widgets."
1389
  msgstr ""
1390
  "Přidávejte vlastní mapy Google do WordPress příspěvků, stránek a widgetů."
1391
 
1392
- #: product_list.php:190
1393
  msgid ""
1394
  "Generate and add XML sitemap to WordPress website. Help search engines index "
1395
  "your blog."
@@ -1397,7 +1339,7 @@ msgstr ""
1397
  "Generujte a přidávejte sitemap.xml na vaše WordPress weby. Pomožte "
1398
  "vyhledávačům indexovat váš blog."
1399
 
1400
- #: product_list.php:200
1401
  msgid ""
1402
  "Replace external WordPress website links with Google shortlinks and track "
1403
  "click stats."
@@ -1405,7 +1347,7 @@ msgstr ""
1405
  "Nahradit externí odkazy WordPress webu pomocí Google shortlinks a sledujte "
1406
  "statistiky kliknutí."
1407
 
1408
- #: product_list.php:207
1409
  msgid ""
1410
  "Protect WordPress website – allow and deny access for certain IP addresses, "
1411
  "hostnames, etc."
@@ -1413,7 +1355,7 @@ msgstr ""
1413
  "Chráňte WordPress web– povolte či odepřete přístup pro určité IP adresy, "
1414
  "hostnames, atd."
1415
 
1416
- #: product_list.php:217
1417
  msgid ""
1418
  "Create your personal job board and listing WordPress website. Search jobs, "
1419
  "submit CV/resumes, choose candidates."
@@ -1421,7 +1363,7 @@ msgstr ""
1421
  "Vytvořte si osobní nástěnku pracovních míst na WordPress webu. Hledání "
1422
  "zaměstnání, odeslání CV/životopisu, výběr kandidátů."
1423
 
1424
- #: product_list.php:224
1425
  msgid ""
1426
  "Protect WordPress website against brute force attacks. Limit rate of login "
1427
  "attempts."
@@ -1429,7 +1371,7 @@ msgstr ""
1429
  "Chraňte WordPress web proti útokům hrubou silou. Omezte počet pokusů o "
1430
  "přihlášení."
1431
 
1432
- #: product_list.php:234
1433
  msgid ""
1434
  "Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. "
1435
  "5 plugins included – profile, insider, etc."
@@ -1437,7 +1379,7 @@ msgstr ""
1437
  "Přidávejte LinkedIn tlačítka sdílet a sledovat do WordPress příspěvků, "
1438
  "stránek a widgetů. 5 pluginů zahrnuje - profil, insider, atd."
1439
 
1440
- #: product_list.php:244
1441
  msgid ""
1442
  "Translate WordPress website content to other languages manually. Create "
1443
  "multilingual pages, posts, widgets, menus, etc."
@@ -1445,7 +1387,7 @@ msgstr ""
1445
  "Přeložte manuálně obsah webu WordPress do jiných jazyků. Vytvořte "
1446
  "vícejazyčné stránky, příspěvky, widgety, menu, atd."
1447
 
1448
- #: product_list.php:254
1449
  msgid ""
1450
  "Add customizable pagination to WordPress website. Split long content to "
1451
  "multiple pages for better navigation."
@@ -1453,7 +1395,7 @@ msgstr ""
1453
  "Přidávejte nastavitelné stránkování na web WordPress. Pro lepší navigaci "
1454
  "rozdělte dlouhý obsah na více stránek."
1455
 
1456
- #: product_list.php:264
1457
  msgid ""
1458
  "Generate PDF files and print WordPress posts/pages. Customize document "
1459
  "header/footer styles and appearance."
@@ -1461,7 +1403,7 @@ msgstr ""
1461
  "Generujte PDF soubory a tiskněte WordPress příspěvky/stránky. Vlastní "
1462
  "záhlaví/zápatí dokumentu, styly a vzhled."
1463
 
1464
- #: product_list.php:274
1465
  msgid ""
1466
  "Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, "
1467
  "Profile) to WordPress posts, pages and widgets."
@@ -1469,7 +1411,7 @@ msgstr ""
1469
  "Přidávejte Pinterest tlačítka sledovat a připnout a profilový widget (Pin, "
1470
  "Board, Profile) do WordPress příspěvků, stránek a widgetů."
1471
 
1472
- #: product_list.php:284
1473
  msgid ""
1474
  "Create your personal portfolio WordPress website. Manage and showcase past "
1475
  "projects to get more clients."
@@ -1477,13 +1419,13 @@ msgstr ""
1477
  "Vytvořte si osobní portfolio WordPress webů. Spravujte a představte své "
1478
  "nedávné projekty a získejte více klientů."
1479
 
1480
- #: product_list.php:294
1481
  msgid "Export WordPress posts to CSV file format easily. Configure data order."
1482
  msgstr ""
1483
  "Exportujte snadno vaše WordPress příspěvky do souboru formátu CSV. "
1484
  "Konfigurujte pořadí dat."
1485
 
1486
- #: product_list.php:301
1487
  msgid ""
1488
  "Add extra fields to default WordPress user profile. The easiest way to "
1489
  "create and manage additional custom values."
@@ -1491,7 +1433,7 @@ msgstr ""
1491
  "Přidávejte další pole do výchozího profilu uživatele WordPress. "
1492
  "Nejjednodušší způsob, jak vytvořit a spravovat vlastní hodnoty."
1493
 
1494
- #: product_list.php:308
1495
  msgid ""
1496
  "Add and display HTML advertisement banner on WordPress website. Customize "
1497
  "bar styles and appearance."
@@ -1499,7 +1441,7 @@ msgstr ""
1499
  "Přidávejte a zobrazujte HTML reklamní banner na webu WordPress. Úpravte styl "
1500
  "a vzhled lišt."
1501
 
1502
- #: product_list.php:318
1503
  msgid ""
1504
  "Add customizable quotes and tips blocks to WordPress posts, pages and "
1505
  "widgets."
@@ -1507,7 +1449,7 @@ msgstr ""
1507
  "Přidávejte přizpůsobitelné nabídky a bloky s tipy do WordPress příspěvků, "
1508
  "stránek a widgetů."
1509
 
1510
- #: product_list.php:325
1511
  msgid ""
1512
  "Add rating plugin to your WordPress website to receive feedback from your "
1513
  "customers."
@@ -1515,7 +1457,7 @@ msgstr ""
1515
  "Přidávejte do vašeho WordPress webu plugin hodnocení k získání zpětné vazby "
1516
  "od vašich zákazníků."
1517
 
1518
- #: product_list.php:332
1519
  msgid ""
1520
  "Create your personal real estate WordPress website. Sell, rent and buy "
1521
  "properties. Add, search and browse listings easily."
@@ -1524,7 +1466,7 @@ msgstr ""
1524
  "pronajímejte a kupujte nemovitosti. Snadno přidejte hledání a procházení "
1525
  "seznamy."
1526
 
1527
- #: product_list.php:342
1528
  msgid ""
1529
  "Add related, featured, latest, and popular posts to your WordPress website. "
1530
  "Connect your blog readers with a relevant content."
@@ -1532,7 +1474,7 @@ msgstr ""
1532
  "Přidávejte související, nejlepší, nejnovější a populární příspěvky do vašeho "
1533
  "WordPress webu. Propojte čtenáře vašeho blogu s příslušným obsahem."
1534
 
1535
- #: product_list.php:349
1536
  msgid ""
1537
  "Send bulk email messages to WordPress users. Custom templates, advanced "
1538
  "settings and detailed reports."
@@ -1540,7 +1482,7 @@ msgstr ""
1540
  "Odesílejte hromadné e-maily WordPress uživatelům. Vlastní šablony, rozšířené "
1541
  "nastavení a podrobné reporty."
1542
 
1543
- #: product_list.php:359
1544
  msgid ""
1545
  "The best responsive slider plugin for your WordPress website. Create "
1546
  "beautifully animated slides just in a few clicks."
@@ -1548,7 +1490,7 @@ msgstr ""
1548
  "Nejlepší responzivní slider plugin pro váše WordPress web. Vytvořte krásné "
1549
  "animované snímky během pár kliknutí."
1550
 
1551
- #: product_list.php:366
1552
  msgid ""
1553
  "Configure SMTP server to receive email messages from WordPress to Gmail, "
1554
  "Yahoo, Hotmail and other services."
@@ -1556,15 +1498,19 @@ msgstr ""
1556
  "Konfigurujte SMTP server pro příjem e-mailových zpráv z WordPress na Gmail, "
1557
  "Yahoo, Hotmail a dalších službách."
1558
 
1559
- #: product_list.php:373
 
 
 
 
1560
  msgid ""
1561
  "Add social media buttons and widgets to WordPress posts, pages and widgets. "
1562
- "FB, Twitter, G+1, Pinterest, LinkedIn."
1563
  msgstr ""
1564
  "Přidávejte tlačítka sociálních sítí a widgety do WordPress příspěvků, "
1565
  "stránek a widgetů. Facebook, Twitter, G+1, Pinterest, LinkedIn."
1566
 
1567
- #: product_list.php:383
1568
  msgid ""
1569
  "Add social media login, registration, and commenting to your WordPress "
1570
  "website."
@@ -1572,7 +1518,7 @@ msgstr ""
1572
  "Přidávejte na váš WordPress web login, registraci či komentáře "
1573
  "prostřednictvím sociálních sítí."
1574
 
1575
- #: product_list.php:390
1576
  msgid ""
1577
  "Add email newsletter sign up form to WordPress posts, pages and widgets. "
1578
  "Collect data and subscribe your users."
@@ -1581,7 +1527,7 @@ msgstr ""
1581
  "příspěvků, stránek a widgetů. Shromažďujte data a přihlaste k odběru vaše "
1582
  "uživatele."
1583
 
1584
- #: product_list.php:400
1585
  msgid ""
1586
  "Add testimonials and feedbacks from your customers to WordPress website "
1587
  "posts, pages, and widgets."
@@ -1589,7 +1535,7 @@ msgstr ""
1589
  "Přidávejte potvrzení a zpětnou vazbu od vašich zákazníků do WordPress "
1590
  "příspěvků, stránek a widgetů."
1591
 
1592
- #: product_list.php:407
1593
  msgid ""
1594
  "Best timesheet plugin for WordPress. Track employee time, streamline "
1595
  "attendance and generate reports."
@@ -1597,7 +1543,7 @@ msgstr ""
1597
  "Nejlepší timesheet plugin pro WordPress. Sledujte časy zaměstnanců, "
1598
  "kontrolujte jejich přítomnost a generujte sestavy."
1599
 
1600
- #: product_list.php:417
1601
  msgid ""
1602
  "Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts "
1603
  "and pages."
@@ -1605,7 +1551,7 @@ msgstr ""
1605
  "Přidávejte Twitter tlačítka Sledovat, Tweetnout a Zmínit do WordPress "
1606
  "příspěvků a stránek."
1607
 
1608
- #: product_list.php:427
1609
  msgid ""
1610
  "Automatically check and update WordPress website core with all installed "
1611
  "plugins and themes to the latest versions."
@@ -1613,7 +1559,7 @@ msgstr ""
1613
  "Automaticky kontrolujte a aktualizujte na nejnovější verzi WordPress jádro i "
1614
  "všechny nainstalované pluginy a šablony."
1615
 
1616
- #: product_list.php:437
1617
  msgid ""
1618
  "Powerful user role management plugin for WordPress website. Create, edit, "
1619
  "copy, and delete user roles."
@@ -1621,7 +1567,7 @@ msgstr ""
1621
  "Plugin robustní správy užiatelů pro WordPress web. Vytvářejte, upravujte, "
1622
  "kopírujte a odstraňujte uživatelské role."
1623
 
1624
- #: product_list.php:447
1625
  msgid ""
1626
  "Display live count of online visitors who are currently browsing your "
1627
  "WordPress website."
@@ -1629,10 +1575,128 @@ msgstr ""
1629
  "Zobrazujte počet aktivních online návštěvníků, kteří dané chvíli procházejí "
1630
  "váš WordPress web."
1631
 
1632
- #: product_list.php:457
1633
  msgid ""
1634
  "Backup and export Zendesk Help Center content automatically to your "
1635
  "WordPress website database."
1636
  msgstr ""
1637
  "Automaticky zálohujte a exportujte obsah centra nápovědy Zendesk do databáze "
1638
  "vašeho WordPress webu."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2021-02-15 10:54+0200\n"
6
+ "PO-Revision-Date: 2021-02-15 10:54+0200\n"
7
  "Last-Translator: Mik013\n"
8
  "Language-Team: Mik013\n"
9
  "Language: cs_CZ\n"
13
  "X-Poedit-KeywordsList: __;_e;esc_attr_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Generator: Poedit 2.4.2\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: bws_functions.php:73 bws_functions.php:239
20
  msgid "requires"
21
  msgstr "vyžaduje"
22
 
53
  msgid "Need help?"
54
  msgstr "Potřebujete pomoci?"
55
 
56
+ #: bws_functions.php:104 bws_functions.php:949 class-bws-settings.php:1082
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:529
65
  msgid "Donate"
66
  msgstr "Darujte"
67
 
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:208 bws_menu.php:600
85
+ #: class-bws-settings.php:179
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:226
106
  msgid "Learn more"
107
  msgstr "Dozvědět se více"
108
 
119
  msgid "The Pro Trial license will expire on"
120
  msgstr "Zkušební Pro licence vyprší"
121
 
122
+ #: bws_functions.php:199 bws_functions.php:222 bws_functions.php:266
123
+ #: bws_functions.php:276 bws_functions.php:475
124
+ msgid "Close notice"
125
+ msgstr "Zavřít poznámku"
126
+
127
+ #: bws_functions.php:204
128
+ msgid "It’s time to upgrade your"
129
+ msgstr "Je čas na aktualizaci vašeho"
130
+
131
+ #: bws_functions.php:204
132
+ msgid "to"
133
+ msgstr "na"
134
+
135
+ #: bws_functions.php:204
136
+ msgid "version!"
137
+ msgstr "verzi!"
138
+
139
+ #: bws_functions.php:205
140
+ msgid "Extend standard plugin functionality with new great options."
141
+ msgstr "Rozšiřuje standardní funkce pluginu novými skvělými možnostmi."
142
+
143
+ #: bws_functions.php:226
144
+ #, php-format
145
+ msgid ""
146
+ "Your license key for %s expires on %s and you won't be granted TOP-PRIORITY "
147
+ "SUPPORT or UPDATES."
148
+ msgstr ""
149
+ "Váš licenční klíč pro %s vyprší dne %s a nebudou vám poskytovány TOP-"
150
+ "PRIOROTNÍ PODPORA a AKTUALIZACE."
151
+
152
+ #: bws_functions.php:241
153
  msgid ""
154
  "or higher! We do not guarantee that our plugin will work correctly. Please "
155
  "upgrade to WordPress latest version."
157
  "nebo vyšší! Nezaručujeme, že náš plugin bude fungovat správně. Prosím "
158
  "aktualizujte na nejnovější verzi WordPressu."
159
 
160
+ #: bws_functions.php:256
161
  #, php-format
162
  msgid "Thank you for installing %s plugin!"
163
  msgstr "Děkujeme vám za instalaci pluginu %s!"
164
 
165
+ #: bws_functions.php:258
166
  msgid "Let's get started"
167
  msgstr "Začněme"
168
 
169
+ #: bws_functions.php:259 bws_functions.php:292 bws_menu.php:533
170
+ #: bws_menu.php:535
171
  msgid "Settings"
172
  msgstr "Nastavení"
173
 
174
+ #: bws_functions.php:261 bws_menu.php:327 class-bws-settings.php:809
175
+ #: class-bws-settings.php:1084 class-bws-settings.php:1094 deprecated.php:234
176
  msgid "or"
177
  msgstr "nebo"
178
 
179
+ #: bws_functions.php:262 bws_functions.php:294
180
  msgid "Add New"
181
  msgstr "Přidat nový"
182
 
183
+ #: bws_functions.php:281
 
 
 
 
 
184
  msgid "Thank you for installing plugins by BestWebSoft!"
185
  msgstr "Děkujeme vám za instalaci pluginů od BestWebSoft!"
186
 
187
+ #: bws_functions.php:283
188
  msgid "More Details"
189
  msgstr "Více detailů"
190
 
191
+ #: bws_functions.php:284
192
  msgid "Less Details"
193
  msgstr "Méně detailů"
194
 
195
+ #: bws_functions.php:312
196
  msgid "Deprecated function(-s) is used on the site here:"
197
  msgstr "Zastaralé funkce se používají na stránkách zde:"
198
 
199
+ #: bws_functions.php:326
200
  msgid ""
201
  "This function(-s) will be removed over time. Please update the product(-s)."
202
  msgstr ""
203
  "Tato funkce, bude v průběhu času odstraněna. Prosím aktualizujte produkt."
204
 
205
+ #: bws_functions.php:470
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
206
  #, php-format
207
  msgid "Thank you for choosing %s plugin!"
208
  msgstr "Děkujeme, že jste si vybrali plugin %s!"
209
 
210
+ #: bws_functions.php:471
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:472
219
  msgid "Suggest a Feature"
220
  msgstr "Navrhnout vlastnost"
221
 
222
+ #: bws_functions.php:488 class-bws-settings.php:580 class-bws-settings.php:583
223
+ #: class-bws-settings.php:635 class-bws-settings.php:638
224
  msgid "Notice"
225
  msgstr "Poznámka"
226
 
227
+ #: bws_functions.php:488
228
  msgid "The plugin's settings have been changed."
229
  msgstr "Nastavení pluginu bylo změněno."
230
 
231
+ #: bws_functions.php:489 class-bws-settings.php:222 class-bws-settings.php:242
 
232
  msgid "Save Changes"
233
  msgstr "Uložit změny"
234
 
235
+ #: bws_functions.php:503
236
  msgid ""
237
  "You can always look at premium options by checking the \"Pro Options\" in "
238
  "the \"Misc\" tab."
240
  "Vždy se můžete podívat na možnosti prémiové verze, kliknutím na \"PRO "
241
  "nastavení\" na \"Go PRO\" záložce."
242
 
243
+ #: bws_functions.php:679
 
 
 
 
 
 
 
 
244
  msgid "Add shortcode"
245
  msgstr "Přidat zkrácený kód"
246
 
247
+ #: bws_functions.php:679
248
  msgid "Add BestWebSoft plugins' shortcodes using this button."
249
  msgstr ""
250
  "Pomocí tohoto tlačítka můžete přidávat zkrácené kódy BestWebSoft pluginů."
251
 
252
+ #: bws_functions.php:765
253
  msgid "Close"
254
  msgstr "Zavřít"
255
 
256
+ #: bws_functions.php:851
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:854
261
  msgid "Yes, restore all settings"
262
  msgstr "Ano, obnovit veškerá nastavení"
263
 
264
+ #: bws_functions.php:855
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:897
269
  msgid "Plugin"
270
  msgstr "Plugin"
271
 
272
+ #: bws_functions.php:906
273
  msgid "Shortcode settings"
274
  msgstr "Nastavení zkrácených kódů"
275
 
276
+ #: bws_functions.php:911
277
  msgid "The shortcode will be inserted"
278
  msgstr "Bude vložen zkrácený kód"
279
 
280
+ #: bws_functions.php:954
281
  msgid "FAQ"
282
  msgstr ""
283
  "Časté dotazy <acronym title=\"Frequently asked questions\">(FAQ)</acronym>"
284
 
285
+ #: bws_functions.php:960
286
  msgid "For more information:"
287
  msgstr "Pro více informací:"
288
 
289
+ #: bws_functions.php:961 bws_menu.php:401 class-bws-settings.php:776
290
  msgid "Documentation"
291
  msgstr "Dokumentace"
292
 
293
+ #: bws_functions.php:962 bws_menu.php:403 class-bws-settings.php:778
294
  msgid "Video Instructions"
295
  msgstr "Video instrukce"
296
 
297
+ #: bws_functions.php:963
298
  msgid "Submit a Request"
299
  msgstr "Odeslat požadavek"
300
 
301
+ #: bws_menu.php:101 class-bws-settings.php:860
302
  msgid "Wrong license key"
303
  msgstr "Špatný licenční klíč"
304
 
305
+ #: bws_menu.php:122 class-bws-settings.php:887 class-bws-settings.php:966
306
+ #: class-bws-settings.php:1004
 
307
  msgid ""
308
  "Something went wrong. Please try again later. If the error appears again, "
309
  "please contact us"
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:887 class-bws-settings.php:966
315
+ #: class-bws-settings.php:1004
 
316
  msgid "We are sorry for inconvenience."
317
  msgstr "Omlouváme se za nepříjemnosti."
318
 
319
+ #: bws_menu.php:129 class-bws-settings.php:893 class-bws-settings.php:1010
 
320
  msgid "Wrong license key."
321
  msgstr "Neplatný licenční klíč."
322
 
323
+ #: bws_menu.php:131
324
  msgid ""
325
  "This license key is bound to another site. Change it via personal Client "
326
  "Area."
328
  "Tento licenční klíč je přidružen k jinému webu. Změňte jej prostřednictvím "
329
  "osobní Klientské zóny."
330
 
331
+ #: bws_menu.php:131
332
  msgid "Log in"
333
  msgstr "Přihlášení"
334
 
335
+ #: bws_menu.php:133 bws_menu.php:333 deprecated.php:157
336
  msgid "Unfortunately, you have exceeded the number of available tries per day."
337
  msgstr "Bohužel, překročili jste dostupný počet pokusů pro daný den."
338
 
339
+ #: bws_menu.php:135
340
  #, php-format
341
  msgid ""
342
  "Unfortunately, Your license has expired. To continue getting top-priority "
345
  "Bohužel, Vaše licence vypršela. Chcete-li pokračovat v získávání top-"
346
  "prioritní podpory a aktualizace pluginu měli byste ji prodloužit ve vašem %s"
347
 
348
+ #: bws_menu.php:137 class-bws-settings.php:1018
349
  msgid ""
350
  "Unfortunately, the Pro licence was already installed to this domain. The Pro "
351
  "Trial license can be installed only once."
353
  "Bohužel, pro tuto doménu již byla použita Pro licence. Zkušební Pro licence "
354
  "může být instalována pouze jedenkrát."
355
 
356
+ #: bws_menu.php:143 class-bws-settings.php:908
357
  msgid "The license key is valid."
358
  msgstr "Licenční klíč je platný."
359
 
360
+ #: bws_menu.php:145 class-bws-settings.php:912
361
  msgid "Your license will expire on"
362
  msgstr "Vaše licence vyprší"
363
 
364
+ #: bws_menu.php:147
365
  msgid "Congratulations! Pro Membership license is activated successfully."
366
  msgstr "Gratulujeme! PRO členství bylo úspěšně aktivováno."
367
 
368
+ #: bws_menu.php:154 class-bws-settings.php:1028
369
  msgid ""
370
  "Something went wrong. Try again later or upload the plugin manually. We are "
371
  "sorry for inconvenience."
373
  "Něco se pokazilo. Zkuste to později, nebo nahrajte plugin ručně. Omlouváme "
374
  "se za nepříjemnosti."
375
 
376
+ #: bws_menu.php:164
377
  msgid "Please enter your license key."
378
  msgstr "Prosím vložte váš licenční klíč."
379
 
380
+ #: bws_menu.php:175
381
  msgid "Not set"
382
  msgstr "Nenastaveno"
383
 
384
+ #: bws_menu.php:177
385
  msgid "On"
386
  msgstr "Zapnout"
387
 
388
  # vypnout, nebo vypnuto
389
+ #: bws_menu.php:177
390
  msgid "Off"
391
  msgstr "Vypnout"
392
 
393
+ #: bws_menu.php:178 bws_menu.php:179 bws_menu.php:180 bws_menu.php:181
394
+ #: bws_menu.php:182 bws_menu.php:183 bws_menu.php:192
395
  msgid "N/A"
396
  msgstr "N/A"
397
 
398
+ #: bws_menu.php:183
399
+ #, fuzzy
400
+ #| msgid " Mb"
401
+ msgid "Mb"
402
  msgstr " Mb"
403
 
404
+ #: bws_menu.php:184 bws_menu.php:185 bws_menu.php:186 bws_menu.php:190
405
  msgid "Yes"
406
  msgstr "Ano"
407
 
408
+ #: bws_menu.php:184 bws_menu.php:185 bws_menu.php:186 bws_menu.php:190
409
  msgid "No"
410
  msgstr "Ne"
411
 
412
+ #: bws_menu.php:197
413
  msgid "WordPress Environment"
414
  msgstr "WordPress prostředí"
415
 
416
+ #: bws_menu.php:199
417
  msgid "Home URL"
418
  msgstr "Domovská URL"
419
 
420
+ #: bws_menu.php:200
421
  msgid "Website URL"
422
  msgstr "URL webových stránek"
423
 
424
+ #: bws_menu.php:201
425
  msgid "WP Version"
426
  msgstr "WP Verze"
427
 
428
+ #: bws_menu.php:202
429
  msgid "WP Multisite"
430
  msgstr "WP Multisite"
431
 
432
+ #: bws_menu.php:203
433
  msgid "WP Memory Limit"
434
  msgstr "WP pamětový limit (memory limit)"
435
 
436
+ #: bws_menu.php:204
437
  msgid "Active Theme"
438
  msgstr "Aktivovat šablonu"
439
 
440
+ #: bws_menu.php:204 bws_menu.php:249 bws_menu.php:252
441
  #, php-format
442
  msgid "by %s"
443
  msgstr "od %s"
444
 
445
+ #: bws_menu.php:208
446
  msgid "Server Environment"
447
  msgstr "Prostředí"
448
 
449
+ #: bws_menu.php:210
450
  msgid "Operating System"
451
  msgstr "Operační systém"
452
 
453
+ #: bws_menu.php:211
454
  msgid "Server"
455
  msgstr "Server"
456
 
457
+ #: bws_menu.php:212
458
  msgid "PHP Version"
459
  msgstr "PHP Verze"
460
 
461
  # copy
462
+ #: bws_menu.php:213
463
  msgid "PHP Allow URL fopen"
464
  msgstr "PHP Allow URL fopen"
465
 
466
+ #: bws_menu.php:214
467
  msgid "PHP Memory Limit"
468
  msgstr "PHP Limit paměti"
469
 
470
+ #: bws_menu.php:215
471
  msgid "Memory Usage"
472
  msgstr "Využití paměti"
473
 
474
  # copy
475
+ #: bws_menu.php:216
476
  msgid "PHP Max Upload Size"
477
  msgstr "PHP Max Upload Size"
478
 
479
  # copy
480
+ #: bws_menu.php:217
481
  msgid "PHP Max Post Size"
482
  msgstr "PHP Max Post Size"
483
 
484
  # copy
485
+ #: bws_menu.php:218
486
  msgid "PHP Max Script Execute Time"
487
  msgstr "PHP Max Script Execute Time"
488
 
489
+ #: bws_menu.php:219
490
  msgid "PHP Exif support"
491
  msgstr "PHP podpora Exif"
492
 
493
+ #: bws_menu.php:220
494
  msgid "PHP IPTC support"
495
  msgstr "PHP podpora IPTC"
496
 
497
+ #: bws_menu.php:221
498
  msgid "PHP XML support"
499
  msgstr "PHP podpora XML"
500
 
501
+ #: bws_menu.php:227
502
  msgid "Database"
503
  msgstr "Databáze"
504
 
505
+ #: bws_menu.php:229
506
  msgid "WP DB version"
507
  msgstr "WP verze DB"
508
 
509
+ #: bws_menu.php:230
510
  msgid "MySQL version"
511
  msgstr "Verze MYSQL"
512
 
513
+ #: bws_menu.php:231
514
  msgid "SQL Mode"
515
  msgstr "Mód SQL"
516
 
517
+ #: bws_menu.php:235
518
  msgid "Active Plugins"
519
  msgstr "Aktivní pluginy"
520
 
521
+ #: bws_menu.php:240
522
  msgid "Inactive Plugins"
523
  msgstr "Neaktivní pluginy"
524
 
525
+ #: bws_menu.php:261
526
  msgid "Please enter a valid email address."
527
  msgstr "Prosím vložte platnou e-mailovou adresu."
528
 
529
+ #: bws_menu.php:263
530
  #, php-format
531
  msgid "Email with system info is sent to %s."
532
  msgstr "E-mail s informacemi o systému byl odeslán na %s."
533
 
534
+ #: bws_menu.php:267
535
  msgid "Thank you for contacting us."
536
  msgstr "Děkujeme, že jste nás kontaktovali."
537
 
538
+ #: bws_menu.php:290
539
  msgid "Sorry, email message could not be delivered."
540
  msgstr "Je nám líto, ale e-mail nemohl být doručen."
541
 
542
+ #: bws_menu.php:306 bws_menu.php:310 bws_menu.php:359 deprecated.php:26
543
  msgid "Plugins"
544
  msgstr "Pluginy"
545
 
546
+ #: bws_menu.php:307 bws_menu.php:311 bws_menu.php:587 deprecated.php:27
547
  msgid "Themes"
548
  msgstr "Šablony"
549
 
550
+ #: bws_menu.php:308 bws_menu.php:312 bws_menu.php:617
551
  msgid "System status"
552
  msgstr "Stav systému"
553
 
554
+ #: bws_menu.php:316
555
  msgid "Support"
556
  msgstr "Podpora"
557
 
558
+ #: bws_menu.php:317
559
  msgid "Manage purchased licenses & subscriptions"
560
  msgstr "Spravovat zakoupené licence a předplatné"
561
 
562
+ #: bws_menu.php:325
563
  #, php-format
564
  msgid "Get Access to %s+ Premium Plugins"
565
  msgstr "Získejte přístup k %s+ Premiovým pluginům"
566
 
567
+ #: bws_menu.php:327
568
  msgid "Subscribe to Pro Membership"
569
  msgstr "Přihlaste se k PRO členství"
570
 
571
+ #: bws_menu.php:335 bws_menu.php:346 class-bws-settings.php:822
572
+ #: deprecated.php:123
573
  msgid "Check license key"
574
  msgstr "Zkontrolovat licenční klíč"
575
 
576
+ #: bws_menu.php:338
577
  msgid "Enter your license key"
578
  msgstr "Vložte váš licenční klíč"
579
 
580
+ #: bws_menu.php:344 bws_menu.php:539 bws_menu.php:548
581
+ #: class-bws-settings.php:801 deprecated.php:155 deprecated.php:163
582
+ #: deprecated.php:240 deprecated.php:249
583
  msgid "Activate"
584
  msgstr "Aktivovat"
585
 
586
+ #: bws_menu.php:360
587
  msgid "Upload Plugin"
588
  msgstr "Nahrát plugin"
589
 
590
+ #: bws_menu.php:364
591
  #, php-format
592
  msgid ""
593
  "The plugin generated %d characters of <strong>unexpected output</strong> "
600
  "problems with syndication feeds or other issues, pokuste se deaktivovat, "
601
  "nebo odstranit tento plugin."
602
 
603
+ #: bws_menu.php:366
604
  msgid ""
605
  "Plugin could not be activated because it triggered a <strong>fatal error</"
606
  "strong>."
607
  msgstr ""
608
  "Plugin nemůže být aktivován, neboť způsobil <strong>závažnou chybu</strong>."
609
 
610
+ #: bws_menu.php:369
611
  msgid "Plugin <strong>activated</strong>."
612
  msgstr "Plugin <strong>aktivován</strong>."
613
 
614
+ #: bws_menu.php:383
615
+ #, fuzzy
616
+ #| msgid "Upload Plugin"
617
+ msgid "Download Pro Plugin"
618
+ msgstr "Nahrát plugin"
619
 
620
+ #: bws_menu.php:385 class-bws-settings.php:759
621
+ msgid "Your Pro plugin is ready"
622
+ msgstr ""
623
 
624
+ #: bws_menu.php:387 class-bws-settings.php:761
625
+ msgid "Your plugin has been zipped, and now is ready to download."
626
+ msgstr ""
 
627
 
628
+ #: bws_menu.php:390 class-bws-settings.php:764
629
+ msgid "Download Now"
630
+ msgstr ""
631
 
632
+ #: bws_menu.php:394 class-bws-settings.php:768
633
+ #, fuzzy
634
+ #| msgid "Installing the plugin"
635
+ msgid "Need help installing the plugin?"
636
  msgstr "Instalace pluginu"
637
 
638
+ #: bws_menu.php:396 class-bws-settings.php:770
639
+ msgid "How to install WordPress plugin from your admin Dashboard (ZIP archive)"
 
 
 
 
 
 
640
  msgstr ""
 
 
641
 
642
+ #: bws_menu.php:399 class-bws-settings.php:774
643
+ #, fuzzy
644
+ #| msgid "Let's get started"
645
+ msgid "Get Started"
646
+ msgstr "Začněme"
647
+
648
+ #: bws_menu.php:405 class-bws-settings.php:780
649
+ msgid "Knowledge Base"
650
+ msgstr ""
651
 
652
+ #: bws_menu.php:408
653
+ msgid "Licenses & Domains"
654
+ msgstr ""
655
 
656
+ #: bws_menu.php:411
657
+ #, fuzzy
658
+ #| msgid "Login to Client Area"
659
+ msgid "Client Area"
660
+ msgstr "Přihlášení do klientská zóny"
661
 
662
+ #: bws_menu.php:413
663
  msgid "Return to BestWebSoft Panel"
664
  msgstr "Návrat na BestWebSoft panel"
665
 
666
+ #: bws_menu.php:420 bws_menu.php:440 bws_menu.php:569
667
  msgid "All"
668
  msgstr "Vše"
669
 
670
+ #: bws_menu.php:423 bws_menu.php:606
671
  msgid "Installed"
672
  msgstr "Instalováno"
673
 
674
+ #: bws_menu.php:426
675
  msgid "Not Installed"
676
  msgstr "Neninstalováno"
677
 
678
+ #: bws_menu.php:433
679
  msgid "Filter results"
680
  msgstr "Výsledky filtrování"
681
 
682
+ #: bws_menu.php:436 bws_menu.php:565
683
  msgid "Category"
684
  msgstr "Rubriky"
685
 
686
+ #: bws_menu.php:500
687
  msgid "Not installed"
688
  msgstr "Neninstalováno"
689
 
690
+ #: bws_menu.php:504
691
  msgid "Renew to get updates"
692
  msgstr "Obnovit pro získání aktualizací"
693
 
694
+ #: bws_menu.php:507
695
  #, php-format
696
  msgid "Update to v %s"
697
  msgstr "Aktualizovat na %s"
698
 
699
+ #: bws_menu.php:519 bws_menu.php:542
700
+ msgid "Get Pro"
701
+ msgstr ""
702
 
703
+ #: bws_menu.php:525 class-bws-settings.php:192 class-bws-settings.php:1091
704
  msgid "Upgrade to Pro"
705
  msgstr "Aktualizovat na Pro"
706
 
707
+ #: bws_menu.php:539 bws_menu.php:548
708
  msgid "Activate this plugin"
709
  msgstr "Aktivovat tento plugin"
710
 
711
+ #: bws_menu.php:551
712
  msgid "Install this plugin"
713
  msgstr "Instalovat tento plugin"
714
 
715
+ #: bws_menu.php:551
716
+ msgid "Install Now"
717
+ msgstr "Instalovat nyní"
718
+
719
+ #: bws_menu.php:560
720
  msgid "Nothing found. Try another criteria."
721
  msgstr "Nic nenalezeno. Zkuste jiná kritéria."
722
 
723
  # podle, nebo taky od
724
+ #: bws_menu.php:597
725
  #, php-format
726
  msgid "By %s"
727
  msgstr "podle %s"
728
 
729
+ #: bws_menu.php:604
730
  msgid "Already Installed"
731
  msgstr "Již instalováno"
732
 
733
+ #: bws_menu.php:614
734
  msgid "Browse More WordPress Themes"
735
  msgstr "Procházet další WordPress šablony"
736
 
737
+ #: bws_menu.php:623
738
  msgid "Send to support"
739
  msgstr "Odeslat podpoře"
740
 
741
+ #: bws_menu.php:630
742
  msgid "Send to custom email &#187;"
743
  msgstr "Odeslat na vlastní e-mail &#187;"
744
 
745
+ #: class-bws-settings.php:167
746
  msgid "Information"
747
  msgstr "Informace"
748
 
749
+ #: class-bws-settings.php:179
750
  msgid "Inactive"
751
  msgstr "Neaktivní"
752
 
753
+ #: class-bws-settings.php:187
754
  msgid "Expired"
755
  msgstr "Expirované"
756
 
757
+ #: class-bws-settings.php:190
758
  #, php-format
759
  msgid "%s day(-s) left"
760
  msgstr "%s dnů zbývá"
761
 
762
+ #: class-bws-settings.php:196
763
  #, php-format
764
  msgid "Expired on %s"
765
  msgstr "Vypršela dne %s"
766
 
767
+ #: class-bws-settings.php:196
768
  msgid "Renew Now"
769
  msgstr "Obnovit nyní"
770
 
771
+ #: class-bws-settings.php:198
772
  msgid "Active"
773
  msgstr "Aktivní"
774
 
775
+ #: class-bws-settings.php:203
776
  msgid "License"
777
  msgstr "Licence"
778
 
779
+ #: class-bws-settings.php:206
780
  msgid "Status"
781
  msgstr "Stav"
782
 
783
+ #: class-bws-settings.php:210
784
  msgid "Version"
785
  msgstr "Verze"
786
 
787
+ #: class-bws-settings.php:323
788
  msgid "All plugin settings were restored."
789
  msgstr "Všechna nastavení pluginu byla obnovena."
790
 
791
+ #: class-bws-settings.php:463
792
  msgid "Custom Code"
793
  msgstr "Vlastní kód"
794
 
795
+ #: class-bws-settings.php:467
796
  msgid "You do not have sufficient permissions to edit plugins for this site."
797
  msgstr "Nemáte dostatečná oprávnění pro úpravu pluginů tohoto webu."
798
 
799
+ #: class-bws-settings.php:472
800
  msgid "These styles will be added to the header on all pages of your site."
801
  msgstr "Tyto styly budou přidány do hlaviček všech stránek vašeho webu."
802
 
803
+ #: class-bws-settings.php:475
804
  #, php-format
805
  msgid ""
806
  "This PHP code will be hooked to the %s action and will be printed on front "
808
  msgstr ""
809
  "Tento PHP kód bude závislý na %s akci a bude zobrazen pouze na front endu."
810
 
811
+ #: class-bws-settings.php:478
812
  msgid "These code will be added to the header on all pages of your site."
813
  msgstr "Tento kód bude přidán do záhlaví všech stránek vašeho webu."
814
 
815
+ #: class-bws-settings.php:486
816
  #, php-format
817
  msgid ""
818
  "You need to make this files writable before you can save your changes. See "
821
  "Před tím, než budete moci vaše změny uložit, nastavte těmto souborům "
822
  "oprávnění pro zápis. Podívejte se %s na Kodex %s pro více informací."
823
 
824
+ #: class-bws-settings.php:496
825
  msgid "Browsing"
826
  msgstr "Procházení"
827
 
828
+ #: class-bws-settings.php:501
829
  #, php-format
830
  msgid "Activate custom %s code."
831
  msgstr "Aktivovat vlastní %s kód."
832
 
833
+ #: class-bws-settings.php:509
834
  #, php-format
835
  msgid "Learn more about %s"
836
  msgstr "Dozvědět se více o %s"
837
 
838
+ #: class-bws-settings.php:571
839
  msgid "Miscellaneous Settings"
840
  msgstr "Různá nastavení"
841
 
842
+ #: class-bws-settings.php:580 class-bws-settings.php:635
843
  #, php-format
844
  msgid ""
845
  "It is prohibited to change %s settings on this site in the %s network "
846
  "settings."
847
  msgstr "Je zakázáno měnit nastavení %s na této stránce v %s nastavení sítě."
848
 
849
+ #: class-bws-settings.php:583 class-bws-settings.php:638
850
  #, php-format
851
  msgid ""
852
  "It is prohibited to view %s settings on this site in the %s network settings."
853
  msgstr "Je zobrazit nastavení %s na této stránce v %s nastavení sítě."
854
 
855
+ #: class-bws-settings.php:592
856
  msgid "Pro Options"
857
  msgstr "PRO nastavení"
858
 
859
+ #: class-bws-settings.php:596
860
  msgid "Enable to display plugin Pro options."
861
  msgstr "Povolit zobrazení PRO voleb pluginu."
862
 
863
+ #: class-bws-settings.php:602
864
  msgid "Track Usage"
865
  msgstr "Sběr statistik"
866
 
867
+ #: class-bws-settings.php:606
868
  msgid ""
869
  "Enable to allow tracking plugin usage anonymously in order to make it better."
870
  msgstr ""
871
  "Umožnit anonymní sledování využití pluginu tak, aby mohl být dále vylepšován."
872
 
873
+ #: class-bws-settings.php:611
874
  msgid "Default Settings"
875
  msgstr "Výchozí nastavení"
876
 
877
+ #: class-bws-settings.php:613
878
  msgid "Restore Settings"
879
  msgstr "Obnovit nastavení"
880
 
881
+ #: class-bws-settings.php:614
882
  msgid "This will restore plugin settings to defaults."
883
  msgstr "Toto obnoví veškerá nastavení pluginu na výchozí hodnoty."
884
 
885
+ #: class-bws-settings.php:626
886
  msgid "Import / Export"
887
  msgstr "Import / Export"
888
 
889
+ #: class-bws-settings.php:744
 
890
  msgid "License Key"
891
  msgstr "Licenční klíč"
892
 
893
+ #: class-bws-settings.php:803
 
 
 
 
 
 
 
 
 
 
 
 
 
894
  #, php-format
895
  msgid "Enter your license key to activate %s and get premium plugin features."
896
  msgstr ""
897
  "Vložte váš licenční klíč pro aktivaci %s a získejte tak prémiové fukcе "
898
  "pluginu."
899
 
900
+ #: class-bws-settings.php:806 class-bws-settings.php:1014 deprecated.php:243
 
901
  msgid ""
902
  "Unfortunately, you have exceeded the number of available tries per day. "
903
  "Please, upload the plugin manually."
905
  "Bohužel, jste překročili počet dostupných pokusů za den. Prosím, nahrejte "
906
  "plugin ručně."
907
 
908
+ #: class-bws-settings.php:809 deprecated.php:234
909
  #, php-format
910
  msgid "Start Your Free %s-Day Trial Now"
911
  msgstr "Vyzkoušejte %s-denní zkušební verzi zdarma nyní"
912
 
913
+ #: class-bws-settings.php:824
914
  msgid ""
915
  "If necessary, you can check if the license key is correct or reenter it in "
916
  "the field below."
918
  "V případě potřeby zkontrolujte, je-li licenční klíč správně zadán, případně "
919
  "jej do pole níže vložte znova."
920
 
921
+ #: class-bws-settings.php:833
922
  msgid "Manage License Settings"
923
  msgstr "Správa nastavení licencí"
924
 
925
+ #: class-bws-settings.php:835
926
  msgid "Login to Client Area"
927
  msgstr "Přihlášení do klientská zóny"
928
 
929
+ #: class-bws-settings.php:837
930
  msgid ""
931
  "Manage active licenses, download BWS products, and view your payment history "
932
  "using BestWebSoft Client Area."
934
  "Správa aktivních licencí, stahování BWS produktů a zobrazení historie plateb "
935
  "v BestWebSoft klientské zóně."
936
 
937
+ #: class-bws-settings.php:895 class-bws-settings.php:1012
 
938
  msgid "This license key is bound to another site."
939
  msgstr "Tento licenční klíč je přidružen k jinému webu."
940
 
941
+ #: class-bws-settings.php:897
942
  msgid ""
943
  "This license key is valid, but Your license has expired. If you want to "
944
  "update our plugin in future, you should extend the license."
946
  "Tento licenční klíč je platný, ale vaše licence vypršela. Chcete-li náš "
947
  "plugin v budoucnosti aktualizovat, měli by jste licenci prodloužit."
948
 
949
+ #: class-bws-settings.php:899
950
  msgid "Unfortunately, you have exceeded the number of available tries."
951
  msgstr "Bohužel, překročili jste dostupný počet pokusů."
952
 
953
+ #: class-bws-settings.php:901
954
  msgid ""
955
  "Unfortunately, the Pro Trial licence was already installed to this domain. "
956
  "The Pro Trial license can be installed only once."
958
  "Bohužel, tato zkušební Pro licence již pro tuto doménu byla použita. "
959
  "Zkušební Pro licence může být instalována pouze jedenkrát."
960
 
961
+ #: class-bws-settings.php:906
962
  msgid "The Pro Trial license key is valid."
963
  msgstr "Licenční klíč zkušební Pro verze je platný."
964
 
965
+ #: class-bws-settings.php:919 deprecated.php:142
966
  #, php-format
967
  msgid ""
968
  "In order to continue using the plugin it is necessary to buy a %s license."
969
  msgstr ""
970
  "Pokud chcete nadále využívat tento plugin, je nutné zakoupit %s licenci."
971
 
972
+ #: class-bws-settings.php:1016
973
  #, php-format
974
  msgid ""
975
  "Unfortunately, Your license has expired. To continue getting top-priority "
978
  "Bohužel, Vaše licence vypršela. Chcete-li mít nadále přístup k top-prioritní "
979
  "podpoře a aktualizacím pluginu měli byste ji prodloužit ve vašem %s."
980
 
981
+ #: class-bws-settings.php:1065
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
982
  msgid "Please, enter Your license key"
983
  msgstr "Prosím, vložte váš licenční klíč"
984
 
985
+ #: class-bws-settings.php:1078
986
  msgid "Need Help?"
987
  msgstr "Potřebujete pomoci?"
988
 
989
+ #: class-bws-settings.php:1080
990
  msgid "Read the Instruction"
991
  msgstr "Přečíst si instrukce"
992
 
993
+ #: class-bws-settings.php:1084
994
  msgid "Watch the Video"
995
  msgstr "Přehrát video"
996
 
997
+ #: class-bws-settings.php:1095
998
  msgid "Start Your Free Trial"
999
  msgstr "Vyzkoušejte po omezenou dobu"
1000
 
1001
+ #: class-bws-settings.php:1130
1002
+ #, fuzzy
1003
+ #| msgid "Suggest a Feature"
1004
+ msgid "Request a Feature"
1005
+ msgstr "Navrhnout vlastnost"
1006
+
1007
+ #: class-bws-settings.php:1135
1008
+ #, php-format
1009
+ msgid "How can we improve %s?"
1010
+ msgstr ""
1011
+
1012
+ #: class-bws-settings.php:1137
1013
+ msgid "We look forward to hear your ideas."
1014
+ msgstr ""
1015
+
1016
+ #: class-bws-settings.php:1139
1017
+ msgid "Describe your idea"
1018
+ msgstr ""
1019
+
1020
+ #: class-bws-settings.php:1142 deactivation-form.php:120
1021
+ msgid "Send website data and allow to contact me back"
1022
+ msgstr "Odeslat data webu a umožnit zpětně mě kontaktovat"
1023
+
1024
+ #: class-bws-settings.php:1147
1025
+ msgid "Submit"
1026
+ msgstr ""
1027
+
1028
+ #: class-bws-settings.php:1148 deactivation-form.php:127
1029
+ msgid "Processing"
1030
+ msgstr "Zpracovává se"
1031
+
1032
+ #: class-bws-settings.php:1149
1033
+ msgid "Thank you!"
1034
+ msgstr ""
1035
+
1036
+ #: deactivation-form.php:22
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:22
1041
  msgid "Contact Support"
1042
  msgstr "Kontaktujte podporu"
1043
 
1044
+ #: deactivation-form.php:27
1045
  msgid "The plugin is not working"
1046
  msgstr "Plugin nefunguje"
1047
 
1048
+ #: deactivation-form.php:33
 
 
 
 
 
 
1049
  msgid "The plugin didn't work as expected"
1050
  msgstr "Plugin nefungoval podle mých očekávání"
1051
 
1052
+ #: deactivation-form.php:39
 
 
 
 
1053
  msgid "The plugin suddenly stopped working"
1054
  msgstr "Plugin přestal náhle pracovat"
1055
 
1056
+ #: deactivation-form.php:46
1057
  msgid "The plugin broke my site"
1058
  msgstr "Plugin mi rozbil web"
1059
 
1060
+ #: deactivation-form.php:53
1061
  msgid "I couldn't understand how to get it work"
1062
  msgstr "Nemohl jsem pochopit, jak to zprovoznit"
1063
 
1064
+ #: deactivation-form.php:60
1065
  msgid "I found a better plugin"
1066
  msgstr "Našel jsem lepší plugin"
1067
 
1068
+ #: deactivation-form.php:66
 
 
 
 
1069
  msgid "The plugin is great, but I need specific feature that you don't support"
1070
  msgstr ""
1071
  "Plugin je skvělý, ale já potřebuji specifickou funkci, kterou nepodporuje"
1072
 
1073
+ #: deactivation-form.php:72
 
 
 
 
1074
  msgid "I no longer need the plugin"
1075
  msgstr "Nadále již tento plugin nepotřebuji"
1076
 
1077
+ #: deactivation-form.php:78
1078
  msgid "It's a temporary deactivation, I'm just debugging an issue"
1079
  msgstr "Jedná se o dočasnou deaktivaci, pouze ladím problém"
1080
 
1081
+ #: deactivation-form.php:84
1082
  msgid "Other"
1083
  msgstr "Ostatní"
1084
 
1085
+ #: deactivation-form.php:93
1086
  msgid "Quick Feedback"
1087
  msgstr "Rychlá zpětná vazba"
1088
 
1089
+ #: deactivation-form.php:95
1090
  msgid "If you have a moment, please let us know why you are deactivating"
1091
  msgstr "Máte-li chvilku, sdělte nám důvod, proč deaktivujete tento plugin"
1092
 
1093
+ #: deactivation-form.php:125
1094
+ #, fuzzy
1095
+ #| msgid "Submit & Deactivate"
1096
+ msgid "Submit and Deactivate"
1097
+ msgstr "Odeslat a vypnout"
 
 
 
 
 
 
1098
 
1099
+ #: deactivation-form.php:126
1100
+ #, fuzzy
1101
+ #| msgid "Submit & Deactivate"
1102
+ msgid "Skip and Deactivate"
1103
  msgstr "Odeslat a vypnout"
1104
 
1105
+ #: deactivation-form.php:272
1106
  msgid "Please tell us the reason so we can improve it."
1107
  msgstr "Prosím, prozraďte nám důvod, abychom jej mohli zlepšit."
1108
 
1109
+ #: deprecated.php:28
 
 
 
 
1110
  msgid "System Status"
1111
  msgstr "Stav systému"
1112
 
1113
+ #: deprecated.php:119
 
 
 
 
1114
  msgid ""
1115
  "If necessary, you can check if the license key is correct or reenter it in "
1116
  "the field below. You can find your license key on your personal page - "
1120
  "jej do pole níže vložte znova. Váš licenční klíč najdete na vaší osobní "
1121
  "stránce - Klientská zóna - na našem webu"
1122
 
1123
+ #: deprecated.php:119
1124
  msgid ""
1125
  "(your username is the email address specified during the purchase). If "
1126
  "necessary, please submit \"Lost your password?\" request."
1128
  "(vaše uživatelské jméno je e-mailová adresa uvedena při nákupu). Pokud je to "
1129
  "nutné, prosím odešlete \"Lost your password?\" požadavek."
1130
 
1131
+ #: deprecated.php:142
1132
  msgid "After that, you can activate it by entering your license key."
1133
  msgstr "Poté jej lze snadno aktivovat zadáním licenčního klíče."
1134
 
1135
+ #: deprecated.php:145 deprecated.php:228
1136
  msgid "License key can be found in the"
1137
  msgstr "Licenční klíč najdete v"
1138
 
1139
+ #: deprecated.php:147 deprecated.php:230
1140
  msgid "(your username is the email address specified during the purchase)."
1141
  msgstr "(vaše uživatelské jméno je e-mailová adresa uvedená při nákupu)."
1142
 
1143
+ #: deprecated.php:170
1144
  msgid ""
1145
  "Congratulations! The Pro license of the plugin is activated successfully."
1146
  msgstr "Gratulujeme! PRO licence pluginu je úspěšně aktivována."
1147
 
1148
+ #: deprecated.php:172 deprecated.php:210
1149
  msgid "Please, go to"
1150
  msgstr "Prosím, přejděte na"
1151
 
1152
+ #: deprecated.php:172 deprecated.php:210
1153
  msgid "the setting page"
1154
  msgstr "stránka nastavení"
1155
 
1156
+ #: deprecated.php:187
 
 
 
 
 
 
 
 
1157
  msgid "Restore all plugin settings to defaults"
1158
  msgstr "Obnovit veškerá nastavení pluginu na výchozí hodnoty"
1159
 
1160
+ #: deprecated.php:189
1161
  msgid "Restore settings"
1162
  msgstr "Obnovit nastavení"
1163
 
1164
+ #: deprecated.php:208
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1165
  msgid ""
1166
  "Congratulations! Pro version of the plugin is installed and activated "
1167
  "successfully."
1168
  msgstr "Gratulujeme! PRO verze pluginu byla úspěšně instalována a aktivována."
1169
 
1170
+ #: deprecated.php:217
1171
  msgid "Show Pro features"
1172
  msgstr "Zobrazit Pro vlastnosti"
1173
 
1174
+ #: deprecated.php:224
1175
  msgid "Enter your license key to install and activate"
1176
  msgstr "Vložte váš licenční klíč pro instalaci a aktivaci"
1177
 
1178
+ #: deprecated.php:226
1179
  msgid "version of the plugin."
1180
  msgstr "verze pluginu."
1181
 
1182
+ #: product_list.php:8
1183
  msgid "Admin Tools"
1184
  msgstr "Administrační nástroje"
1185
 
1186
+ #: product_list.php:9
1187
  msgid "Content"
1188
  msgstr "Obsah"
1189
 
1190
+ #: product_list.php:10
1191
  msgid "eCommerce"
1192
  msgstr "eCommerce"
1193
 
1194
+ #: product_list.php:11
1195
  msgid "Marketing"
1196
  msgstr "Marketing"
1197
 
1198
+ #: product_list.php:12
1199
  msgid "Navigation"
1200
  msgstr "Navigace"
1201
 
1202
+ #: product_list.php:13
1203
  msgid "Recommended"
1204
  msgstr "Doporučeno"
1205
 
1206
+ #: product_list.php:14
1207
  msgid "Security"
1208
  msgstr "Bezpečnost"
1209
 
1210
+ #: product_list.php:15
1211
  msgid "SEO"
1212
  msgstr "SEO"
1213
 
1214
+ #: product_list.php:16
1215
  msgid "SMM"
1216
  msgstr "SMM"
1217
 
1218
+ #: product_list.php:23
1219
+ msgid "Give a birth for your bike rental and booking WordPress website."
1220
+ msgstr ""
1221
+
1222
+ #: product_list.php:35
1223
  msgid "Best secure captcha plugin to protect your WordPress forms."
1224
  msgstr "Nejbezpečnější captcha plugin k ochraně WordPress formulářů."
1225
 
1226
+ #: product_list.php:45
1227
+ msgid "Create your own rental website for car renting and booking."
1228
+ msgstr ""
1229
+
1230
+ #: product_list.php:57
1231
+ #, fuzzy
1232
+ #| msgid "Add customized Google maps to WordPress posts, pages and widgets."
1233
+ msgid ""
1234
+ "Add columns with custom content to WordPress website pages, posts, widgets, "
1235
+ "etc."
1236
+ msgstr ""
1237
+ "Přidávejte vlastní mapy Google do WordPress příspěvků, stránek a widgetů."
1238
 
1239
+ #: product_list.php:64
1240
  msgid ""
1241
  "Allow customers to reach you using secure contact form plugin any website "
1242
  "must have."
1244
  "Umožněte zákazníkům kontaktovat vás pomocí pluginu zabezpečeného kontaktního "
1245
  "formuláře, tohle musí mít každý web."
1246
 
1247
+ #: product_list.php:74
1248
  msgid "Add unlimited number of contact forms to WordPress website."
1249
  msgstr "Přidávejte neomezený počet kontaktních formulářů na WordPress web."
1250
 
1251
+ #: product_list.php:84
1252
  msgid "Save and manage Contact Form messages. Never lose important data."
1253
  msgstr ""
1254
  "Ukládejte a spravujte zprávy z kontaktního formuláře. Už nikdy neztraťte "
1255
  "důležitá data."
1256
 
1257
+ #: product_list.php:94
1258
  msgid "Add unlimited custom pages to WordPress admin dashboard."
1259
  msgstr ""
1260
  "Přidávejte neomezený počet vlastních stránek do WordPress admin nástěnky."
1261
 
1262
+ #: product_list.php:104
 
 
 
 
1263
  msgid ""
1264
  "Add custom post types and taxonomies to WordPress website search results."
1265
  msgstr ""
1266
  "Přidávejte vlastní typy příspěvků a taxonomie do výsledků vyhledání na webu "
1267
  "WordPress."
1268
 
1269
+ #: product_list.php:114
1270
  msgid "Add PayPal and 2CO donate buttons to receive charity payments."
1271
  msgstr "Přidávejte darovací tlačítka PayPal a 2CO pro příjem příspěvků."
1272
 
1273
+ #: product_list.php:121
1274
  msgid ""
1275
  "Get latest error log messages to diagnose website problems. Define and fix "
1276
  "issues faster."
1278
  "Získejte nejnovější zprávy z error logu při diagnostice problémů s webem. "
1279
  "Definujte a opravte problémy rychleji."
1280
 
1281
+ #: product_list.php:128
1282
  msgid ""
1283
  "Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and "
1284
  "widgets."
1286
  "Přidávejte Facebooková tlačítka sledovat, to se mi líbí a sdílet do "
1287
  "WordPress příspěvků, stránek a widgetů."
1288
 
1289
+ #: product_list.php:138
1290
  msgid ""
1291
  "Add beautiful galleries, albums & images to your WordPress website in a few "
1292
  "clicks."
1294
  "Přidávejte na váš WordPress web krásné galerie, alba a obrázky během "
1295
  "několika kliknutí."
1296
 
1297
+ #: product_list.php:148
 
 
 
 
 
 
 
 
1298
  msgid ""
1299
  "Stronger security solution which protects your WordPress website from hacks "
1300
  "and unauthorized login attempts."
1302
  "Silnější bezpečnostní řešení, které chrání vaše webové stránky WordPress od "
1303
  "hacků a pokusů o neoprávněné přihlášení."
1304
 
1305
+ #: product_list.php:158
1306
  msgid ""
1307
  "Add Adsense ads to WordPress website pages, posts, custom posts, search "
1308
  "results, categories, tags, and widgets."
1310
  "Přidávejte reklamy Adsense do webu WordPress, příspěvky, vlastní příspěvky, "
1311
  "výsledky vyhledávání, rubriky, štítky a widgety."
1312
 
1313
+ #: product_list.php:168
1314
  msgid "Add Google Analytics code to WordPress website and track basic stats."
1315
  msgstr ""
1316
  "Přidávejte Google Analytics kód do WordPress webu a sledujte základní "
1317
  "statistiky."
1318
 
1319
+ #: product_list.php:178
1320
+ #, fuzzy
1321
+ #| msgid ""
1322
+ #| "Protect WordPress website forms from spam entries with Google Captcha "
1323
+ #| "(reCaptcha)."
1324
+ msgid "Protect WordPress website forms from spam entries with reCaptcha."
1325
  msgstr ""
1326
  "Chraňte WordPress webové formuláře před spamem s Google Captcha (\"reCAPTCHA"
1327
  "\")."
1328
 
1329
+ #: product_list.php:188
1330
  msgid "Add customized Google maps to WordPress posts, pages and widgets."
1331
  msgstr ""
1332
  "Přidávejte vlastní mapy Google do WordPress příspěvků, stránek a widgetů."
1333
 
1334
+ #: product_list.php:198
1335
  msgid ""
1336
  "Generate and add XML sitemap to WordPress website. Help search engines index "
1337
  "your blog."
1339
  "Generujte a přidávejte sitemap.xml na vaše WordPress weby. Pomožte "
1340
  "vyhledávačům indexovat váš blog."
1341
 
1342
+ #: product_list.php:208
1343
  msgid ""
1344
  "Replace external WordPress website links with Google shortlinks and track "
1345
  "click stats."
1347
  "Nahradit externí odkazy WordPress webu pomocí Google shortlinks a sledujte "
1348
  "statistiky kliknutí."
1349
 
1350
+ #: product_list.php:215
1351
  msgid ""
1352
  "Protect WordPress website – allow and deny access for certain IP addresses, "
1353
  "hostnames, etc."
1355
  "Chráňte WordPress web– povolte či odepřete přístup pro určité IP adresy, "
1356
  "hostnames, atd."
1357
 
1358
+ #: product_list.php:225
1359
  msgid ""
1360
  "Create your personal job board and listing WordPress website. Search jobs, "
1361
  "submit CV/resumes, choose candidates."
1363
  "Vytvořte si osobní nástěnku pracovních míst na WordPress webu. Hledání "
1364
  "zaměstnání, odeslání CV/životopisu, výběr kandidátů."
1365
 
1366
+ #: product_list.php:232
1367
  msgid ""
1368
  "Protect WordPress website against brute force attacks. Limit rate of login "
1369
  "attempts."
1371
  "Chraňte WordPress web proti útokům hrubou silou. Omezte počet pokusů o "
1372
  "přihlášení."
1373
 
1374
+ #: product_list.php:242
1375
  msgid ""
1376
  "Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. "
1377
  "5 plugins included – profile, insider, etc."
1379
  "Přidávejte LinkedIn tlačítka sdílet a sledovat do WordPress příspěvků, "
1380
  "stránek a widgetů. 5 pluginů zahrnuje - profil, insider, atd."
1381
 
1382
+ #: product_list.php:252
1383
  msgid ""
1384
  "Translate WordPress website content to other languages manually. Create "
1385
  "multilingual pages, posts, widgets, menus, etc."
1387
  "Přeložte manuálně obsah webu WordPress do jiných jazyků. Vytvořte "
1388
  "vícejazyčné stránky, příspěvky, widgety, menu, atd."
1389
 
1390
+ #: product_list.php:262
1391
  msgid ""
1392
  "Add customizable pagination to WordPress website. Split long content to "
1393
  "multiple pages for better navigation."
1395
  "Přidávejte nastavitelné stránkování na web WordPress. Pro lepší navigaci "
1396
  "rozdělte dlouhý obsah na více stránek."
1397
 
1398
+ #: product_list.php:272
1399
  msgid ""
1400
  "Generate PDF files and print WordPress posts/pages. Customize document "
1401
  "header/footer styles and appearance."
1403
  "Generujte PDF soubory a tiskněte WordPress příspěvky/stránky. Vlastní "
1404
  "záhlaví/zápatí dokumentu, styly a vzhled."
1405
 
1406
+ #: product_list.php:282
1407
  msgid ""
1408
  "Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, "
1409
  "Profile) to WordPress posts, pages and widgets."
1411
  "Přidávejte Pinterest tlačítka sledovat a připnout a profilový widget (Pin, "
1412
  "Board, Profile) do WordPress příspěvků, stránek a widgetů."
1413
 
1414
+ #: product_list.php:292
1415
  msgid ""
1416
  "Create your personal portfolio WordPress website. Manage and showcase past "
1417
  "projects to get more clients."
1419
  "Vytvořte si osobní portfolio WordPress webů. Spravujte a představte své "
1420
  "nedávné projekty a získejte více klientů."
1421
 
1422
+ #: product_list.php:302
1423
  msgid "Export WordPress posts to CSV file format easily. Configure data order."
1424
  msgstr ""
1425
  "Exportujte snadno vaše WordPress příspěvky do souboru formátu CSV. "
1426
  "Konfigurujte pořadí dat."
1427
 
1428
+ #: product_list.php:312
1429
  msgid ""
1430
  "Add extra fields to default WordPress user profile. The easiest way to "
1431
  "create and manage additional custom values."
1433
  "Přidávejte další pole do výchozího profilu uživatele WordPress. "
1434
  "Nejjednodušší způsob, jak vytvořit a spravovat vlastní hodnoty."
1435
 
1436
+ #: product_list.php:322
1437
  msgid ""
1438
  "Add and display HTML advertisement banner on WordPress website. Customize "
1439
  "bar styles and appearance."
1441
  "Přidávejte a zobrazujte HTML reklamní banner na webu WordPress. Úpravte styl "
1442
  "a vzhled lišt."
1443
 
1444
+ #: product_list.php:332
1445
  msgid ""
1446
  "Add customizable quotes and tips blocks to WordPress posts, pages and "
1447
  "widgets."
1449
  "Přidávejte přizpůsobitelné nabídky a bloky s tipy do WordPress příspěvků, "
1450
  "stránek a widgetů."
1451
 
1452
+ #: product_list.php:339
1453
  msgid ""
1454
  "Add rating plugin to your WordPress website to receive feedback from your "
1455
  "customers."
1457
  "Přidávejte do vašeho WordPress webu plugin hodnocení k získání zpětné vazby "
1458
  "od vašich zákazníků."
1459
 
1460
+ #: product_list.php:349
1461
  msgid ""
1462
  "Create your personal real estate WordPress website. Sell, rent and buy "
1463
  "properties. Add, search and browse listings easily."
1466
  "pronajímejte a kupujte nemovitosti. Snadno přidejte hledání a procházení "
1467
  "seznamy."
1468
 
1469
+ #: product_list.php:359
1470
  msgid ""
1471
  "Add related, featured, latest, and popular posts to your WordPress website. "
1472
  "Connect your blog readers with a relevant content."
1474
  "Přidávejte související, nejlepší, nejnovější a populární příspěvky do vašeho "
1475
  "WordPress webu. Propojte čtenáře vašeho blogu s příslušným obsahem."
1476
 
1477
+ #: product_list.php:366
1478
  msgid ""
1479
  "Send bulk email messages to WordPress users. Custom templates, advanced "
1480
  "settings and detailed reports."
1482
  "Odesílejte hromadné e-maily WordPress uživatelům. Vlastní šablony, rozšířené "
1483
  "nastavení a podrobné reporty."
1484
 
1485
+ #: product_list.php:376
1486
  msgid ""
1487
  "The best responsive slider plugin for your WordPress website. Create "
1488
  "beautifully animated slides just in a few clicks."
1490
  "Nejlepší responzivní slider plugin pro váše WordPress web. Vytvořte krásné "
1491
  "animované snímky během pár kliknutí."
1492
 
1493
+ #: product_list.php:383
1494
  msgid ""
1495
  "Configure SMTP server to receive email messages from WordPress to Gmail, "
1496
  "Yahoo, Hotmail and other services."
1498
  "Konfigurujte SMTP server pro příjem e-mailových zpráv z WordPress na Gmail, "
1499
  "Yahoo, Hotmail a dalších službách."
1500
 
1501
+ #: product_list.php:390
1502
+ #, fuzzy
1503
+ #| msgid ""
1504
+ #| "Add social media buttons and widgets to WordPress posts, pages and "
1505
+ #| "widgets. FB, Twitter, G+1, Pinterest, LinkedIn."
1506
  msgid ""
1507
  "Add social media buttons and widgets to WordPress posts, pages and widgets. "
1508
+ "FB, Twitter, Pinterest, LinkedIn."
1509
  msgstr ""
1510
  "Přidávejte tlačítka sociálních sítí a widgety do WordPress příspěvků, "
1511
  "stránek a widgetů. Facebook, Twitter, G+1, Pinterest, LinkedIn."
1512
 
1513
+ #: product_list.php:400
1514
  msgid ""
1515
  "Add social media login, registration, and commenting to your WordPress "
1516
  "website."
1518
  "Přidávejte na váš WordPress web login, registraci či komentáře "
1519
  "prostřednictvím sociálních sítí."
1520
 
1521
+ #: product_list.php:407
1522
  msgid ""
1523
  "Add email newsletter sign up form to WordPress posts, pages and widgets. "
1524
  "Collect data and subscribe your users."
1527
  "příspěvků, stránek a widgetů. Shromažďujte data a přihlaste k odběru vaše "
1528
  "uživatele."
1529
 
1530
+ #: product_list.php:417
1531
  msgid ""
1532
  "Add testimonials and feedbacks from your customers to WordPress website "
1533
  "posts, pages, and widgets."
1535
  "Přidávejte potvrzení a zpětnou vazbu od vašich zákazníků do WordPress "
1536
  "příspěvků, stránek a widgetů."
1537
 
1538
+ #: product_list.php:424
1539
  msgid ""
1540
  "Best timesheet plugin for WordPress. Track employee time, streamline "
1541
  "attendance and generate reports."
1543
  "Nejlepší timesheet plugin pro WordPress. Sledujte časy zaměstnanců, "
1544
  "kontrolujte jejich přítomnost a generujte sestavy."
1545
 
1546
+ #: product_list.php:434
1547
  msgid ""
1548
  "Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts "
1549
  "and pages."
1551
  "Přidávejte Twitter tlačítka Sledovat, Tweetnout a Zmínit do WordPress "
1552
  "příspěvků a stránek."
1553
 
1554
+ #: product_list.php:444
1555
  msgid ""
1556
  "Automatically check and update WordPress website core with all installed "
1557
  "plugins and themes to the latest versions."
1559
  "Automaticky kontrolujte a aktualizujte na nejnovější verzi WordPress jádro i "
1560
  "všechny nainstalované pluginy a šablony."
1561
 
1562
+ #: product_list.php:454
1563
  msgid ""
1564
  "Powerful user role management plugin for WordPress website. Create, edit, "
1565
  "copy, and delete user roles."
1567
  "Plugin robustní správy užiatelů pro WordPress web. Vytvářejte, upravujte, "
1568
  "kopírujte a odstraňujte uživatelské role."
1569
 
1570
+ #: product_list.php:464
1571
  msgid ""
1572
  "Display live count of online visitors who are currently browsing your "
1573
  "WordPress website."
1575
  "Zobrazujte počet aktivních online návštěvníků, kteří dané chvíli procházejí "
1576
  "váš WordPress web."
1577
 
1578
+ #: product_list.php:474
1579
  msgid ""
1580
  "Backup and export Zendesk Help Center content automatically to your "
1581
  "WordPress website database."
1582
  msgstr ""
1583
  "Automaticky zálohujte a exportujte obsah centra nápovědy Zendesk do databáze "
1584
  "vašeho WordPress webu."
1585
+
1586
+ #~ msgid "Add BWS Shortcode"
1587
+ #~ msgstr "Přidat zkrácený kód BWS"
1588
+
1589
+ #~ msgid "Add BWS Plugins Shortcode"
1590
+ #~ msgstr "Přidat zkrácený kód BWS pluginu"
1591
+
1592
+ #~ msgid "Installing Plugin"
1593
+ #~ msgstr "Instalace pluginu"
1594
+
1595
+ #~ msgid "Downloading install package from"
1596
+ #~ msgstr "Stahování instalačního balíčku z"
1597
+
1598
+ #~ msgid ""
1599
+ #~ "Failed to download the zip archive. Please, upload the plugin manually"
1600
+ #~ msgstr "Stažení zip archivu selhalo. Prosíme, nahrajte plugin ručně"
1601
+
1602
+ #~ msgid "Unpacking the package"
1603
+ #~ msgstr "Rozbalování balíčku"
1604
+
1605
+ #~ msgid "Failed to open the zip archive. Please, upload the plugin manually"
1606
+ #~ msgstr "Otevření zip archivu selhalo. Prosíme, nahrajte plugin ručně"
1607
+
1608
+ #~ msgid ""
1609
+ #~ "Your server does not support either ZipArchive or Phar. Please, upload "
1610
+ #~ "the plugin manually"
1611
+ #~ msgstr ""
1612
+ #~ "Váš server nepodporuje buď ZipArchive nebo Phar. Prosím, nahrajte plugin "
1613
+ #~ "ručně"
1614
+
1615
+ #~ msgid "The plugin %s is successfully installed."
1616
+ #~ msgstr "Plugin %s úspěšně nainstalován."
1617
+
1618
+ #~ msgid "UploadDir is not writable. Please, upload the plugin manually"
1619
+ #~ msgstr "Nelze zapisovat do UploadDir. Prosím, nahrajte plugin ručně"
1620
+
1621
+ #~ msgid "Activate Plugin"
1622
+ #~ msgstr "Aktivovat plugin"
1623
+
1624
+ #~ msgid "Congratulations! Pro license is activated successfully."
1625
+ #~ msgstr "Gratulujeme! PRO licence byla úspěšně aktivována."
1626
+
1627
+ #~ msgid "You will be automatically redirected to the %s in %s seconds."
1628
+ #~ msgstr "Budete automaticky přesměrováni na %s za %s sekund."
1629
+
1630
+ #~ msgid "Settings page"
1631
+ #~ msgstr "Stránka nastavení"
1632
+
1633
+ #~ msgid ""
1634
+ #~ "Failed to download the zip archive. Please, upload the plugin manually."
1635
+ #~ msgstr "Stažení zip archivu selhalo. Nahrajte prosím plugin ručně."
1636
+
1637
+ #~ msgid "Failed to open the zip archive. Please, upload the plugin manually."
1638
+ #~ msgstr "Otevření zip archivu selhalo. Nahrajte prosím plugin ručně."
1639
+
1640
+ #~ msgid ""
1641
+ #~ "Your server does not support either ZipArchive or Phar. Please, upload "
1642
+ #~ "the plugin manually."
1643
+ #~ msgstr ""
1644
+ #~ "Váš server nepodporuje buď ZipArchive nebo Phar. Prosím, nahrajte plugin "
1645
+ #~ "ručně."
1646
+
1647
+ #~ msgid "UploadDir is not writable. Please, upload the plugin manually."
1648
+ #~ msgstr "Nelze zapisovat do UploadDir. Prosím, nahrajte plugin ručně."
1649
+
1650
+ #~ msgid "Kindly share what didn't work so we can fix it in future updates..."
1651
+ #~ msgstr ""
1652
+ #~ "Dejte nám prosím vědět, co nefungovalo, abychom to v budoucích "
1653
+ #~ "aktualizacích mohli opravit..."
1654
+
1655
+ #~ msgid "What did you expect?"
1656
+ #~ msgstr "Co jste očekávali?"
1657
+
1658
+ #~ msgid "What's the plugin name?"
1659
+ #~ msgstr "Jaké je jméno pluginu?"
1660
+
1661
+ #~ msgid "What feature?"
1662
+ #~ msgstr "Jakou funkci?"
1663
+
1664
+ #~ msgid "Cancel"
1665
+ #~ msgstr "Zrušit"
1666
+
1667
+ #~ msgid "Deactivate"
1668
+ #~ msgstr "Vypnout"
1669
+
1670
+ #~ msgid "Please, enter your license key"
1671
+ #~ msgstr "Prosím, vložte váš licenční klíč"
1672
+
1673
+ #~ msgid "You will be redirected automatically in 5 seconds."
1674
+ #~ msgstr "Budete automaticky přesměrováni za 5 sekund."
1675
+
1676
+ #~ msgid "Check premium options on the plugin settings page!"
1677
+ #~ msgstr "Zkontrolujte prémiové možnosti na stránce nastavení pluginů!"
1678
+
1679
+ #~ msgid "File %s edited successfully."
1680
+ #~ msgstr "Soubor %s byl úspěšně upraven."
1681
+
1682
+ #~ msgid "Not enough permissions to create or update the file"
1683
+ #~ msgstr "Nedostatečná oprávnění pro vytvoření či úpravu souboru"
1684
+
1685
+ #~ msgid "Not enough permissions to create the file"
1686
+ #~ msgstr "Nedostatečná oprávnění pro vytvoření souboru"
1687
+
1688
+ #~ msgid "Editing"
1689
+ #~ msgstr "Úprava"
1690
+
1691
+ #~ msgid "Create your personal car rental/booking and reservation website."
1692
+ #~ msgstr "Vytvořte si osobní rezervační web - auta/hotely."
1693
+
1694
+ #~ msgid "Add custom fields to WordPress website search results."
1695
+ #~ msgstr "Přidávejte vlastní pole do výsledků vyhledání na webu WordPress."
1696
+
1697
+ #~ msgid ""
1698
+ #~ "Add Google +1, Share, Follow, Hangout buttons and profile badge to "
1699
+ #~ "WordPress posts, pages and widgets."
1700
+ #~ msgstr ""
1701
+ #~ "Přidávejte Google +1 tlačítka sdílet, sledovat, Hangout a profile badge "
1702
+ #~ "do WordPress příspěvků, stránek a widgetů."
bws_menu/languages/bestwebsoft-es_ES.mo CHANGED
Binary file
bws_menu/languages/bestwebsoft-es_ES.po CHANGED
@@ -3,21 +3,21 @@
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: bestwebsoft\n"
6
- "POT-Creation-Date: 2020-03-05 15:21+0200\n"
7
- "PO-Revision-Date: 2020-03-05 15:21+0200\n"
8
  "Last-Translator: \n"
9
  "Language-Team: BestWebSoft <plugin@bestwebsoft.com>\n"
10
  "Language: es\n"
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
- "X-Generator: Poedit 2.3\n"
15
  "X-Poedit-KeywordsList: __;_e;esc_attr_e\n"
16
  "X-Poedit-Basepath: ..\n"
17
  "X-Poedit-SourceCharset: UTF-8\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: bws_functions.php:73 bws_functions.php:231
21
  msgid "requires"
22
  msgstr "requiere"
23
 
@@ -54,7 +54,7 @@ msgstr "Valorar"
54
  msgid "Need help?"
55
  msgstr "¿Necesitas ayuda?"
56
 
57
- #: bws_functions.php:104 bws_functions.php:940 class-bws-settings.php:1055
58
  msgid "Visit Help Center"
59
  msgstr "Visita el Centro de Ayuda"
60
 
@@ -62,7 +62,7 @@ msgstr "Visita el Centro de Ayuda"
62
  msgid "Want to support the plugin?"
63
  msgstr "¿Quieres apoyar al plugin?"
64
 
65
- #: bws_functions.php:108 bws_menu.php:528
66
  msgid "Donate"
67
  msgstr "Donar"
68
 
@@ -78,8 +78,8 @@ msgid ""
78
  "otherwise the Pro plugin will be deactivated."
79
  msgstr ""
80
 
81
- #: bws_functions.php:128 bws_functions.php:200 bws_menu.php:599
82
- #: class-bws-settings.php:161
83
  msgid "Learn More"
84
  msgstr "Aprende más"
85
 
@@ -99,7 +99,7 @@ msgstr ""
99
  "Para seguir recibiendo soporte prioritario y actualizaciones de plugin debes "
100
  "extenderla."
101
 
102
- #: bws_functions.php:147 bws_functions.php:218
103
  msgid "Learn more"
104
  msgstr "Aprende más"
105
 
@@ -116,29 +116,29 @@ msgstr "Aviso: Estás usando la licencia Pro Trial del plugin."
116
  msgid "The Pro Trial license will expire on"
117
  msgstr "La licencia Pro Trial expirará el"
118
 
119
- #: bws_functions.php:191 bws_functions.php:214 bws_functions.php:258
120
- #: bws_functions.php:268 bws_functions.php:467
121
  msgid "Close notice"
122
  msgstr "Descartar"
123
 
124
- #: bws_functions.php:196
125
  msgid "It’s time to upgrade your"
126
  msgstr "¡Ahora es el tiempo de actualizar tu"
127
 
128
- #: bws_functions.php:196
129
  msgid "to"
130
  msgstr "a"
131
 
132
- #: bws_functions.php:196
133
  msgid "version!"
134
  msgstr "versión!"
135
 
136
- #: bws_functions.php:197
137
  msgid "Extend standard plugin functionality with new great options."
138
  msgstr ""
139
  "Amplía la funcionalidad del plugin estándar con nuevas excelentes opciones."
140
 
141
- #: bws_functions.php:218
142
  #, php-format
143
  msgid ""
144
  "Your license key for %s expires on %s and you won't be granted TOP-PRIORITY "
@@ -147,7 +147,7 @@ msgstr ""
147
  "Tu clave de licencia para %s expirará el %s y no vas a recibir el SOPORTE "
148
  "PRIORITARIO O ACTUALIZACIONES."
149
 
150
- #: bws_functions.php:233
151
  msgid ""
152
  "or higher! We do not guarantee that our plugin will work correctly. Please "
153
  "upgrade to WordPress latest version."
@@ -155,58 +155,58 @@ msgstr ""
155
  "o superior! No garantizamos que nuestro plugin funcionará correctamente. Por "
156
  "favor, actualiza a la última versión de WordPress."
157
 
158
- #: bws_functions.php:248
159
  #, php-format
160
  msgid "Thank you for installing %s plugin!"
161
  msgstr "¡Gracias por haber instalado plugin de %s!"
162
 
163
- #: bws_functions.php:250
164
  msgid "Let's get started"
165
  msgstr "¡Empecemos!"
166
 
167
- #: bws_functions.php:251 bws_functions.php:284 bws_menu.php:532
168
- #: bws_menu.php:534
169
  msgid "Settings"
170
  msgstr "Ajustes"
171
 
172
- #: bws_functions.php:253 bws_menu.php:326 class-bws-settings.php:791
173
- #: class-bws-settings.php:1057 class-bws-settings.php:1067 deprecated.php:234
174
  msgid "or"
175
  msgstr "o"
176
 
177
- #: bws_functions.php:254 bws_functions.php:286
178
  msgid "Add New"
179
  msgstr "Añadir nuevo"
180
 
181
- #: bws_functions.php:273
182
  msgid "Thank you for installing plugins by BestWebSoft!"
183
  msgstr "¡Gracias por haber instalado los plugins de BestWebSoft!"
184
 
185
- #: bws_functions.php:275
186
  msgid "More Details"
187
  msgstr "Más detalles"
188
 
189
- #: bws_functions.php:276
190
  msgid "Less Details"
191
  msgstr "Menos detalles"
192
 
193
- #: bws_functions.php:304
194
  msgid "Deprecated function(-s) is used on the site here:"
195
  msgstr "Función(-es) obsoleta(-s) se utiliza(-n) en el sitio aquí:"
196
 
197
- #: bws_functions.php:318
198
  msgid ""
199
  "This function(-s) will be removed over time. Please update the product(-s)."
200
  msgstr ""
201
  "Esta(-s) función(-es) se eliminará(-n) con el tiempo. Actualiza el(los) "
202
  "producto(-s)."
203
 
204
- #: bws_functions.php:462
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:463
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,24 +214,24 @@ msgstr ""
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:464
218
  msgid "Suggest a Feature"
219
  msgstr "Ofrecer una función"
220
 
221
- #: bws_functions.php:480 class-bws-settings.php:559 class-bws-settings.php:562
222
- #: class-bws-settings.php:614 class-bws-settings.php:617
223
  msgid "Notice"
224
  msgstr "Aviso"
225
 
226
- #: bws_functions.php:480
227
  msgid "The plugin's settings have been changed."
228
  msgstr "Se han cambiado los ajustes del plugin."
229
 
230
- #: bws_functions.php:481 class-bws-settings.php:200 class-bws-settings.php:220
231
  msgid "Save Changes"
232
  msgstr "Guardar cambios"
233
 
234
- #: bws_functions.php:495
235
  msgid ""
236
  "You can always look at premium options by checking the \"Pro Options\" in "
237
  "the \"Misc\" tab."
@@ -239,69 +239,69 @@ msgstr ""
239
  "Siempre puedes ver las opciones premium haciendo clic en las \"Opciones Pro"
240
  "\" en la ficha \"Varios\"."
241
 
242
- #: bws_functions.php:671
243
  msgid "Add shortcode"
244
  msgstr "Añadir shortcode"
245
 
246
- #: bws_functions.php:671
247
  msgid "Add BestWebSoft plugins' shortcodes using this button."
248
  msgstr "Añadir los shortcodes de los plugins de BestWebSoft usando este botón."
249
 
250
- #: bws_functions.php:756
251
  msgid "Close"
252
  msgstr "Descartar"
253
 
254
- #: bws_functions.php:842
255
  msgid "Are you sure you want to restore default settings?"
256
  msgstr ""
257
  "¿Estás seguro de que deseas restaurar los ajustes de plugin por defecto?"
258
 
259
- #: bws_functions.php:845
260
  msgid "Yes, restore all settings"
261
  msgstr "Sí, restaurar todos los ajustes"
262
 
263
- #: bws_functions.php:846
264
  msgid "No, go back to the settings page"
265
  msgstr "No, volver a la página de ajustes"
266
 
267
- #: bws_functions.php:888
268
  msgid "Plugin"
269
  msgstr "Plugin"
270
 
271
- #: bws_functions.php:897
272
  msgid "Shortcode settings"
273
  msgstr "Ajustes de shortcode"
274
 
275
- #: bws_functions.php:902
276
  msgid "The shortcode will be inserted"
277
  msgstr "El shortcode se insertará"
278
 
279
- #: bws_functions.php:945
280
  msgid "FAQ"
281
  msgstr "FAQ"
282
 
283
- #: bws_functions.php:951
284
  msgid "For more information:"
285
  msgstr "Más información"
286
 
287
- #: bws_functions.php:952 bws_menu.php:400 class-bws-settings.php:755
288
  msgid "Documentation"
289
  msgstr "Documentación"
290
 
291
- #: bws_functions.php:953 bws_menu.php:402 class-bws-settings.php:757
292
  msgid "Video Instructions"
293
  msgstr "Video instrucciones"
294
 
295
- #: bws_functions.php:954
296
  msgid "Submit a Request"
297
  msgstr "Presentar una solicitud"
298
 
299
- #: bws_menu.php:101 class-bws-settings.php:841
300
  msgid "Wrong license key"
301
  msgstr "Clave de licencia incorrecta"
302
 
303
- #: bws_menu.php:122 class-bws-settings.php:868 class-bws-settings.php:939
304
- #: class-bws-settings.php:977
305
  msgid ""
306
  "Something went wrong. Please try again later. If the error appears again, "
307
  "please contact us"
@@ -309,12 +309,12 @@ msgstr ""
309
  "Algo salió mal. Por favor, inténtalo de nuevo más tarde. Si el error aparece "
310
  "de nuevo, ponte en contacto con nosotros"
311
 
312
- #: bws_menu.php:122 class-bws-settings.php:868 class-bws-settings.php:939
313
- #: class-bws-settings.php:977
314
  msgid "We are sorry for inconvenience."
315
  msgstr "Lo siento para la inconveniencia causada."
316
 
317
- #: bws_menu.php:129 class-bws-settings.php:874 class-bws-settings.php:983
318
  msgid "Wrong license key."
319
  msgstr "Clave de licencia incorrecta."
320
 
@@ -330,7 +330,7 @@ msgstr ""
330
  msgid "Log in"
331
  msgstr "Acceder"
332
 
333
- #: bws_menu.php:133 bws_menu.php:332 deprecated.php:157
334
  msgid "Unfortunately, you have exceeded the number of available tries per day."
335
  msgstr "Por desgracia, has excedido el número de intentos por hoy."
336
 
@@ -343,7 +343,7 @@ msgstr ""
343
  "Por desgracia, tu licencia ha expirado. Para seguir recibiendo soporte "
344
  "prioritario y actualizaciones de plugin debes extenderla en tu %s"
345
 
346
- #: bws_menu.php:137 class-bws-settings.php:991
347
  msgid ""
348
  "Unfortunately, the Pro licence was already installed to this domain. The Pro "
349
  "Trial license can be installed only once."
@@ -351,19 +351,19 @@ msgstr ""
351
  "Por desgracia, la licencia Pro ha estado ya instalada en este dominio. La "
352
  "licencia Pro Trial puede estar instalada una sola vez."
353
 
354
- #: bws_menu.php:142 class-bws-settings.php:889
355
  msgid "The license key is valid."
356
  msgstr "La clave de licencia está válida."
357
 
358
- #: bws_menu.php:144 class-bws-settings.php:893
359
  msgid "Your license will expire on"
360
  msgstr "Tu licencia expirará el"
361
 
362
- #: bws_menu.php:146
363
  msgid "Congratulations! Pro Membership license is activated successfully."
364
  msgstr ""
365
 
366
- #: bws_menu.php:153 class-bws-settings.php:1001
367
  msgid ""
368
  "Something went wrong. Try again later or upload the plugin manually. We are "
369
  "sorry for inconvenience."
@@ -371,216 +371,216 @@ msgstr ""
371
  "Algo salió mal. Por favor, inténtalo de nuevo más tarde o sube el plugin "
372
  "manualmente. Lo siento para la inconveniencia causada."
373
 
374
- #: bws_menu.php:163
375
  msgid "Please enter your license key."
376
  msgstr "Por favor, introduce tu clave de licencia."
377
 
378
- #: bws_menu.php:174
379
  msgid "Not set"
380
  msgstr "No definido"
381
 
382
- #: bws_menu.php:176
383
  msgid "On"
384
  msgstr "Activado"
385
 
386
- #: bws_menu.php:176
387
  msgid "Off"
388
  msgstr "Desactivado"
389
 
390
- #: bws_menu.php:177 bws_menu.php:178 bws_menu.php:179 bws_menu.php:180
391
- #: bws_menu.php:181 bws_menu.php:182 bws_menu.php:191
392
  msgid "N/A"
393
  msgstr "N/A"
394
 
395
- #: bws_menu.php:182
396
  #, fuzzy
397
  #| msgid " Mb"
398
  msgid "Mb"
399
  msgstr "Mb"
400
 
401
- #: bws_menu.php:183 bws_menu.php:184 bws_menu.php:185 bws_menu.php:189
402
  msgid "Yes"
403
  msgstr "Sí"
404
 
405
- #: bws_menu.php:183 bws_menu.php:184 bws_menu.php:185 bws_menu.php:189
406
  msgid "No"
407
  msgstr "No"
408
 
409
- #: bws_menu.php:196
410
  msgid "WordPress Environment"
411
  msgstr "Entorno de WordPress"
412
 
413
- #: bws_menu.php:198
414
  msgid "Home URL"
415
  msgstr "URL del inicio"
416
 
417
- #: bws_menu.php:199
418
  msgid "Website URL"
419
  msgstr "URL del sitio"
420
 
421
- #: bws_menu.php:200
422
  msgid "WP Version"
423
  msgstr "Versión WP"
424
 
425
- #: bws_menu.php:201
426
  msgid "WP Multisite"
427
  msgstr "Multisite WP"
428
 
429
- #: bws_menu.php:202
430
  msgid "WP Memory Limit"
431
  msgstr "Límite de memoria WP"
432
 
433
- #: bws_menu.php:203
434
  msgid "Active Theme"
435
  msgstr "Tema activo"
436
 
437
- #: bws_menu.php:203 bws_menu.php:248 bws_menu.php:251
438
  #, php-format
439
  msgid "by %s"
440
  msgstr "por %s"
441
 
442
- #: bws_menu.php:207
443
  msgid "Server Environment"
444
  msgstr "Entorno de Servidor"
445
 
446
- #: bws_menu.php:209
447
  msgid "Operating System"
448
  msgstr "Sistema operativo"
449
 
450
- #: bws_menu.php:210
451
  msgid "Server"
452
  msgstr "Servidor"
453
 
454
- #: bws_menu.php:211
455
  msgid "PHP Version"
456
  msgstr "Versión de PHP"
457
 
458
- #: bws_menu.php:212
459
  msgid "PHP Allow URL fopen"
460
  msgstr "PHP permite URL fopen"
461
 
462
- #: bws_menu.php:213
463
  msgid "PHP Memory Limit"
464
  msgstr "Límite de memoria PHP"
465
 
466
- #: bws_menu.php:214
467
  msgid "Memory Usage"
468
  msgstr "Uso de memória"
469
 
470
- #: bws_menu.php:215
471
  msgid "PHP Max Upload Size"
472
  msgstr "Tamaño máximo de archivo PHP"
473
 
474
- #: bws_menu.php:216
475
  msgid "PHP Max Post Size"
476
  msgstr "Tamaño máximo de entrada PHP"
477
 
478
- #: bws_menu.php:217
479
  msgid "PHP Max Script Execute Time"
480
  msgstr "Tiempo máximo de ejecución de scripts PHP"
481
 
482
- #: bws_menu.php:218
483
  msgid "PHP Exif support"
484
  msgstr "Soporte PHP Exif"
485
 
486
- #: bws_menu.php:219
487
  msgid "PHP IPTC support"
488
  msgstr "Soporte PHP IPTC"
489
 
490
- #: bws_menu.php:220
491
  msgid "PHP XML support"
492
  msgstr "Soporte PHP XML"
493
 
494
- #: bws_menu.php:226
495
  msgid "Database"
496
  msgstr "Base de Datos"
497
 
498
- #: bws_menu.php:228
499
  msgid "WP DB version"
500
  msgstr "Versión de WP DB"
501
 
502
- #: bws_menu.php:229
503
  msgid "MySQL version"
504
  msgstr "Versión de MySQL"
505
 
506
- #: bws_menu.php:230
507
  msgid "SQL Mode"
508
  msgstr "Modo SQL"
509
 
510
- #: bws_menu.php:234
511
  msgid "Active Plugins"
512
  msgstr "Plugins Activos"
513
 
514
- #: bws_menu.php:239
515
  msgid "Inactive Plugins"
516
  msgstr "Plugins Inactivos"
517
 
518
- #: bws_menu.php:260
519
  msgid "Please enter a valid email address."
520
  msgstr "Por favor, introduce la dirección de correo electrónico válida."
521
 
522
- #: bws_menu.php:262
523
  #, php-format
524
  msgid "Email with system info is sent to %s."
525
  msgstr ""
526
 
527
- #: bws_menu.php:266
528
  msgid "Thank you for contacting us."
529
  msgstr "¡Gracias por haber contactado con nosotros!"
530
 
531
- #: bws_menu.php:289
532
  msgid "Sorry, email message could not be delivered."
533
  msgstr "Lo siento, el mensaje de correo electrónico no se pudo enviar."
534
 
535
- #: bws_menu.php:305 bws_menu.php:309 bws_menu.php:358 deprecated.php:26
536
  msgid "Plugins"
537
  msgstr "Plugins"
538
 
539
- #: bws_menu.php:306 bws_menu.php:310 bws_menu.php:586 deprecated.php:27
540
  msgid "Themes"
541
  msgstr "Temas"
542
 
543
- #: bws_menu.php:307 bws_menu.php:311 bws_menu.php:616
544
  msgid "System status"
545
  msgstr "Información de sistema"
546
 
547
- #: bws_menu.php:315
548
  msgid "Support"
549
  msgstr "Soporte"
550
 
551
- #: bws_menu.php:316
552
  msgid "Manage purchased licenses & subscriptions"
553
  msgstr "Gestionar licencias y suscripciones adquiridas"
554
 
555
- #: bws_menu.php:324
556
  #, php-format
557
  msgid "Get Access to %s+ Premium Plugins"
558
  msgstr "Obtener acceso a %s+ Premium plugins"
559
 
560
- #: bws_menu.php:326
561
  msgid "Subscribe to Pro Membership"
562
  msgstr "Suscribirse a Pro Membership"
563
 
564
- #: bws_menu.php:334 bws_menu.php:345 class-bws-settings.php:804
565
  #: deprecated.php:123
566
  msgid "Check license key"
567
  msgstr "Comprueba la clave de licencia"
568
 
569
- #: bws_menu.php:337
570
  msgid "Enter your license key"
571
  msgstr "Introduce tu clave de licencia"
572
 
573
- #: bws_menu.php:343 bws_menu.php:538 bws_menu.php:547
574
- #: class-bws-settings.php:783 deprecated.php:155 deprecated.php:163
575
  #: deprecated.php:240 deprecated.php:249
576
  msgid "Activate"
577
  msgstr "Activar"
578
 
579
- #: bws_menu.php:359
580
  msgid "Upload Plugin"
581
  msgstr "Subir plugin"
582
 
583
- #: bws_menu.php:363
584
  #, php-format
585
  msgid ""
586
  "The plugin generated %d characters of <strong>unexpected output</strong> "
@@ -593,207 +593,207 @@ msgstr ""
593
  "problemas con los feeds de sindicación u otras cuestiones, prueba desactivar "
594
  "o borrar este plugin."
595
 
596
- #: bws_menu.php:365
597
  msgid ""
598
  "Plugin could not be activated because it triggered a <strong>fatal error</"
599
  "strong>."
600
  msgstr ""
601
  "No se pudo activar el plugin porque provocó un <strong>error fatal</ strong>."
602
 
603
- #: bws_menu.php:368
604
  msgid "Plugin <strong>activated</strong>."
605
  msgstr "Plugin <strong>activado</strong>."
606
 
607
- #: bws_menu.php:382
608
  #, fuzzy
609
  #| msgid "Upload Plugin"
610
  msgid "Download Pro Plugin"
611
  msgstr "Subir plugin"
612
 
613
- #: bws_menu.php:384 class-bws-settings.php:738
614
  msgid "Your Pro plugin is ready"
615
  msgstr ""
616
 
617
- #: bws_menu.php:386 class-bws-settings.php:740
618
  msgid "Your plugin has been zipped, and now is ready to download."
619
  msgstr ""
620
 
621
- #: bws_menu.php:389 class-bws-settings.php:743
622
  msgid "Download Now"
623
  msgstr ""
624
 
625
- #: bws_menu.php:393 class-bws-settings.php:747
626
  #, fuzzy
627
  #| msgid "Installing the plugin"
628
  msgid "Need help installing the plugin?"
629
  msgstr "Instalando el plugin"
630
 
631
- #: bws_menu.php:395 class-bws-settings.php:749
632
  msgid "How to install WordPress plugin from your admin Dashboard (ZIP archive)"
633
  msgstr ""
634
 
635
- #: bws_menu.php:398 class-bws-settings.php:753
636
  #, fuzzy
637
  #| msgid "Let's get started"
638
  msgid "Get Started"
639
  msgstr "¡Empecemos!"
640
 
641
- #: bws_menu.php:404 class-bws-settings.php:759
642
  msgid "Knowledge Base"
643
  msgstr ""
644
 
645
- #: bws_menu.php:407
646
  msgid "Licenses & Domains"
647
  msgstr ""
648
 
649
- #: bws_menu.php:410
650
  #, fuzzy
651
  #| msgid "Client Secret"
652
  msgid "Client Area"
653
  msgstr "Secreto del cliente"
654
 
655
- #: bws_menu.php:412
656
  msgid "Return to BestWebSoft Panel"
657
  msgstr "Volver a Panel de BestWebSoft"
658
 
659
- #: bws_menu.php:419 bws_menu.php:439 bws_menu.php:568
660
  msgid "All"
661
  msgstr "Todo"
662
 
663
- #: bws_menu.php:422 bws_menu.php:605
664
  msgid "Installed"
665
  msgstr "Instalado"
666
 
667
- #: bws_menu.php:425
668
  msgid "Not Installed"
669
  msgstr "No instalado"
670
 
671
- #: bws_menu.php:432
672
  msgid "Filter results"
673
  msgstr "Filtrar resultados"
674
 
675
- #: bws_menu.php:435 bws_menu.php:564
676
  msgid "Category"
677
  msgstr "Categoría"
678
 
679
- #: bws_menu.php:499
680
  msgid "Not installed"
681
  msgstr "No instalado"
682
 
683
- #: bws_menu.php:503
684
  msgid "Renew to get updates"
685
  msgstr "Renovar para obtener actualizaciones"
686
 
687
- #: bws_menu.php:506
688
  #, php-format
689
  msgid "Update to v %s"
690
  msgstr "Actualizar a v %s"
691
 
692
- #: bws_menu.php:518 bws_menu.php:541
693
  msgid "Get Pro"
694
  msgstr ""
695
 
696
- #: bws_menu.php:524 class-bws-settings.php:174 class-bws-settings.php:1064
697
  msgid "Upgrade to Pro"
698
  msgstr "Actualizar a Pro"
699
 
700
- #: bws_menu.php:538 bws_menu.php:547
701
  msgid "Activate this plugin"
702
  msgstr "Activar el plugin"
703
 
704
- #: bws_menu.php:550
705
  msgid "Install this plugin"
706
  msgstr "Instalar el plugin"
707
 
708
- #: bws_menu.php:550
709
  msgid "Install Now"
710
  msgstr "Instalar"
711
 
712
- #: bws_menu.php:559
713
  msgid "Nothing found. Try another criteria."
714
  msgstr "Nada encontrado. Prueba otro criterio."
715
 
716
- #: bws_menu.php:596
717
  #, php-format
718
  msgid "By %s"
719
  msgstr "Por %s"
720
 
721
- #: bws_menu.php:603
722
  msgid "Already Installed"
723
  msgstr "Ya instalado"
724
 
725
- #: bws_menu.php:613
726
  msgid "Browse More WordPress Themes"
727
  msgstr ""
728
 
729
- #: bws_menu.php:622
730
  msgid "Send to support"
731
  msgstr "Enviar al soporte técnico"
732
 
733
- #: bws_menu.php:629
734
  msgid "Send to custom email &#187;"
735
  msgstr "Enviar al correo electrónico personalizado &#187;"
736
 
737
- #: class-bws-settings.php:153
738
  msgid "Information"
739
  msgstr "Información"
740
 
741
- #: class-bws-settings.php:161
742
  msgid "Inactive"
743
  msgstr "Inactiva"
744
 
745
- #: class-bws-settings.php:169
746
  msgid "Expired"
747
  msgstr "Expirada"
748
 
749
- #: class-bws-settings.php:172
750
  #, php-format
751
  msgid "%s day(-s) left"
752
  msgstr "%s día(-s) quedan"
753
 
754
- #: class-bws-settings.php:178
755
  #, php-format
756
  msgid "Expired on %s"
757
  msgstr "Expiró el %s"
758
 
759
- #: class-bws-settings.php:178
760
  msgid "Renew Now"
761
  msgstr "Renovar"
762
 
763
- #: class-bws-settings.php:180
764
  msgid "Active"
765
  msgstr "Activa"
766
 
767
- #: class-bws-settings.php:185
768
  msgid "License"
769
  msgstr "Licencia"
770
 
771
- #: class-bws-settings.php:188
772
  msgid "Status"
773
  msgstr "Estado"
774
 
775
- #: class-bws-settings.php:192
776
  msgid "Version"
777
  msgstr "Versión"
778
 
779
- #: class-bws-settings.php:302
780
  msgid "All plugin settings were restored."
781
  msgstr "Se restauraron todos los ajustes del plugin."
782
 
783
- #: class-bws-settings.php:442
784
  msgid "Custom Code"
785
  msgstr "Código personalizado"
786
 
787
- #: class-bws-settings.php:446
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:451
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:454
797
  #, php-format
798
  msgid ""
799
  "This PHP code will be hooked to the %s action and will be printed on front "
@@ -802,12 +802,12 @@ msgstr ""
802
  "Este código PHP se enganchará a la acción %s y se agregará sólo en el front-"
803
  "end."
804
 
805
- #: class-bws-settings.php:457
806
  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:465
811
  #, php-format
812
  msgid ""
813
  "You need to make this files writable before you can save your changes. See "
@@ -816,25 +816,25 @@ 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:475
820
  msgid "Browsing"
821
  msgstr "Navegar"
822
 
823
- #: class-bws-settings.php:480
824
  #, php-format
825
  msgid "Activate custom %s code."
826
  msgstr "Activar código personalizado de %s."
827
 
828
- #: class-bws-settings.php:488
829
  #, php-format
830
  msgid "Learn more about %s"
831
  msgstr "Aprende más de %s"
832
 
833
- #: class-bws-settings.php:550
834
  msgid "Miscellaneous Settings"
835
  msgstr "Ajustes varios"
836
 
837
- #: class-bws-settings.php:559 class-bws-settings.php:614
838
  #, php-format
839
  msgid ""
840
  "It is prohibited to change %s settings on this site in the %s network "
@@ -843,7 +843,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:562 class-bws-settings.php:617
847
  #, php-format
848
  msgid ""
849
  "It is prohibited to view %s settings on this site in the %s network settings."
@@ -851,53 +851,53 @@ 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:571
855
  msgid "Pro Options"
856
  msgstr "Opciones Pro"
857
 
858
- #: class-bws-settings.php:575
859
  msgid "Enable to display plugin Pro options."
860
  msgstr "Activar muestro de las opciones Pro del plugin."
861
 
862
- #: class-bws-settings.php:581
863
  msgid "Track Usage"
864
  msgstr "Seguir el uso"
865
 
866
- #: class-bws-settings.php:585
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:590
874
  msgid "Default Settings"
875
  msgstr "Ajustes por defecto"
876
 
877
- #: class-bws-settings.php:592
878
  msgid "Restore Settings"
879
  msgstr "Restaurar ajustes"
880
 
881
- #: class-bws-settings.php:593
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:605
886
  msgid "Import / Export"
887
  msgstr "Importar / Exportar"
888
 
889
- #: class-bws-settings.php:723
890
  msgid "License Key"
891
  msgstr "Clave de licencia"
892
 
893
- #: class-bws-settings.php:785
894
  #, php-format
895
  msgid "Enter your license key to activate %s and get premium plugin features."
896
  msgstr ""
897
  "Introduce tu clave de licencia para activar %s y obtener funciones premium "
898
  "del plugin."
899
 
900
- #: class-bws-settings.php:788 class-bws-settings.php:987 deprecated.php:243
901
  msgid ""
902
  "Unfortunately, you have exceeded the number of available tries per day. "
903
  "Please, upload the plugin manually."
@@ -905,12 +905,12 @@ msgstr ""
905
  "Por desgracia, has excedido el número de intentos por hoy. Por favor, sube "
906
  "el plugin manualmente."
907
 
908
- #: class-bws-settings.php:791 deprecated.php:234
909
  #, php-format
910
  msgid "Start Your Free %s-Day Trial Now"
911
  msgstr "Comienza tu prueba gratuita de %s días"
912
 
913
- #: class-bws-settings.php:806
914
  msgid ""
915
  "If necessary, you can check if the license key is correct or reenter it in "
916
  "the field below."
@@ -918,15 +918,15 @@ msgstr ""
918
  "Si es necesario, puedes comprobar si la clave de licencia es correcta o "
919
  "introducirla otra vez en el campo abajo."
920
 
921
- #: class-bws-settings.php:815
922
  msgid "Manage License Settings"
923
  msgstr "Gestionar ajustes de licencias"
924
 
925
- #: class-bws-settings.php:817
926
  msgid "Login to Client Area"
927
  msgstr "Acceder al Área de Cliente"
928
 
929
- #: class-bws-settings.php:819
930
  msgid ""
931
  "Manage active licenses, download BWS products, and view your payment history "
932
  "using BestWebSoft Client Area."
@@ -934,11 +934,11 @@ msgstr ""
934
  "Gestiona licencias activas, descarga productos BWS y ve la historia de pagos "
935
  "con Área de Cliente de BestWebSoft."
936
 
937
- #: class-bws-settings.php:876 class-bws-settings.php:985
938
  msgid "This license key is bound to another site."
939
  msgstr "Esta clave de licencia está enlazada al otro sitio."
940
 
941
- #: class-bws-settings.php:878
942
  msgid ""
943
  "This license key is valid, but Your license has expired. If you want to "
944
  "update our plugin in future, you should extend the license."
@@ -946,11 +946,11 @@ msgstr ""
946
  "Esta clave de licencia está válida, pero tu licencia ha expirado. Si deseas "
947
  "actualizar nuestro plugin en el futuro debes extender la licencia."
948
 
949
- #: class-bws-settings.php:880
950
  msgid "Unfortunately, you have exceeded the number of available tries."
951
  msgstr "Por desgracia, has excedido el número de intentos."
952
 
953
- #: class-bws-settings.php:882
954
  msgid ""
955
  "Unfortunately, the Pro Trial licence was already installed to this domain. "
956
  "The Pro Trial license can be installed only once."
@@ -958,43 +958,78 @@ msgstr ""
958
  "Por desgracia, la licencia Pro Trial ha estado ya instalada en este dominio. "
959
  "La licencia Pro Trial puede estar instalada una sola vez."
960
 
961
- #: class-bws-settings.php:887
962
  msgid "The Pro Trial license key is valid."
963
  msgstr "La licencia Pro Trial está válida."
964
 
965
- #: class-bws-settings.php:897 deprecated.php:142
966
  #, php-format
967
  msgid ""
968
  "In order to continue using the plugin it is necessary to buy a %s license."
969
  msgstr "Para seguir usando el plugin es necesario comprar una licencia de %s."
970
 
971
- #: class-bws-settings.php:989
972
  #, php-format
973
  msgid ""
974
  "Unfortunately, Your license has expired. To continue getting top-priority "
975
  "support and plugin updates, you should extend it in your %s."
976
  msgstr ""
977
 
978
- #: class-bws-settings.php:1038
979
  msgid "Please, enter Your license key"
980
  msgstr "Por favor, introduce tu clave de licencia"
981
 
982
- #: class-bws-settings.php:1051
983
  msgid "Need Help?"
984
  msgstr "¿Necesitas ayuda?"
985
 
986
- #: class-bws-settings.php:1053
987
  msgid "Read the Instruction"
988
  msgstr "Lee las instrucciones"
989
 
990
- #: class-bws-settings.php:1057
991
  msgid "Watch the Video"
992
  msgstr "Ve el vídeo"
993
 
994
- #: class-bws-settings.php:1068
995
  msgid "Start Your Free Trial"
996
  msgstr "Comienza tu prueba gratuita"
997
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
998
  #: deactivation-form.php:22
999
  msgid "Need help? We are ready to answer your questions."
1000
  msgstr ""
@@ -1051,24 +1086,16 @@ msgstr ""
1051
  msgid "If you have a moment, please let us know why you are deactivating"
1052
  msgstr ""
1053
 
1054
- #: deactivation-form.php:120
1055
- msgid "Send website data and allow to contact me back"
1056
- msgstr ""
1057
-
1058
- #: deactivation-form.php:225
1059
- msgid "Processing"
1060
- msgstr ""
1061
-
1062
- #: deactivation-form.php:254
1063
  msgid "Submit and Deactivate"
1064
  msgstr ""
1065
 
1066
- #: deactivation-form.php:269
1067
- msgid "Please tell us the reason so we can improve it."
1068
  msgstr ""
1069
 
1070
- #: deactivation-form.php:334
1071
- msgid "Skip and Deactivate"
1072
  msgstr ""
1073
 
1074
  #: deprecated.php:28
@@ -1147,51 +1174,55 @@ msgstr "Introduce tu clave de licencia para instalar y activar"
1147
  msgid "version of the plugin."
1148
  msgstr "la versión del plugin."
1149
 
1150
- #: product_list.php:7
1151
  msgid "Admin Tools"
1152
  msgstr "Herramientas"
1153
 
1154
- #: product_list.php:8
1155
  msgid "Content"
1156
  msgstr "Contenido"
1157
 
1158
- #: product_list.php:9
1159
  msgid "eCommerce"
1160
  msgstr "Comercio electrónico"
1161
 
1162
- #: product_list.php:10
1163
  msgid "Marketing"
1164
  msgstr "Márketing"
1165
 
1166
- #: product_list.php:11
1167
  msgid "Navigation"
1168
  msgstr "Navegación"
1169
 
1170
- #: product_list.php:12
1171
  msgid "Recommended"
1172
  msgstr "Recomendado"
1173
 
1174
- #: product_list.php:13
1175
  msgid "Security"
1176
  msgstr "Seguridad"
1177
 
1178
- #: product_list.php:14
1179
  msgid "SEO"
1180
  msgstr "SEO"
1181
 
1182
- #: product_list.php:15
1183
  msgid "SMM"
1184
  msgstr "SMM"
1185
 
1186
- #: product_list.php:22
 
 
 
 
1187
  msgid "Best secure captcha plugin to protect your WordPress forms."
1188
  msgstr ""
1189
 
1190
- #: product_list.php:32
1191
  msgid "Create your own rental website for car renting and booking."
1192
  msgstr ""
1193
 
1194
- #: product_list.php:44
1195
  #, fuzzy
1196
  #| msgid "Add customized Google maps to WordPress posts, pages and widgets."
1197
  msgid ""
@@ -1201,7 +1232,7 @@ msgstr ""
1201
  "Añade los mapas de Google personalizados a las entradas, páginas y widgets "
1202
  "de WordPress."
1203
 
1204
- #: product_list.php:51
1205
  msgid ""
1206
  "Allow customers to reach you using secure contact form plugin any website "
1207
  "must have."
@@ -1209,36 +1240,36 @@ msgstr ""
1209
  "Permite a los clientes ponerse en contacto contigo usando el plugin seguro "
1210
  "del formulario de contacto que debe tener cualquier sitio."
1211
 
1212
- #: product_list.php:61
1213
  msgid "Add unlimited number of contact forms to WordPress website."
1214
  msgstr ""
1215
  "Añade el número ilimitado de formularios de contacto al sitio de WordPress."
1216
 
1217
- #: product_list.php:71
1218
  msgid "Save and manage Contact Form messages. Never lose important data."
1219
  msgstr ""
1220
  "Guarda y gestiona los mensajes de Contact Form plugin. Nunca pierde datos "
1221
  "importantes."
1222
 
1223
- #: product_list.php:81
1224
  msgid "Add unlimited custom pages to WordPress admin dashboard."
1225
  msgstr ""
1226
  "Añade el número ilimitado de páginas personalizadas al escritorio de "
1227
  "WordPress."
1228
 
1229
- #: product_list.php:91
1230
  msgid ""
1231
  "Add custom post types and taxonomies to WordPress website search results."
1232
  msgstr ""
1233
  "Añade los tipos de contenido personalizados y taxonomías a los resultados de "
1234
  "búsqueda en el sitio de WordPress."
1235
 
1236
- #: product_list.php:101
1237
  msgid "Add PayPal and 2CO donate buttons to receive charity payments."
1238
  msgstr ""
1239
  "Añade los botones de donación PayPal y 2CO para recibir pagos benéficos."
1240
 
1241
- #: product_list.php:108
1242
  msgid ""
1243
  "Get latest error log messages to diagnose website problems. Define and fix "
1244
  "issues faster."
@@ -1246,7 +1277,7 @@ msgstr ""
1246
  "Recibe más recientes mensajes del registro de errores para diagnosticar los "
1247
  "problemas del sitio. Define y corrige los problemas más rápido."
1248
 
1249
- #: product_list.php:115
1250
  msgid ""
1251
  "Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and "
1252
  "widgets."
@@ -1254,7 +1285,7 @@ msgstr ""
1254
  "Añade los botones de Facebook Seguir, Me gusta y Compartir a las entradas, "
1255
  "páginas y widgets de WordPress."
1256
 
1257
- #: product_list.php:125
1258
  msgid ""
1259
  "Add beautiful galleries, albums & images to your WordPress website in a few "
1260
  "clicks."
@@ -1262,7 +1293,7 @@ msgstr ""
1262
  "Añade las hermosas galerías, álbumes, imágenes y categorías de galería a tu "
1263
  "sitio de WordPress en unos pocos clics."
1264
 
1265
- #: product_list.php:135
1266
  msgid ""
1267
  "Stronger security solution which protects your WordPress website from hacks "
1268
  "and unauthorized login attempts."
@@ -1270,7 +1301,7 @@ msgstr ""
1270
  "Potente solución de seguridad que protege tu sitio de WordPress de los "
1271
  "hackeos y intentos no autorizados de acceder."
1272
 
1273
- #: product_list.php:145
1274
  msgid ""
1275
  "Add Adsense ads to WordPress website pages, posts, custom posts, search "
1276
  "results, categories, tags, and widgets."
@@ -1279,25 +1310,25 @@ msgstr ""
1279
  "entradas personalizadas, resultados de búsqueda, categorías, etiquetas y "
1280
  "widgets en el sitio de WordPress, ."
1281
 
1282
- #: product_list.php:155
1283
  msgid "Add Google Analytics code to WordPress website and track basic stats."
1284
  msgstr ""
1285
  "Añade el código de Google Analytics al sitio de WordPress y sigue las "
1286
  "estadísticas básicas."
1287
 
1288
- #: product_list.php:165
1289
  msgid "Protect WordPress website forms from spam entries with reCaptcha."
1290
  msgstr ""
1291
  "Protege los formularios en sitio de WordPress de las entradas de spam con "
1292
  "reCaptcha."
1293
 
1294
- #: product_list.php:175
1295
  msgid "Add customized Google maps to WordPress posts, pages and widgets."
1296
  msgstr ""
1297
  "Añade los mapas de Google personalizados a las entradas, páginas y widgets "
1298
  "de WordPress."
1299
 
1300
- #: product_list.php:185
1301
  msgid ""
1302
  "Generate and add XML sitemap to WordPress website. Help search engines index "
1303
  "your blog."
@@ -1305,7 +1336,7 @@ msgstr ""
1305
  "Genera y añade los archivos de XML sitemap al sitio de WordPress. Ayuda a "
1306
  "los buscadores a indexar tu blog."
1307
 
1308
- #: product_list.php:195
1309
  msgid ""
1310
  "Replace external WordPress website links with Google shortlinks and track "
1311
  "click stats."
@@ -1313,7 +1344,7 @@ msgstr ""
1313
  "Reemplaza los enlaces externos con los enlaces cortos de Google en el sitio "
1314
  "de WordPress y sigue las estadísticas de clics."
1315
 
1316
- #: product_list.php:202
1317
  msgid ""
1318
  "Protect WordPress website – allow and deny access for certain IP addresses, "
1319
  "hostnames, etc."
@@ -1321,7 +1352,7 @@ msgstr ""
1321
  "Protege el sitio de WordPress - permite y impide el acceso para determinadas "
1322
  "direcciones IP, nombres de host, etc."
1323
 
1324
- #: product_list.php:212
1325
  msgid ""
1326
  "Create your personal job board and listing WordPress website. Search jobs, "
1327
  "submit CV/resumes, choose candidates."
@@ -1329,7 +1360,7 @@ msgstr ""
1329
  "Crea tu tablero personal con la lista de trabajos en el sitio de WordPress. "
1330
  "Busca trabajos, envía CV, elija candidatos."
1331
 
1332
- #: product_list.php:219
1333
  msgid ""
1334
  "Protect WordPress website against brute force attacks. Limit rate of login "
1335
  "attempts."
@@ -1337,7 +1368,7 @@ msgstr ""
1337
  "Protege el sitio de WordPress contra ataques de fuerza bruta. Limita el "
1338
  "número de intentos de acceder."
1339
 
1340
- #: product_list.php:229
1341
  msgid ""
1342
  "Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. "
1343
  "5 plugins included – profile, insider, etc."
@@ -1345,7 +1376,7 @@ msgstr ""
1345
  "Añade los botones de LinkedIn Compartir y Seguir a las entradas, páginas y "
1346
  "widgets de WordPress. 5 plugins incluidos - perfil, insider, etc."
1347
 
1348
- #: product_list.php:239
1349
  msgid ""
1350
  "Translate WordPress website content to other languages manually. Create "
1351
  "multilingual pages, posts, widgets, menus, etc."
@@ -1354,7 +1385,7 @@ msgstr ""
1354
  "Crea páginas multilingües, asi como entradas, widgets, menús, etc. en varios "
1355
  "idiomas."
1356
 
1357
- #: product_list.php:249
1358
  msgid ""
1359
  "Add customizable pagination to WordPress website. Split long content to "
1360
  "multiple pages for better navigation."
@@ -1362,7 +1393,7 @@ msgstr ""
1362
  "Añade la paginación personalizable al sitio de WordPress. Divide contenido "
1363
  "largo en varias páginas para mejorar la navegación."
1364
 
1365
- #: product_list.php:259
1366
  msgid ""
1367
  "Generate PDF files and print WordPress posts/pages. Customize document "
1368
  "header/footer styles and appearance."
@@ -1371,7 +1402,7 @@ msgstr ""
1371
  "Personaliza los estilos de la cabecera/pie de la página del documento y su "
1372
  "apariencia."
1373
 
1374
- #: product_list.php:269
1375
  msgid ""
1376
  "Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, "
1377
  "Profile) to WordPress posts, pages and widgets."
@@ -1379,7 +1410,7 @@ msgstr ""
1379
  "Añade los botones de Pinterest Segiur, Guardar y widgets de perfil (Pines, "
1380
  "Tablero, Perfil) a las entradas, páginas y widgets de WordPress."
1381
 
1382
- #: product_list.php:279
1383
  msgid ""
1384
  "Create your personal portfolio WordPress website. Manage and showcase past "
1385
  "projects to get more clients."
@@ -1387,13 +1418,13 @@ msgstr ""
1387
  "Crea tu cartera personal en el sitio de WordPress. Gestiona y muestra los "
1388
  "proyectos anteriores para obtener más clientes."
1389
 
1390
- #: product_list.php:289
1391
  msgid "Export WordPress posts to CSV file format easily. Configure data order."
1392
  msgstr ""
1393
  "Exporta las entradas de WordPress en formato de archivo CSV fácilmente. "
1394
  "Configura el orden de los datos."
1395
 
1396
- #: product_list.php:299
1397
  msgid ""
1398
  "Add extra fields to default WordPress user profile. The easiest way to "
1399
  "create and manage additional custom values."
@@ -1401,7 +1432,7 @@ msgstr ""
1401
  "Añade los campos adicionales al perfil estándar del usuario de WordPress. La "
1402
  "forma más fácil de crear y gestionar los valores personalizados adicionales."
1403
 
1404
- #: product_list.php:309
1405
  msgid ""
1406
  "Add and display HTML advertisement banner on WordPress website. Customize "
1407
  "bar styles and appearance."
@@ -1409,7 +1440,7 @@ msgstr ""
1409
  "Añade y muestra los anuncios publicitarios de HTML en el sitio de WordPress. "
1410
  "Personaliza los estilos y la apariencia de la barra."
1411
 
1412
- #: product_list.php:319
1413
  msgid ""
1414
  "Add customizable quotes and tips blocks to WordPress posts, pages and "
1415
  "widgets."
@@ -1417,7 +1448,7 @@ msgstr ""
1417
  "Añade las citas personalizables y bloques de consejos a las entradas, "
1418
  "páginas y widgets de WordPress."
1419
 
1420
- #: product_list.php:326
1421
  msgid ""
1422
  "Add rating plugin to your WordPress website to receive feedback from your "
1423
  "customers."
@@ -1425,7 +1456,7 @@ msgstr ""
1425
  "Añade el plugin de valoración a tu sitio de WordPress para recibir "
1426
  "comentarios de tus clientes."
1427
 
1428
- #: product_list.php:336
1429
  msgid ""
1430
  "Create your personal real estate WordPress website. Sell, rent and buy "
1431
  "properties. Add, search and browse listings easily."
@@ -1434,7 +1465,7 @@ msgstr ""
1434
  "alquila y compra las propiedades. Añade, busca y navega las listas "
1435
  "fácilmente."
1436
 
1437
- #: product_list.php:346
1438
  msgid ""
1439
  "Add related, featured, latest, and popular posts to your WordPress website. "
1440
  "Connect your blog readers with a relevant content."
@@ -1443,7 +1474,7 @@ msgstr ""
1443
  "sitio de WordPress. Conecta a tus lectores de blog con el contenido "
1444
  "relevante."
1445
 
1446
- #: product_list.php:353
1447
  msgid ""
1448
  "Send bulk email messages to WordPress users. Custom templates, advanced "
1449
  "settings and detailed reports."
@@ -1451,7 +1482,7 @@ msgstr ""
1451
  "Envía mensajes de correo masivo a los usuarios de WordPress. Plantillas "
1452
  "personalizadas, ajustes avanzados e informes detallados."
1453
 
1454
- #: product_list.php:363
1455
  msgid ""
1456
  "The best responsive slider plugin for your WordPress website. Create "
1457
  "beautifully animated slides just in a few clicks."
@@ -1459,7 +1490,7 @@ msgstr ""
1459
  "El mejor adaptable carrusel plugin para tu sitio de WordPress. Crea las "
1460
  "diapositivas maravillosamente animadas con sólo unos clics."
1461
 
1462
- #: product_list.php:370
1463
  msgid ""
1464
  "Configure SMTP server to receive email messages from WordPress to Gmail, "
1465
  "Yahoo, Hotmail and other services."
@@ -1467,7 +1498,7 @@ msgstr ""
1467
  "Configura el servidor SMTP para recibir mensajes de correo electrónico de "
1468
  "WordPress en Gmail, Yahoo, Hotmail y otros servicios."
1469
 
1470
- #: product_list.php:377
1471
  #, fuzzy
1472
  #| msgid ""
1473
  #| "Add social media buttons and widgets to WordPress posts, pages and "
@@ -1480,7 +1511,7 @@ msgstr ""
1480
  "entradas, páginas y widgets de WordPress. FB, Twitter, G+1, Pinterest, "
1481
  "LinkedIn."
1482
 
1483
- #: product_list.php:387
1484
  msgid ""
1485
  "Add social media login, registration, and commenting to your WordPress "
1486
  "website."
@@ -1488,7 +1519,7 @@ msgstr ""
1488
  "Añade el acceso, registro y comentarios a los medios de comunicación social "
1489
  "a tu sitio de WordPress."
1490
 
1491
- #: product_list.php:394
1492
  msgid ""
1493
  "Add email newsletter sign up form to WordPress posts, pages and widgets. "
1494
  "Collect data and subscribe your users."
@@ -1497,7 +1528,7 @@ msgstr ""
1497
  "páginas y widgets de WordPress. Recoge los datos y suscribe a tus usuarios a "
1498
  "las noticias."
1499
 
1500
- #: product_list.php:404
1501
  msgid ""
1502
  "Add testimonials and feedbacks from your customers to WordPress website "
1503
  "posts, pages, and widgets."
@@ -1505,7 +1536,7 @@ msgstr ""
1505
  "Añade los testimonios y comentarios de tus clientes a las entradas, páginas "
1506
  "y widgets en el sitio de WordPress."
1507
 
1508
- #: product_list.php:411
1509
  msgid ""
1510
  "Best timesheet plugin for WordPress. Track employee time, streamline "
1511
  "attendance and generate reports."
@@ -1514,7 +1545,7 @@ msgstr ""
1514
  "laboral de los empleados, optimiza el horario de trabajo en la oficina y "
1515
  "crea informes generales."
1516
 
1517
- #: product_list.php:421
1518
  msgid ""
1519
  "Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts "
1520
  "and pages."
@@ -1522,7 +1553,7 @@ msgstr ""
1522
  "Añade los botones de Twitter Seguir, Twittear, Hashtag y Mencionar a las "
1523
  "entradas y páginas de WordPress."
1524
 
1525
- #: product_list.php:431
1526
  msgid ""
1527
  "Automatically check and update WordPress website core with all installed "
1528
  "plugins and themes to the latest versions."
@@ -1530,7 +1561,7 @@ msgstr ""
1530
  "Compruebа y actualiza automáticamente el núcleo de sitio de WordPress a las "
1531
  "últimas versiones con todos plugins y temas que tienes instalados."
1532
 
1533
- #: product_list.php:441
1534
  msgid ""
1535
  "Powerful user role management plugin for WordPress website. Create, edit, "
1536
  "copy, and delete user roles."
@@ -1538,7 +1569,7 @@ msgstr ""
1538
  "Poderoso plugin de gestión de funciones para el sitio de WordPress. Crea, "
1539
  "edita, copia y borra los perfiles de usuarios."
1540
 
1541
- #: product_list.php:451
1542
  msgid ""
1543
  "Display live count of online visitors who are currently browsing your "
1544
  "WordPress website."
@@ -1546,7 +1577,7 @@ msgstr ""
1546
  "Lleva la cuenta de los visitantes en línea que están hojeando tu sitio de "
1547
  "WordPress en ese momento."
1548
 
1549
- #: product_list.php:461
1550
  msgid ""
1551
  "Backup and export Zendesk Help Center content automatically to your "
1552
  "WordPress website database."
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: bestwebsoft\n"
6
+ "POT-Creation-Date: 2021-02-15 10:54+0200\n"
7
+ "PO-Revision-Date: 2021-02-15 10:54+0200\n"
8
  "Last-Translator: \n"
9
  "Language-Team: BestWebSoft <plugin@bestwebsoft.com>\n"
10
  "Language: es\n"
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
+ "X-Generator: Poedit 2.4.2\n"
15
  "X-Poedit-KeywordsList: __;_e;esc_attr_e\n"
16
  "X-Poedit-Basepath: ..\n"
17
  "X-Poedit-SourceCharset: UTF-8\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: bws_functions.php:73 bws_functions.php:239
21
  msgid "requires"
22
  msgstr "requiere"
23
 
54
  msgid "Need help?"
55
  msgstr "¿Necesitas ayuda?"
56
 
57
+ #: bws_functions.php:104 bws_functions.php:949 class-bws-settings.php:1082
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:529
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:208 bws_menu.php:600
82
+ #: class-bws-settings.php:179
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:226
103
  msgid "Learn more"
104
  msgstr "Aprende más"
105
 
116
  msgid "The Pro Trial license will expire on"
117
  msgstr "La licencia Pro Trial expirará el"
118
 
119
+ #: bws_functions.php:199 bws_functions.php:222 bws_functions.php:266
120
+ #: bws_functions.php:276 bws_functions.php:475
121
  msgid "Close notice"
122
  msgstr "Descartar"
123
 
124
+ #: bws_functions.php:204
125
  msgid "It’s time to upgrade your"
126
  msgstr "¡Ahora es el tiempo de actualizar tu"
127
 
128
+ #: bws_functions.php:204
129
  msgid "to"
130
  msgstr "a"
131
 
132
+ #: bws_functions.php:204
133
  msgid "version!"
134
  msgstr "versión!"
135
 
136
+ #: bws_functions.php:205
137
  msgid "Extend standard plugin functionality with new great options."
138
  msgstr ""
139
  "Amplía la funcionalidad del plugin estándar con nuevas excelentes opciones."
140
 
141
+ #: bws_functions.php:226
142
  #, php-format
143
  msgid ""
144
  "Your license key for %s expires on %s and you won't be granted TOP-PRIORITY "
147
  "Tu clave de licencia para %s expirará el %s y no vas a recibir el SOPORTE "
148
  "PRIORITARIO O ACTUALIZACIONES."
149
 
150
+ #: bws_functions.php:241
151
  msgid ""
152
  "or higher! We do not guarantee that our plugin will work correctly. Please "
153
  "upgrade to WordPress latest version."
155
  "o superior! No garantizamos que nuestro plugin funcionará correctamente. Por "
156
  "favor, actualiza a la última versión de WordPress."
157
 
158
+ #: bws_functions.php:256
159
  #, php-format
160
  msgid "Thank you for installing %s plugin!"
161
  msgstr "¡Gracias por haber instalado plugin de %s!"
162
 
163
+ #: bws_functions.php:258
164
  msgid "Let's get started"
165
  msgstr "¡Empecemos!"
166
 
167
+ #: bws_functions.php:259 bws_functions.php:292 bws_menu.php:533
168
+ #: bws_menu.php:535
169
  msgid "Settings"
170
  msgstr "Ajustes"
171
 
172
+ #: bws_functions.php:261 bws_menu.php:327 class-bws-settings.php:809
173
+ #: class-bws-settings.php:1084 class-bws-settings.php:1094 deprecated.php:234
174
  msgid "or"
175
  msgstr "o"
176
 
177
+ #: bws_functions.php:262 bws_functions.php:294
178
  msgid "Add New"
179
  msgstr "Añadir nuevo"
180
 
181
+ #: bws_functions.php:281
182
  msgid "Thank you for installing plugins by BestWebSoft!"
183
  msgstr "¡Gracias por haber instalado los plugins de BestWebSoft!"
184
 
185
+ #: bws_functions.php:283
186
  msgid "More Details"
187
  msgstr "Más detalles"
188
 
189
+ #: bws_functions.php:284
190
  msgid "Less Details"
191
  msgstr "Menos detalles"
192
 
193
+ #: bws_functions.php:312
194
  msgid "Deprecated function(-s) is used on the site here:"
195
  msgstr "Función(-es) obsoleta(-s) se utiliza(-n) en el sitio aquí:"
196
 
197
+ #: bws_functions.php:326
198
  msgid ""
199
  "This function(-s) will be removed over time. Please update the product(-s)."
200
  msgstr ""
201
  "Esta(-s) función(-es) se eliminará(-n) con el tiempo. Actualiza el(los) "
202
  "producto(-s)."
203
 
204
+ #: bws_functions.php:470
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:471
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:472
218
  msgid "Suggest a Feature"
219
  msgstr "Ofrecer una función"
220
 
221
+ #: bws_functions.php:488 class-bws-settings.php:580 class-bws-settings.php:583
222
+ #: class-bws-settings.php:635 class-bws-settings.php:638
223
  msgid "Notice"
224
  msgstr "Aviso"
225
 
226
+ #: bws_functions.php:488
227
  msgid "The plugin's settings have been changed."
228
  msgstr "Se han cambiado los ajustes del plugin."
229
 
230
+ #: bws_functions.php:489 class-bws-settings.php:222 class-bws-settings.php:242
231
  msgid "Save Changes"
232
  msgstr "Guardar cambios"
233
 
234
+ #: bws_functions.php:503
235
  msgid ""
236
  "You can always look at premium options by checking the \"Pro Options\" in "
237
  "the \"Misc\" tab."
239
  "Siempre puedes ver las opciones premium haciendo clic en las \"Opciones Pro"
240
  "\" en la ficha \"Varios\"."
241
 
242
+ #: bws_functions.php:679
243
  msgid "Add shortcode"
244
  msgstr "Añadir shortcode"
245
 
246
+ #: bws_functions.php:679
247
  msgid "Add BestWebSoft plugins' shortcodes using this button."
248
  msgstr "Añadir los shortcodes de los plugins de BestWebSoft usando este botón."
249
 
250
+ #: bws_functions.php:765
251
  msgid "Close"
252
  msgstr "Descartar"
253
 
254
+ #: bws_functions.php:851
255
  msgid "Are you sure you want to restore default settings?"
256
  msgstr ""
257
  "¿Estás seguro de que deseas restaurar los ajustes de plugin por defecto?"
258
 
259
+ #: bws_functions.php:854
260
  msgid "Yes, restore all settings"
261
  msgstr "Sí, restaurar todos los ajustes"
262
 
263
+ #: bws_functions.php:855
264
  msgid "No, go back to the settings page"
265
  msgstr "No, volver a la página de ajustes"
266
 
267
+ #: bws_functions.php:897
268
  msgid "Plugin"
269
  msgstr "Plugin"
270
 
271
+ #: bws_functions.php:906
272
  msgid "Shortcode settings"
273
  msgstr "Ajustes de shortcode"
274
 
275
+ #: bws_functions.php:911
276
  msgid "The shortcode will be inserted"
277
  msgstr "El shortcode se insertará"
278
 
279
+ #: bws_functions.php:954
280
  msgid "FAQ"
281
  msgstr "FAQ"
282
 
283
+ #: bws_functions.php:960
284
  msgid "For more information:"
285
  msgstr "Más información"
286
 
287
+ #: bws_functions.php:961 bws_menu.php:401 class-bws-settings.php:776
288
  msgid "Documentation"
289
  msgstr "Documentación"
290
 
291
+ #: bws_functions.php:962 bws_menu.php:403 class-bws-settings.php:778
292
  msgid "Video Instructions"
293
  msgstr "Video instrucciones"
294
 
295
+ #: bws_functions.php:963
296
  msgid "Submit a Request"
297
  msgstr "Presentar una solicitud"
298
 
299
+ #: bws_menu.php:101 class-bws-settings.php:860
300
  msgid "Wrong license key"
301
  msgstr "Clave de licencia incorrecta"
302
 
303
+ #: bws_menu.php:122 class-bws-settings.php:887 class-bws-settings.php:966
304
+ #: class-bws-settings.php:1004
305
  msgid ""
306
  "Something went wrong. Please try again later. If the error appears again, "
307
  "please contact us"
309
  "Algo salió mal. Por favor, inténtalo de nuevo más tarde. Si el error aparece "
310
  "de nuevo, ponte en contacto con nosotros"
311
 
312
+ #: bws_menu.php:122 class-bws-settings.php:887 class-bws-settings.php:966
313
+ #: class-bws-settings.php:1004
314
  msgid "We are sorry for inconvenience."
315
  msgstr "Lo siento para la inconveniencia causada."
316
 
317
+ #: bws_menu.php:129 class-bws-settings.php:893 class-bws-settings.php:1010
318
  msgid "Wrong license key."
319
  msgstr "Clave de licencia incorrecta."
320
 
330
  msgid "Log in"
331
  msgstr "Acceder"
332
 
333
+ #: bws_menu.php:133 bws_menu.php:333 deprecated.php:157
334
  msgid "Unfortunately, you have exceeded the number of available tries per day."
335
  msgstr "Por desgracia, has excedido el número de intentos por hoy."
336
 
343
  "Por desgracia, tu licencia ha expirado. Para seguir recibiendo soporte "
344
  "prioritario y actualizaciones de plugin debes extenderla en tu %s"
345
 
346
+ #: bws_menu.php:137 class-bws-settings.php:1018
347
  msgid ""
348
  "Unfortunately, the Pro licence was already installed to this domain. The Pro "
349
  "Trial license can be installed only once."
351
  "Por desgracia, la licencia Pro ha estado ya instalada en este dominio. La "
352
  "licencia Pro Trial puede estar instalada una sola vez."
353
 
354
+ #: bws_menu.php:143 class-bws-settings.php:908
355
  msgid "The license key is valid."
356
  msgstr "La clave de licencia está válida."
357
 
358
+ #: bws_menu.php:145 class-bws-settings.php:912
359
  msgid "Your license will expire on"
360
  msgstr "Tu licencia expirará el"
361
 
362
+ #: bws_menu.php:147
363
  msgid "Congratulations! Pro Membership license is activated successfully."
364
  msgstr ""
365
 
366
+ #: bws_menu.php:154 class-bws-settings.php:1028
367
  msgid ""
368
  "Something went wrong. Try again later or upload the plugin manually. We are "
369
  "sorry for inconvenience."
371
  "Algo salió mal. Por favor, inténtalo de nuevo más tarde o sube el plugin "
372
  "manualmente. Lo siento para la inconveniencia causada."
373
 
374
+ #: bws_menu.php:164
375
  msgid "Please enter your license key."
376
  msgstr "Por favor, introduce tu clave de licencia."
377
 
378
+ #: bws_menu.php:175
379
  msgid "Not set"
380
  msgstr "No definido"
381
 
382
+ #: bws_menu.php:177
383
  msgid "On"
384
  msgstr "Activado"
385
 
386
+ #: bws_menu.php:177
387
  msgid "Off"
388
  msgstr "Desactivado"
389
 
390
+ #: bws_menu.php:178 bws_menu.php:179 bws_menu.php:180 bws_menu.php:181
391
+ #: bws_menu.php:182 bws_menu.php:183 bws_menu.php:192
392
  msgid "N/A"
393
  msgstr "N/A"
394
 
395
+ #: bws_menu.php:183
396
  #, fuzzy
397
  #| msgid " Mb"
398
  msgid "Mb"
399
  msgstr "Mb"
400
 
401
+ #: bws_menu.php:184 bws_menu.php:185 bws_menu.php:186 bws_menu.php:190
402
  msgid "Yes"
403
  msgstr "Sí"
404
 
405
+ #: bws_menu.php:184 bws_menu.php:185 bws_menu.php:186 bws_menu.php:190
406
  msgid "No"
407
  msgstr "No"
408
 
409
+ #: bws_menu.php:197
410
  msgid "WordPress Environment"
411
  msgstr "Entorno de WordPress"
412
 
413
+ #: bws_menu.php:199
414
  msgid "Home URL"
415
  msgstr "URL del inicio"
416
 
417
+ #: bws_menu.php:200
418
  msgid "Website URL"
419
  msgstr "URL del sitio"
420
 
421
+ #: bws_menu.php:201
422
  msgid "WP Version"
423
  msgstr "Versión WP"
424
 
425
+ #: bws_menu.php:202
426
  msgid "WP Multisite"
427
  msgstr "Multisite WP"
428
 
429
+ #: bws_menu.php:203
430
  msgid "WP Memory Limit"
431
  msgstr "Límite de memoria WP"
432
 
433
+ #: bws_menu.php:204
434
  msgid "Active Theme"
435
  msgstr "Tema activo"
436
 
437
+ #: bws_menu.php:204 bws_menu.php:249 bws_menu.php:252
438
  #, php-format
439
  msgid "by %s"
440
  msgstr "por %s"
441
 
442
+ #: bws_menu.php:208
443
  msgid "Server Environment"
444
  msgstr "Entorno de Servidor"
445
 
446
+ #: bws_menu.php:210
447
  msgid "Operating System"
448
  msgstr "Sistema operativo"
449
 
450
+ #: bws_menu.php:211
451
  msgid "Server"
452
  msgstr "Servidor"
453
 
454
+ #: bws_menu.php:212
455
  msgid "PHP Version"
456
  msgstr "Versión de PHP"
457
 
458
+ #: bws_menu.php:213
459
  msgid "PHP Allow URL fopen"
460
  msgstr "PHP permite URL fopen"
461
 
462
+ #: bws_menu.php:214
463
  msgid "PHP Memory Limit"
464
  msgstr "Límite de memoria PHP"
465
 
466
+ #: bws_menu.php:215
467
  msgid "Memory Usage"
468
  msgstr "Uso de memória"
469
 
470
+ #: bws_menu.php:216
471
  msgid "PHP Max Upload Size"
472
  msgstr "Tamaño máximo de archivo PHP"
473
 
474
+ #: bws_menu.php:217
475
  msgid "PHP Max Post Size"
476
  msgstr "Tamaño máximo de entrada PHP"
477
 
478
+ #: bws_menu.php:218
479
  msgid "PHP Max Script Execute Time"
480
  msgstr "Tiempo máximo de ejecución de scripts PHP"
481
 
482
+ #: bws_menu.php:219
483
  msgid "PHP Exif support"
484
  msgstr "Soporte PHP Exif"
485
 
486
+ #: bws_menu.php:220
487
  msgid "PHP IPTC support"
488
  msgstr "Soporte PHP IPTC"
489
 
490
+ #: bws_menu.php:221
491
  msgid "PHP XML support"
492
  msgstr "Soporte PHP XML"
493
 
494
+ #: bws_menu.php:227
495
  msgid "Database"
496
  msgstr "Base de Datos"
497
 
498
+ #: bws_menu.php:229
499
  msgid "WP DB version"
500
  msgstr "Versión de WP DB"
501
 
502
+ #: bws_menu.php:230
503
  msgid "MySQL version"
504
  msgstr "Versión de MySQL"
505
 
506
+ #: bws_menu.php:231
507
  msgid "SQL Mode"
508
  msgstr "Modo SQL"
509
 
510
+ #: bws_menu.php:235
511
  msgid "Active Plugins"
512
  msgstr "Plugins Activos"
513
 
514
+ #: bws_menu.php:240
515
  msgid "Inactive Plugins"
516
  msgstr "Plugins Inactivos"
517
 
518
+ #: bws_menu.php:261
519
  msgid "Please enter a valid email address."
520
  msgstr "Por favor, introduce la dirección de correo electrónico válida."
521
 
522
+ #: bws_menu.php:263
523
  #, php-format
524
  msgid "Email with system info is sent to %s."
525
  msgstr ""
526
 
527
+ #: bws_menu.php:267
528
  msgid "Thank you for contacting us."
529
  msgstr "¡Gracias por haber contactado con nosotros!"
530
 
531
+ #: bws_menu.php:290
532
  msgid "Sorry, email message could not be delivered."
533
  msgstr "Lo siento, el mensaje de correo electrónico no se pudo enviar."
534
 
535
+ #: bws_menu.php:306 bws_menu.php:310 bws_menu.php:359 deprecated.php:26
536
  msgid "Plugins"
537
  msgstr "Plugins"
538
 
539
+ #: bws_menu.php:307 bws_menu.php:311 bws_menu.php:587 deprecated.php:27
540
  msgid "Themes"
541
  msgstr "Temas"
542
 
543
+ #: bws_menu.php:308 bws_menu.php:312 bws_menu.php:617
544
  msgid "System status"
545
  msgstr "Información de sistema"
546
 
547
+ #: bws_menu.php:316
548
  msgid "Support"
549
  msgstr "Soporte"
550
 
551
+ #: bws_menu.php:317
552
  msgid "Manage purchased licenses & subscriptions"
553
  msgstr "Gestionar licencias y suscripciones adquiridas"
554
 
555
+ #: bws_menu.php:325
556
  #, php-format
557
  msgid "Get Access to %s+ Premium Plugins"
558
  msgstr "Obtener acceso a %s+ Premium plugins"
559
 
560
+ #: bws_menu.php:327
561
  msgid "Subscribe to Pro Membership"
562
  msgstr "Suscribirse a Pro Membership"
563
 
564
+ #: bws_menu.php:335 bws_menu.php:346 class-bws-settings.php:822
565
  #: deprecated.php:123
566
  msgid "Check license key"
567
  msgstr "Comprueba la clave de licencia"
568
 
569
+ #: bws_menu.php:338
570
  msgid "Enter your license key"
571
  msgstr "Introduce tu clave de licencia"
572
 
573
+ #: bws_menu.php:344 bws_menu.php:539 bws_menu.php:548
574
+ #: class-bws-settings.php:801 deprecated.php:155 deprecated.php:163
575
  #: deprecated.php:240 deprecated.php:249
576
  msgid "Activate"
577
  msgstr "Activar"
578
 
579
+ #: bws_menu.php:360
580
  msgid "Upload Plugin"
581
  msgstr "Subir plugin"
582
 
583
+ #: bws_menu.php:364
584
  #, php-format
585
  msgid ""
586
  "The plugin generated %d characters of <strong>unexpected output</strong> "
593
  "problemas con los feeds de sindicación u otras cuestiones, prueba desactivar "
594
  "o borrar este plugin."
595
 
596
+ #: bws_menu.php:366
597
  msgid ""
598
  "Plugin could not be activated because it triggered a <strong>fatal error</"
599
  "strong>."
600
  msgstr ""
601
  "No se pudo activar el plugin porque provocó un <strong>error fatal</ strong>."
602
 
603
+ #: bws_menu.php:369
604
  msgid "Plugin <strong>activated</strong>."
605
  msgstr "Plugin <strong>activado</strong>."
606
 
607
+ #: bws_menu.php:383
608
  #, fuzzy
609
  #| msgid "Upload Plugin"
610
  msgid "Download Pro Plugin"
611
  msgstr "Subir plugin"
612
 
613
+ #: bws_menu.php:385 class-bws-settings.php:759
614
  msgid "Your Pro plugin is ready"
615
  msgstr ""
616
 
617
+ #: bws_menu.php:387 class-bws-settings.php:761
618
  msgid "Your plugin has been zipped, and now is ready to download."
619
  msgstr ""
620
 
621
+ #: bws_menu.php:390 class-bws-settings.php:764
622
  msgid "Download Now"
623
  msgstr ""
624
 
625
+ #: bws_menu.php:394 class-bws-settings.php:768
626
  #, fuzzy
627
  #| msgid "Installing the plugin"
628
  msgid "Need help installing the plugin?"
629
  msgstr "Instalando el plugin"
630
 
631
+ #: bws_menu.php:396 class-bws-settings.php:770
632
  msgid "How to install WordPress plugin from your admin Dashboard (ZIP archive)"
633
  msgstr ""
634
 
635
+ #: bws_menu.php:399 class-bws-settings.php:774
636
  #, fuzzy
637
  #| msgid "Let's get started"
638
  msgid "Get Started"
639
  msgstr "¡Empecemos!"
640
 
641
+ #: bws_menu.php:405 class-bws-settings.php:780
642
  msgid "Knowledge Base"
643
  msgstr ""
644
 
645
+ #: bws_menu.php:408
646
  msgid "Licenses & Domains"
647
  msgstr ""
648
 
649
+ #: bws_menu.php:411
650
  #, fuzzy
651
  #| msgid "Client Secret"
652
  msgid "Client Area"
653
  msgstr "Secreto del cliente"
654
 
655
+ #: bws_menu.php:413
656
  msgid "Return to BestWebSoft Panel"
657
  msgstr "Volver a Panel de BestWebSoft"
658
 
659
+ #: bws_menu.php:420 bws_menu.php:440 bws_menu.php:569
660
  msgid "All"
661
  msgstr "Todo"
662
 
663
+ #: bws_menu.php:423 bws_menu.php:606
664
  msgid "Installed"
665
  msgstr "Instalado"
666
 
667
+ #: bws_menu.php:426
668
  msgid "Not Installed"
669
  msgstr "No instalado"
670
 
671
+ #: bws_menu.php:433
672
  msgid "Filter results"
673
  msgstr "Filtrar resultados"
674
 
675
+ #: bws_menu.php:436 bws_menu.php:565
676
  msgid "Category"
677
  msgstr "Categoría"
678
 
679
+ #: bws_menu.php:500
680
  msgid "Not installed"
681
  msgstr "No instalado"
682
 
683
+ #: bws_menu.php:504
684
  msgid "Renew to get updates"
685
  msgstr "Renovar para obtener actualizaciones"
686
 
687
+ #: bws_menu.php:507
688
  #, php-format
689
  msgid "Update to v %s"
690
  msgstr "Actualizar a v %s"
691
 
692
+ #: bws_menu.php:519 bws_menu.php:542
693
  msgid "Get Pro"
694
  msgstr ""
695
 
696
+ #: bws_menu.php:525 class-bws-settings.php:192 class-bws-settings.php:1091
697
  msgid "Upgrade to Pro"
698
  msgstr "Actualizar a Pro"
699
 
700
+ #: bws_menu.php:539 bws_menu.php:548
701
  msgid "Activate this plugin"
702
  msgstr "Activar el plugin"
703
 
704
+ #: bws_menu.php:551
705
  msgid "Install this plugin"
706
  msgstr "Instalar el plugin"
707
 
708
+ #: bws_menu.php:551
709
  msgid "Install Now"
710
  msgstr "Instalar"
711
 
712
+ #: bws_menu.php:560
713
  msgid "Nothing found. Try another criteria."
714
  msgstr "Nada encontrado. Prueba otro criterio."
715
 
716
+ #: bws_menu.php:597
717
  #, php-format
718
  msgid "By %s"
719
  msgstr "Por %s"
720
 
721
+ #: bws_menu.php:604
722
  msgid "Already Installed"
723
  msgstr "Ya instalado"
724
 
725
+ #: bws_menu.php:614
726
  msgid "Browse More WordPress Themes"
727
  msgstr ""
728
 
729
+ #: bws_menu.php:623
730
  msgid "Send to support"
731
  msgstr "Enviar al soporte técnico"
732
 
733
+ #: bws_menu.php:630
734
  msgid "Send to custom email &#187;"
735
  msgstr "Enviar al correo electrónico personalizado &#187;"
736
 
737
+ #: class-bws-settings.php:167
738
  msgid "Information"
739
  msgstr "Información"
740
 
741
+ #: class-bws-settings.php:179
742
  msgid "Inactive"
743
  msgstr "Inactiva"
744
 
745
+ #: class-bws-settings.php:187
746
  msgid "Expired"
747
  msgstr "Expirada"
748
 
749
+ #: class-bws-settings.php:190
750
  #, php-format
751
  msgid "%s day(-s) left"
752
  msgstr "%s día(-s) quedan"
753
 
754
+ #: class-bws-settings.php:196
755
  #, php-format
756
  msgid "Expired on %s"
757
  msgstr "Expiró el %s"
758
 
759
+ #: class-bws-settings.php:196
760
  msgid "Renew Now"
761
  msgstr "Renovar"
762
 
763
+ #: class-bws-settings.php:198
764
  msgid "Active"
765
  msgstr "Activa"
766
 
767
+ #: class-bws-settings.php:203
768
  msgid "License"
769
  msgstr "Licencia"
770
 
771
+ #: class-bws-settings.php:206
772
  msgid "Status"
773
  msgstr "Estado"
774
 
775
+ #: class-bws-settings.php:210
776
  msgid "Version"
777
  msgstr "Versión"
778
 
779
+ #: class-bws-settings.php:323
780
  msgid "All plugin settings were restored."
781
  msgstr "Se restauraron todos los ajustes del plugin."
782
 
783
+ #: class-bws-settings.php:463
784
  msgid "Custom Code"
785
  msgstr "Código personalizado"
786
 
787
+ #: class-bws-settings.php:467
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:472
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:475
797
  #, php-format
798
  msgid ""
799
  "This PHP code will be hooked to the %s action and will be printed on front "
802
  "Este código PHP se enganchará a la acción %s y se agregará sólo en el front-"
803
  "end."
804
 
805
+ #: class-bws-settings.php:478
806
  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:486
811
  #, php-format
812
  msgid ""
813
  "You need to make this files writable before you can save your changes. See "
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:496
820
  msgid "Browsing"
821
  msgstr "Navegar"
822
 
823
+ #: class-bws-settings.php:501
824
  #, php-format
825
  msgid "Activate custom %s code."
826
  msgstr "Activar código personalizado de %s."
827
 
828
+ #: class-bws-settings.php:509
829
  #, php-format
830
  msgid "Learn more about %s"
831
  msgstr "Aprende más de %s"
832
 
833
+ #: class-bws-settings.php:571
834
  msgid "Miscellaneous Settings"
835
  msgstr "Ajustes varios"
836
 
837
+ #: class-bws-settings.php:580 class-bws-settings.php:635
838
  #, php-format
839
  msgid ""
840
  "It is prohibited to change %s settings on this site in the %s network "
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:583 class-bws-settings.php:638
847
  #, php-format
848
  msgid ""
849
  "It is prohibited to view %s settings on this site in the %s network settings."
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:592
855
  msgid "Pro Options"
856
  msgstr "Opciones Pro"
857
 
858
+ #: class-bws-settings.php:596
859
  msgid "Enable to display plugin Pro options."
860
  msgstr "Activar muestro de las opciones Pro del plugin."
861
 
862
+ #: class-bws-settings.php:602
863
  msgid "Track Usage"
864
  msgstr "Seguir el uso"
865
 
866
+ #: class-bws-settings.php:606
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:611
874
  msgid "Default Settings"
875
  msgstr "Ajustes por defecto"
876
 
877
+ #: class-bws-settings.php:613
878
  msgid "Restore Settings"
879
  msgstr "Restaurar ajustes"
880
 
881
+ #: class-bws-settings.php:614
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:626
886
  msgid "Import / Export"
887
  msgstr "Importar / Exportar"
888
 
889
+ #: class-bws-settings.php:744
890
  msgid "License Key"
891
  msgstr "Clave de licencia"
892
 
893
+ #: class-bws-settings.php:803
894
  #, php-format
895
  msgid "Enter your license key to activate %s and get premium plugin features."
896
  msgstr ""
897
  "Introduce tu clave de licencia para activar %s y obtener funciones premium "
898
  "del plugin."
899
 
900
+ #: class-bws-settings.php:806 class-bws-settings.php:1014 deprecated.php:243
901
  msgid ""
902
  "Unfortunately, you have exceeded the number of available tries per day. "
903
  "Please, upload the plugin manually."
905
  "Por desgracia, has excedido el número de intentos por hoy. Por favor, sube "
906
  "el plugin manualmente."
907
 
908
+ #: class-bws-settings.php:809 deprecated.php:234
909
  #, php-format
910
  msgid "Start Your Free %s-Day Trial Now"
911
  msgstr "Comienza tu prueba gratuita de %s días"
912
 
913
+ #: class-bws-settings.php:824
914
  msgid ""
915
  "If necessary, you can check if the license key is correct or reenter it in "
916
  "the field below."
918
  "Si es necesario, puedes comprobar si la clave de licencia es correcta o "
919
  "introducirla otra vez en el campo abajo."
920
 
921
+ #: class-bws-settings.php:833
922
  msgid "Manage License Settings"
923
  msgstr "Gestionar ajustes de licencias"
924
 
925
+ #: class-bws-settings.php:835
926
  msgid "Login to Client Area"
927
  msgstr "Acceder al Área de Cliente"
928
 
929
+ #: class-bws-settings.php:837
930
  msgid ""
931
  "Manage active licenses, download BWS products, and view your payment history "
932
  "using BestWebSoft Client Area."
934
  "Gestiona licencias activas, descarga productos BWS y ve la historia de pagos "
935
  "con Área de Cliente de BestWebSoft."
936
 
937
+ #: class-bws-settings.php:895 class-bws-settings.php:1012
938
  msgid "This license key is bound to another site."
939
  msgstr "Esta clave de licencia está enlazada al otro sitio."
940
 
941
+ #: class-bws-settings.php:897
942
  msgid ""
943
  "This license key is valid, but Your license has expired. If you want to "
944
  "update our plugin in future, you should extend the license."
946
  "Esta clave de licencia está válida, pero tu licencia ha expirado. Si deseas "
947
  "actualizar nuestro plugin en el futuro debes extender la licencia."
948
 
949
+ #: class-bws-settings.php:899
950
  msgid "Unfortunately, you have exceeded the number of available tries."
951
  msgstr "Por desgracia, has excedido el número de intentos."
952
 
953
+ #: class-bws-settings.php:901
954
  msgid ""
955
  "Unfortunately, the Pro Trial licence was already installed to this domain. "
956
  "The Pro Trial license can be installed only once."
958
  "Por desgracia, la licencia Pro Trial ha estado ya instalada en este dominio. "
959
  "La licencia Pro Trial puede estar instalada una sola vez."
960
 
961
+ #: class-bws-settings.php:906
962
  msgid "The Pro Trial license key is valid."
963
  msgstr "La licencia Pro Trial está válida."
964
 
965
+ #: class-bws-settings.php:919 deprecated.php:142
966
  #, php-format
967
  msgid ""
968
  "In order to continue using the plugin it is necessary to buy a %s license."
969
  msgstr "Para seguir usando el plugin es necesario comprar una licencia de %s."
970
 
971
+ #: class-bws-settings.php:1016
972
  #, php-format
973
  msgid ""
974
  "Unfortunately, Your license has expired. To continue getting top-priority "
975
  "support and plugin updates, you should extend it in your %s."
976
  msgstr ""
977
 
978
+ #: class-bws-settings.php:1065
979
  msgid "Please, enter Your license key"
980
  msgstr "Por favor, introduce tu clave de licencia"
981
 
982
+ #: class-bws-settings.php:1078
983
  msgid "Need Help?"
984
  msgstr "¿Necesitas ayuda?"
985
 
986
+ #: class-bws-settings.php:1080
987
  msgid "Read the Instruction"
988
  msgstr "Lee las instrucciones"
989
 
990
+ #: class-bws-settings.php:1084
991
  msgid "Watch the Video"
992
  msgstr "Ve el vídeo"
993
 
994
+ #: class-bws-settings.php:1095
995
  msgid "Start Your Free Trial"
996
  msgstr "Comienza tu prueba gratuita"
997
 
998
+ #: class-bws-settings.php:1130
999
+ #, fuzzy
1000
+ #| msgid "Suggest a Feature"
1001
+ msgid "Request a Feature"
1002
+ msgstr "Ofrecer una función"
1003
+
1004
+ #: class-bws-settings.php:1135
1005
+ #, php-format
1006
+ msgid "How can we improve %s?"
1007
+ msgstr ""
1008
+
1009
+ #: class-bws-settings.php:1137
1010
+ msgid "We look forward to hear your ideas."
1011
+ msgstr ""
1012
+
1013
+ #: class-bws-settings.php:1139
1014
+ msgid "Describe your idea"
1015
+ msgstr ""
1016
+
1017
+ #: class-bws-settings.php:1142 deactivation-form.php:120
1018
+ msgid "Send website data and allow to contact me back"
1019
+ msgstr ""
1020
+
1021
+ #: class-bws-settings.php:1147
1022
+ msgid "Submit"
1023
+ msgstr ""
1024
+
1025
+ #: class-bws-settings.php:1148 deactivation-form.php:127
1026
+ msgid "Processing"
1027
+ msgstr ""
1028
+
1029
+ #: class-bws-settings.php:1149
1030
+ msgid "Thank you!"
1031
+ msgstr ""
1032
+
1033
  #: deactivation-form.php:22
1034
  msgid "Need help? We are ready to answer your questions."
1035
  msgstr ""
1086
  msgid "If you have a moment, please let us know why you are deactivating"
1087
  msgstr ""
1088
 
1089
+ #: deactivation-form.php:125
 
 
 
 
 
 
 
 
1090
  msgid "Submit and Deactivate"
1091
  msgstr ""
1092
 
1093
+ #: deactivation-form.php:126
1094
+ msgid "Skip and Deactivate"
1095
  msgstr ""
1096
 
1097
+ #: deactivation-form.php:272
1098
+ msgid "Please tell us the reason so we can improve it."
1099
  msgstr ""
1100
 
1101
  #: deprecated.php:28
1174
  msgid "version of the plugin."
1175
  msgstr "la versión del plugin."
1176
 
1177
+ #: product_list.php:8
1178
  msgid "Admin Tools"
1179
  msgstr "Herramientas"
1180
 
1181
+ #: product_list.php:9
1182
  msgid "Content"
1183
  msgstr "Contenido"
1184
 
1185
+ #: product_list.php:10
1186
  msgid "eCommerce"
1187
  msgstr "Comercio electrónico"
1188
 
1189
+ #: product_list.php:11
1190
  msgid "Marketing"
1191
  msgstr "Márketing"
1192
 
1193
+ #: product_list.php:12
1194
  msgid "Navigation"
1195
  msgstr "Navegación"
1196
 
1197
+ #: product_list.php:13
1198
  msgid "Recommended"
1199
  msgstr "Recomendado"
1200
 
1201
+ #: product_list.php:14
1202
  msgid "Security"
1203
  msgstr "Seguridad"
1204
 
1205
+ #: product_list.php:15
1206
  msgid "SEO"
1207
  msgstr "SEO"
1208
 
1209
+ #: product_list.php:16
1210
  msgid "SMM"
1211
  msgstr "SMM"
1212
 
1213
+ #: product_list.php:23
1214
+ msgid "Give a birth for your bike rental and booking WordPress website."
1215
+ msgstr ""
1216
+
1217
+ #: product_list.php:35
1218
  msgid "Best secure captcha plugin to protect your WordPress forms."
1219
  msgstr ""
1220
 
1221
+ #: product_list.php:45
1222
  msgid "Create your own rental website for car renting and booking."
1223
  msgstr ""
1224
 
1225
+ #: product_list.php:57
1226
  #, fuzzy
1227
  #| msgid "Add customized Google maps to WordPress posts, pages and widgets."
1228
  msgid ""
1232
  "Añade los mapas de Google personalizados a las entradas, páginas y widgets "
1233
  "de WordPress."
1234
 
1235
+ #: product_list.php:64
1236
  msgid ""
1237
  "Allow customers to reach you using secure contact form plugin any website "
1238
  "must have."
1240
  "Permite a los clientes ponerse en contacto contigo usando el plugin seguro "
1241
  "del formulario de contacto que debe tener cualquier sitio."
1242
 
1243
+ #: product_list.php:74
1244
  msgid "Add unlimited number of contact forms to WordPress website."
1245
  msgstr ""
1246
  "Añade el número ilimitado de formularios de contacto al sitio de WordPress."
1247
 
1248
+ #: product_list.php:84
1249
  msgid "Save and manage Contact Form messages. Never lose important data."
1250
  msgstr ""
1251
  "Guarda y gestiona los mensajes de Contact Form plugin. Nunca pierde datos "
1252
  "importantes."
1253
 
1254
+ #: product_list.php:94
1255
  msgid "Add unlimited custom pages to WordPress admin dashboard."
1256
  msgstr ""
1257
  "Añade el número ilimitado de páginas personalizadas al escritorio de "
1258
  "WordPress."
1259
 
1260
+ #: product_list.php:104
1261
  msgid ""
1262
  "Add custom post types and taxonomies to WordPress website search results."
1263
  msgstr ""
1264
  "Añade los tipos de contenido personalizados y taxonomías a los resultados de "
1265
  "búsqueda en el sitio de WordPress."
1266
 
1267
+ #: product_list.php:114
1268
  msgid "Add PayPal and 2CO donate buttons to receive charity payments."
1269
  msgstr ""
1270
  "Añade los botones de donación PayPal y 2CO para recibir pagos benéficos."
1271
 
1272
+ #: product_list.php:121
1273
  msgid ""
1274
  "Get latest error log messages to diagnose website problems. Define and fix "
1275
  "issues faster."
1277
  "Recibe más recientes mensajes del registro de errores para diagnosticar los "
1278
  "problemas del sitio. Define y corrige los problemas más rápido."
1279
 
1280
+ #: product_list.php:128
1281
  msgid ""
1282
  "Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and "
1283
  "widgets."
1285
  "Añade los botones de Facebook Seguir, Me gusta y Compartir a las entradas, "
1286
  "páginas y widgets de WordPress."
1287
 
1288
+ #: product_list.php:138
1289
  msgid ""
1290
  "Add beautiful galleries, albums & images to your WordPress website in a few "
1291
  "clicks."
1293
  "Añade las hermosas galerías, álbumes, imágenes y categorías de galería a tu "
1294
  "sitio de WordPress en unos pocos clics."
1295
 
1296
+ #: product_list.php:148
1297
  msgid ""
1298
  "Stronger security solution which protects your WordPress website from hacks "
1299
  "and unauthorized login attempts."
1301
  "Potente solución de seguridad que protege tu sitio de WordPress de los "
1302
  "hackeos y intentos no autorizados de acceder."
1303
 
1304
+ #: product_list.php:158
1305
  msgid ""
1306
  "Add Adsense ads to WordPress website pages, posts, custom posts, search "
1307
  "results, categories, tags, and widgets."
1310
  "entradas personalizadas, resultados de búsqueda, categorías, etiquetas y "
1311
  "widgets en el sitio de WordPress, ."
1312
 
1313
+ #: product_list.php:168
1314
  msgid "Add Google Analytics code to WordPress website and track basic stats."
1315
  msgstr ""
1316
  "Añade el código de Google Analytics al sitio de WordPress y sigue las "
1317
  "estadísticas básicas."
1318
 
1319
+ #: product_list.php:178
1320
  msgid "Protect WordPress website forms from spam entries with reCaptcha."
1321
  msgstr ""
1322
  "Protege los formularios en sitio de WordPress de las entradas de spam con "
1323
  "reCaptcha."
1324
 
1325
+ #: product_list.php:188
1326
  msgid "Add customized Google maps to WordPress posts, pages and widgets."
1327
  msgstr ""
1328
  "Añade los mapas de Google personalizados a las entradas, páginas y widgets "
1329
  "de WordPress."
1330
 
1331
+ #: product_list.php:198
1332
  msgid ""
1333
  "Generate and add XML sitemap to WordPress website. Help search engines index "
1334
  "your blog."
1336
  "Genera y añade los archivos de XML sitemap al sitio de WordPress. Ayuda a "
1337
  "los buscadores a indexar tu blog."
1338
 
1339
+ #: product_list.php:208
1340
  msgid ""
1341
  "Replace external WordPress website links with Google shortlinks and track "
1342
  "click stats."
1344
  "Reemplaza los enlaces externos con los enlaces cortos de Google en el sitio "
1345
  "de WordPress y sigue las estadísticas de clics."
1346
 
1347
+ #: product_list.php:215
1348
  msgid ""
1349
  "Protect WordPress website – allow and deny access for certain IP addresses, "
1350
  "hostnames, etc."
1352
  "Protege el sitio de WordPress - permite y impide el acceso para determinadas "
1353
  "direcciones IP, nombres de host, etc."
1354
 
1355
+ #: product_list.php:225
1356
  msgid ""
1357
  "Create your personal job board and listing WordPress website. Search jobs, "
1358
  "submit CV/resumes, choose candidates."
1360
  "Crea tu tablero personal con la lista de trabajos en el sitio de WordPress. "
1361
  "Busca trabajos, envía CV, elija candidatos."
1362
 
1363
+ #: product_list.php:232
1364
  msgid ""
1365
  "Protect WordPress website against brute force attacks. Limit rate of login "
1366
  "attempts."
1368
  "Protege el sitio de WordPress contra ataques de fuerza bruta. Limita el "
1369
  "número de intentos de acceder."
1370
 
1371
+ #: product_list.php:242
1372
  msgid ""
1373
  "Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. "
1374
  "5 plugins included – profile, insider, etc."
1376
  "Añade los botones de LinkedIn Compartir y Seguir a las entradas, páginas y "
1377
  "widgets de WordPress. 5 plugins incluidos - perfil, insider, etc."
1378
 
1379
+ #: product_list.php:252
1380
  msgid ""
1381
  "Translate WordPress website content to other languages manually. Create "
1382
  "multilingual pages, posts, widgets, menus, etc."
1385
  "Crea páginas multilingües, asi como entradas, widgets, menús, etc. en varios "
1386
  "idiomas."
1387
 
1388
+ #: product_list.php:262
1389
  msgid ""
1390
  "Add customizable pagination to WordPress website. Split long content to "
1391
  "multiple pages for better navigation."
1393
  "Añade la paginación personalizable al sitio de WordPress. Divide contenido "
1394
  "largo en varias páginas para mejorar la navegación."
1395
 
1396
+ #: product_list.php:272
1397
  msgid ""
1398
  "Generate PDF files and print WordPress posts/pages. Customize document "
1399
  "header/footer styles and appearance."
1402
  "Personaliza los estilos de la cabecera/pie de la página del documento y su "
1403
  "apariencia."
1404
 
1405
+ #: product_list.php:282
1406
  msgid ""
1407
  "Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, "
1408
  "Profile) to WordPress posts, pages and widgets."
1410
  "Añade los botones de Pinterest Segiur, Guardar y widgets de perfil (Pines, "
1411
  "Tablero, Perfil) a las entradas, páginas y widgets de WordPress."
1412
 
1413
+ #: product_list.php:292
1414
  msgid ""
1415
  "Create your personal portfolio WordPress website. Manage and showcase past "
1416
  "projects to get more clients."
1418
  "Crea tu cartera personal en el sitio de WordPress. Gestiona y muestra los "
1419
  "proyectos anteriores para obtener más clientes."
1420
 
1421
+ #: product_list.php:302
1422
  msgid "Export WordPress posts to CSV file format easily. Configure data order."
1423
  msgstr ""
1424
  "Exporta las entradas de WordPress en formato de archivo CSV fácilmente. "
1425
  "Configura el orden de los datos."
1426
 
1427
+ #: product_list.php:312
1428
  msgid ""
1429
  "Add extra fields to default WordPress user profile. The easiest way to "
1430
  "create and manage additional custom values."
1432
  "Añade los campos adicionales al perfil estándar del usuario de WordPress. La "
1433
  "forma más fácil de crear y gestionar los valores personalizados adicionales."
1434
 
1435
+ #: product_list.php:322
1436
  msgid ""
1437
  "Add and display HTML advertisement banner on WordPress website. Customize "
1438
  "bar styles and appearance."
1440
  "Añade y muestra los anuncios publicitarios de HTML en el sitio de WordPress. "
1441
  "Personaliza los estilos y la apariencia de la barra."
1442
 
1443
+ #: product_list.php:332
1444
  msgid ""
1445
  "Add customizable quotes and tips blocks to WordPress posts, pages and "
1446
  "widgets."
1448
  "Añade las citas personalizables y bloques de consejos a las entradas, "
1449
  "páginas y widgets de WordPress."
1450
 
1451
+ #: product_list.php:339
1452
  msgid ""
1453
  "Add rating plugin to your WordPress website to receive feedback from your "
1454
  "customers."
1456
  "Añade el plugin de valoración a tu sitio de WordPress para recibir "
1457
  "comentarios de tus clientes."
1458
 
1459
+ #: product_list.php:349
1460
  msgid ""
1461
  "Create your personal real estate WordPress website. Sell, rent and buy "
1462
  "properties. Add, search and browse listings easily."
1465
  "alquila y compra las propiedades. Añade, busca y navega las listas "
1466
  "fácilmente."
1467
 
1468
+ #: product_list.php:359
1469
  msgid ""
1470
  "Add related, featured, latest, and popular posts to your WordPress website. "
1471
  "Connect your blog readers with a relevant content."
1474
  "sitio de WordPress. Conecta a tus lectores de blog con el contenido "
1475
  "relevante."
1476
 
1477
+ #: product_list.php:366
1478
  msgid ""
1479
  "Send bulk email messages to WordPress users. Custom templates, advanced "
1480
  "settings and detailed reports."
1482
  "Envía mensajes de correo masivo a los usuarios de WordPress. Plantillas "
1483
  "personalizadas, ajustes avanzados e informes detallados."
1484
 
1485
+ #: product_list.php:376
1486
  msgid ""
1487
  "The best responsive slider plugin for your WordPress website. Create "
1488
  "beautifully animated slides just in a few clicks."
1490
  "El mejor adaptable carrusel plugin para tu sitio de WordPress. Crea las "
1491
  "diapositivas maravillosamente animadas con sólo unos clics."
1492
 
1493
+ #: product_list.php:383
1494
  msgid ""
1495
  "Configure SMTP server to receive email messages from WordPress to Gmail, "
1496
  "Yahoo, Hotmail and other services."
1498
  "Configura el servidor SMTP para recibir mensajes de correo electrónico de "
1499
  "WordPress en Gmail, Yahoo, Hotmail y otros servicios."
1500
 
1501
+ #: product_list.php:390
1502
  #, fuzzy
1503
  #| msgid ""
1504
  #| "Add social media buttons and widgets to WordPress posts, pages and "
1511
  "entradas, páginas y widgets de WordPress. FB, Twitter, G+1, Pinterest, "
1512
  "LinkedIn."
1513
 
1514
+ #: product_list.php:400
1515
  msgid ""
1516
  "Add social media login, registration, and commenting to your WordPress "
1517
  "website."
1519
  "Añade el acceso, registro y comentarios a los medios de comunicación social "
1520
  "a tu sitio de WordPress."
1521
 
1522
+ #: product_list.php:407
1523
  msgid ""
1524
  "Add email newsletter sign up form to WordPress posts, pages and widgets. "
1525
  "Collect data and subscribe your users."
1528
  "páginas y widgets de WordPress. Recoge los datos y suscribe a tus usuarios a "
1529
  "las noticias."
1530
 
1531
+ #: product_list.php:417
1532
  msgid ""
1533
  "Add testimonials and feedbacks from your customers to WordPress website "
1534
  "posts, pages, and widgets."
1536
  "Añade los testimonios y comentarios de tus clientes a las entradas, páginas "
1537
  "y widgets en el sitio de WordPress."
1538
 
1539
+ #: product_list.php:424
1540
  msgid ""
1541
  "Best timesheet plugin for WordPress. Track employee time, streamline "
1542
  "attendance and generate reports."
1545
  "laboral de los empleados, optimiza el horario de trabajo en la oficina y "
1546
  "crea informes generales."
1547
 
1548
+ #: product_list.php:434
1549
  msgid ""
1550
  "Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts "
1551
  "and pages."
1553
  "Añade los botones de Twitter Seguir, Twittear, Hashtag y Mencionar a las "
1554
  "entradas y páginas de WordPress."
1555
 
1556
+ #: product_list.php:444
1557
  msgid ""
1558
  "Automatically check and update WordPress website core with all installed "
1559
  "plugins and themes to the latest versions."
1561
  "Compruebа y actualiza automáticamente el núcleo de sitio de WordPress a las "
1562
  "últimas versiones con todos plugins y temas que tienes instalados."
1563
 
1564
+ #: product_list.php:454
1565
  msgid ""
1566
  "Powerful user role management plugin for WordPress website. Create, edit, "
1567
  "copy, and delete user roles."
1569
  "Poderoso plugin de gestión de funciones para el sitio de WordPress. Crea, "
1570
  "edita, copia y borra los perfiles de usuarios."
1571
 
1572
+ #: product_list.php:464
1573
  msgid ""
1574
  "Display live count of online visitors who are currently browsing your "
1575
  "WordPress website."
1577
  "Lleva la cuenta de los visitantes en línea que están hojeando tu sitio de "
1578
  "WordPress en ese momento."
1579
 
1580
+ #: product_list.php:474
1581
  msgid ""
1582
  "Backup and export Zendesk Help Center content automatically to your "
1583
  "WordPress website database."
bws_menu/languages/bestwebsoft-fr_FR.mo CHANGED
Binary file
bws_menu/languages/bestwebsoft-fr_FR.po CHANGED
@@ -2,28 +2,32 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2018-01-26 12:09+0100\n"
6
- "PO-Revision-Date: 2018-03-02 10:06+0200\n"
7
  "Last-Translator: Luc Capronnier <lcapronnier@yahoo.com>\n"
8
  "Language-Team: Luc Capronnier <lcapronnier@yahoo.com>\n"
 
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "Language: fr_FR\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "Plural-Forms: nplurals=2;plural=n>2;\n"
17
- "X-Generator: Poedit 1.8.7.1\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: bws_functions.php:73 bws_functions.php:191
21
  msgid "requires"
22
  msgstr "obligatoire"
23
 
24
  #: bws_functions.php:75
25
- msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
26
- msgstr "ou supérieure, c&rsquo;est pourquoi il a été désactivé&nbsp;! Merci de faire la mise à jour de WordPress puis de ré-essayer."
 
 
 
 
27
 
28
  #: bws_functions.php:76
29
  msgid "Back to the WordPress"
@@ -50,7 +54,7 @@ msgstr "Notez là"
50
  msgid "Need help?"
51
  msgstr "Besoin d&rsquo;aide&nbsp;?"
52
 
53
- #: bws_functions.php:104 bws_functions.php:919 class-bws-settings.php:1058
54
  msgid "Visit Help Center"
55
  msgstr "Visiter le site du support"
56
 
@@ -58,7 +62,7 @@ msgstr "Visiter le site du support"
58
  msgid "Want to support the plugin?"
59
  msgstr "Voter pour l&rsquo;extension"
60
 
61
- #: bws_functions.php:108 bws_menu.php:560
62
  msgid "Donate"
63
  msgstr "Don"
64
 
@@ -67,1259 +71,1672 @@ msgid "WARNING: Illegal use notification"
67
  msgstr "AVERTISSEMENT&nbsp;: Notification d&rsquo;utilisation abusive"
68
 
69
  #: bws_functions.php:128
70
- msgid "You can use one license of the Pro plugin for one domain only. Please check and edit your license or domain if necessary using your personal Client Area. We strongly recommend you to solve the problem within 24 hours, otherwise the Pro plugin will be deactivated."
71
- msgstr "Vous ne pouvez utilisez qu&rsquo;une licence de la version Pro de l&rsquo;extension pour un seul domaine. Merci de vérifier et de modifier votre licence ou votre domaine si nécessaire en utilisant votre zone client. Nous vous recommandons de résoudre ce problème dans les 24 heures, sinon l&rsquo;extension sera rendue inactive."
72
-
73
- #: bws_functions.php:128 bws_functions.php:341 bws_menu.php:631
74
- #: class-bws-settings.php:144
 
 
 
 
 
 
 
 
 
75
  msgid "Learn More"
76
  msgstr "En savoir plus"
77
 
78
  #: bws_functions.php:145
79
- msgid "Notice: Your Pro Trial license has expired. To continue using the plugin, you should buy a Pro license"
80
- msgstr "Information&nbsp;:Votre licence d&rsquo;évaluation est terminée. Pour continuer à utiliser cette extension, vous devez acheter une licence PRO."
 
 
 
 
81
 
82
  #: bws_functions.php:147
83
- msgid "Your license has expired. To continue getting top-priority support and plugin updates, you should extend it."
84
- msgstr "Votre licence est terminée. Pour continuer à disposer du support rapide et des mises à jour de l&rsquo;extension vous devez la renouveler."
 
 
 
 
85
 
86
- #: bws_functions.php:147 bws_functions.php:389 deprecated.php:586
87
  msgid "Learn more"
88
  msgstr "En savoir plus"
89
 
90
  #: bws_functions.php:165
91
  #, php-format
92
  msgid "Notice: You are using the Pro Trial license of %s plugin."
93
- msgstr "Avertissement&nbsp;: vous utilisez la version d&rsquo;évaluation de l&rsquo;extension %s."
 
 
94
 
95
  #: bws_functions.php:167
96
  msgid "Notice: You are using the Pro Trial license of plugin."
97
- msgstr "Avertissement&nbsp;: vous utilisez la version d&rsquo;évaluation de l&rsquo;extension."
 
 
98
 
99
  #: bws_functions.php:170
100
  msgid "The Pro Trial license will expire on"
101
  msgstr "La licence PRO d&rsquo;évaluation expirera le"
102
 
103
- #: bws_functions.php:193
104
- msgid "or higher! We do not guarantee that our plugin will work correctly. Please upgrade to WordPress latest version."
105
- msgstr "ou plus&nbsp;! Nous ne garantissons pas que notre extension fonctionne correctement. Merci de mettre à jour WordPress avec la dernière version."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
106
 
107
- #: bws_functions.php:208
108
  #, php-format
109
  msgid "Thank you for installing %s plugin!"
110
  msgstr "Merci d&rsquo;avoir installé l&rsquo;extension %s&nbsp;!"
111
 
112
- #: bws_functions.php:210
113
  msgid "Let's get started"
114
  msgstr "Démarrer"
115
 
116
- #: bws_functions.php:211 bws_functions.php:244 bws_menu.php:564
117
- #: bws_menu.php:566
118
  msgid "Settings"
119
  msgstr "Paramètres"
120
 
121
- #: bws_functions.php:213 bws_menu.php:326 class-bws-settings.php:747
122
- #: class-bws-settings.php:1060 class-bws-settings.php:1070 deprecated.php:697
123
  msgid "or"
124
  msgstr "ou"
125
 
126
- #: bws_functions.php:214 bws_functions.php:246
127
  msgid "Add New"
128
  msgstr "Ajouter"
129
 
130
- #: bws_functions.php:218 bws_functions.php:228 bws_functions.php:332
131
- #: bws_functions.php:385 bws_functions.php:487
132
- msgid "Close notice"
133
- msgstr "Effacer l&rsquo;avertissement"
134
-
135
- #: bws_functions.php:233
136
  msgid "Thank you for installing plugins by BestWebSoft!"
137
  msgstr "Merci d&rsquo;avoir installé des extensions de BestWebSoft&nbsp;!"
138
 
139
- #: bws_functions.php:235
140
  msgid "More Details"
141
  msgstr "Plus de détails"
142
 
143
- #: bws_functions.php:236
144
  msgid "Less Details"
145
  msgstr "Moins de détails"
146
 
147
- #: bws_functions.php:264
148
  msgid "Deprecated function(-s) is used on the site here:"
149
  msgstr "Une ou des fonction(s) obsolètes sont utilisées sur ce site ici&nbsp;:"
150
 
151
- #: bws_functions.php:278
152
- msgid "This function(-s) will be removed over time. Please update the product(-s)."
153
- msgstr "Ces fonctions seront supprimées rapidement. Merci de mettre à jour vos produits."
154
-
155
- #: bws_functions.php:337
156
- msgid "It’s time to upgrade your"
157
- msgstr "C&rsquo;est le moment de mettre à jour votre "
158
-
159
- #: bws_functions.php:337
160
- msgid "to"
161
- msgstr "à"
162
-
163
- #: bws_functions.php:337
164
- msgid "version!"
165
- msgstr "version&nbsp;!"
166
-
167
- #: bws_functions.php:338
168
- msgid "Extend standard plugin functionality with new great options."
169
- msgstr "Étend les fonctionnalités classiques de l&rsquo;extension avec des nouvelles options."
170
-
171
- #: bws_functions.php:389
172
- #, php-format
173
- msgid "Your license key for %s expires on %s and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
174
- msgstr "Votre clé de licence pour %s est terminée le %s et vous ne disposerez plus du support rapide et des mises à jour."
175
 
176
- #: bws_functions.php:482
177
  #, php-format
178
  msgid "Thank you for choosing %s plugin!"
179
  msgstr "Merci d&rsquo;avoir choisi l&rsquo;extension %s&nbsp;!"
180
 
181
- #: bws_functions.php:483
182
- msgid "If you have a feature, suggestion or idea you'd like to see in the plugin, we'd love to hear about it!"
183
- msgstr "Si vous avez une fonctionnalité, une suggestion ou une idée que vous souhaitez pour cette extension, nous serons ravis d&rsquo;en parler avec vous&nbsp;!"
 
 
 
 
 
184
 
185
- #: bws_functions.php:484
186
  msgid "Suggest a Feature"
187
  msgstr "Proposer une fonctionnalité"
188
 
189
- #: bws_functions.php:500 class-bws-settings.php:540 class-bws-settings.php:543
190
- #: class-bws-settings.php:595 class-bws-settings.php:598
191
  msgid "Notice"
192
  msgstr "Avertissement"
193
 
194
- #: bws_functions.php:500
195
  msgid "The plugin's settings have been changed."
196
  msgstr "Les paramètres de l&rsquo;extension ont été modifiés."
197
 
198
- #: bws_functions.php:501 class-bws-settings.php:183 class-bws-settings.php:203
199
- #: deprecated.php:642
200
  msgid "Save Changes"
201
  msgstr "Enregistrer les modifications"
202
 
203
- #: bws_functions.php:515
204
- msgid "You can always look at premium options by checking the \"Pro Options\" in the \"Misc\" tab."
205
- msgstr "Vous pouvez toujours consulter les options premium en cliquant sur le lien \"Voir les fonctionnalités de la version PRO\" dans l&rsquo;onglet divers."
 
 
 
 
206
 
207
- #: bws_functions.php:673
208
  msgid "Add shortcode"
209
  msgstr "Ajouter le code court"
210
 
211
- #: bws_functions.php:673
212
  msgid "Add BestWebSoft plugins' shortcodes using this button."
213
  msgstr "Ajouter le code court des extensions BestWebSoft avec ce bouton."
214
 
215
- #: bws_functions.php:729
216
  msgid "Close"
217
  msgstr "Fermer"
218
 
219
- #: bws_functions.php:821
220
  msgid "Are you sure you want to restore default settings?"
221
  msgstr "Êtes vous sûr de vouloir remettre toutes les valeurs par défaut&nbsp;?"
222
 
223
- #: bws_functions.php:824
224
  msgid "Yes, restore all settings"
225
  msgstr "Oui, remettre les valeurs par défaut"
226
 
227
- #: bws_functions.php:825
228
  msgid "No, go back to the settings page"
229
  msgstr "Non, retourner à la page des paramètres"
230
 
231
- #: bws_functions.php:867
232
  msgid "Plugin"
233
  msgstr "Extension"
234
 
235
- #: bws_functions.php:876
236
  msgid "Shortcode settings"
237
  msgstr "Paramètres du code court"
238
 
239
- #: bws_functions.php:881
240
  msgid "The shortcode will be inserted"
241
  msgstr "Le code court sera inséré"
242
 
243
- #: bws_functions.php:924
244
  msgid "FAQ"
245
  msgstr "FAQ"
246
 
247
- #: bws_functions.php:930
248
  msgid "For more information:"
249
  msgstr "Pour plus d&rsquo;informations&nbsp;:"
250
 
251
- #: bws_functions.php:931
252
  msgid "Documentation"
253
  msgstr "Documentation"
254
 
255
- #: bws_functions.php:932
256
  msgid "Video Instructions"
257
  msgstr "Vidéo explicative"
258
 
259
- #: bws_functions.php:933
260
  msgid "Submit a Request"
261
  msgstr "Soumettre une requête"
262
 
263
- #: bws_menu.php:101 class-bws-settings.php:792 deprecated.php:323
264
  msgid "Wrong license key"
265
  msgstr "Clé de licence incorrecte"
266
 
267
- #: bws_menu.php:122 class-bws-settings.php:818 class-bws-settings.php:885
268
- #: class-bws-settings.php:921 deprecated.php:133 deprecated.php:199
269
- #: deprecated.php:353
270
- msgid "Something went wrong. Please try again later. If the error appears again, please contact us"
271
- msgstr "Il est survenu une erreur. Essayer de nouveau. Si l&rsquo;erreur se produit de nouveau, merci de contacter <a href=http://support.bestwebsoft.com>BestWebSoft</a>. Nous sommes désolés pour le désagrément."
 
 
 
 
272
 
273
- #: bws_menu.php:122 class-bws-settings.php:818 class-bws-settings.php:885
274
- #: class-bws-settings.php:921 deprecated.php:133 deprecated.php:199
275
- #: deprecated.php:353
276
  msgid "We are sorry for inconvenience."
277
  msgstr "Nous sommes désolés pour le désagrément."
278
 
279
- #: bws_menu.php:128 class-bws-settings.php:824 class-bws-settings.php:927
280
- #: deprecated.php:139 deprecated.php:359
281
  msgid "Wrong license key."
282
  msgstr "Clé de licence incorrecte."
283
 
284
- #: bws_menu.php:130
285
- msgid "This license key is bound to another site. Change it via personal Client Area."
286
- msgstr "La clé de licence correspond à un autre site. Modifier au travers de votre espace client."
 
 
 
 
287
 
288
- #: bws_menu.php:130
289
  msgid "Log in"
290
  msgstr "Connexion"
291
 
292
- #: bws_menu.php:132 bws_menu.php:332 deprecated.php:261
293
  msgid "Unfortunately, you have exceeded the number of available tries per day."
294
- msgstr "Désoler mais vous avez dépassé le nombre d&rsquo;essai de la journée. Merci de télécharger l&rsquo;extension manuellement."
 
 
295
 
296
- #: bws_menu.php:134 deprecated.php:365
297
  #, php-format
298
- msgid "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates, you should extend it in your %s"
299
- msgstr "Désoler, votre licence est terminée. Pour continuer à disposer du support rapide et des mises à jour de l&rsquo;extension vous devez la renouveler dans votre %s"
 
 
 
 
 
300
 
301
- #: bws_menu.php:136 class-bws-settings.php:935 deprecated.php:367
302
- msgid "Unfortunately, the Pro licence was already installed to this domain. The Pro Trial license can be installed only once."
303
- msgstr "Une licence a déjà été installée sur ce domaine. La licence d&rsquo;évaluation ne peut-être installée qu&rsquo;une seule fois."
 
 
 
 
304
 
305
- #: bws_menu.php:142 class-bws-settings.php:839 deprecated.php:153
306
  msgid "The license key is valid."
307
  msgstr "La clé de licence est valide."
308
 
309
- #: bws_menu.php:144 class-bws-settings.php:842 deprecated.php:156
310
  msgid "Your license will expire on"
311
  msgstr "Votre licence se termine le "
312
 
313
- #: bws_menu.php:146
314
  msgid "Congratulations! Pro Membership license is activated successfully."
315
- msgstr "Félicitations&nbsp;! La version PRO de cette extension a été activée avec succès."
 
 
316
 
317
- #: bws_menu.php:153 class-bws-settings.php:1007 deprecated.php:436
318
- msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvenience."
319
- msgstr "Il est survenu une erreur. Essayer de nouveau ou bien télécharger l&rsquo;extension manuellement.Nous sommes désolés pour le désagrément."
 
 
 
 
320
 
321
- #: bws_menu.php:163
322
  msgid "Please enter your license key."
323
  msgstr "Merci de saisir votre clé de licence."
324
 
325
- #: bws_menu.php:174
326
  msgid "Not set"
327
  msgstr "Not set"
328
 
329
- #: bws_menu.php:176
330
  msgid "On"
331
  msgstr "On"
332
 
333
- #: bws_menu.php:176
334
  msgid "Off"
335
  msgstr "Off"
336
 
337
- #: bws_menu.php:177 bws_menu.php:178 bws_menu.php:179 bws_menu.php:180
338
- #: bws_menu.php:181 bws_menu.php:182 bws_menu.php:191
339
  msgid "N/A"
340
  msgstr "N/A"
341
 
342
- #: bws_menu.php:182
343
- msgid " Mb"
 
 
344
  msgstr " Mb"
345
 
346
- #: bws_menu.php:183 bws_menu.php:184 bws_menu.php:185 bws_menu.php:189
347
  msgid "Yes"
348
  msgstr "Yes"
349
 
350
- #: bws_menu.php:183 bws_menu.php:184 bws_menu.php:185 bws_menu.php:189
351
  msgid "No"
352
  msgstr "No"
353
 
354
- #: bws_menu.php:196
355
  msgid "WordPress Environment"
356
  msgstr "Environnent WordPress"
357
 
358
- #: bws_menu.php:198
359
  msgid "Home URL"
360
  msgstr "Home URL"
361
 
362
- #: bws_menu.php:199
363
  msgid "Website URL"
364
  msgstr "Site URL"
365
 
366
- #: bws_menu.php:200
367
  msgid "WP Version"
368
  msgstr "WP Version"
369
 
370
- #: bws_menu.php:201
371
  msgid "WP Multisite"
372
  msgstr "WP Multisite"
373
 
374
- #: bws_menu.php:202
375
  msgid "WP Memory Limit"
376
  msgstr "WP Memory Limit"
377
 
378
- #: bws_menu.php:203
379
  msgid "Active Theme"
380
  msgstr "Active Theme"
381
 
382
- #: bws_menu.php:203 bws_menu.php:248 bws_menu.php:251
383
  #, php-format
384
  msgid "by %s"
385
  msgstr "par %s"
386
 
387
- #: bws_menu.php:207
388
  msgid "Server Environment"
389
  msgstr "Environnent serveur"
390
 
391
- #: bws_menu.php:209
392
  msgid "Operating System"
393
  msgstr "Operating System"
394
 
395
- #: bws_menu.php:210
396
  msgid "Server"
397
  msgstr "Server"
398
 
399
- #: bws_menu.php:211
400
  msgid "PHP Version"
401
  msgstr "PHP Version"
402
 
403
- #: bws_menu.php:212
404
  msgid "PHP Allow URL fopen"
405
  msgstr "PHP Allow URL fopen"
406
 
407
- #: bws_menu.php:213
408
  msgid "PHP Memory Limit"
409
  msgstr "PHP Memory Limit"
410
 
411
- #: bws_menu.php:214
412
  msgid "Memory Usage"
413
  msgstr "Memory usage"
414
 
415
- #: bws_menu.php:215
416
  msgid "PHP Max Upload Size"
417
  msgstr "PHP Max Upload Size"
418
 
419
- #: bws_menu.php:216
420
  msgid "PHP Max Post Size"
421
  msgstr "PHP Max Post Size"
422
 
423
- #: bws_menu.php:217
424
  msgid "PHP Max Script Execute Time"
425
  msgstr "PHP Max Script Execute Time"
426
 
427
- #: bws_menu.php:218
428
  msgid "PHP Exif support"
429
  msgstr "PHP Exif support"
430
 
431
- #: bws_menu.php:219
432
  msgid "PHP IPTC support"
433
  msgstr "PHP IPTC support"
434
 
435
- #: bws_menu.php:220
436
  msgid "PHP XML support"
437
  msgstr "PHP XML support"
438
 
439
- #: bws_menu.php:226
440
  msgid "Database"
441
  msgstr "Base de données"
442
 
443
- #: bws_menu.php:228
444
  msgid "WP DB version"
445
  msgstr "WordPress DB Version"
446
 
447
- #: bws_menu.php:229
448
  msgid "MySQL version"
449
  msgstr "MYSQL Version"
450
 
451
- #: bws_menu.php:230
452
  msgid "SQL Mode"
453
  msgstr "SQL Mode"
454
 
455
- #: bws_menu.php:234
456
  msgid "Active Plugins"
457
  msgstr "Extensions actives"
458
 
459
- #: bws_menu.php:239
460
  msgid "Inactive Plugins"
461
  msgstr "Extensions inactives"
462
 
463
- #: bws_menu.php:260
464
  msgid "Please enter a valid email address."
465
  msgstr "Merci de saisir une adresse e-mail valide."
466
 
467
- #: bws_menu.php:262
468
  #, php-format
469
  msgid "Email with system info is sent to %s."
470
  msgstr "Le courriel avec les informations système est envoyé à %s."
471
 
472
- #: bws_menu.php:266
473
  msgid "Thank you for contacting us."
474
  msgstr "Merci de nous avoir contacté."
475
 
476
- #: bws_menu.php:289
477
  msgid "Sorry, email message could not be delivered."
478
  msgstr "Désolé, votre e-mail n&rsquo;a pas pu être envoyé."
479
 
480
- #: bws_menu.php:305 bws_menu.php:309 bws_menu.php:358 deprecated.php:91
481
  msgid "Plugins"
482
  msgstr "Extensions"
483
 
484
- #: bws_menu.php:306 bws_menu.php:310 bws_menu.php:618 deprecated.php:92
485
  msgid "Themes"
486
  msgstr "Thèmes"
487
 
488
- #: bws_menu.php:307 bws_menu.php:311 bws_menu.php:648
489
  msgid "System status"
490
  msgstr "Etat du système"
491
 
492
- #: bws_menu.php:315
493
  msgid "Support"
494
  msgstr "Support"
495
 
496
- #: bws_menu.php:316
497
  msgid "Manage purchased licenses & subscriptions"
498
  msgstr "Gérer les licences et les inscriptions"
499
 
500
- #: bws_menu.php:324
501
  #, php-format
502
  msgid "Get Access to %s+ Premium Plugins"
503
  msgstr "Accéder à plus de %s extensions premiums"
504
 
505
- #: bws_menu.php:326
506
  msgid "Subscribe to Pro Membership"
507
  msgstr "Souscrire une adhésion PRO"
508
 
509
- #: bws_menu.php:334 bws_menu.php:345 class-bws-settings.php:760
510
- #: deprecated.php:227
511
  msgid "Check license key"
512
  msgstr "Vérifier la clé de licence"
513
 
514
- #: bws_menu.php:337
515
  msgid "Enter your license key"
516
  msgstr "Merci de saisir votre clé de licence"
517
 
518
- #: bws_menu.php:343 bws_menu.php:570 bws_menu.php:579
519
- #: class-bws-settings.php:739 deprecated.php:259 deprecated.php:267
520
- #: deprecated.php:631 deprecated.php:703 deprecated.php:712
521
  msgid "Activate"
522
  msgstr "Activé"
523
 
524
- #: bws_menu.php:359
525
  msgid "Upload Plugin"
526
  msgstr "Charger l&rsquo;extension"
527
 
528
- #: bws_menu.php:363
529
  #, php-format
530
- msgid "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."
531
- msgstr "Cette extension a produit %d caractères <strong>inattendus</strong> durant l&rsquo;activation. Si vous constatez le message &#8220;headers already sent&#8221;, des problèmes avec les flux de syndication ou autres, essayez de désactiver l&rsquo;extension ou supprimer l&rsquo;extension."
 
 
 
 
 
 
 
 
532
 
533
- #: bws_menu.php:365
534
- msgid "Plugin could not be activated because it triggered a <strong>fatal error</strong>."
535
- msgstr "L&rsquo;extension ne peut pas être activée car une <strong>erreur fatale</strong> a été détectée."
 
 
 
 
536
 
537
- #: bws_menu.php:368
538
  msgid "Plugin <strong>activated</strong>."
539
  msgstr "Extension <strong>activée</strong>."
540
 
541
- #: bws_menu.php:375
542
- msgid "Installing Plugin"
543
- msgstr "Extension installée"
 
 
544
 
545
- #: bws_menu.php:381
546
- msgid "Downloading install package from"
547
- msgstr "Télécharger le paquet d&rsquo;installation depuis"
548
 
549
- #: bws_menu.php:398 bws_menu.php:429 bws_menu.php:440 deprecated.php:388
550
- #: deprecated.php:410 deprecated.php:432
551
- msgid "Failed to download the zip archive. Please, upload the plugin manually"
552
- msgstr "Erreur de téléchargement de l&rsquo;archive ZIP. Merci de télécharger l&rsquo;extension manuellement."
553
 
554
- #: bws_menu.php:406
555
- msgid "Unpacking the package"
556
- msgstr "Décompresser le paquet"
557
 
558
- #: bws_menu.php:411 bws_menu.php:419
559
- msgid "Installing the plugin"
 
 
560
  msgstr "Installer l&rsquo;extension"
561
 
562
- #: bws_menu.php:415 deprecated.php:400
563
- msgid "Failed to open the zip archive. Please, upload the plugin manually"
564
- msgstr "Erreur d&rsquo;ouverture de l&rsquo;archive zip. Merci de télécharger l&rsquo;extension manuellement."
565
 
566
- #: bws_menu.php:422 deprecated.php:406
567
- msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
568
- msgstr "Votre serveur n&rsquo;a pas le support du format des archives ZIP ou Phar. Merci de télécharger l&rsquo;extension manuellement."
 
 
569
 
570
- #: bws_menu.php:425
571
- #, php-format
572
- msgid "The plugin %s is successfully installed."
573
- msgstr "L&rsquo;extension %s a été installée avec succès."
574
 
575
- #: bws_menu.php:432 deprecated.php:413
576
- msgid "UploadDir is not writable. Please, upload the plugin manually"
577
- msgstr "Erreur d&rsquo;ouverture de l&rsquo;archive zip. Merci de télécharger l&rsquo;extension manuellement."
578
 
579
- #: bws_menu.php:437
580
- msgid "Activate Plugin"
581
- msgstr "Activer l&rsquo;extension"
 
 
582
 
583
- #: bws_menu.php:437 bws_menu.php:443
584
  msgid "Return to BestWebSoft Panel"
585
  msgstr "Retourner à l&rsquo;administration BestWebSoft"
586
 
587
- #: bws_menu.php:451 bws_menu.php:471 bws_menu.php:600
588
  msgid "All"
589
  msgstr "Tous"
590
 
591
- #: bws_menu.php:454 bws_menu.php:637
592
  msgid "Installed"
593
  msgstr "Installé"
594
 
595
- #: bws_menu.php:457
596
  msgid "Not Installed"
597
  msgstr "Non installé"
598
 
599
- #: bws_menu.php:464
600
  msgid "Filter results"
601
  msgstr "Filtrer les résultats"
602
 
603
- #: bws_menu.php:467 bws_menu.php:596
604
  msgid "Category"
605
  msgstr "Catégorie"
606
 
607
- #: bws_menu.php:531
608
  msgid "Not installed"
609
  msgstr "Non installé"
610
 
611
- #: bws_menu.php:535
612
  msgid "Renew to get updates"
613
  msgstr "Se réabonner pour avoir les mises à jour"
614
 
615
- #: bws_menu.php:538
616
  #, php-format
617
  msgid "Update to v %s"
618
  msgstr "Mettre à jour avec la version %s"
619
 
620
- #: bws_menu.php:550 bws_menu.php:573 bws_menu.php:582
621
- msgid "Install Now"
622
- msgstr "Installer maintenant"
623
 
624
- #: bws_menu.php:556 class-bws-settings.php:157 class-bws-settings.php:1067
625
  msgid "Upgrade to Pro"
626
  msgstr "Passer à la version PRO"
627
 
628
- #: bws_menu.php:570 bws_menu.php:579
629
  msgid "Activate this plugin"
630
  msgstr "Activer cette extension"
631
 
632
- #: bws_menu.php:582
633
  msgid "Install this plugin"
634
  msgstr "Installer cette extension"
635
 
636
- #: bws_menu.php:591
 
 
 
 
637
  msgid "Nothing found. Try another criteria."
638
  msgstr "Pas de réponse. Essayer d&rsquo;autres critères."
639
 
640
- #: bws_menu.php:628
641
  #, php-format
642
  msgid "By %s"
643
  msgstr "Par %s"
644
 
645
- #: bws_menu.php:635
646
  msgid "Already Installed"
647
  msgstr "Déjà installé"
648
 
649
- #: bws_menu.php:645
650
  msgid "Browse More WordPress Themes"
651
  msgstr "Parcourir les thèmes gratuits pour WordPress"
652
 
653
- #: bws_menu.php:654
654
  msgid "Send to support"
655
  msgstr "Envoyé au support"
656
 
657
- #: bws_menu.php:661
658
  msgid "Send to custom email &#187;"
659
  msgstr "Envoyer un e-mail spécifique &#187;"
660
 
661
- #: class-bws-settings.php:136
662
  msgid "Information"
663
  msgstr "Information"
664
 
665
- #: class-bws-settings.php:144
666
  msgid "Inactive"
667
  msgstr "Inactive"
668
 
669
- #: class-bws-settings.php:152
670
  msgid "Expired"
671
  msgstr "Expiré"
672
 
673
- #: class-bws-settings.php:155
674
  #, php-format
675
  msgid "%s day(-s) left"
676
  msgstr "%s jour(s) restant"
677
 
678
- #: class-bws-settings.php:161
679
  #, php-format
680
  msgid "Expired on %s"
681
  msgstr "Terminer le %s"
682
 
683
- #: class-bws-settings.php:161
684
  msgid "Renew Now"
685
  msgstr "Renouveler maintenant"
686
 
687
- #: class-bws-settings.php:163
688
  msgid "Active"
689
  msgstr "Activé"
690
 
691
- #: class-bws-settings.php:168
692
  msgid "License"
693
  msgstr "Licence"
694
 
695
- #: class-bws-settings.php:171
696
  msgid "Status"
697
  msgstr "Etat"
698
 
699
- #: class-bws-settings.php:175
700
  msgid "Version"
701
  msgstr "Version"
702
 
703
- #: class-bws-settings.php:285
704
  msgid "All plugin settings were restored."
705
- msgstr "Les paramètres de l&rsquo;extension ont été remis aux valeurs d&rsquo;origine."
 
 
706
 
707
- #: class-bws-settings.php:423
708
  msgid "Custom Code"
709
  msgstr "Code personnalisé"
710
 
711
- #: class-bws-settings.php:427 deprecated.php:498
712
  msgid "You do not have sufficient permissions to edit plugins for this site."
713
- msgstr "Vous n&rsquo;avez pas assez de droits pour modifier l&rsquo;extension pour ce site."
 
 
714
 
715
- #: class-bws-settings.php:432 deprecated.php:620
716
  msgid "These styles will be added to the header on all pages of your site."
717
- msgstr "Ces styles seront ajoutés aux entêtes sur tous les pages de votre site."
 
718
 
719
- #: class-bws-settings.php:435 deprecated.php:622
720
  #, php-format
721
- msgid "This PHP code will be hooked to the %s action and will be printed on front end only."
722
- msgstr "Ce code PHP sera rattaché à l&rsquo;action %s et sera affiché uniquement sur la partie publique."
 
 
 
 
723
 
724
- #: class-bws-settings.php:438
725
  msgid "These code will be added to the header on all pages of your site."
726
  msgstr "Ce code sera ajouté aux entêtes sur tous les pages de votre site."
727
 
728
- #: class-bws-settings.php:446 deprecated.php:646
729
  #, php-format
730
- msgid "You need to make this files writable before you can save your changes. See %s the Codex %s for more information."
731
- msgstr "Vous devez rendre ce fichier modifiable avant de pouvoir enregistrer vos modifications. Regarder %s du Codex %s pour plus d&rsquo;informations."
 
 
 
 
732
 
733
- #: class-bws-settings.php:456 deprecated.php:628
734
  msgid "Browsing"
735
  msgstr "Parcourir"
736
 
737
- #: class-bws-settings.php:461
738
  #, php-format
739
  msgid "Activate custom %s code."
740
  msgstr "Activer le code personnalisé %s."
741
 
742
- #: class-bws-settings.php:469 deprecated.php:635
743
  #, php-format
744
  msgid "Learn more about %s"
745
  msgstr "En savoir plus sur %s"
746
 
747
- #: class-bws-settings.php:531
748
  msgid "Miscellaneous Settings"
749
  msgstr "Paramètres divers"
750
 
751
- #: class-bws-settings.php:540 class-bws-settings.php:595
752
  #, php-format
753
- msgid "It is prohibited to change %s settings on this site in the %s network settings."
754
- msgstr "Il est interdit de changer le paramètre %s sur ce site dans les paramètres %s du réseau."
 
 
 
 
755
 
756
- #: class-bws-settings.php:543 class-bws-settings.php:598
757
  #, php-format
758
- msgid "It is prohibited to view %s settings on this site in the %s network settings."
759
- msgstr "Il est interdit de voir le paramètre %s sur ce site dans les paramètres %s du réseau."
 
 
 
760
 
761
- #: class-bws-settings.php:552
762
  msgid "Pro Options"
763
  msgstr "Options Pro"
764
 
765
- #: class-bws-settings.php:556
766
  msgid "Enable to display plugin Pro options."
767
  msgstr "Activer pour voir les options PRO de l&rsquo;extension."
768
 
769
- #: class-bws-settings.php:562
770
  msgid "Track Usage"
771
  msgstr "Suivi de l&rsquo;utilisation"
772
 
773
- #: class-bws-settings.php:566
774
- msgid "Enable to allow tracking plugin usage anonymously in order to make it better."
775
- msgstr "Activer pour autoriser le suivi de l&rsquo;utilisation de l&rsquo;extension de manière anonyme afin de la rendre meilleure."
 
 
 
776
 
777
- #: class-bws-settings.php:571
778
  msgid "Default Settings"
779
  msgstr "Réglages par défaut"
780
 
781
- #: class-bws-settings.php:573
782
  msgid "Restore Settings"
783
  msgstr "Remettre les paramètres"
784
 
785
- #: class-bws-settings.php:574
786
  msgid "This will restore plugin settings to defaults."
787
  msgstr "Remettre les valeurs par défaut des paramètres de l&rsquo;extension."
788
 
789
- #: class-bws-settings.php:586
790
  msgid "Import / Export"
791
  msgstr "Importer / Exporter"
792
 
793
- #: class-bws-settings.php:702 class-bws-settings.php:735
794
- #: class-bws-settings.php:757
795
  msgid "License Key"
796
  msgstr "Clé de licence"
797
 
798
- #: class-bws-settings.php:725
799
- msgid "Congratulations! Pro license is activated successfully."
800
- msgstr "Félicitations&nbsp;! La version PRO de cette extension a été activée avec succès."
801
-
802
- #: class-bws-settings.php:726
803
- #, php-format
804
- msgid "You will be automatically redirected to the %s in %s seconds."
805
- msgstr "Vous allez être redirigé automatiquement vers %s dans %s secondes."
806
-
807
- #: class-bws-settings.php:726
808
- msgid "Settings page"
809
- msgstr "Page des paramètres"
810
-
811
- #: class-bws-settings.php:741
812
  #, php-format
813
  msgid "Enter your license key to activate %s and get premium plugin features."
814
- msgstr "Saisir votre clé de licence pour activer %s et obtenir les fonctionnalités premium."
 
 
815
 
816
- #: class-bws-settings.php:744 class-bws-settings.php:931 deprecated.php:363
817
- #: deprecated.php:706
818
- msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
819
- msgstr "Désoler mais vous avez dépassé le nombre d&rsquo;essai de la journée. Merci de télécharger l&rsquo;extension manuellement."
 
 
 
820
 
821
- #: class-bws-settings.php:747 deprecated.php:697
822
  #, php-format
823
  msgid "Start Your Free %s-Day Trial Now"
824
  msgstr "Débuter votre licence d&rsquo;évaluation gratuite de %s jours"
825
 
826
- #: class-bws-settings.php:762
827
- msgid "If necessary, you can check if the license key is correct or reenter it in the field below."
828
- msgstr "Si nécessaire vous pouvez vérifier que la clé de licence est correcte ou la saisir de nouveau dans le champ ci-dessous."
 
 
 
 
829
 
830
- #: class-bws-settings.php:767
831
  msgid "Manage License Settings"
832
  msgstr "Gérer les paramètres de licence"
833
 
834
- #: class-bws-settings.php:769
835
  msgid "Login to Client Area"
836
  msgstr "Se connecter à l&rsquo;espace client"
837
 
838
- #: class-bws-settings.php:771
839
- msgid "Manage active licenses, download BWS products, and view your payment history using BestWebSoft Client Area."
840
- msgstr "Gérer les licences actives, télécharger les produits BWS, et voir l&rsquo;historique de vos règlements dans l&rsquo;interface client de BestWebSoft."
 
 
 
 
841
 
842
- #: class-bws-settings.php:826 class-bws-settings.php:929 deprecated.php:141
843
- #: deprecated.php:361
844
  msgid "This license key is bound to another site."
845
  msgstr "La clé de licence correspond à un autre site."
846
 
847
- #: class-bws-settings.php:828 deprecated.php:143
848
- msgid "This license key is valid, but Your license has expired. If you want to update our plugin in future, you should extend the license."
849
- msgstr "La clé de licence est valide mais votre durée de validité est passée. Pour continuer à disposer du support rapide et des mises à jour de l&rsquo;extension vous devez la renouveller."
 
 
 
 
 
850
 
851
- #: class-bws-settings.php:830 deprecated.php:145
852
  msgid "Unfortunately, you have exceeded the number of available tries."
853
- msgstr "Désoler mais vous avez dépassé le nombre d&rsquo;essai de la journée. Merci de télécharger l&rsquo;extension manuellement."
 
 
854
 
855
- #: class-bws-settings.php:832 deprecated.php:147
856
- msgid "Unfortunately, the Pro Trial licence was already installed to this domain. The Pro Trial license can be installed only once."
857
- msgstr "Une licence a déjà été installée sur ce domaine. La licence d&rsquo;évaluation ne peut-être installée qu&rsquo;une seule fois."
 
 
 
 
858
 
859
- #: class-bws-settings.php:837 deprecated.php:151
860
  msgid "The Pro Trial license key is valid."
861
  msgstr "La clé de licence d&rsquo;évaluation est valide."
862
 
863
- #: class-bws-settings.php:845 deprecated.php:159 deprecated.php:246
864
  #, php-format
865
- msgid "In order to continue using the plugin it is necessary to buy a %s license."
866
- msgstr "Afin de pouvoir continuer à utiliser cette extension il est nécessaire d&rsquo;acheter une licence %s."
 
 
 
867
 
868
- #: class-bws-settings.php:933
869
  #, php-format
870
- msgid "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates, you should extend it in your %s."
871
- msgstr "Désoler, votre licence est terminée. Pour continuer à disposer du support rapide et des mises à jour de l&rsquo;extension vous devez la renouveler dans votre %s."
872
-
873
- #: class-bws-settings.php:959 class-bws-settings.php:981
874
- #: class-bws-settings.php:1003
875
- msgid "Failed to download the zip archive. Please, upload the plugin manually."
876
- msgstr "Erreur de téléchargement de l&rsquo;archive ZIP. Merci de télécharger l&rsquo;extension manuellement."
877
-
878
- #: class-bws-settings.php:971
879
- msgid "Failed to open the zip archive. Please, upload the plugin manually."
880
- msgstr "Erreur d&rsquo;ouverture de l&rsquo;archive zip. Merci de télécharger l&rsquo;extension manuellement."
881
-
882
- #: class-bws-settings.php:977
883
- msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually."
884
- msgstr "Votre serveur n&rsquo;a pas le support du format des archives ZIP ou Phar. Merci de télécharger l&rsquo;extension manuellement."
885
-
886
- #: class-bws-settings.php:984
887
- msgid "UploadDir is not writable. Please, upload the plugin manually."
888
- msgstr "Le répertoire de destination n&rsquo;est pas disponible en écriture. Merci de télécharger l&rsquo;extension manuellement."
889
 
890
- #: class-bws-settings.php:1042 deprecated.php:464
891
  msgid "Please, enter Your license key"
892
  msgstr "Merci de saisir votre clé de licence"
893
 
894
- #: class-bws-settings.php:1054
895
  msgid "Need Help?"
896
  msgstr "Besoin d&rsquo;aide&nbsp;?"
897
 
898
- #: class-bws-settings.php:1056
899
  msgid "Read the Instruction"
900
  msgstr "Lire les instructions"
901
 
902
- #: class-bws-settings.php:1060
903
  msgid "Watch the Video"
904
  msgstr "Regarder la vidéo"
905
 
906
- #: class-bws-settings.php:1071
907
  msgid "Start Your Free Trial"
908
  msgstr "Débuter votre licence d&rsquo;évaluation gratuite"
909
 
910
- #: deactivation-form.php:27
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
911
  msgid "Need help? We are ready to answer your questions."
912
- msgstr "Besoin d&rsquo;aide&nbsp;? Nous sommes prêts à répondre à vos questions."
 
913
 
914
- #: deactivation-form.php:27
915
  msgid "Contact Support"
916
  msgstr "Contacter le support"
917
 
918
- #: deactivation-form.php:32
919
  msgid "The plugin is not working"
920
  msgstr "L&rsquo;extension ne fonctionna pas"
921
 
922
- #: deactivation-form.php:34
923
- msgid "Kindly share what didn't work so we can fix it in future updates..."
924
- msgstr "Merci de partager ce qui ne fonctionne pas afin que nous puissions le corriger dans une prochaine version..."
925
-
926
- #: deactivation-form.php:38
927
  msgid "The plugin didn't work as expected"
928
  msgstr "L&rsquo;extension ne fonctionne pas comme prévue"
929
 
930
- #: deactivation-form.php:40
931
- msgid "What did you expect?"
932
- msgstr "Quel est le fonctionnement attendu&nbsp;?"
933
-
934
- #: deactivation-form.php:44
935
  msgid "The plugin suddenly stopped working"
936
  msgstr "L&rsquo;extension a subitement cessé de fonctionner"
937
 
938
- #: deactivation-form.php:51
939
  msgid "The plugin broke my site"
940
  msgstr "L&rsquo;extension a cassé mon site"
941
 
942
- #: deactivation-form.php:58
943
  msgid "I couldn't understand how to get it work"
944
  msgstr "Je n&rsquo;arrive pas à comprendre commen la faire fonctionner"
945
 
946
- #: deactivation-form.php:65
947
  msgid "I found a better plugin"
948
  msgstr "J&rsquo;ai trouvé une meuilleure extension"
949
 
950
- #: deactivation-form.php:67
951
- msgid "What's the plugin name?"
952
- msgstr "Quel est le nom de l&rsquo;extension&nbsp;?"
953
-
954
- #: deactivation-form.php:71
955
  msgid "The plugin is great, but I need specific feature that you don't support"
956
- msgstr "L&rsquo;extension est magnifique, mais j&rsquo;ai besoin d&rsquo;une fonctionnalité spécifique que vous n&rsquo;offrez pas"
957
-
958
- #: deactivation-form.php:73
959
- msgid "What feature?"
960
- msgstr "Quelle fonctionalité&nbsp;?"
961
 
962
- #: deactivation-form.php:77
963
  msgid "I no longer need the plugin"
964
  msgstr "Je n&rsquo;ai plus besoin de cette extension"
965
 
966
- #: deactivation-form.php:83
967
  msgid "It's a temporary deactivation, I'm just debugging an issue"
968
- msgstr "C&rsquo;est une désactivation temporaire, je suis entrain de résoudre un problème"
 
 
969
 
970
- #: deactivation-form.php:89
971
  msgid "Other"
972
  msgstr "Autre"
973
 
974
- #: deactivation-form.php:123
975
  msgid "Quick Feedback"
976
  msgstr "Retour rapide"
977
 
978
- #: deactivation-form.php:124
979
  msgid "If you have a moment, please let us know why you are deactivating"
980
- msgstr "Si vous avez quelques instants, merci de nous dire pourquoi vous désactivez l&rsquo;extension"
981
-
982
- #: deactivation-form.php:127
983
- msgid "Send website data and allow to contact me back"
984
- msgstr "Envoyer les informations sur le site et autorisez un contact en retour"
985
-
986
- #: deactivation-form.php:132
987
- msgid "Cancel"
988
- msgstr "Annuler"
989
 
990
- #: deactivation-form.php:233
991
- msgid "Processing"
992
- msgstr "En cours"
 
 
993
 
994
- #: deactivation-form.php:262
995
- msgid "Submit & Deactivate"
 
 
996
  msgstr "Envoyer et désactiver"
997
 
998
- #: deactivation-form.php:277
999
  msgid "Please tell us the reason so we can improve it."
1000
- msgstr "Merci de nous en dire la raison afin que nous puission l&rsquo;améliorer."
1001
-
1002
- #: deactivation-form.php:345
1003
- msgid "Deactivate"
1004
- msgstr "Désactivé"
1005
 
1006
- #: deprecated.php:93
1007
  msgid "System Status"
1008
  msgstr "Etat du système"
1009
 
1010
- #: deprecated.php:204
1011
- msgid "Please, enter your license key"
1012
- msgstr "Merci de saisir votre clé de licence"
1013
-
1014
- #: deprecated.php:223
1015
- msgid "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"
1016
- msgstr "Si nécessaire vous pouvez vérifier que la clé de licence est correcte ou la saisir de nouveau dans le champ ci-dessous. Vous pouvez trouver votre clé de licence sur votre page personnelle (zone client) sur notre site web."
 
 
1017
 
1018
- #: deprecated.php:223
1019
- msgid "(your username is the email address specified during the purchase). If necessary, please submit \"Lost your password?\" request."
1020
- msgstr "(votre nom d&rsquo;utilisateur est l&rsquo;adresse e-mail que vous avez donnée lors de l&rsquo;achat de l&rsquo;extension). Si nécessaire, utilisez la fonction de demande de mot de passe perdu."
 
 
 
 
 
1021
 
1022
- #: deprecated.php:246
1023
  msgid "After that, you can activate it by entering your license key."
1024
- msgstr " Après vous pouvez activer cette extension en donnant votre clé de licence."
 
1025
 
1026
- #: deprecated.php:249 deprecated.php:691
1027
  msgid "License key can be found in the"
1028
  msgstr "La clé de licence peut être trouvée dans "
1029
 
1030
- #: deprecated.php:251 deprecated.php:693
1031
  msgid "(your username is the email address specified during the purchase)."
1032
- msgstr "(votre nom d&rsquo;utilisateur est l&rsquo;adresse e-mail que vous avez donnée lors de l&rsquo;achat de l&rsquo;extension)."
 
 
1033
 
1034
- #: deprecated.php:279
1035
- msgid "Congratulations! The Pro license of the plugin is activated successfully."
1036
- msgstr "Félicitations&nbsp;! La version PRO de cette extension a été activée avec succès."
 
 
 
1037
 
1038
- #: deprecated.php:281 deprecated.php:672
1039
  msgid "Please, go to"
1040
  msgstr "Merci d&rsquo;aller à"
1041
 
1042
- #: deprecated.php:281 deprecated.php:672
1043
  msgid "the setting page"
1044
  msgstr "Options supplémentaires"
1045
 
1046
- #: deprecated.php:282 deprecated.php:673
1047
- msgid "You will be redirected automatically in 5 seconds."
1048
- msgstr "Vous allez être redirigé automatiquement dans 5 secondes"
1049
-
1050
- #: deprecated.php:316
1051
- msgid "Check premium options on the plugin settings page!"
1052
- msgstr "Vérifier les options premium sur la page des paramètres de l&rsquo;extension&nbsp;!"
1053
-
1054
- #: deprecated.php:479
1055
  msgid "Restore all plugin settings to defaults"
1056
  msgstr "Remettre les valeurs par défaut des paramètres de l&rsquo;extension"
1057
 
1058
- #: deprecated.php:481
1059
  msgid "Restore settings"
1060
  msgstr "Remettre les paramètres"
1061
 
1062
- #: deprecated.php:550 deprecated.php:577
1063
- #, php-format
1064
- msgid "File %s edited successfully."
1065
- msgstr "Le fichier %s a été modifié avec succès."
1066
-
1067
- #: deprecated.php:552 deprecated.php:579
1068
- msgid "Not enough permissions to create or update the file"
1069
- msgstr "Pas assez de droits pour créer ou modifier le fichier"
1070
-
1071
- #: deprecated.php:582
1072
- msgid "Not enough permissions to create the file"
1073
- msgstr "Pas assez de droits pour créer le fichier"
1074
-
1075
- #: deprecated.php:626
1076
- msgid "Editing"
1077
- msgstr "Modifier"
1078
-
1079
- #: deprecated.php:670
1080
- msgid "Congratulations! Pro version of the plugin is installed and activated successfully."
1081
- msgstr "Félicitations&nbsp;! La version PRO de cette extension a été téléchargée et activée avec succès."
1082
 
1083
- #: deprecated.php:680
1084
  msgid "Show Pro features"
1085
  msgstr "Voir les fonctionnalités de la version PRO"
1086
 
1087
- #: deprecated.php:687
1088
  msgid "Enter your license key to install and activate"
1089
  msgstr "Saisir votre clé de licence pour installer et activer"
1090
 
1091
- #: deprecated.php:689
1092
  msgid "version of the plugin."
1093
  msgstr "version de l&rsquo;extension."
1094
 
1095
- #: product_list.php:7
1096
  msgid "Admin Tools"
1097
  msgstr "Outils d&rsquo;administration"
1098
 
1099
- #: product_list.php:8
1100
  msgid "Content"
1101
  msgstr "Contenu"
1102
 
1103
- #: product_list.php:9
1104
  msgid "eCommerce"
1105
  msgstr "eCommerce"
1106
 
1107
- #: product_list.php:10
1108
  msgid "Marketing"
1109
  msgstr "Marketing"
1110
 
1111
- #: product_list.php:11
1112
  msgid "Navigation"
1113
  msgstr "Navigation"
1114
 
1115
- #: product_list.php:12
1116
  msgid "Recommended"
1117
  msgstr "Recommandé"
1118
 
1119
- #: product_list.php:13
1120
  msgid "Security"
1121
  msgstr "Sécurité"
1122
 
1123
- #: product_list.php:14
1124
  msgid "SEO"
1125
  msgstr "SEO"
1126
 
1127
- #: product_list.php:15
1128
  msgid "SMM"
1129
  msgstr "SMM"
1130
 
1131
- #: product_list.php:22
 
 
 
 
1132
  msgid "Best secure captcha plugin to protect your WordPress forms."
1133
- msgstr "Extension de Captach meuilleure et plus sécurisée pour vos formulaires."
 
1134
 
1135
- #: product_list.php:32
1136
- msgid "Create your personal car rental/booking and reservation website."
1137
- msgstr "Créer votre site personnel de vente/location de voitures."
1138
 
1139
- #: product_list.php:42
1140
- msgid "Allow customers to reach you using secure contact form plugin any website must have."
1141
- msgstr "Permet à vos clients de vous joindre en utilisant un formulaire de contact sécurisé que tout site doit avoir."
 
 
 
 
1142
 
1143
- #: product_list.php:52
 
 
 
 
 
 
 
 
1144
  msgid "Add unlimited number of contact forms to WordPress website."
1145
  msgstr "Ajoute une nombre illimité de formulaires de contact."
1146
 
1147
- #: product_list.php:62
1148
  msgid "Save and manage Contact Form messages. Never lose important data."
1149
- msgstr "Enregistrer et gérer les messages issu du formulaire de contact. Permet de ne pas perdre des informations importantes."
 
 
1150
 
1151
- #: product_list.php:72
1152
  msgid "Add unlimited custom pages to WordPress admin dashboard."
1153
  msgstr "Ajouter un nombre illimté de pages dans l&rsquo;administration."
1154
 
1155
- #: product_list.php:79
1156
- msgid "Add custom fields to WordPress website search results."
1157
- msgstr "Ajouter des champs personalisés dans le résultats de la recherche."
1158
-
1159
- #: product_list.php:86
1160
- msgid "Add custom post types and taxonomies to WordPress website search results."
1161
- msgstr "Ajouter des types d&rsquo;articles personalisés et des taxonomies dans le résultat de la recherche."
1162
 
1163
- #: product_list.php:96
1164
  msgid "Add PayPal and 2CO donate buttons to receive charity payments."
1165
- msgstr "Ajouter des boutons de dons avec PayPal et 2CO pour recevoir des donations."
 
1166
 
1167
- #: product_list.php:103
1168
- msgid "Get latest error log messages to diagnose website problems. Define and fix issues faster."
1169
- msgstr "Obtenir les derniers messages d&rsquo;erreur pour diagnostiquer les problèmes du site. Permet de corriger plus rapidement."
 
 
 
 
1170
 
1171
- #: product_list.php:110
1172
- msgid "Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and widgets."
1173
- msgstr "Ajouter les boutons Suivre, Aimer et Partager pour FaceBook aux articles, pages et widgets."
 
 
 
 
1174
 
1175
- #: product_list.php:120
1176
- msgid "Add beautiful galleries, albums & images to your WordPress website in a few clicks."
 
 
1177
  msgstr "Ajouter des galeries, albums et images en quelques clics."
1178
 
1179
- #: product_list.php:130
1180
- msgid "Add Google +1, Share, Follow, Hangout buttons and profile badge to WordPress posts, pages and widgets."
1181
- msgstr "Ajouter les boutons Partager, Suivre, Particciper et le profile de Google +1 aux articles, pages et widgets."
1182
-
1183
- #: product_list.php:140
1184
- msgid "Stronger security solution which protects your WordPress website from hacks and unauthorized login attempts."
1185
- msgstr "Solution forte de sécurité qui protège votre site des attaques et des tentatives de connexions."
1186
 
1187
- #: product_list.php:150
1188
- msgid "Add Adsense ads to WordPress website pages, posts, custom posts, search results, categories, tags, and widgets."
1189
- msgstr "Ajouter les publicités Adsense aux pages, articles, types personalisés, résultats de recherche, catégories, tags, widgets."
 
 
 
 
1190
 
1191
- #: product_list.php:160
1192
  msgid "Add Google Analytics code to WordPress website and track basic stats."
1193
- msgstr "Ajouter le code Google Analytics et permet de suivre les statistiques basiques."
1194
-
1195
- #: product_list.php:170
1196
- msgid "Protect WordPress website forms from spam entries with Google Captcha (reCaptcha)."
 
 
 
 
 
 
1197
  msgstr "Protéger vos formulaires avec Google Captcha (reCaptcha)."
1198
 
1199
- #: product_list.php:180
1200
  msgid "Add customized Google maps to WordPress posts, pages and widgets."
1201
  msgstr "Ajouter des cartes de Google maps aux articles, pages et widgets."
1202
 
1203
- #: product_list.php:190
1204
- msgid "Generate and add XML sitemap to WordPress website. Help search engines index your blog."
1205
- msgstr "Générer et ajouter un fichier XML de sitemap. Aide les moteurs de recherche à parcourir votre site."
 
 
 
 
1206
 
1207
- #: product_list.php:200
1208
- msgid "Replace external WordPress website links with Google shortlinks and track click stats."
1209
- msgstr "Remplacer les liens externes dans votre site par des liens courts de Google et disposer de statistiques."
 
 
 
 
1210
 
1211
- #: product_list.php:207
1212
- msgid "Protect WordPress website – allow and deny access for certain IP addresses, hostnames, etc."
1213
- msgstr "Protéger votre site en autorisant ou interdissant certaines adresses IP, nom de machine, ..."
 
 
 
 
1214
 
1215
- #: product_list.php:217
1216
- msgid "Create your personal job board and listing WordPress website. Search jobs, submit CV/resumes, choose candidates."
1217
- msgstr "Créer votre site d&rsquo;offres d&rsquo;emploies. Rechercher des emplois, envoyer des CV/des candidatures."
 
 
 
 
1218
 
1219
- #: product_list.php:224
1220
- msgid "Protect WordPress website against brute force attacks. Limit rate of login attempts."
1221
- msgstr "Protéger le site contre les attaques de brute force. Limite la fréquence des tentatives de connexions."
 
 
 
 
1222
 
1223
- #: product_list.php:234
1224
- msgid "Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. 5 plugins included – profile, insider, etc."
1225
- msgstr "Ajouter les boutons partager et suivre de LinkedIn aux articles, pages et widgets. 5 extensions incluses (profile, insider, etc.)"
 
 
 
 
1226
 
1227
- #: product_list.php:244
1228
- msgid "Translate WordPress website content to other languages manually. Create multilingual pages, posts, widgets, menus, etc."
1229
- msgstr "Traduire le contenu du site dans d&rsquo;autres langues manuellement. Créer des pages, des articles, des widgets, des menus, etc dans plusieurs langues."
 
 
 
 
1230
 
1231
- #: product_list.php:254
1232
- msgid "Add customizable pagination to WordPress website. Split long content to multiple pages for better navigation."
1233
- msgstr "Ajouter une pagination presonalisée. Découper un contenu long en plusieurs pages pour une meuilleure navigation."
 
 
 
 
1234
 
1235
- #: product_list.php:264
1236
- msgid "Generate PDF files and print WordPress posts/pages. Customize document header/footer styles and appearance."
1237
- msgstr "Générer des fichiers PDF pour des pages ou des articles. Personaliser l&rsquo;en-tête/pied de page, les styles et l&rsquo;apparence."
 
 
 
 
1238
 
1239
- #: product_list.php:274
1240
- msgid "Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, Profile) to WordPress posts, pages and widgets."
1241
- msgstr "Ajouter les boutons Suivre, Epingler et le widget de profile (Epingle, Tableau de bord, profile) pour Pinterest aux articles, pages et widgets."
 
 
 
 
1242
 
1243
- #: product_list.php:284
1244
- msgid "Create your personal portfolio WordPress website. Manage and showcase past projects to get more clients."
1245
- msgstr "Créer votre site de portfolio. Gérer et présenter vos anciens projets pour acquérir de nouveaux clients."
 
 
 
 
1246
 
1247
- #: product_list.php:294
1248
  msgid "Export WordPress posts to CSV file format easily. Configure data order."
1249
- msgstr "Exporter vos articles dans un format CSV facilement. Configurer l&rsquo;ordre des données."
1250
-
1251
- #: product_list.php:301
1252
- msgid "Add extra fields to default WordPress user profile. The easiest way to create and manage additional custom values."
1253
- msgstr "Ajouter des champs personalisés au profil utilisateur. La façon la plus simple de créer et gérer des informations supplémentaires."
1254
-
1255
- #: product_list.php:308
1256
- msgid "Add and display HTML advertisement banner on WordPress website. Customize bar styles and appearance."
1257
- msgstr "Ajouter et afficher une bannière de publicité en HTML. Personaliser le style et l&rsquo;apparence de la barre."
1258
 
1259
- #: product_list.php:318
1260
- msgid "Add customizable quotes and tips blocks to WordPress posts, pages and widgets."
1261
- msgstr "Ajouter des blocs d&rsquo;avis et d&rsquo;astuces sur vos pages, articles et widgets."
 
 
 
 
1262
 
1263
- #: product_list.php:325
1264
- msgid "Add rating plugin to your WordPress website to receive feedback from your customers."
1265
- msgstr "Ajouter une notation pour avoir un retour de vos utilisateurs/clients."
 
 
 
 
1266
 
1267
  #: product_list.php:332
1268
- msgid "Create your personal real estate WordPress website. Sell, rent and buy properties. Add, search and browse listings easily."
1269
- msgstr "Créer votre site d&rsquo;annonces immobilières. Vendre, louer et acheter des biens. Recherche et catalogue facilement mis en place."
 
 
 
 
1270
 
1271
- #: product_list.php:342
1272
- msgid "Add related, featured, latest, and popular posts to your WordPress website. Connect your blog readers with a relevant content."
1273
- msgstr "Ajouter des informations sur les articles en relations, mis en avant, populaires. Fournisser à vos lecteurs un contenu passionant."
 
 
1274
 
1275
  #: product_list.php:349
1276
- msgid "Send bulk email messages to WordPress users. Custom templates, advanced settings and detailed reports."
1277
- msgstr "Envoyer des messages e-mail en masse à vos utilisateurs. Modèles personalisables, paramétrage avancé et reporting complet."
 
 
 
 
1278
 
1279
  #: product_list.php:359
1280
- msgid "The best responsive slider plugin for your WordPress website. Create beautifully animated slides just in a few clicks."
1281
- msgstr "Extension pour mettre en place des diaporamas responsive. Créer des diaporamas animés en quelques clics."
 
 
 
 
1282
 
1283
  #: product_list.php:366
1284
- msgid "Configure SMTP server to receive email messages from WordPress to Gmail, Yahoo, Hotmail and other services."
1285
- msgstr "Configurer un serveur SMTP pour envoyer des e-mails vers Gmail, Yahoo, Hotmail et d&rsquo;autres services."
 
 
 
 
1286
 
1287
- #: product_list.php:373
1288
- msgid "Add social media buttons and widgets to WordPress posts, pages and widgets. FB, Twitter, G+1, Pinterest, LinkedIn."
1289
- msgstr "Ajouter des boutons pour les réseaux sociaux FB, Twitter, G+1, Pinterest, LinkedIn aux articles, pages et widgets."
 
 
 
 
1290
 
1291
  #: product_list.php:383
1292
- msgid "Add social media login, registration, and commenting to your WordPress website."
1293
- msgstr "Ajouter la connection, l&rsquo;enregistrement et la rédaction de commentaires pour vos réseaux sociaux."
 
 
 
 
1294
 
1295
  #: product_list.php:390
1296
- msgid "Add email newsletter sign up form to WordPress posts, pages and widgets. Collect data and subscribe your users."
1297
- msgstr "Ajouter un formulaire d&rsquo;inscription à votre lettre d&rsquo;information sur vos pages, articles et widgets. Récolter les inscriptions et les données de vos utilisateurs."
 
 
 
 
 
 
 
 
1298
 
1299
  #: product_list.php:400
1300
- msgid "Add testimonials and feedbacks from your customers to WordPress website posts, pages, and widgets."
1301
- msgstr "Ajouter des témoignages et des retours de vos clients aux articles, pages et widgets."
 
 
 
 
1302
 
1303
  #: product_list.php:407
1304
- msgid "Best timesheet plugin for WordPress. Track employee time, streamline attendance and generate reports."
1305
- msgstr "La meuilleure extension de suivi du temps. Suiver le temps de vos employés, le temps de présence et créer des rapports."
 
 
 
 
 
1306
 
1307
  #: product_list.php:417
1308
- msgid "Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts and pages."
1309
- msgstr "Ajouter les boutons Suivre, Tweet, Hastag pour Twitter aux articles, pages et widgets."
 
 
 
 
1310
 
1311
- #: product_list.php:427
1312
- msgid "Automatically check and update WordPress website core with all installed plugins and themes to the latest versions."
1313
- msgstr "Mettre à jour automatiquement votre site pour WordPress, les extensions et les thèmes."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1314
 
1315
- #: product_list.php:437
1316
- msgid "Powerful user role management plugin for WordPress website. Create, edit, copy, and delete user roles."
1317
- msgstr "Gestion des droits des utilisateurs. Créer, modifier et supprimer des droits utilisateurs."
 
 
 
 
1318
 
1319
- #: product_list.php:447
1320
- msgid "Display live count of online visitors who are currently browsing your WordPress website."
 
 
1321
  msgstr "Afficher en direct le compteur des visiteurs sur votre site."
1322
 
1323
- #: product_list.php:457
1324
- msgid "Backup and export Zendesk Help Center content automatically to your WordPress website database."
1325
- msgstr "Sauvegarder et exporter le contenu de votre Zendesk Help Center vers votre site."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2021-02-15 10:54+0200\n"
6
+ "PO-Revision-Date: 2021-02-15 10:54+0200\n"
7
  "Last-Translator: Luc Capronnier <lcapronnier@yahoo.com>\n"
8
  "Language-Team: Luc Capronnier <lcapronnier@yahoo.com>\n"
9
+ "Language: fr_FR\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
 
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "Plural-Forms: nplurals=2;plural=n>2;\n"
17
+ "X-Generator: Poedit 2.4.2\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: bws_functions.php:73 bws_functions.php:239
21
  msgid "requires"
22
  msgstr "obligatoire"
23
 
24
  #: bws_functions.php:75
25
+ msgid ""
26
+ "or higher, that is why it has been deactivated! Please upgrade WordPress and "
27
+ "try again."
28
+ msgstr ""
29
+ "ou supérieure, c&rsquo;est pourquoi il a été désactivé&nbsp;! Merci de faire "
30
+ "la mise à jour de WordPress puis de ré-essayer."
31
 
32
  #: bws_functions.php:76
33
  msgid "Back to the WordPress"
54
  msgid "Need help?"
55
  msgstr "Besoin d&rsquo;aide&nbsp;?"
56
 
57
+ #: bws_functions.php:104 bws_functions.php:949 class-bws-settings.php:1082
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&rsquo;extension"
64
 
65
+ #: bws_functions.php:108 bws_menu.php:529
66
  msgid "Donate"
67
  msgstr "Don"
68
 
71
  msgstr "AVERTISSEMENT&nbsp;: Notification d&rsquo;utilisation abusive"
72
 
73
  #: bws_functions.php:128
74
+ msgid ""
75
+ "You can use one license of the Pro plugin for one domain only. Please check "
76
+ "and edit your license or domain if necessary using your personal Client "
77
+ "Area. We strongly recommend you to solve the problem within 24 hours, "
78
+ "otherwise the Pro plugin will be deactivated."
79
+ msgstr ""
80
+ "Vous ne pouvez utilisez qu&rsquo;une licence de la version Pro de l&rsquo;"
81
+ "extension pour un seul domaine. Merci de vérifier et de modifier votre "
82
+ "licence ou votre domaine si nécessaire en utilisant votre zone client. Nous "
83
+ "vous recommandons de résoudre ce problème dans les 24 heures, sinon l&rsquo;"
84
+ "extension sera rendue inactive."
85
+
86
+ #: bws_functions.php:128 bws_functions.php:208 bws_menu.php:600
87
+ #: class-bws-settings.php:179
88
  msgid "Learn More"
89
  msgstr "En savoir plus"
90
 
91
  #: bws_functions.php:145
92
+ msgid ""
93
+ "Notice: Your Pro Trial license has expired. To continue using the plugin, "
94
+ "you should buy a Pro license"
95
+ msgstr ""
96
+ "Information&nbsp;:Votre licence d&rsquo;évaluation est terminée. Pour "
97
+ "continuer à utiliser cette extension, vous devez acheter une licence PRO."
98
 
99
  #: bws_functions.php:147
100
+ msgid ""
101
+ "Your license has expired. To continue getting top-priority support and "
102
+ "plugin updates, you should extend it."
103
+ msgstr ""
104
+ "Votre licence est terminée. Pour continuer à disposer du support rapide et "
105
+ "des mises à jour de l&rsquo;extension vous devez la renouveler."
106
 
107
+ #: bws_functions.php:147 bws_functions.php:226
108
  msgid "Learn more"
109
  msgstr "En savoir plus"
110
 
111
  #: bws_functions.php:165
112
  #, php-format
113
  msgid "Notice: You are using the Pro Trial license of %s plugin."
114
+ msgstr ""
115
+ "Avertissement&nbsp;: vous utilisez la version d&rsquo;évaluation de l&rsquo;"
116
+ "extension %s."
117
 
118
  #: bws_functions.php:167
119
  msgid "Notice: You are using the Pro Trial license of plugin."
120
+ msgstr ""
121
+ "Avertissement&nbsp;: vous utilisez la version d&rsquo;évaluation de l&rsquo;"
122
+ "extension."
123
 
124
  #: bws_functions.php:170
125
  msgid "The Pro Trial license will expire on"
126
  msgstr "La licence PRO d&rsquo;évaluation expirera le"
127
 
128
+ #: bws_functions.php:199 bws_functions.php:222 bws_functions.php:266
129
+ #: bws_functions.php:276 bws_functions.php:475
130
+ msgid "Close notice"
131
+ msgstr "Effacer l&rsquo;avertissement"
132
+
133
+ #: bws_functions.php:204
134
+ msgid "It’s time to upgrade your"
135
+ msgstr "C&rsquo;est le moment de mettre à jour votre "
136
+
137
+ #: bws_functions.php:204
138
+ msgid "to"
139
+ msgstr "à"
140
+
141
+ #: bws_functions.php:204
142
+ msgid "version!"
143
+ msgstr "version&nbsp;!"
144
+
145
+ #: bws_functions.php:205
146
+ msgid "Extend standard plugin functionality with new great options."
147
+ msgstr ""
148
+ "Étend les fonctionnalités classiques de l&rsquo;extension avec des nouvelles "
149
+ "options."
150
+
151
+ #: bws_functions.php:226
152
+ #, php-format
153
+ msgid ""
154
+ "Your license key for %s expires on %s and you won't be granted TOP-PRIORITY "
155
+ "SUPPORT or UPDATES."
156
+ msgstr ""
157
+ "Votre clé de licence pour %s est terminée le %s et vous ne disposerez plus "
158
+ "du support rapide et des mises à jour."
159
+
160
+ #: bws_functions.php:241
161
+ msgid ""
162
+ "or higher! We do not guarantee that our plugin will work correctly. Please "
163
+ "upgrade to WordPress latest version."
164
+ msgstr ""
165
+ "ou plus&nbsp;! Nous ne garantissons pas que notre extension fonctionne "
166
+ "correctement. Merci de mettre à jour WordPress avec la dernière version."
167
 
168
+ #: bws_functions.php:256
169
  #, php-format
170
  msgid "Thank you for installing %s plugin!"
171
  msgstr "Merci d&rsquo;avoir installé l&rsquo;extension %s&nbsp;!"
172
 
173
+ #: bws_functions.php:258
174
  msgid "Let's get started"
175
  msgstr "Démarrer"
176
 
177
+ #: bws_functions.php:259 bws_functions.php:292 bws_menu.php:533
178
+ #: bws_menu.php:535
179
  msgid "Settings"
180
  msgstr "Paramètres"
181
 
182
+ #: bws_functions.php:261 bws_menu.php:327 class-bws-settings.php:809
183
+ #: class-bws-settings.php:1084 class-bws-settings.php:1094 deprecated.php:234
184
  msgid "or"
185
  msgstr "ou"
186
 
187
+ #: bws_functions.php:262 bws_functions.php:294
188
  msgid "Add New"
189
  msgstr "Ajouter"
190
 
191
+ #: bws_functions.php:281
 
 
 
 
 
192
  msgid "Thank you for installing plugins by BestWebSoft!"
193
  msgstr "Merci d&rsquo;avoir installé des extensions de BestWebSoft&nbsp;!"
194
 
195
+ #: bws_functions.php:283
196
  msgid "More Details"
197
  msgstr "Plus de détails"
198
 
199
+ #: bws_functions.php:284
200
  msgid "Less Details"
201
  msgstr "Moins de détails"
202
 
203
+ #: bws_functions.php:312
204
  msgid "Deprecated function(-s) is used on the site here:"
205
  msgstr "Une ou des fonction(s) obsolètes sont utilisées sur ce site ici&nbsp;:"
206
 
207
+ #: bws_functions.php:326
208
+ msgid ""
209
+ "This function(-s) will be removed over time. Please update the product(-s)."
210
+ msgstr ""
211
+ "Ces fonctions seront supprimées rapidement. Merci de mettre à jour vos "
212
+ "produits."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
213
 
214
+ #: bws_functions.php:470
215
  #, php-format
216
  msgid "Thank you for choosing %s plugin!"
217
  msgstr "Merci d&rsquo;avoir choisi l&rsquo;extension %s&nbsp;!"
218
 
219
+ #: bws_functions.php:471
220
+ msgid ""
221
+ "If you have a feature, suggestion or idea you'd like to see in the plugin, "
222
+ "we'd love to hear about it!"
223
+ msgstr ""
224
+ "Si vous avez une fonctionnalité, une suggestion ou une idée que vous "
225
+ "souhaitez pour cette extension, nous serons ravis d&rsquo;en parler avec "
226
+ "vous&nbsp;!"
227
 
228
+ #: bws_functions.php:472
229
  msgid "Suggest a Feature"
230
  msgstr "Proposer une fonctionnalité"
231
 
232
+ #: bws_functions.php:488 class-bws-settings.php:580 class-bws-settings.php:583
233
+ #: class-bws-settings.php:635 class-bws-settings.php:638
234
  msgid "Notice"
235
  msgstr "Avertissement"
236
 
237
+ #: bws_functions.php:488
238
  msgid "The plugin's settings have been changed."
239
  msgstr "Les paramètres de l&rsquo;extension ont été modifiés."
240
 
241
+ #: bws_functions.php:489 class-bws-settings.php:222 class-bws-settings.php:242
 
242
  msgid "Save Changes"
243
  msgstr "Enregistrer les modifications"
244
 
245
+ #: bws_functions.php:503
246
+ msgid ""
247
+ "You can always look at premium options by checking the \"Pro Options\" in "
248
+ "the \"Misc\" tab."
249
+ msgstr ""
250
+ "Vous pouvez toujours consulter les options premium en cliquant sur le lien "
251
+ "\"Voir les fonctionnalités de la version PRO\" dans l&rsquo;onglet divers."
252
 
253
+ #: bws_functions.php:679
254
  msgid "Add shortcode"
255
  msgstr "Ajouter le code court"
256
 
257
+ #: bws_functions.php:679
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:765
262
  msgid "Close"
263
  msgstr "Fermer"
264
 
265
+ #: bws_functions.php:851
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&nbsp;?"
268
 
269
+ #: bws_functions.php:854
270
  msgid "Yes, restore all settings"
271
  msgstr "Oui, remettre les valeurs par défaut"
272
 
273
+ #: bws_functions.php:855
274
  msgid "No, go back to the settings page"
275
  msgstr "Non, retourner à la page des paramètres"
276
 
277
+ #: bws_functions.php:897
278
  msgid "Plugin"
279
  msgstr "Extension"
280
 
281
+ #: bws_functions.php:906
282
  msgid "Shortcode settings"
283
  msgstr "Paramètres du code court"
284
 
285
+ #: bws_functions.php:911
286
  msgid "The shortcode will be inserted"
287
  msgstr "Le code court sera inséré"
288
 
289
+ #: bws_functions.php:954
290
  msgid "FAQ"
291
  msgstr "FAQ"
292
 
293
+ #: bws_functions.php:960
294
  msgid "For more information:"
295
  msgstr "Pour plus d&rsquo;informations&nbsp;:"
296
 
297
+ #: bws_functions.php:961 bws_menu.php:401 class-bws-settings.php:776
298
  msgid "Documentation"
299
  msgstr "Documentation"
300
 
301
+ #: bws_functions.php:962 bws_menu.php:403 class-bws-settings.php:778
302
  msgid "Video Instructions"
303
  msgstr "Vidéo explicative"
304
 
305
+ #: bws_functions.php:963
306
  msgid "Submit a Request"
307
  msgstr "Soumettre une requête"
308
 
309
+ #: bws_menu.php:101 class-bws-settings.php:860
310
  msgid "Wrong license key"
311
  msgstr "Clé de licence incorrecte"
312
 
313
+ #: bws_menu.php:122 class-bws-settings.php:887 class-bws-settings.php:966
314
+ #: class-bws-settings.php:1004
315
+ msgid ""
316
+ "Something went wrong. Please try again later. If the error appears again, "
317
+ "please contact us"
318
+ msgstr ""
319
+ "Il est survenu une erreur. Essayer de nouveau. Si l&rsquo;erreur se produit "
320
+ "de nouveau, merci de contacter <a href=http://support.bestwebsoft."
321
+ "com>BestWebSoft</a>. Nous sommes désolés pour le désagrément."
322
 
323
+ #: bws_menu.php:122 class-bws-settings.php:887 class-bws-settings.php:966
324
+ #: class-bws-settings.php:1004
 
325
  msgid "We are sorry for inconvenience."
326
  msgstr "Nous sommes désolés pour le désagrément."
327
 
328
+ #: bws_menu.php:129 class-bws-settings.php:893 class-bws-settings.php:1010
 
329
  msgid "Wrong license key."
330
  msgstr "Clé de licence incorrecte."
331
 
332
+ #: bws_menu.php:131
333
+ msgid ""
334
+ "This license key is bound to another site. Change it via personal Client "
335
+ "Area."
336
+ msgstr ""
337
+ "La clé de licence correspond à un autre site. Modifier là au travers de "
338
+ "votre espace client."
339
 
340
+ #: bws_menu.php:131
341
  msgid "Log in"
342
  msgstr "Connexion"
343
 
344
+ #: bws_menu.php:133 bws_menu.php:333 deprecated.php:157
345
  msgid "Unfortunately, you have exceeded the number of available tries per day."
346
+ msgstr ""
347
+ "Désoler mais vous avez dépassé le nombre d&rsquo;essai de la journée. Merci "
348
+ "de télécharger l&rsquo;extension manuellement."
349
 
350
+ #: bws_menu.php:135
351
  #, php-format
352
+ msgid ""
353
+ "Unfortunately, Your license has expired. To continue getting top-priority "
354
+ "support and plugin updates, you should extend it in your %s"
355
+ msgstr ""
356
+ "Désoler, votre licence est terminée. Pour continuer à disposer du support "
357
+ "rapide et des mises à jour de l&rsquo;extension vous devez la renouveler "
358
+ "dans votre %s"
359
 
360
+ #: bws_menu.php:137 class-bws-settings.php:1018
361
+ msgid ""
362
+ "Unfortunately, the Pro licence was already installed to this domain. The Pro "
363
+ "Trial license can be installed only once."
364
+ msgstr ""
365
+ "Une licence a déjà été installée sur ce domaine. La licence d&rsquo;"
366
+ "évaluation ne peut-être installée qu&rsquo;une seule fois."
367
 
368
+ #: bws_menu.php:143 class-bws-settings.php:908
369
  msgid "The license key is valid."
370
  msgstr "La clé de licence est valide."
371
 
372
+ #: bws_menu.php:145 class-bws-settings.php:912
373
  msgid "Your license will expire on"
374
  msgstr "Votre licence se termine le "
375
 
376
+ #: bws_menu.php:147
377
  msgid "Congratulations! Pro Membership license is activated successfully."
378
+ msgstr ""
379
+ "Félicitations&nbsp;! La version PRO de cette extension a été activée avec "
380
+ "succès."
381
 
382
+ #: bws_menu.php:154 class-bws-settings.php:1028
383
+ msgid ""
384
+ "Something went wrong. Try again later or upload the plugin manually. We are "
385
+ "sorry for inconvenience."
386
+ msgstr ""
387
+ "Il est survenu une erreur. Essayer de nouveau ou bien télécharger l&rsquo;"
388
+ "extension manuellement.Nous sommes désolés pour le désagrément."
389
 
390
+ #: bws_menu.php:164
391
  msgid "Please enter your license key."
392
  msgstr "Merci de saisir votre clé de licence."
393
 
394
+ #: bws_menu.php:175
395
  msgid "Not set"
396
  msgstr "Not set"
397
 
398
+ #: bws_menu.php:177
399
  msgid "On"
400
  msgstr "On"
401
 
402
+ #: bws_menu.php:177
403
  msgid "Off"
404
  msgstr "Off"
405
 
406
+ #: bws_menu.php:178 bws_menu.php:179 bws_menu.php:180 bws_menu.php:181
407
+ #: bws_menu.php:182 bws_menu.php:183 bws_menu.php:192
408
  msgid "N/A"
409
  msgstr "N/A"
410
 
411
+ #: bws_menu.php:183
412
+ #, fuzzy
413
+ #| msgid " Mb"
414
+ msgid "Mb"
415
  msgstr " Mb"
416
 
417
+ #: bws_menu.php:184 bws_menu.php:185 bws_menu.php:186 bws_menu.php:190
418
  msgid "Yes"
419
  msgstr "Yes"
420
 
421
+ #: bws_menu.php:184 bws_menu.php:185 bws_menu.php:186 bws_menu.php:190
422
  msgid "No"
423
  msgstr "No"
424
 
425
+ #: bws_menu.php:197
426
  msgid "WordPress Environment"
427
  msgstr "Environnent WordPress"
428
 
429
+ #: bws_menu.php:199
430
  msgid "Home URL"
431
  msgstr "Home URL"
432
 
433
+ #: bws_menu.php:200
434
  msgid "Website URL"
435
  msgstr "Site URL"
436
 
437
+ #: bws_menu.php:201
438
  msgid "WP Version"
439
  msgstr "WP Version"
440
 
441
+ #: bws_menu.php:202
442
  msgid "WP Multisite"
443
  msgstr "WP Multisite"
444
 
445
+ #: bws_menu.php:203
446
  msgid "WP Memory Limit"
447
  msgstr "WP Memory Limit"
448
 
449
+ #: bws_menu.php:204
450
  msgid "Active Theme"
451
  msgstr "Active Theme"
452
 
453
+ #: bws_menu.php:204 bws_menu.php:249 bws_menu.php:252
454
  #, php-format
455
  msgid "by %s"
456
  msgstr "par %s"
457
 
458
+ #: bws_menu.php:208
459
  msgid "Server Environment"
460
  msgstr "Environnent serveur"
461
 
462
+ #: bws_menu.php:210
463
  msgid "Operating System"
464
  msgstr "Operating System"
465
 
466
+ #: bws_menu.php:211
467
  msgid "Server"
468
  msgstr "Server"
469
 
470
+ #: bws_menu.php:212
471
  msgid "PHP Version"
472
  msgstr "PHP Version"
473
 
474
+ #: bws_menu.php:213
475
  msgid "PHP Allow URL fopen"
476
  msgstr "PHP Allow URL fopen"
477
 
478
+ #: bws_menu.php:214
479
  msgid "PHP Memory Limit"
480
  msgstr "PHP Memory Limit"
481
 
482
+ #: bws_menu.php:215
483
  msgid "Memory Usage"
484
  msgstr "Memory usage"
485
 
486
+ #: bws_menu.php:216
487
  msgid "PHP Max Upload Size"
488
  msgstr "PHP Max Upload Size"
489
 
490
+ #: bws_menu.php:217
491
  msgid "PHP Max Post Size"
492
  msgstr "PHP Max Post Size"
493
 
494
+ #: bws_menu.php:218
495
  msgid "PHP Max Script Execute Time"
496
  msgstr "PHP Max Script Execute Time"
497
 
498
+ #: bws_menu.php:219
499
  msgid "PHP Exif support"
500
  msgstr "PHP Exif support"
501
 
502
+ #: bws_menu.php:220
503
  msgid "PHP IPTC support"
504
  msgstr "PHP IPTC support"
505
 
506
+ #: bws_menu.php:221
507
  msgid "PHP XML support"
508
  msgstr "PHP XML support"
509
 
510
+ #: bws_menu.php:227
511
  msgid "Database"
512
  msgstr "Base de données"
513
 
514
+ #: bws_menu.php:229
515
  msgid "WP DB version"
516
  msgstr "WordPress DB Version"
517
 
518
+ #: bws_menu.php:230
519
  msgid "MySQL version"
520
  msgstr "MYSQL Version"
521
 
522
+ #: bws_menu.php:231
523
  msgid "SQL Mode"
524
  msgstr "SQL Mode"
525
 
526
+ #: bws_menu.php:235
527
  msgid "Active Plugins"
528
  msgstr "Extensions actives"
529
 
530
+ #: bws_menu.php:240
531
  msgid "Inactive Plugins"
532
  msgstr "Extensions inactives"
533
 
534
+ #: bws_menu.php:261
535
  msgid "Please enter a valid email address."
536
  msgstr "Merci de saisir une adresse e-mail valide."
537
 
538
+ #: bws_menu.php:263
539
  #, php-format
540
  msgid "Email with system info is sent to %s."
541
  msgstr "Le courriel avec les informations système est envoyé à %s."
542
 
543
+ #: bws_menu.php:267
544
  msgid "Thank you for contacting us."
545
  msgstr "Merci de nous avoir contacté."
546
 
547
+ #: bws_menu.php:290
548
  msgid "Sorry, email message could not be delivered."
549
  msgstr "Désolé, votre e-mail n&rsquo;a pas pu être envoyé."
550
 
551
+ #: bws_menu.php:306 bws_menu.php:310 bws_menu.php:359 deprecated.php:26
552
  msgid "Plugins"
553
  msgstr "Extensions"
554
 
555
+ #: bws_menu.php:307 bws_menu.php:311 bws_menu.php:587 deprecated.php:27
556
  msgid "Themes"
557
  msgstr "Thèmes"
558
 
559
+ #: bws_menu.php:308 bws_menu.php:312 bws_menu.php:617
560
  msgid "System status"
561
  msgstr "Etat du système"
562
 
563
+ #: bws_menu.php:316
564
  msgid "Support"
565
  msgstr "Support"
566
 
567
+ #: bws_menu.php:317
568
  msgid "Manage purchased licenses & subscriptions"
569
  msgstr "Gérer les licences et les inscriptions"
570
 
571
+ #: bws_menu.php:325
572
  #, php-format
573
  msgid "Get Access to %s+ Premium Plugins"
574
  msgstr "Accéder à plus de %s extensions premiums"
575
 
576
+ #: bws_menu.php:327
577
  msgid "Subscribe to Pro Membership"
578
  msgstr "Souscrire une adhésion PRO"
579
 
580
+ #: bws_menu.php:335 bws_menu.php:346 class-bws-settings.php:822
581
+ #: deprecated.php:123
582
  msgid "Check license key"
583
  msgstr "Vérifier la clé de licence"
584
 
585
+ #: bws_menu.php:338
586
  msgid "Enter your license key"
587
  msgstr "Merci de saisir votre clé de licence"
588
 
589
+ #: bws_menu.php:344 bws_menu.php:539 bws_menu.php:548
590
+ #: class-bws-settings.php:801 deprecated.php:155 deprecated.php:163
591
+ #: deprecated.php:240 deprecated.php:249
592
  msgid "Activate"
593
  msgstr "Activé"
594
 
595
+ #: bws_menu.php:360
596
  msgid "Upload Plugin"
597
  msgstr "Charger l&rsquo;extension"
598
 
599
+ #: bws_menu.php:364
600
  #, php-format
601
+ msgid ""
602
+ "The plugin generated %d characters of <strong>unexpected output</strong> "
603
+ "during activation. If you notice &#8220;headers already sent&#8221; "
604
+ "messages, problems with syndication feeds or other issues, try deactivating "
605
+ "or removing this plugin."
606
+ msgstr ""
607
+ "Cette extension a produit %d caractères <strong>inattendus</strong> durant "
608
+ "l&rsquo;activation. Si vous constatez le message &#8220;headers already "
609
+ "sent&#8221;, des problèmes avec les flux de syndication ou autres, essayez "
610
+ "de désactiver l&rsquo;extension ou supprimer l&rsquo;extension."
611
 
612
+ #: bws_menu.php:366
613
+ msgid ""
614
+ "Plugin could not be activated because it triggered a <strong>fatal error</"
615
+ "strong>."
616
+ msgstr ""
617
+ "L&rsquo;extension ne peut pas être activée car une <strong>erreur fatale</"
618
+ "strong> a été détectée."
619
 
620
+ #: bws_menu.php:369
621
  msgid "Plugin <strong>activated</strong>."
622
  msgstr "Extension <strong>activée</strong>."
623
 
624
+ #: bws_menu.php:383
625
+ #, fuzzy
626
+ #| msgid "Upload Plugin"
627
+ msgid "Download Pro Plugin"
628
+ msgstr "Charger l&rsquo;extension"
629
 
630
+ #: bws_menu.php:385 class-bws-settings.php:759
631
+ msgid "Your Pro plugin is ready"
632
+ msgstr ""
633
 
634
+ #: bws_menu.php:387 class-bws-settings.php:761
635
+ msgid "Your plugin has been zipped, and now is ready to download."
636
+ msgstr ""
 
637
 
638
+ #: bws_menu.php:390 class-bws-settings.php:764
639
+ msgid "Download Now"
640
+ msgstr ""
641
 
642
+ #: bws_menu.php:394 class-bws-settings.php:768
643
+ #, fuzzy
644
+ #| msgid "Installing the plugin"
645
+ msgid "Need help installing the plugin?"
646
  msgstr "Installer l&rsquo;extension"
647
 
648
+ #: bws_menu.php:396 class-bws-settings.php:770
649
+ msgid "How to install WordPress plugin from your admin Dashboard (ZIP archive)"
650
+ msgstr ""
651
 
652
+ #: bws_menu.php:399 class-bws-settings.php:774
653
+ #, fuzzy
654
+ #| msgid "Let's get started"
655
+ msgid "Get Started"
656
+ msgstr "Démarrer"
657
 
658
+ #: bws_menu.php:405 class-bws-settings.php:780
659
+ msgid "Knowledge Base"
660
+ msgstr ""
 
661
 
662
+ #: bws_menu.php:408
663
+ msgid "Licenses & Domains"
664
+ msgstr ""
665
 
666
+ #: bws_menu.php:411
667
+ #, fuzzy
668
+ #| msgid "Login to Client Area"
669
+ msgid "Client Area"
670
+ msgstr "Se connecter à l&rsquo;espace client"
671
 
672
+ #: bws_menu.php:413
673
  msgid "Return to BestWebSoft Panel"
674
  msgstr "Retourner à l&rsquo;administration BestWebSoft"
675
 
676
+ #: bws_menu.php:420 bws_menu.php:440 bws_menu.php:569
677
  msgid "All"
678
  msgstr "Tous"
679
 
680
+ #: bws_menu.php:423 bws_menu.php:606
681
  msgid "Installed"
682
  msgstr "Installé"
683
 
684
+ #: bws_menu.php:426
685
  msgid "Not Installed"
686
  msgstr "Non installé"
687
 
688
+ #: bws_menu.php:433
689
  msgid "Filter results"
690
  msgstr "Filtrer les résultats"
691
 
692
+ #: bws_menu.php:436 bws_menu.php:565
693
  msgid "Category"
694
  msgstr "Catégorie"
695
 
696
+ #: bws_menu.php:500
697
  msgid "Not installed"
698
  msgstr "Non installé"
699
 
700
+ #: bws_menu.php:504
701
  msgid "Renew to get updates"
702
  msgstr "Se réabonner pour avoir les mises à jour"
703
 
704
+ #: bws_menu.php:507
705
  #, php-format
706
  msgid "Update to v %s"
707
  msgstr "Mettre à jour avec la version %s"
708
 
709
+ #: bws_menu.php:519 bws_menu.php:542
710
+ msgid "Get Pro"
711
+ msgstr ""
712
 
713
+ #: bws_menu.php:525 class-bws-settings.php:192 class-bws-settings.php:1091
714
  msgid "Upgrade to Pro"
715
  msgstr "Passer à la version PRO"
716
 
717
+ #: bws_menu.php:539 bws_menu.php:548
718
  msgid "Activate this plugin"
719
  msgstr "Activer cette extension"
720
 
721
+ #: bws_menu.php:551
722
  msgid "Install this plugin"
723
  msgstr "Installer cette extension"
724
 
725
+ #: bws_menu.php:551
726
+ msgid "Install Now"
727
+ msgstr "Installer maintenant"
728
+
729
+ #: bws_menu.php:560
730
  msgid "Nothing found. Try another criteria."
731
  msgstr "Pas de réponse. Essayer d&rsquo;autres critères."
732
 
733
+ #: bws_menu.php:597
734
  #, php-format
735
  msgid "By %s"
736
  msgstr "Par %s"
737
 
738
+ #: bws_menu.php:604
739
  msgid "Already Installed"
740
  msgstr "Déjà installé"
741
 
742
+ #: bws_menu.php:614
743
  msgid "Browse More WordPress Themes"
744
  msgstr "Parcourir les thèmes gratuits pour WordPress"
745
 
746
+ #: bws_menu.php:623
747
  msgid "Send to support"
748
  msgstr "Envoyé au support"
749
 
750
+ #: bws_menu.php:630
751
  msgid "Send to custom email &#187;"
752
  msgstr "Envoyer un e-mail spécifique &#187;"
753
 
754
+ #: class-bws-settings.php:167
755
  msgid "Information"
756
  msgstr "Information"
757
 
758
+ #: class-bws-settings.php:179
759
  msgid "Inactive"
760
  msgstr "Inactive"
761
 
762
+ #: class-bws-settings.php:187
763
  msgid "Expired"
764
  msgstr "Expiré"
765
 
766
+ #: class-bws-settings.php:190
767
  #, php-format
768
  msgid "%s day(-s) left"
769
  msgstr "%s jour(s) restant"
770
 
771
+ #: class-bws-settings.php:196
772
  #, php-format
773
  msgid "Expired on %s"
774
  msgstr "Terminer le %s"
775
 
776
+ #: class-bws-settings.php:196
777
  msgid "Renew Now"
778
  msgstr "Renouveler maintenant"
779
 
780
+ #: class-bws-settings.php:198
781
  msgid "Active"
782
  msgstr "Activé"
783
 
784
+ #: class-bws-settings.php:203
785
  msgid "License"
786
  msgstr "Licence"
787
 
788
+ #: class-bws-settings.php:206
789
  msgid "Status"
790
  msgstr "Etat"
791
 
792
+ #: class-bws-settings.php:210
793
  msgid "Version"
794
  msgstr "Version"
795
 
796
+ #: class-bws-settings.php:323
797
  msgid "All plugin settings were restored."
798
+ msgstr ""
799
+ "Les paramètres de l&rsquo;extension ont été remis aux valeurs d&rsquo;"
800
+ "origine."
801
 
802
+ #: class-bws-settings.php:463
803
  msgid "Custom Code"
804
  msgstr "Code personnalisé"
805
 
806
+ #: class-bws-settings.php:467
807
  msgid "You do not have sufficient permissions to edit plugins for this site."
808
+ msgstr ""
809
+ "Vous n&rsquo;avez pas assez de droits pour modifier l&rsquo;extension pour "
810
+ "ce site."
811
 
812
+ #: class-bws-settings.php:472
813
  msgid "These styles will be added to the header on all pages of your site."
814
+ msgstr ""
815
+ "Ces styles seront ajoutés aux entêtes sur tous les pages de votre site."
816
 
817
+ #: class-bws-settings.php:475
818
  #, php-format
819
+ msgid ""
820
+ "This PHP code will be hooked to the %s action and will be printed on front "
821
+ "end only."
822
+ msgstr ""
823
+ "Ce code PHP sera rattaché à l&rsquo;action %s et sera affiché uniquement sur "
824
+ "la partie publique."
825
 
826
+ #: class-bws-settings.php:478
827
  msgid "These code will be added to the header on all pages of your site."
828
  msgstr "Ce code sera ajouté aux entêtes sur tous les pages de votre site."
829
 
830
+ #: class-bws-settings.php:486
831
  #, php-format
832
+ msgid ""
833
+ "You need to make this files writable before you can save your changes. See "
834
+ "%s the Codex %s for more information."
835
+ msgstr ""
836
+ "Vous devez rendre ce fichier modifiable avant de pouvoir enregistrer vos "
837
+ "modifications. Regarder %s du Codex %s pour plus d&rsquo;informations."
838
 
839
+ #: class-bws-settings.php:496
840
  msgid "Browsing"
841
  msgstr "Parcourir"
842
 
843
+ #: class-bws-settings.php:501
844
  #, php-format
845
  msgid "Activate custom %s code."
846
  msgstr "Activer le code personnalisé %s."
847
 
848
+ #: class-bws-settings.php:509
849
  #, php-format
850
  msgid "Learn more about %s"
851
  msgstr "En savoir plus sur %s"
852
 
853
+ #: class-bws-settings.php:571
854
  msgid "Miscellaneous Settings"
855
  msgstr "Paramètres divers"
856
 
857
+ #: class-bws-settings.php:580 class-bws-settings.php:635
858
  #, php-format
859
+ msgid ""
860
+ "It is prohibited to change %s settings on this site in the %s network "
861
+ "settings."
862
+ msgstr ""
863
+ "Il est interdit de changer le paramètre %s sur ce site dans les paramètres "
864
+ "%s du réseau."
865
 
866
+ #: class-bws-settings.php:583 class-bws-settings.php:638
867
  #, php-format
868
+ msgid ""
869
+ "It is prohibited to view %s settings on this site in the %s network settings."
870
+ msgstr ""
871
+ "Il est interdit de voir le paramètre %s sur ce site dans les paramètres %s "
872
+ "du réseau."
873
 
874
+ #: class-bws-settings.php:592
875
  msgid "Pro Options"
876
  msgstr "Options Pro"
877
 
878
+ #: class-bws-settings.php:596
879
  msgid "Enable to display plugin Pro options."
880
  msgstr "Activer pour voir les options PRO de l&rsquo;extension."
881
 
882
+ #: class-bws-settings.php:602
883
  msgid "Track Usage"
884
  msgstr "Suivi de l&rsquo;utilisation"
885
 
886
+ #: class-bws-settings.php:606
887
+ msgid ""
888
+ "Enable to allow tracking plugin usage anonymously in order to make it better."
889
+ msgstr ""
890
+ "Activer pour autoriser le suivi de l&rsquo;utilisation de l&rsquo;extension "
891
+ "de manière anonyme afin de la rendre meilleure."
892
 
893
+ #: class-bws-settings.php:611
894
  msgid "Default Settings"
895
  msgstr "Réglages par défaut"
896
 
897
+ #: class-bws-settings.php:613
898
  msgid "Restore Settings"
899
  msgstr "Remettre les paramètres"
900
 
901
+ #: class-bws-settings.php:614
902
  msgid "This will restore plugin settings to defaults."
903
  msgstr "Remettre les valeurs par défaut des paramètres de l&rsquo;extension."
904
 
905
+ #: class-bws-settings.php:626
906
  msgid "Import / Export"
907
  msgstr "Importer / Exporter"
908
 
909
+ #: class-bws-settings.php:744
 
910
  msgid "License Key"
911
  msgstr "Clé de licence"
912
 
913
+ #: class-bws-settings.php:803
 
 
 
 
 
 
 
 
 
 
 
 
 
914
  #, php-format
915
  msgid "Enter your license key to activate %s and get premium plugin features."
916
+ msgstr ""
917
+ "Saisir votre clé de licence pour activer %s et obtenir les fonctionnalités "
918
+ "premium."
919
 
920
+ #: class-bws-settings.php:806 class-bws-settings.php:1014 deprecated.php:243
921
+ msgid ""
922
+ "Unfortunately, you have exceeded the number of available tries per day. "
923
+ "Please, upload the plugin manually."
924
+ msgstr ""
925
+ "Désoler mais vous avez dépassé le nombre d&rsquo;essai de la journée. Merci "
926
+ "de télécharger l&rsquo;extension manuellement."
927
 
928
+ #: class-bws-settings.php:809 deprecated.php:234
929
  #, php-format
930
  msgid "Start Your Free %s-Day Trial Now"
931
  msgstr "Débuter votre licence d&rsquo;évaluation gratuite de %s jours"
932
 
933
+ #: class-bws-settings.php:824
934
+ msgid ""
935
+ "If necessary, you can check if the license key is correct or reenter it in "
936
+ "the field below."
937
+ msgstr ""
938
+ "Si nécessaire vous pouvez vérifier que la clé de licence est correcte ou la "
939
+ "saisir de nouveau dans le champ ci-dessous."
940
 
941
+ #: class-bws-settings.php:833
942
  msgid "Manage License Settings"
943
  msgstr "Gérer les paramètres de licence"
944
 
945
+ #: class-bws-settings.php:835
946
  msgid "Login to Client Area"
947
  msgstr "Se connecter à l&rsquo;espace client"
948
 
949
+ #: class-bws-settings.php:837
950
+ msgid ""
951
+ "Manage active licenses, download BWS products, and view your payment history "
952
+ "using BestWebSoft Client Area."
953
+ msgstr ""
954
+ "Gérer les licences actives, télécharger les produits BWS, et voir l&rsquo;"
955
+ "historique de vos règlements dans l&rsquo;interface client de BestWebSoft."
956
 
957
+ #: class-bws-settings.php:895 class-bws-settings.php:1012
 
958
  msgid "This license key is bound to another site."
959
  msgstr "La clé de licence correspond à un autre site."
960
 
961
+ #: class-bws-settings.php:897
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."
965
+ msgstr ""
966
+ "La clé de licence est valide mais votre durée de validité est passée. Pour "
967
+ "continuer à disposer du support rapide et des mises à jour de l&rsquo;"
968
+ "extension vous devez la renouveller."
969
 
970
+ #: class-bws-settings.php:899
971
  msgid "Unfortunately, you have exceeded the number of available tries."
972
+ msgstr ""
973
+ "Désoler mais vous avez dépassé le nombre d&rsquo;essai de la journée. Merci "
974
+ "de télécharger l&rsquo;extension manuellement."
975
 
976
+ #: class-bws-settings.php:901
977
+ msgid ""
978
+ "Unfortunately, the Pro Trial licence was already installed to this domain. "
979
+ "The Pro Trial license can be installed only once."
980
+ msgstr ""
981
+ "Une licence a déjà été installée sur ce domaine. La licence d&rsquo;"
982
+ "évaluation ne peut-être installée qu&rsquo;une seule fois."
983
 
984
+ #: class-bws-settings.php:906
985
  msgid "The Pro Trial license key is valid."
986
  msgstr "La clé de licence d&rsquo;évaluation est valide."
987
 
988
+ #: class-bws-settings.php:919 deprecated.php:142
989
  #, php-format
990
+ msgid ""
991
+ "In order to continue using the plugin it is necessary to buy a %s license."
992
+ msgstr ""
993
+ "Afin de pouvoir continuer à utiliser cette extension il est nécessaire "
994
+ "d&rsquo;acheter une licence %s."
995
 
996
+ #: class-bws-settings.php:1016
997
  #, php-format
998
+ msgid ""
999
+ "Unfortunately, Your license has expired. To continue getting top-priority "
1000
+ "support and plugin updates, you should extend it in your %s."
1001
+ msgstr ""
1002
+ "Désoler, votre licence est terminée. Pour continuer à disposer du support "
1003
+ "rapide et des mises à jour de l&rsquo;extension vous devez la renouveler "
1004
+ "dans votre %s."
 
 
 
 
 
 
 
 
 
 
 
 
1005
 
1006
+ #: class-bws-settings.php:1065
1007
  msgid "Please, enter Your license key"
1008
  msgstr "Merci de saisir votre clé de licence"
1009
 
1010
+ #: class-bws-settings.php:1078
1011
  msgid "Need Help?"
1012
  msgstr "Besoin d&rsquo;aide&nbsp;?"
1013
 
1014
+ #: class-bws-settings.php:1080
1015
  msgid "Read the Instruction"
1016
  msgstr "Lire les instructions"
1017
 
1018
+ #: class-bws-settings.php:1084
1019
  msgid "Watch the Video"
1020
  msgstr "Regarder la vidéo"
1021
 
1022
+ #: class-bws-settings.php:1095
1023
  msgid "Start Your Free Trial"
1024
  msgstr "Débuter votre licence d&rsquo;évaluation gratuite"
1025
 
1026
+ #: class-bws-settings.php:1130
1027
+ #, fuzzy
1028
+ #| msgid "Suggest a Feature"
1029
+ msgid "Request a Feature"
1030
+ msgstr "Proposer une fonctionnalité"
1031
+
1032
+ #: class-bws-settings.php:1135
1033
+ #, php-format
1034
+ msgid "How can we improve %s?"
1035
+ msgstr ""
1036
+
1037
+ #: class-bws-settings.php:1137
1038
+ msgid "We look forward to hear your ideas."
1039
+ msgstr ""
1040
+
1041
+ #: class-bws-settings.php:1139
1042
+ msgid "Describe your idea"
1043
+ msgstr ""
1044
+
1045
+ #: class-bws-settings.php:1142 deactivation-form.php:120
1046
+ msgid "Send website data and allow to contact me back"
1047
+ msgstr "Envoyer les informations sur le site et autorisez un contact en retour"
1048
+
1049
+ #: class-bws-settings.php:1147
1050
+ msgid "Submit"
1051
+ msgstr ""
1052
+
1053
+ #: class-bws-settings.php:1148 deactivation-form.php:127
1054
+ msgid "Processing"
1055
+ msgstr "En cours"
1056
+
1057
+ #: class-bws-settings.php:1149
1058
+ msgid "Thank you!"
1059
+ msgstr ""
1060
+
1061
+ #: deactivation-form.php:22
1062
  msgid "Need help? We are ready to answer your questions."
1063
+ msgstr ""
1064
+ "Besoin d&rsquo;aide&nbsp;? Nous sommes prêts à répondre à vos questions."
1065
 
1066
+ #: deactivation-form.php:22
1067
  msgid "Contact Support"
1068
  msgstr "Contacter le support"
1069
 
1070
+ #: deactivation-form.php:27
1071
  msgid "The plugin is not working"
1072
  msgstr "L&rsquo;extension ne fonctionna pas"
1073
 
1074
+ #: deactivation-form.php:33
 
 
 
 
1075
  msgid "The plugin didn't work as expected"
1076
  msgstr "L&rsquo;extension ne fonctionne pas comme prévue"
1077
 
1078
+ #: deactivation-form.php:39
 
 
 
 
1079
  msgid "The plugin suddenly stopped working"
1080
  msgstr "L&rsquo;extension a subitement cessé de fonctionner"
1081
 
1082
+ #: deactivation-form.php:46
1083
  msgid "The plugin broke my site"
1084
  msgstr "L&rsquo;extension a cassé mon site"
1085
 
1086
+ #: deactivation-form.php:53
1087
  msgid "I couldn't understand how to get it work"
1088
  msgstr "Je n&rsquo;arrive pas à comprendre commen la faire fonctionner"
1089
 
1090
+ #: deactivation-form.php:60
1091
  msgid "I found a better plugin"
1092
  msgstr "J&rsquo;ai trouvé une meuilleure extension"
1093
 
1094
+ #: deactivation-form.php:66
 
 
 
 
1095
  msgid "The plugin is great, but I need specific feature that you don't support"
1096
+ msgstr ""
1097
+ "L&rsquo;extension est magnifique, mais j&rsquo;ai besoin d&rsquo;une "
1098
+ "fonctionnalité spécifique que vous n&rsquo;offrez pas"
 
 
1099
 
1100
+ #: deactivation-form.php:72
1101
  msgid "I no longer need the plugin"
1102
  msgstr "Je n&rsquo;ai plus besoin de cette extension"
1103
 
1104
+ #: deactivation-form.php:78
1105
  msgid "It's a temporary deactivation, I'm just debugging an issue"
1106
+ msgstr ""
1107
+ "C&rsquo;est une désactivation temporaire, je suis entrain de résoudre un "
1108
+ "problème"
1109
 
1110
+ #: deactivation-form.php:84
1111
  msgid "Other"
1112
  msgstr "Autre"
1113
 
1114
+ #: deactivation-form.php:93
1115
  msgid "Quick Feedback"
1116
  msgstr "Retour rapide"
1117
 
1118
+ #: deactivation-form.php:95
1119
  msgid "If you have a moment, please let us know why you are deactivating"
1120
+ msgstr ""
1121
+ "Si vous avez quelques instants, merci de nous dire pourquoi vous désactivez "
1122
+ "l&rsquo;extension"
 
 
 
 
 
 
1123
 
1124
+ #: deactivation-form.php:125
1125
+ #, fuzzy
1126
+ #| msgid "Submit & Deactivate"
1127
+ msgid "Submit and Deactivate"
1128
+ msgstr "Envoyer et désactiver"
1129
 
1130
+ #: deactivation-form.php:126
1131
+ #, fuzzy
1132
+ #| msgid "Submit & Deactivate"
1133
+ msgid "Skip and Deactivate"
1134
  msgstr "Envoyer et désactiver"
1135
 
1136
+ #: deactivation-form.php:272
1137
  msgid "Please tell us the reason so we can improve it."
1138
+ msgstr ""
1139
+ "Merci de nous en dire la raison afin que nous puission l&rsquo;améliorer."
 
 
 
1140
 
1141
+ #: deprecated.php:28
1142
  msgid "System Status"
1143
  msgstr "Etat du système"
1144
 
1145
+ #: deprecated.php:119
1146
+ msgid ""
1147
+ "If necessary, you can check if the license key is correct or reenter it in "
1148
+ "the field below. You can find your license key on your personal page - "
1149
+ "Client Area - on our website"
1150
+ msgstr ""
1151
+ "Si nécessaire vous pouvez vérifier que la clé de licence est correcte ou la "
1152
+ "saisir de nouveau dans le champ ci-dessous. Vous pouvez trouver votre clé de "
1153
+ "licence sur votre page personnelle (zone client) sur notre site web."
1154
 
1155
+ #: deprecated.php:119
1156
+ msgid ""
1157
+ "(your username is the email address specified during the purchase). If "
1158
+ "necessary, please submit \"Lost your password?\" request."
1159
+ msgstr ""
1160
+ "(votre nom d&rsquo;utilisateur est l&rsquo;adresse e-mail que vous avez "
1161
+ "donnée lors de l&rsquo;achat de l&rsquo;extension). Si nécessaire, utilisez "
1162
+ "la fonction de demande de mot de passe perdu."
1163
 
1164
+ #: deprecated.php:142
1165
  msgid "After that, you can activate it by entering your license key."
1166
+ msgstr ""
1167
+ " Après vous pouvez activer cette extension en donnant votre clé de licence."
1168
 
1169
+ #: deprecated.php:145 deprecated.php:228
1170
  msgid "License key can be found in the"
1171
  msgstr "La clé de licence peut être trouvée dans "
1172
 
1173
+ #: deprecated.php:147 deprecated.php:230
1174
  msgid "(your username is the email address specified during the purchase)."
1175
+ msgstr ""
1176
+ "(votre nom d&rsquo;utilisateur est l&rsquo;adresse e-mail que vous avez "
1177
+ "donnée lors de l&rsquo;achat de l&rsquo;extension)."
1178
 
1179
+ #: deprecated.php:170
1180
+ msgid ""
1181
+ "Congratulations! The Pro license of the plugin is activated successfully."
1182
+ msgstr ""
1183
+ "Félicitations&nbsp;! La version PRO de cette extension a été activée avec "
1184
+ "succès."
1185
 
1186
+ #: deprecated.php:172 deprecated.php:210
1187
  msgid "Please, go to"
1188
  msgstr "Merci d&rsquo;aller à"
1189
 
1190
+ #: deprecated.php:172 deprecated.php:210
1191
  msgid "the setting page"
1192
  msgstr "Options supplémentaires"
1193
 
1194
+ #: deprecated.php:187
 
 
 
 
 
 
 
 
1195
  msgid "Restore all plugin settings to defaults"
1196
  msgstr "Remettre les valeurs par défaut des paramètres de l&rsquo;extension"
1197
 
1198
+ #: deprecated.php:189
1199
  msgid "Restore settings"
1200
  msgstr "Remettre les paramètres"
1201
 
1202
+ #: deprecated.php:208
1203
+ msgid ""
1204
+ "Congratulations! Pro version of the plugin is installed and activated "
1205
+ "successfully."
1206
+ msgstr ""
1207
+ "Félicitations&nbsp;! La version PRO de cette extension a été téléchargée et "
1208
+ "activée avec succès."
 
 
 
 
 
 
 
 
 
 
 
 
 
1209
 
1210
+ #: deprecated.php:217
1211
  msgid "Show Pro features"
1212
  msgstr "Voir les fonctionnalités de la version PRO"
1213
 
1214
+ #: deprecated.php:224
1215
  msgid "Enter your license key to install and activate"
1216
  msgstr "Saisir votre clé de licence pour installer et activer"
1217
 
1218
+ #: deprecated.php:226
1219
  msgid "version of the plugin."
1220
  msgstr "version de l&rsquo;extension."
1221
 
1222
+ #: product_list.php:8
1223
  msgid "Admin Tools"
1224
  msgstr "Outils d&rsquo;administration"
1225
 
1226
+ #: product_list.php:9
1227
  msgid "Content"
1228
  msgstr "Contenu"
1229
 
1230
+ #: product_list.php:10
1231
  msgid "eCommerce"
1232
  msgstr "eCommerce"
1233
 
1234
+ #: product_list.php:11
1235
  msgid "Marketing"
1236
  msgstr "Marketing"
1237
 
1238
+ #: product_list.php:12
1239
  msgid "Navigation"
1240
  msgstr "Navigation"
1241
 
1242
+ #: product_list.php:13
1243
  msgid "Recommended"
1244
  msgstr "Recommandé"
1245
 
1246
+ #: product_list.php:14
1247
  msgid "Security"
1248
  msgstr "Sécurité"
1249
 
1250
+ #: product_list.php:15
1251
  msgid "SEO"
1252
  msgstr "SEO"
1253
 
1254
+ #: product_list.php:16
1255
  msgid "SMM"
1256
  msgstr "SMM"
1257
 
1258
+ #: product_list.php:23
1259
+ msgid "Give a birth for your bike rental and booking WordPress website."
1260
+ msgstr ""
1261
+
1262
+ #: product_list.php:35
1263
  msgid "Best secure captcha plugin to protect your WordPress forms."
1264
+ msgstr ""
1265
+ "Extension de Captach meuilleure et plus sécurisée pour vos formulaires."
1266
 
1267
+ #: product_list.php:45
1268
+ msgid "Create your own rental website for car renting and booking."
1269
+ msgstr ""
1270
 
1271
+ #: product_list.php:57
1272
+ #, fuzzy
1273
+ #| msgid "Add customized Google maps to WordPress posts, pages and widgets."
1274
+ msgid ""
1275
+ "Add columns with custom content to WordPress website pages, posts, widgets, "
1276
+ "etc."
1277
+ msgstr "Ajouter des cartes de Google maps aux articles, pages et widgets."
1278
 
1279
+ #: product_list.php:64
1280
+ msgid ""
1281
+ "Allow customers to reach you using secure contact form plugin any website "
1282
+ "must have."
1283
+ msgstr ""
1284
+ "Permet à vos clients de vous joindre en utilisant un formulaire de contact "
1285
+ "sécurisé que tout site doit avoir."
1286
+
1287
+ #: product_list.php:74
1288
  msgid "Add unlimited number of contact forms to WordPress website."
1289
  msgstr "Ajoute une nombre illimité de formulaires de contact."
1290
 
1291
+ #: product_list.php:84
1292
  msgid "Save and manage Contact Form messages. Never lose important data."
1293
+ msgstr ""
1294
+ "Enregistrer et gérer les messages issu du formulaire de contact. Permet de "
1295
+ "ne pas perdre des informations importantes."
1296
 
1297
+ #: product_list.php:94
1298
  msgid "Add unlimited custom pages to WordPress admin dashboard."
1299
  msgstr "Ajouter un nombre illimté de pages dans l&rsquo;administration."
1300
 
1301
+ #: product_list.php:104
1302
+ msgid ""
1303
+ "Add custom post types and taxonomies to WordPress website search results."
1304
+ msgstr ""
1305
+ "Ajouter des types d&rsquo;articles personalisés et des taxonomies dans le "
1306
+ "résultat de la recherche."
 
1307
 
1308
+ #: product_list.php:114
1309
  msgid "Add PayPal and 2CO donate buttons to receive charity payments."
1310
+ msgstr ""
1311
+ "Ajouter des boutons de dons avec PayPal et 2CO pour recevoir des donations."
1312
 
1313
+ #: product_list.php:121
1314
+ msgid ""
1315
+ "Get latest error log messages to diagnose website problems. Define and fix "
1316
+ "issues faster."
1317
+ msgstr ""
1318
+ "Obtenir les derniers messages d&rsquo;erreur pour diagnostiquer les "
1319
+ "problèmes du site. Permet de corriger plus rapidement."
1320
 
1321
+ #: product_list.php:128
1322
+ msgid ""
1323
+ "Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and "
1324
+ "widgets."
1325
+ msgstr ""
1326
+ "Ajouter les boutons Suivre, Aimer et Partager pour FaceBook aux articles, "
1327
+ "pages et widgets."
1328
 
1329
+ #: product_list.php:138
1330
+ msgid ""
1331
+ "Add beautiful galleries, albums & images to your WordPress website in a few "
1332
+ "clicks."
1333
  msgstr "Ajouter des galeries, albums et images en quelques clics."
1334
 
1335
+ #: product_list.php:148
1336
+ msgid ""
1337
+ "Stronger security solution which protects your WordPress website from hacks "
1338
+ "and unauthorized login attempts."
1339
+ msgstr ""
1340
+ "Solution forte de sécurité qui protège votre site des attaques et des "
1341
+ "tentatives de connexions."
1342
 
1343
+ #: product_list.php:158
1344
+ msgid ""
1345
+ "Add Adsense ads to WordPress website pages, posts, custom posts, search "
1346
+ "results, categories, tags, and widgets."
1347
+ msgstr ""
1348
+ "Ajouter les publicités Adsense aux pages, articles, types personalisés, "
1349
+ "résultats de recherche, catégories, tags, widgets."
1350
 
1351
+ #: product_list.php:168
1352
  msgid "Add Google Analytics code to WordPress website and track basic stats."
1353
+ msgstr ""
1354
+ "Ajouter le code Google Analytics et permet de suivre les statistiques "
1355
+ "basiques."
1356
+
1357
+ #: product_list.php:178
1358
+ #, fuzzy
1359
+ #| msgid ""
1360
+ #| "Protect WordPress website forms from spam entries with Google Captcha "
1361
+ #| "(reCaptcha)."
1362
+ msgid "Protect WordPress website forms from spam entries with reCaptcha."
1363
  msgstr "Protéger vos formulaires avec Google Captcha (reCaptcha)."
1364
 
1365
+ #: product_list.php:188
1366
  msgid "Add customized Google maps to WordPress posts, pages and widgets."
1367
  msgstr "Ajouter des cartes de Google maps aux articles, pages et widgets."
1368
 
1369
+ #: product_list.php:198
1370
+ msgid ""
1371
+ "Generate and add XML sitemap to WordPress website. Help search engines index "
1372
+ "your blog."
1373
+ msgstr ""
1374
+ "Générer et ajouter un fichier XML de sitemap. Aide les moteurs de recherche "
1375
+ "à parcourir votre site."
1376
 
1377
+ #: product_list.php:208
1378
+ msgid ""
1379
+ "Replace external WordPress website links with Google shortlinks and track "
1380
+ "click stats."
1381
+ msgstr ""
1382
+ "Remplacer les liens externes dans votre site par des liens courts de Google "
1383
+ "et disposer de statistiques."
1384
 
1385
+ #: product_list.php:215
1386
+ msgid ""
1387
+ "Protect WordPress website allow and deny access for certain IP addresses, "
1388
+ "hostnames, etc."
1389
+ msgstr ""
1390
+ "Protéger votre site en autorisant ou interdissant certaines adresses IP, nom "
1391
+ "de machine, ..."
1392
 
1393
+ #: product_list.php:225
1394
+ msgid ""
1395
+ "Create your personal job board and listing WordPress website. Search jobs, "
1396
+ "submit CV/resumes, choose candidates."
1397
+ msgstr ""
1398
+ "Créer votre site d&rsquo;offres d&rsquo;emploies. Rechercher des emplois, "
1399
+ "envoyer des CV/des candidatures."
1400
 
1401
+ #: product_list.php:232
1402
+ msgid ""
1403
+ "Protect WordPress website against brute force attacks. Limit rate of login "
1404
+ "attempts."
1405
+ msgstr ""
1406
+ "Protéger le site contre les attaques de brute force. Limite la fréquence des "
1407
+ "tentatives de connexions."
1408
 
1409
+ #: product_list.php:242
1410
+ msgid ""
1411
+ "Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. "
1412
+ "5 plugins included – profile, insider, etc."
1413
+ msgstr ""
1414
+ "Ajouter les boutons partager et suivre de LinkedIn aux articles, pages et "
1415
+ "widgets. 5 extensions incluses (profile, insider, etc.)"
1416
 
1417
+ #: product_list.php:252
1418
+ msgid ""
1419
+ "Translate WordPress website content to other languages manually. Create "
1420
+ "multilingual pages, posts, widgets, menus, etc."
1421
+ msgstr ""
1422
+ "Traduire le contenu du site dans d&rsquo;autres langues manuellement. Créer "
1423
+ "des pages, des articles, des widgets, des menus, etc dans plusieurs langues."
1424
 
1425
+ #: product_list.php:262
1426
+ msgid ""
1427
+ "Add customizable pagination to WordPress website. Split long content to "
1428
+ "multiple pages for better navigation."
1429
+ msgstr ""
1430
+ "Ajouter une pagination presonalisée. Découper un contenu long en plusieurs "
1431
+ "pages pour une meuilleure navigation."
1432
 
1433
+ #: product_list.php:272
1434
+ msgid ""
1435
+ "Generate PDF files and print WordPress posts/pages. Customize document "
1436
+ "header/footer styles and appearance."
1437
+ msgstr ""
1438
+ "Générer des fichiers PDF pour des pages ou des articles. Personaliser "
1439
+ "l&rsquo;en-tête/pied de page, les styles et l&rsquo;apparence."
1440
 
1441
+ #: product_list.php:282
1442
+ msgid ""
1443
+ "Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, "
1444
+ "Profile) to WordPress posts, pages and widgets."
1445
+ msgstr ""
1446
+ "Ajouter les boutons Suivre, Epingler et le widget de profile (Epingle, "
1447
+ "Tableau de bord, profile) pour Pinterest aux articles, pages et widgets."
1448
 
1449
+ #: product_list.php:292
1450
+ msgid ""
1451
+ "Create your personal portfolio WordPress website. Manage and showcase past "
1452
+ "projects to get more clients."
1453
+ msgstr ""
1454
+ "Créer votre site de portfolio. Gérer et présenter vos anciens projets pour "
1455
+ "acquérir de nouveaux clients."
1456
 
1457
+ #: product_list.php:302
1458
  msgid "Export WordPress posts to CSV file format easily. Configure data order."
1459
+ msgstr ""
1460
+ "Exporter vos articles dans un format CSV facilement. Configurer l&rsquo;"
1461
+ "ordre des données."
 
 
 
 
 
 
1462
 
1463
+ #: product_list.php:312
1464
+ msgid ""
1465
+ "Add extra fields to default WordPress user profile. The easiest way to "
1466
+ "create and manage additional custom values."
1467
+ msgstr ""
1468
+ "Ajouter des champs personalisés au profil utilisateur. La façon la plus "
1469
+ "simple de créer et gérer des informations supplémentaires."
1470
 
1471
+ #: product_list.php:322
1472
+ msgid ""
1473
+ "Add and display HTML advertisement banner on WordPress website. Customize "
1474
+ "bar styles and appearance."
1475
+ msgstr ""
1476
+ "Ajouter et afficher une bannière de publicité en HTML. Personaliser le style "
1477
+ "et l&rsquo;apparence de la barre."
1478
 
1479
  #: product_list.php:332
1480
+ msgid ""
1481
+ "Add customizable quotes and tips blocks to WordPress posts, pages and "
1482
+ "widgets."
1483
+ msgstr ""
1484
+ "Ajouter des blocs d&rsquo;avis et d&rsquo;astuces sur vos pages, articles et "
1485
+ "widgets."
1486
 
1487
+ #: product_list.php:339
1488
+ msgid ""
1489
+ "Add rating plugin to your WordPress website to receive feedback from your "
1490
+ "customers."
1491
+ msgstr "Ajouter une notation pour avoir un retour de vos utilisateurs/clients."
1492
 
1493
  #: product_list.php:349
1494
+ msgid ""
1495
+ "Create your personal real estate WordPress website. Sell, rent and buy "
1496
+ "properties. Add, search and browse listings easily."
1497
+ msgstr ""
1498
+ "Créer votre site d&rsquo;annonces immobilières. Vendre, louer et acheter des "
1499
+ "biens. Recherche et catalogue facilement mis en place."
1500
 
1501
  #: product_list.php:359
1502
+ msgid ""
1503
+ "Add related, featured, latest, and popular posts to your WordPress website. "
1504
+ "Connect your blog readers with a relevant content."
1505
+ msgstr ""
1506
+ "Ajouter des informations sur les articles en relations, mis en avant, "
1507
+ "populaires. Fournisser à vos lecteurs un contenu passionant."
1508
 
1509
  #: product_list.php:366
1510
+ msgid ""
1511
+ "Send bulk email messages to WordPress users. Custom templates, advanced "
1512
+ "settings and detailed reports."
1513
+ msgstr ""
1514
+ "Envoyer des messages e-mail en masse à vos utilisateurs. Modèles "
1515
+ "personalisables, paramétrage avancé et reporting complet."
1516
 
1517
+ #: product_list.php:376
1518
+ msgid ""
1519
+ "The best responsive slider plugin for your WordPress website. Create "
1520
+ "beautifully animated slides just in a few clicks."
1521
+ msgstr ""
1522
+ "Extension pour mettre en place des diaporamas responsive. Créer des "
1523
+ "diaporamas animés en quelques clics."
1524
 
1525
  #: product_list.php:383
1526
+ msgid ""
1527
+ "Configure SMTP server to receive email messages from WordPress to Gmail, "
1528
+ "Yahoo, Hotmail and other services."
1529
+ msgstr ""
1530
+ "Configurer un serveur SMTP pour envoyer des e-mails vers Gmail, Yahoo, "
1531
+ "Hotmail et d&rsquo;autres services."
1532
 
1533
  #: product_list.php:390
1534
+ #, fuzzy
1535
+ #| msgid ""
1536
+ #| "Add social media buttons and widgets to WordPress posts, pages and "
1537
+ #| "widgets. FB, Twitter, G+1, Pinterest, LinkedIn."
1538
+ msgid ""
1539
+ "Add social media buttons and widgets to WordPress posts, pages and widgets. "
1540
+ "FB, Twitter, Pinterest, LinkedIn."
1541
+ msgstr ""
1542
+ "Ajouter des boutons pour les réseaux sociaux FB, Twitter, G+1, Pinterest, "
1543
+ "LinkedIn aux articles, pages et widgets."
1544
 
1545
  #: product_list.php:400
1546
+ msgid ""
1547
+ "Add social media login, registration, and commenting to your WordPress "
1548
+ "website."
1549
+ msgstr ""
1550
+ "Ajouter la connection, l&rsquo;enregistrement et la rédaction de "
1551
+ "commentaires pour vos réseaux sociaux."
1552
 
1553
  #: product_list.php:407
1554
+ msgid ""
1555
+ "Add email newsletter sign up form to WordPress posts, pages and widgets. "
1556
+ "Collect data and subscribe your users."
1557
+ msgstr ""
1558
+ "Ajouter un formulaire d&rsquo;inscription à votre lettre d&rsquo;information "
1559
+ "sur vos pages, articles et widgets. Récolter les inscriptions et les données "
1560
+ "de vos utilisateurs."
1561
 
1562
  #: product_list.php:417
1563
+ msgid ""
1564
+ "Add testimonials and feedbacks from your customers to WordPress website "
1565
+ "posts, pages, and widgets."
1566
+ msgstr ""
1567
+ "Ajouter des témoignages et des retours de vos clients aux articles, pages et "
1568
+ "widgets."
1569
 
1570
+ #: product_list.php:424
1571
+ msgid ""
1572
+ "Best timesheet plugin for WordPress. Track employee time, streamline "
1573
+ "attendance and generate reports."
1574
+ msgstr ""
1575
+ "La meuilleure extension de suivi du temps. Suiver le temps de vos employés, "
1576
+ "le temps de présence et créer des rapports."
1577
+
1578
+ #: product_list.php:434
1579
+ msgid ""
1580
+ "Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts "
1581
+ "and pages."
1582
+ msgstr ""
1583
+ "Ajouter les boutons Suivre, Tweet, Hastag pour Twitter aux articles, pages "
1584
+ "et widgets."
1585
+
1586
+ #: product_list.php:444
1587
+ msgid ""
1588
+ "Automatically check and update WordPress website core with all installed "
1589
+ "plugins and themes to the latest versions."
1590
+ msgstr ""
1591
+ "Mettre à jour automatiquement votre site pour WordPress, les extensions et "
1592
+ "les thèmes."
1593
 
1594
+ #: product_list.php:454
1595
+ msgid ""
1596
+ "Powerful user role management plugin for WordPress website. Create, edit, "
1597
+ "copy, and delete user roles."
1598
+ msgstr ""
1599
+ "Gestion des droits des utilisateurs. Créer, modifier et supprimer des droits "
1600
+ "utilisateurs."
1601
 
1602
+ #: product_list.php:464
1603
+ msgid ""
1604
+ "Display live count of online visitors who are currently browsing your "
1605
+ "WordPress website."
1606
  msgstr "Afficher en direct le compteur des visiteurs sur votre site."
1607
 
1608
+ #: product_list.php:474
1609
+ msgid ""
1610
+ "Backup and export Zendesk Help Center content automatically to your "
1611
+ "WordPress website database."
1612
+ msgstr ""
1613
+ "Sauvegarder et exporter le contenu de votre Zendesk Help Center vers votre "
1614
+ "site."
1615
+
1616
+ #~ msgid "Installing Plugin"
1617
+ #~ msgstr "Extension installée"
1618
+
1619
+ #~ msgid "Downloading install package from"
1620
+ #~ msgstr "Télécharger le paquet d&rsquo;installation depuis"
1621
+
1622
+ #~ msgid ""
1623
+ #~ "Failed to download the zip archive. Please, upload the plugin manually"
1624
+ #~ msgstr ""
1625
+ #~ "Erreur de téléchargement de l&rsquo;archive ZIP. Merci de télécharger "
1626
+ #~ "l&rsquo;extension manuellement."
1627
+
1628
+ #~ msgid "Unpacking the package"
1629
+ #~ msgstr "Décompresser le paquet"
1630
+
1631
+ #~ msgid "Failed to open the zip archive. Please, upload the plugin manually"
1632
+ #~ msgstr ""
1633
+ #~ "Erreur d&rsquo;ouverture de l&rsquo;archive zip. Merci de télécharger "
1634
+ #~ "l&rsquo;extension manuellement."
1635
+
1636
+ #~ msgid ""
1637
+ #~ "Your server does not support either ZipArchive or Phar. Please, upload "
1638
+ #~ "the plugin manually"
1639
+ #~ msgstr ""
1640
+ #~ "Votre serveur n&rsquo;a pas le support du format des archives ZIP ou "
1641
+ #~ "Phar. Merci de télécharger l&rsquo;extension manuellement."
1642
+
1643
+ #~ msgid "The plugin %s is successfully installed."
1644
+ #~ msgstr "L&rsquo;extension %s a été installée avec succès."
1645
+
1646
+ #~ msgid "UploadDir is not writable. Please, upload the plugin manually"
1647
+ #~ msgstr ""
1648
+ #~ "Erreur d&rsquo;ouverture de l&rsquo;archive zip. Merci de télécharger "
1649
+ #~ "l&rsquo;extension manuellement."
1650
+
1651
+ #~ msgid "Activate Plugin"
1652
+ #~ msgstr "Activer l&rsquo;extension"
1653
+
1654
+ #~ msgid "Congratulations! Pro license is activated successfully."
1655
+ #~ msgstr ""
1656
+ #~ "Félicitations&nbsp;! La version PRO de cette extension a été activée avec "
1657
+ #~ "succès."
1658
+
1659
+ #~ msgid "You will be automatically redirected to the %s in %s seconds."
1660
+ #~ msgstr "Vous allez être redirigé automatiquement vers %s dans %s secondes."
1661
+
1662
+ #~ msgid "Settings page"
1663
+ #~ msgstr "Page des paramètres"
1664
+
1665
+ #~ msgid ""
1666
+ #~ "Failed to download the zip archive. Please, upload the plugin manually."
1667
+ #~ msgstr ""
1668
+ #~ "Erreur de téléchargement de l&rsquo;archive ZIP. Merci de télécharger "
1669
+ #~ "l&rsquo;extension manuellement."
1670
+
1671
+ #~ msgid "Failed to open the zip archive. Please, upload the plugin manually."
1672
+ #~ msgstr ""
1673
+ #~ "Erreur d&rsquo;ouverture de l&rsquo;archive zip. Merci de télécharger "
1674
+ #~ "l&rsquo;extension manuellement."
1675
+
1676
+ #~ msgid ""
1677
+ #~ "Your server does not support either ZipArchive or Phar. Please, upload "
1678
+ #~ "the plugin manually."
1679
+ #~ msgstr ""
1680
+ #~ "Votre serveur n&rsquo;a pas le support du format des archives ZIP ou "
1681
+ #~ "Phar. Merci de télécharger l&rsquo;extension manuellement."
1682
+
1683
+ #~ msgid "UploadDir is not writable. Please, upload the plugin manually."
1684
+ #~ msgstr ""
1685
+ #~ "Le répertoire de destination n&rsquo;est pas disponible en écriture. "
1686
+ #~ "Merci de télécharger l&rsquo;extension manuellement."
1687
+
1688
+ #~ msgid "Kindly share what didn't work so we can fix it in future updates..."
1689
+ #~ msgstr ""
1690
+ #~ "Merci de partager ce qui ne fonctionne pas afin que nous puissions le "
1691
+ #~ "corriger dans une prochaine version..."
1692
+
1693
+ #~ msgid "What did you expect?"
1694
+ #~ msgstr "Quel est le fonctionnement attendu&nbsp;?"
1695
+
1696
+ #~ msgid "What's the plugin name?"
1697
+ #~ msgstr "Quel est le nom de l&rsquo;extension&nbsp;?"
1698
+
1699
+ #~ msgid "What feature?"
1700
+ #~ msgstr "Quelle fonctionalité&nbsp;?"
1701
+
1702
+ #~ msgid "Cancel"
1703
+ #~ msgstr "Annuler"
1704
+
1705
+ #~ msgid "Deactivate"
1706
+ #~ msgstr "Désactivé"
1707
+
1708
+ #~ msgid "Please, enter your license key"
1709
+ #~ msgstr "Merci de saisir votre clé de licence"
1710
+
1711
+ #~ msgid "You will be redirected automatically in 5 seconds."
1712
+ #~ msgstr "Vous allez être redirigé automatiquement dans 5 secondes"
1713
+
1714
+ #~ msgid "Check premium options on the plugin settings page!"
1715
+ #~ msgstr ""
1716
+ #~ "Vérifier les options premium sur la page des paramètres de l&rsquo;"
1717
+ #~ "extension&nbsp;!"
1718
+
1719
+ #~ msgid "File %s edited successfully."
1720
+ #~ msgstr "Le fichier %s a été modifié avec succès."
1721
+
1722
+ #~ msgid "Not enough permissions to create or update the file"
1723
+ #~ msgstr "Pas assez de droits pour créer ou modifier le fichier"
1724
+
1725
+ #~ msgid "Not enough permissions to create the file"
1726
+ #~ msgstr "Pas assez de droits pour créer le fichier"
1727
+
1728
+ #~ msgid "Editing"
1729
+ #~ msgstr "Modifier"
1730
+
1731
+ #~ msgid "Create your personal car rental/booking and reservation website."
1732
+ #~ msgstr "Créer votre site personnel de vente/location de voitures."
1733
+
1734
+ #~ msgid "Add custom fields to WordPress website search results."
1735
+ #~ msgstr "Ajouter des champs personalisés dans le résultats de la recherche."
1736
+
1737
+ #~ msgid ""
1738
+ #~ "Add Google +1, Share, Follow, Hangout buttons and profile badge to "
1739
+ #~ "WordPress posts, pages and widgets."
1740
+ #~ msgstr ""
1741
+ #~ "Ajouter les boutons Partager, Suivre, Particciper et le profile de Google "
1742
+ #~ "+1 aux articles, pages et widgets."
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-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"
@@ -14,10 +14,10 @@ msgstr ""
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "Plural-Forms: nplurals=1; plural=0;\n"
17
- "X-Generator: Poedit 1.8.7.1\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: bws_functions.php:73 bws_functions.php:191
21
  msgid "requires"
22
  msgstr "membutuhkan"
23
 
@@ -54,7 +54,7 @@ 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,7 +62,7 @@ msgstr "Kunjungi Pusat Bantuan"
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,8 +78,8 @@ msgid ""
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,7 +99,7 @@ msgstr ""
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
 
@@ -116,7 +116,37 @@ msgstr "Perhatikan: Anda menggunakan lisensi Percobaan Pro plugin."
116
  msgid "The Pro Trial license will expire on"
117
  msgstr "Lisensi Percobaan Pro akan berakhir pada"
118
 
119
- #: bws_functions.php:193
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
120
  msgid ""
121
  "or higher! We do not guarantee that our plugin will work correctly. Please "
122
  "upgrade to WordPress latest version."
@@ -124,87 +154,57 @@ msgstr ""
124
  "atau lebih tinggi! Kami tidak menjamin bahwa plugin kami akan bekerja dengan "
125
  "benar. Silakan upgrade ke WordPress versi terbaru."
126
 
127
- #: bws_functions.php:208
128
  #, php-format
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 "
197
- "SUPPORT or UPDATES."
198
- msgstr ""
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,25 +212,24 @@ msgstr ""
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,77 +237,68 @@ msgstr ""
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,18 +306,16 @@ msgstr ""
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
 
330
- #: bws_menu.php:130
331
  msgid ""
332
  "This license key is bound to another site. Change it via personal Client "
333
  "Area."
@@ -335,15 +323,15 @@ msgstr ""
335
  "kunci lisensi ini terikat ke situs lain. Mengubahnya melalui personal Area "
336
  "Klien."
337
 
338
- #: bws_menu.php:130
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,7 +340,7 @@ msgstr ""
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,19 +348,19 @@ msgstr ""
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."
@@ -380,214 +368,216 @@ msgstr ""
380
  "Ada yang salah. Coba lagi nanti atau meng-upload plugin secara manual. Kami "
381
  "mohon maaf atas ketidaknyamanan."
382
 
383
- #: bws_menu.php:163
384
  msgid "Please enter your license key."
385
  msgstr "Masukkan kunci lisensi Anda."
386
 
387
- #: bws_menu.php:174
388
  msgid "Not set"
389
  msgstr "Tidak diatur"
390
 
391
- #: bws_menu.php:176
392
  msgid "On"
393
  msgstr "Di"
394
 
395
- #: bws_menu.php:176
396
  msgid "Off"
397
  msgstr "Mati"
398
 
399
- #: bws_menu.php:177 bws_menu.php:178 bws_menu.php:179 bws_menu.php:180
400
- #: bws_menu.php:181 bws_menu.php:182 bws_menu.php:191
401
  msgid "N/A"
402
  msgstr "N / A"
403
 
404
- #: bws_menu.php:182
405
- msgid " Mb"
 
 
406
  msgstr " Mb"
407
 
408
- #: bws_menu.php:183 bws_menu.php:184 bws_menu.php:185 bws_menu.php:189
409
  msgid "Yes"
410
  msgstr "iya nih"
411
 
412
- #: bws_menu.php:183 bws_menu.php:184 bws_menu.php:185 bws_menu.php:189
413
  msgid "No"
414
  msgstr "Tidak"
415
 
416
- #: bws_menu.php:196
417
  msgid "WordPress Environment"
418
  msgstr "WordPress Lingkungan"
419
 
420
- #: bws_menu.php:198
421
  msgid "Home URL"
422
  msgstr "URL rumah"
423
 
424
- #: bws_menu.php:199
425
  msgid "Website URL"
426
  msgstr "alamat situs web"
427
 
428
- #: bws_menu.php:200
429
  msgid "WP Version"
430
  msgstr "WP Versi"
431
 
432
- #: bws_menu.php:201
433
  msgid "WP Multisite"
434
  msgstr "WP Multisite"
435
 
436
- #: bws_menu.php:202
437
  msgid "WP Memory Limit"
438
  msgstr "WP Memory Limit"
439
 
440
- #: bws_menu.php:203
441
  msgid "Active Theme"
442
  msgstr "Tema aktif"
443
 
444
- #: bws_menu.php:203 bws_menu.php:248 bws_menu.php:251
445
  #, php-format
446
  msgid "by %s"
447
  msgstr "oleh %s"
448
 
449
- #: bws_menu.php:207
450
  msgid "Server Environment"
451
  msgstr "Server Lingkungan"
452
 
453
- #: bws_menu.php:209
454
  msgid "Operating System"
455
  msgstr "Sistem operasi"
456
 
457
- #: bws_menu.php:210
458
  msgid "Server"
459
  msgstr "Server"
460
 
461
- #: bws_menu.php:211
462
  msgid "PHP Version"
463
  msgstr "PHP Versi"
464
 
465
- #: bws_menu.php:212
466
  msgid "PHP Allow URL fopen"
467
  msgstr "PHP Izinkan URL fopen"
468
 
469
- #: bws_menu.php:213
470
  msgid "PHP Memory Limit"
471
  msgstr "PHP Memory Limit"
472
 
473
- #: bws_menu.php:214
474
  msgid "Memory Usage"
475
  msgstr "memory Usage"
476
 
477
- #: bws_menu.php:215
478
  msgid "PHP Max Upload Size"
479
  msgstr "Ukuran PHP Max Upload"
480
 
481
- #: bws_menu.php:216
482
  msgid "PHP Max Post Size"
483
  msgstr "PHP Max Pos Ukuran"
484
 
485
- #: bws_menu.php:217
486
  msgid "PHP Max Script Execute Time"
487
  msgstr "PHP Max Script Jalankan Waktu"
488
 
489
- #: bws_menu.php:218
490
  msgid "PHP Exif support"
491
  msgstr "dukungan PHP Exif"
492
 
493
- #: bws_menu.php:219
494
  msgid "PHP IPTC support"
495
  msgstr "dukungan PHP IPTC"
496
 
497
- #: bws_menu.php:220
498
  msgid "PHP XML support"
499
  msgstr "dukungan XML PHP"
500
 
501
- #: bws_menu.php:226
502
  msgid "Database"
503
  msgstr "database"
504
 
505
- #: bws_menu.php:228
506
  msgid "WP DB version"
507
  msgstr "Versi WP DB"
508
 
509
- #: bws_menu.php:229
510
  msgid "MySQL version"
511
  msgstr "versi MySQL"
512
 
513
- #: bws_menu.php:230
514
  msgid "SQL Mode"
515
  msgstr "SQL Modus"
516
 
517
- #: bws_menu.php:234
518
  msgid "Active Plugins"
519
  msgstr "Plugin aktif"
520
 
521
- #: bws_menu.php:239
522
  msgid "Inactive Plugins"
523
  msgstr "Plugin tidak aktif"
524
 
525
- #: bws_menu.php:260
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,7 +590,7 @@ msgstr ""
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,194 +598,200 @@ msgstr ""
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"
644
  msgstr ""
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
 
739
- #: class-bws-settings.php:136
740
  msgid "Information"
741
  msgstr "Informasi"
742
 
743
- #: class-bws-settings.php:144
744
  msgid "Inactive"
745
  msgstr "non-aktif"
746
 
747
- #: class-bws-settings.php:152
748
  msgid "Expired"
749
  msgstr "kedaluwarsa"
750
 
751
- #: class-bws-settings.php:155
752
  #, php-format
753
  msgid "%s day(-s) left"
754
  msgstr "%s hari (-s) kiri"
755
 
756
- #: class-bws-settings.php:161
757
  #, php-format
758
  msgid "Expired on %s"
759
  msgstr "Berakhir pada %s"
760
 
761
- #: class-bws-settings.php:161
762
  msgid "Renew Now"
763
  msgstr "Perbarui sekarang"
764
 
765
- #: class-bws-settings.php:163
766
  msgid "Active"
767
  msgstr "Aktif"
768
 
769
- #: class-bws-settings.php:168
770
  msgid "License"
771
  msgstr "Lisensi"
772
 
773
- #: class-bws-settings.php:171
774
  msgid "Status"
775
  msgstr "Status"
776
 
777
- #: class-bws-settings.php:175
778
  msgid "Version"
779
  msgstr "Versi"
780
 
781
- #: class-bws-settings.php:285
782
  msgid "All plugin settings were restored."
783
  msgstr "Semua pengaturan Plugin dipulihkan."
784
 
785
- #: class-bws-settings.php:423
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 "
@@ -804,11 +800,11 @@ msgstr ""
804
  "Kode PHP ini akan ketagihan untuk %s tindakan dan akan dicetak pada ujung "
805
  "depan saja."
806
 
807
- #: class-bws-settings.php:438
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,25 +813,25 @@ msgstr ""
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
 
824
- #: class-bws-settings.php:461
825
  #, php-format
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,74 +839,59 @@ msgid ""
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,12 +899,12 @@ msgstr ""
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,15 +912,15 @@ msgstr ""
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,12 +928,11 @@ msgstr ""
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,11 +941,11 @@ msgstr ""
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,168 +953,152 @@ msgstr ""
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
-
1129
- #: deprecated.php:93
1130
  msgid "System Status"
1131
  msgstr "Status sistem"
1132
 
1133
- #: deprecated.php:204
1134
- msgid "Please, enter your license key"
1135
- msgstr "Silakan, masukkan kunci lisensi Anda"
1136
-
1137
- #: deprecated.php:223
1138
  msgid ""
1139
  "If necessary, you can check if the license key is correct or reenter it in "
1140
  "the field below. You can find your license key on your personal page - "
@@ -1144,7 +1108,7 @@ msgstr ""
1144
  "kembali ke dalam bidang di bawah. Anda dapat menemukan kunci lisensi Anda "
1145
  "pada halaman pribadi Anda - Area Klien - di website kami"
1146
 
1147
- #: deprecated.php:223
1148
  msgid ""
1149
  "(your username is the email address specified during the purchase). If "
1150
  "necessary, please submit \"Lost your password?\" request."
@@ -1152,392 +1116,427 @@ msgstr ""
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
 
1232
- #: product_list.php:7
1233
  msgid "Admin Tools"
1234
  msgstr ""
1235
 
1236
- #: product_list.php:8
1237
  msgid "Content"
1238
  msgstr ""
1239
 
1240
- #: product_list.php:9
1241
  msgid "eCommerce"
1242
  msgstr ""
1243
 
1244
- #: product_list.php:10
1245
  msgid "Marketing"
1246
  msgstr ""
1247
 
1248
- #: product_list.php:11
1249
  msgid "Navigation"
1250
  msgstr ""
1251
 
1252
- #: product_list.php:12
1253
  msgid "Recommended"
1254
  msgstr "Direkomendasikan"
1255
 
1256
- #: product_list.php:13
1257
  msgid "Security"
1258
  msgstr "Keamanan"
1259
 
1260
- #: product_list.php:14
1261
  msgid "SEO"
1262
  msgstr ""
1263
 
1264
- #: product_list.php:15
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
 
@@ -1607,9 +1606,6 @@ msgstr ""
1607
  #~ msgid "Please, go to %s"
1608
  #~ msgstr "Silakan, pergi ke %s"
1609
 
1610
- #~ msgid "Client Area"
1611
- #~ msgstr "area klien"
1612
-
1613
  #~ msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
1614
  #~ msgstr ""
1615
  #~ "Jika Anda menikmati plugin kami, silakan memberikan 5 bintang pada "
@@ -1709,9 +1705,6 @@ msgstr ""
1709
  #~ msgid "Free plugins"
1710
  #~ msgstr "plugin gratis"
1711
 
1712
- #~ msgid "Download"
1713
- #~ msgstr "Download"
1714
-
1715
  #~ msgid "Install now from wordpress.org"
1716
  #~ msgstr "Instal sekarang dari wordpress.org"
1717
 
@@ -1766,9 +1759,6 @@ msgstr ""
1766
  #~ msgid "Send me a copy"
1767
  #~ msgstr "Kirimkan saya salinan"
1768
 
1769
- #~ msgid "Submit"
1770
- #~ msgstr "Menyerahkan"
1771
-
1772
  #~ msgid "Your name is required."
1773
  #~ msgstr "Nama Anda diperlukan."
1774
 
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2021-02-15 10:54+0200\n"
6
+ "PO-Revision-Date: 2021-02-15 10:54+0200\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"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "Plural-Forms: nplurals=1; plural=0;\n"
17
+ "X-Generator: Poedit 2.4.2\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: bws_functions.php:73 bws_functions.php:239
21
  msgid "requires"
22
  msgstr "membutuhkan"
23
 
54
  msgid "Need help?"
55
  msgstr "Butuh bantuan?"
56
 
57
+ #: bws_functions.php:104 bws_functions.php:949 class-bws-settings.php:1082
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:529
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:208 bws_menu.php:600
82
+ #: class-bws-settings.php:179
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:226
103
  msgid "Learn more"
104
  msgstr "Belajarlah lagi"
105
 
116
  msgid "The Pro Trial license will expire on"
117
  msgstr "Lisensi Percobaan Pro akan berakhir pada"
118
 
119
+ #: bws_functions.php:199 bws_functions.php:222 bws_functions.php:266
120
+ #: bws_functions.php:276 bws_functions.php:475
121
+ msgid "Close notice"
122
+ msgstr "Tutup pemberitahuan"
123
+
124
+ #: bws_functions.php:204
125
+ msgid "It’s time to upgrade your"
126
+ msgstr "Saatnya untuk meng-upgrade Anda"
127
+
128
+ #: bws_functions.php:204
129
+ msgid "to"
130
+ msgstr "untuk"
131
+
132
+ #: bws_functions.php:204
133
+ msgid "version!"
134
+ msgstr "versi!"
135
+
136
+ #: bws_functions.php:205
137
+ msgid "Extend standard plugin functionality with new great options."
138
+ msgstr "Memperluas fungsi Plugin standar dengan pilihan besar baru."
139
+
140
+ #: bws_functions.php:226
141
+ #, php-format
142
+ msgid ""
143
+ "Your license key for %s expires on %s and you won't be granted TOP-PRIORITY "
144
+ "SUPPORT or UPDATES."
145
+ msgstr ""
146
+ "Kunci lisensi untuk %s berakhir pada %s dan Anda tidak akan diberikan TOP-"
147
+ "PRIORITAS DUKUNGAN atau PEMBARUAN."
148
+
149
+ #: bws_functions.php:241
150
  msgid ""
151
  "or higher! We do not guarantee that our plugin will work correctly. Please "
152
  "upgrade to WordPress latest version."
154
  "atau lebih tinggi! Kami tidak menjamin bahwa plugin kami akan bekerja dengan "
155
  "benar. Silakan upgrade ke WordPress versi terbaru."
156
 
157
+ #: bws_functions.php:256
158
  #, php-format
159
  msgid "Thank you for installing %s plugin!"
160
  msgstr ""
161
 
162
+ #: bws_functions.php:258
163
  msgid "Let's get started"
164
  msgstr "Mari kita mulai"
165
 
166
+ #: bws_functions.php:259 bws_functions.php:292 bws_menu.php:533
167
+ #: bws_menu.php:535
168
  msgid "Settings"
169
  msgstr "pengaturan"
170
 
171
+ #: bws_functions.php:261 bws_menu.php:327 class-bws-settings.php:809
172
+ #: class-bws-settings.php:1084 class-bws-settings.php:1094 deprecated.php:234
173
  msgid "or"
174
  msgstr "atau"
175
 
176
+ #: bws_functions.php:262 bws_functions.php:294
177
  msgid "Add New"
178
  msgstr "Tambah baru"
179
 
180
+ #: bws_functions.php:281
 
 
 
 
 
181
  msgid "Thank you for installing plugins by BestWebSoft!"
182
  msgstr "Terima kasih untuk menginstal plugin dengan BestWebSoft!"
183
 
184
+ #: bws_functions.php:283
185
  msgid "More Details"
186
  msgstr "Keterangan lebih lanjut"
187
 
188
+ #: bws_functions.php:284
189
  msgid "Less Details"
190
  msgstr "Kurang Detail"
191
 
192
+ #: bws_functions.php:312
193
  msgid "Deprecated function(-s) is used on the site here:"
194
  msgstr "Fungsi usang (-s) digunakan di situs di sini:"
195
 
196
+ #: bws_functions.php:326
197
  msgid ""
198
  "This function(-s) will be removed over time. Please update the product(-s)."
199
  msgstr ""
200
  "Fungsi ini (-s) akan dihapus dari waktu ke waktu. Perbarui produk (-s)."
201
 
202
+ #: bws_functions.php:470
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
203
  #, php-format
204
  msgid "Thank you for choosing %s plugin!"
205
  msgstr ""
206
 
207
+ #: bws_functions.php:471
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:472
216
  msgid "Suggest a Feature"
217
  msgstr "Sarankan Fitur sebuah"
218
 
219
+ #: bws_functions.php:488 class-bws-settings.php:580 class-bws-settings.php:583
220
+ #: class-bws-settings.php:635 class-bws-settings.php:638
221
  msgid "Notice"
222
  msgstr "Melihat"
223
 
224
+ #: bws_functions.php:488
225
  msgid "The plugin's settings have been changed."
226
  msgstr "pengaturan plugin ini telah berubah."
227
 
228
+ #: bws_functions.php:489 class-bws-settings.php:222 class-bws-settings.php:242
 
229
  msgid "Save Changes"
230
  msgstr "Simpan perubahan"
231
 
232
+ #: bws_functions.php:503
233
  msgid ""
234
  "You can always look at premium options by checking the \"Pro Options\" in "
235
  "the \"Misc\" tab."
237
  "Anda selalu dapat melihat pilihan premium dengan memeriksa \\ \"Pro Options "
238
  "\" di \\ tab \"Misc \"."
239
 
240
+ #: bws_functions.php:679
 
 
 
 
 
 
 
 
241
  msgid "Add shortcode"
242
  msgstr "Tambahkan shortcode"
243
 
244
+ #: bws_functions.php:679
245
  msgid "Add BestWebSoft plugins' shortcodes using this button."
246
  msgstr "Tambahkan shortcode BestWebSoft plugin 'menggunakan tombol ini."
247
 
248
+ #: bws_functions.php:765
249
  msgid "Close"
250
  msgstr "Dekat"
251
 
252
+ #: bws_functions.php:851
253
  msgid "Are you sure you want to restore default settings?"
254
  msgstr "Apakah Anda yakin ingin mengembalikan pengaturan default?"
255
 
256
+ #: bws_functions.php:854
257
  msgid "Yes, restore all settings"
258
  msgstr "Ya, mengembalikan semua pengaturan"
259
 
260
+ #: bws_functions.php:855
261
  msgid "No, go back to the settings page"
262
  msgstr "Tidak, kembali ke halaman pengaturan"
263
 
264
+ #: bws_functions.php:897
265
  msgid "Plugin"
266
  msgstr "Plugin"
267
 
268
+ #: bws_functions.php:906
269
  msgid "Shortcode settings"
270
  msgstr "pengaturan shortcode"
271
 
272
+ #: bws_functions.php:911
273
  msgid "The shortcode will be inserted"
274
  msgstr "shortcode akan dimasukkan"
275
 
276
+ #: bws_functions.php:954
277
  msgid "FAQ"
278
  msgstr "FAQ"
279
 
280
+ #: bws_functions.php:960
281
  msgid "For more information:"
282
  msgstr "Untuk informasi lebih lanjut:"
283
 
284
+ #: bws_functions.php:961 bws_menu.php:401 class-bws-settings.php:776
285
  msgid "Documentation"
286
  msgstr "Dokumentasi"
287
 
288
+ #: bws_functions.php:962 bws_menu.php:403 class-bws-settings.php:778
289
  msgid "Video Instructions"
290
  msgstr "Petunjuk Video"
291
 
292
+ #: bws_functions.php:963
293
  msgid "Submit a Request"
294
  msgstr "Mengajukan permohonan"
295
 
296
+ #: bws_menu.php:101 class-bws-settings.php:860
297
  msgid "Wrong license key"
298
  msgstr "kunci lisensi yang salah"
299
 
300
+ #: bws_menu.php:122 class-bws-settings.php:887 class-bws-settings.php:966
301
+ #: class-bws-settings.php:1004
 
302
  msgid ""
303
  "Something went wrong. Please try again later. If the error appears again, "
304
  "please contact us"
306
  "Ada yang salah. Silakan coba lagi nanti. Jika kesalahan muncul lagi, "
307
  "silahkan hubungi kami"
308
 
309
+ #: bws_menu.php:122 class-bws-settings.php:887 class-bws-settings.php:966
310
+ #: class-bws-settings.php:1004
 
311
  msgid "We are sorry for inconvenience."
312
  msgstr "Kami mohon maaf atas ketidaknyamanan."
313
 
314
+ #: bws_menu.php:129 class-bws-settings.php:893 class-bws-settings.php:1010
 
315
  msgid "Wrong license key."
316
  msgstr "kunci lisensi yang salah."
317
 
318
+ #: bws_menu.php:131
319
  msgid ""
320
  "This license key is bound to another site. Change it via personal Client "
321
  "Area."
323
  "kunci lisensi ini terikat ke situs lain. Mengubahnya melalui personal Area "
324
  "Klien."
325
 
326
+ #: bws_menu.php:131
327
  msgid "Log in"
328
  msgstr "Masuk"
329
 
330
+ #: bws_menu.php:133 bws_menu.php:333 deprecated.php:157
331
  msgid "Unfortunately, you have exceeded the number of available tries per day."
332
  msgstr "Sayangnya, Anda telah melebihi jumlah mencoba tersedia per hari."
333
 
334
+ #: bws_menu.php:135
335
  #, php-format
336
  msgid ""
337
  "Unfortunately, Your license has expired. To continue getting top-priority "
340
  "Sayangnya, lisensi Anda telah kedaluwarsa. Untuk terus mendapatkan dukungan "
341
  "top-prioritas dan Plugin update, Anda harus memperpanjang di Anda %s"
342
 
343
+ #: bws_menu.php:137 class-bws-settings.php:1018
344
  msgid ""
345
  "Unfortunately, the Pro licence was already installed to this domain. The Pro "
346
  "Trial license can be installed only once."
348
  "Sayangnya, lisensi Pro sudah dipasang untuk domain ini. Lisensi Percobaan "
349
  "Pro dapat diinstal hanya sekali."
350
 
351
+ #: bws_menu.php:143 class-bws-settings.php:908
352
  msgid "The license key is valid."
353
  msgstr "Kunci lisensi berlaku."
354
 
355
+ #: bws_menu.php:145 class-bws-settings.php:912
356
  msgid "Your license will expire on"
357
  msgstr "lisensi Anda akan berakhir pada"
358
 
359
+ #: bws_menu.php:147
360
  msgid "Congratulations! Pro Membership license is activated successfully."
361
  msgstr ""
362
 
363
+ #: bws_menu.php:154 class-bws-settings.php:1028
364
  msgid ""
365
  "Something went wrong. Try again later or upload the plugin manually. We are "
366
  "sorry for inconvenience."
368
  "Ada yang salah. Coba lagi nanti atau meng-upload plugin secara manual. Kami "
369
  "mohon maaf atas ketidaknyamanan."
370
 
371
+ #: bws_menu.php:164
372
  msgid "Please enter your license key."
373
  msgstr "Masukkan kunci lisensi Anda."
374
 
375
+ #: bws_menu.php:175
376
  msgid "Not set"
377
  msgstr "Tidak diatur"
378
 
379
+ #: bws_menu.php:177
380
  msgid "On"
381
  msgstr "Di"
382
 
383
+ #: bws_menu.php:177
384
  msgid "Off"
385
  msgstr "Mati"
386
 
387
+ #: bws_menu.php:178 bws_menu.php:179 bws_menu.php:180 bws_menu.php:181
388
+ #: bws_menu.php:182 bws_menu.php:183 bws_menu.php:192
389
  msgid "N/A"
390
  msgstr "N / A"
391
 
392
+ #: bws_menu.php:183
393
+ #, fuzzy
394
+ #| msgid " Mb"
395
+ msgid "Mb"
396
  msgstr " Mb"
397
 
398
+ #: bws_menu.php:184 bws_menu.php:185 bws_menu.php:186 bws_menu.php:190
399
  msgid "Yes"
400
  msgstr "iya nih"
401
 
402
+ #: bws_menu.php:184 bws_menu.php:185 bws_menu.php:186 bws_menu.php:190
403
  msgid "No"
404
  msgstr "Tidak"
405
 
406
+ #: bws_menu.php:197
407
  msgid "WordPress Environment"
408
  msgstr "WordPress Lingkungan"
409
 
410
+ #: bws_menu.php:199
411
  msgid "Home URL"
412
  msgstr "URL rumah"
413
 
414
+ #: bws_menu.php:200
415
  msgid "Website URL"
416
  msgstr "alamat situs web"
417
 
418
+ #: bws_menu.php:201
419
  msgid "WP Version"
420
  msgstr "WP Versi"
421
 
422
+ #: bws_menu.php:202
423
  msgid "WP Multisite"
424
  msgstr "WP Multisite"
425
 
426
+ #: bws_menu.php:203
427
  msgid "WP Memory Limit"
428
  msgstr "WP Memory Limit"
429
 
430
+ #: bws_menu.php:204
431
  msgid "Active Theme"
432
  msgstr "Tema aktif"
433
 
434
+ #: bws_menu.php:204 bws_menu.php:249 bws_menu.php:252
435
  #, php-format
436
  msgid "by %s"
437
  msgstr "oleh %s"
438
 
439
+ #: bws_menu.php:208
440
  msgid "Server Environment"
441
  msgstr "Server Lingkungan"
442
 
443
+ #: bws_menu.php:210
444
  msgid "Operating System"
445
  msgstr "Sistem operasi"
446
 
447
+ #: bws_menu.php:211
448
  msgid "Server"
449
  msgstr "Server"
450
 
451
+ #: bws_menu.php:212
452
  msgid "PHP Version"
453
  msgstr "PHP Versi"
454
 
455
+ #: bws_menu.php:213
456
  msgid "PHP Allow URL fopen"
457
  msgstr "PHP Izinkan URL fopen"
458
 
459
+ #: bws_menu.php:214
460
  msgid "PHP Memory Limit"
461
  msgstr "PHP Memory Limit"
462
 
463
+ #: bws_menu.php:215
464
  msgid "Memory Usage"
465
  msgstr "memory Usage"
466
 
467
+ #: bws_menu.php:216
468
  msgid "PHP Max Upload Size"
469
  msgstr "Ukuran PHP Max Upload"
470
 
471
+ #: bws_menu.php:217
472
  msgid "PHP Max Post Size"
473
  msgstr "PHP Max Pos Ukuran"
474
 
475
+ #: bws_menu.php:218
476
  msgid "PHP Max Script Execute Time"
477
  msgstr "PHP Max Script Jalankan Waktu"
478
 
479
+ #: bws_menu.php:219
480
  msgid "PHP Exif support"
481
  msgstr "dukungan PHP Exif"
482
 
483
+ #: bws_menu.php:220
484
  msgid "PHP IPTC support"
485
  msgstr "dukungan PHP IPTC"
486
 
487
+ #: bws_menu.php:221
488
  msgid "PHP XML support"
489
  msgstr "dukungan XML PHP"
490
 
491
+ #: bws_menu.php:227
492
  msgid "Database"
493
  msgstr "database"
494
 
495
+ #: bws_menu.php:229
496
  msgid "WP DB version"
497
  msgstr "Versi WP DB"
498
 
499
+ #: bws_menu.php:230
500
  msgid "MySQL version"
501
  msgstr "versi MySQL"
502
 
503
+ #: bws_menu.php:231
504
  msgid "SQL Mode"
505
  msgstr "SQL Modus"
506
 
507
+ #: bws_menu.php:235
508
  msgid "Active Plugins"
509
  msgstr "Plugin aktif"
510
 
511
+ #: bws_menu.php:240
512
  msgid "Inactive Plugins"
513
  msgstr "Plugin tidak aktif"
514
 
515
+ #: bws_menu.php:261
516
  msgid "Please enter a valid email address."
517
  msgstr "Silakan isi alamat email."
518
 
519
+ #: bws_menu.php:263
520
  #, php-format
521
  msgid "Email with system info is sent to %s."
522
  msgstr ""
523
 
524
+ #: bws_menu.php:267
525
  msgid "Thank you for contacting us."
526
  msgstr "Terima kasih sudah menghubungi kami."
527
 
528
+ #: bws_menu.php:290
529
  msgid "Sorry, email message could not be delivered."
530
  msgstr "Maaf, pesan email tidak dapat disampaikan."
531
 
532
+ #: bws_menu.php:306 bws_menu.php:310 bws_menu.php:359 deprecated.php:26
533
  msgid "Plugins"
534
  msgstr "plugin"
535
 
536
+ #: bws_menu.php:307 bws_menu.php:311 bws_menu.php:587 deprecated.php:27
537
  msgid "Themes"
538
  msgstr "tema"
539
 
540
+ #: bws_menu.php:308 bws_menu.php:312 bws_menu.php:617
541
  msgid "System status"
542
  msgstr "Status sistem"
543
 
544
+ #: bws_menu.php:316
545
  msgid "Support"
546
  msgstr "Mendukung"
547
 
548
+ #: bws_menu.php:317
549
  msgid "Manage purchased licenses & subscriptions"
550
  msgstr "Mengelola membeli lisensi & langganan"
551
 
552
+ #: bws_menu.php:325
553
  #, php-format
554
  msgid "Get Access to %s+ Premium Plugins"
555
  msgstr "Dapatkan Akses ke %s + Premium Plugin"
556
 
557
+ #: bws_menu.php:327
558
  msgid "Subscribe to Pro Membership"
559
  msgstr "Berlangganan Pro Keanggotaan"
560
 
561
+ #: bws_menu.php:335 bws_menu.php:346 class-bws-settings.php:822
562
+ #: deprecated.php:123
563
  msgid "Check license key"
564
  msgstr "Periksa kunci lisensi"
565
 
566
+ #: bws_menu.php:338
567
  msgid "Enter your license key"
568
  msgstr "Masukkan kunci lisensi Anda"
569
 
570
+ #: bws_menu.php:344 bws_menu.php:539 bws_menu.php:548
571
+ #: class-bws-settings.php:801 deprecated.php:155 deprecated.php:163
572
+ #: deprecated.php:240 deprecated.php:249
573
  msgid "Activate"
574
  msgstr "Mengaktifkan"
575
 
576
+ #: bws_menu.php:360
577
  msgid "Upload Plugin"
578
  msgstr "Upload Plugin"
579
 
580
+ #: bws_menu.php:364
581
  #, php-format
582
  msgid ""
583
  "The plugin generated %d characters of <strong>unexpected output</strong> "
590
  "# 8221; pesan, masalah dengan feed sindikasi atau masalah lain, coba "
591
  "menonaktifkan atau menghapus plugin ini."
592
 
593
+ #: bws_menu.php:366
594
  msgid ""
595
  "Plugin could not be activated because it triggered a <strong>fatal error</"
596
  "strong>."
598
  "Plugin tidak dapat diaktifkan karena memicu <strong> kesalahan fatal </ "
599
  "strong>."
600
 
601
+ #: bws_menu.php:369
602
  msgid "Plugin <strong>activated</strong>."
603
  msgstr "Plugin <strong> diaktifkan </ strong>."
604
 
605
+ #: bws_menu.php:383
606
+ #, fuzzy
607
+ #| msgid "Upload Plugin"
608
+ msgid "Download Pro Plugin"
609
+ msgstr "Upload Plugin"
610
 
611
+ #: bws_menu.php:385 class-bws-settings.php:759
612
+ msgid "Your Pro plugin is ready"
613
+ msgstr ""
614
 
615
+ #: bws_menu.php:387 class-bws-settings.php:761
616
+ msgid "Your plugin has been zipped, and now is ready to download."
617
+ msgstr ""
 
618
 
619
+ #: bws_menu.php:390 class-bws-settings.php:764
620
+ #, fuzzy
621
+ #| msgid "Download"
622
+ msgid "Download Now"
623
+ msgstr "Download"
624
 
625
+ #: bws_menu.php:394 class-bws-settings.php:768
626
+ #, fuzzy
627
+ #| msgid "Installing the plugin"
628
+ msgid "Need help installing the plugin?"
629
  msgstr "Instalasi plugin"
630
 
631
+ #: bws_menu.php:396 class-bws-settings.php:770
632
+ msgid "How to install WordPress plugin from your admin Dashboard (ZIP archive)"
 
 
 
 
 
 
633
  msgstr ""
 
 
634
 
635
+ #: bws_menu.php:399 class-bws-settings.php:774
636
+ #, fuzzy
637
+ #| msgid "Let's get started"
638
+ msgid "Get Started"
639
+ msgstr "Mari kita mulai"
640
+
641
+ #: bws_menu.php:405 class-bws-settings.php:780
642
+ msgid "Knowledge Base"
643
+ msgstr ""
644
 
645
+ #: bws_menu.php:408
646
+ msgid "Licenses & Domains"
647
+ msgstr ""
648
 
649
+ #: bws_menu.php:411
650
+ msgid "Client Area"
651
+ msgstr "area klien"
652
 
653
+ #: bws_menu.php:413
654
  msgid "Return to BestWebSoft Panel"
655
  msgstr "Kembali ke BestWebSoft Panel"
656
 
657
+ #: bws_menu.php:420 bws_menu.php:440 bws_menu.php:569
658
  msgid "All"
659
  msgstr "Semua"
660
 
661
+ #: bws_menu.php:423 bws_menu.php:606
662
  msgid "Installed"
663
  msgstr "dipasang"
664
 
665
+ #: bws_menu.php:426
666
  msgid "Not Installed"
667
  msgstr "Tidak terpasang"
668
 
669
+ #: bws_menu.php:433
670
  msgid "Filter results"
671
  msgstr "Filter hasil"
672
 
673
+ #: bws_menu.php:436 bws_menu.php:565
674
  msgid "Category"
675
  msgstr "Kategori"
676
 
677
+ #: bws_menu.php:500
678
  msgid "Not installed"
679
  msgstr "Tidak terpasang"
680
 
681
+ #: bws_menu.php:504
682
  msgid "Renew to get updates"
683
  msgstr "Renew untuk mendapatkan update"
684
 
685
+ #: bws_menu.php:507
686
  #, php-format
687
  msgid "Update to v %s"
688
  msgstr "Update untuk v %s"
689
 
690
+ #: bws_menu.php:519 bws_menu.php:542
691
+ msgid "Get Pro"
692
+ msgstr ""
693
 
694
+ #: bws_menu.php:525 class-bws-settings.php:192 class-bws-settings.php:1091
695
  msgid "Upgrade to Pro"
696
  msgstr "Upgrade ke yang lebih baik"
697
 
698
+ #: bws_menu.php:539 bws_menu.php:548
699
  msgid "Activate this plugin"
700
  msgstr "Aktifkan plugin ini"
701
 
702
+ #: bws_menu.php:551
703
  msgid "Install this plugin"
704
  msgstr "Menginstal plugin ini"
705
 
706
+ #: bws_menu.php:551
707
+ msgid "Install Now"
708
+ msgstr "Pasang sekarang"
709
+
710
+ #: bws_menu.php:560
711
  msgid "Nothing found. Try another criteria."
712
  msgstr "Tidak ada yang ditemukan. Coba kriteria lain."
713
 
714
+ #: bws_menu.php:597
715
  #, php-format
716
  msgid "By %s"
717
  msgstr "Oleh %s"
718
 
719
+ #: bws_menu.php:604
720
  msgid "Already Installed"
721
  msgstr "sudah Dipasang"
722
 
723
+ #: bws_menu.php:614
724
  msgid "Browse More WordPress Themes"
725
  msgstr ""
726
 
727
+ #: bws_menu.php:623
728
  msgid "Send to support"
729
  msgstr "Kirim untuk mendukung"
730
 
731
+ #: bws_menu.php:630
732
  msgid "Send to custom email &#187;"
733
  msgstr "Kirim ke email khusus & # 187;"
734
 
735
+ #: class-bws-settings.php:167
736
  msgid "Information"
737
  msgstr "Informasi"
738
 
739
+ #: class-bws-settings.php:179
740
  msgid "Inactive"
741
  msgstr "non-aktif"
742
 
743
+ #: class-bws-settings.php:187
744
  msgid "Expired"
745
  msgstr "kedaluwarsa"
746
 
747
+ #: class-bws-settings.php:190
748
  #, php-format
749
  msgid "%s day(-s) left"
750
  msgstr "%s hari (-s) kiri"
751
 
752
+ #: class-bws-settings.php:196
753
  #, php-format
754
  msgid "Expired on %s"
755
  msgstr "Berakhir pada %s"
756
 
757
+ #: class-bws-settings.php:196
758
  msgid "Renew Now"
759
  msgstr "Perbarui sekarang"
760
 
761
+ #: class-bws-settings.php:198
762
  msgid "Active"
763
  msgstr "Aktif"
764
 
765
+ #: class-bws-settings.php:203
766
  msgid "License"
767
  msgstr "Lisensi"
768
 
769
+ #: class-bws-settings.php:206
770
  msgid "Status"
771
  msgstr "Status"
772
 
773
+ #: class-bws-settings.php:210
774
  msgid "Version"
775
  msgstr "Versi"
776
 
777
+ #: class-bws-settings.php:323
778
  msgid "All plugin settings were restored."
779
  msgstr "Semua pengaturan Plugin dipulihkan."
780
 
781
+ #: class-bws-settings.php:463
782
  msgid "Custom Code"
783
  msgstr "Kode kustom"
784
 
785
+ #: class-bws-settings.php:467
786
  msgid "You do not have sufficient permissions to edit plugins for this site."
787
  msgstr ""
788
  "Anda tidak memiliki cukup izin untuk menyunting plugin untuk situs ini."
789
 
790
+ #: class-bws-settings.php:472
791
  msgid "These styles will be added to the header on all pages of your site."
792
  msgstr "Gaya ini akan ditambahkan ke header pada semua halaman situs Anda."
793
 
794
+ #: class-bws-settings.php:475
795
  #, php-format
796
  msgid ""
797
  "This PHP code will be hooked to the %s action and will be printed on front "
800
  "Kode PHP ini akan ketagihan untuk %s tindakan dan akan dicetak pada ujung "
801
  "depan saja."
802
 
803
+ #: class-bws-settings.php:478
804
  msgid "These code will be added to the header on all pages of your site."
805
  msgstr "Kode ini akan ditambahkan ke header pada semua halaman situs Anda."
806
 
807
+ #: class-bws-settings.php:486
808
  #, php-format
809
  msgid ""
810
  "You need to make this files writable before you can save your changes. See "
813
  "Anda perlu membuat file ini ditulis sebelum Anda dapat menyimpan perubahan. "
814
  "Lihat %s Codex %s untuk informasi lebih lanjut."
815
 
816
+ #: class-bws-settings.php:496
817
  msgid "Browsing"
818
  msgstr "Browsing"
819
 
820
+ #: class-bws-settings.php:501
821
  #, php-format
822
  msgid "Activate custom %s code."
823
  msgstr "Aktifkan kustom %s kode."
824
 
825
+ #: class-bws-settings.php:509
826
  #, php-format
827
  msgid "Learn more about %s"
828
  msgstr "Pelajari lebih lanjut tentang %s"
829
 
830
+ #: class-bws-settings.php:571
831
  msgid "Miscellaneous Settings"
832
  msgstr "Pengaturan Miscellaneous"
833
 
834
+ #: class-bws-settings.php:580 class-bws-settings.php:635
835
  #, php-format
836
  msgid ""
837
  "It is prohibited to change %s settings on this site in the %s network "
839
  msgstr ""
840
  "Dilarang mengubah %s pengaturan di situs ini di %s pengaturan jaringan."
841
 
842
+ #: class-bws-settings.php:583 class-bws-settings.php:638
843
  #, php-format
844
  msgid ""
845
  "It is prohibited to view %s settings on this site in the %s network settings."
846
  msgstr "Dilarang melihat %s pengaturan di situs ini di %s pengaturan jaringan."
847
 
848
+ #: class-bws-settings.php:592
849
  msgid "Pro Options"
850
  msgstr "Pro Pilihan"
851
 
852
+ #: class-bws-settings.php:596
853
  msgid "Enable to display plugin Pro options."
854
  msgstr "Memungkinkan untuk menampilkan opsi Pro Plugin."
855
 
856
+ #: class-bws-settings.php:602
857
  msgid "Track Usage"
858
  msgstr "track Penggunaan"
859
 
860
+ #: class-bws-settings.php:606
861
  msgid ""
862
  "Enable to allow tracking plugin usage anonymously in order to make it better."
863
  msgstr ""
864
  "Aktifkan untuk memungkinkan pelacakan penggunaan Plugin anonim untuk "
865
  "membuatnya lebih baik."
866
 
867
+ #: class-bws-settings.php:611
868
  msgid "Default Settings"
869
  msgstr "Pengaturan default"
870
 
871
+ #: class-bws-settings.php:613
872
  msgid "Restore Settings"
873
  msgstr "Kembalikan Pengaturan"
874
 
875
+ #: class-bws-settings.php:614
876
  msgid "This will restore plugin settings to defaults."
877
  msgstr "Ini akan mengembalikan pengaturan plugin untuk default."
878
 
879
+ #: class-bws-settings.php:626
880
  msgid "Import / Export"
881
  msgstr "Ekspor Impor"
882
 
883
+ #: class-bws-settings.php:744
 
884
  msgid "License Key"
885
  msgstr "Kunci lisensi"
886
 
887
+ #: class-bws-settings.php:803
 
 
 
 
 
 
 
 
 
 
 
 
 
888
  #, php-format
889
  msgid "Enter your license key to activate %s and get premium plugin features."
890
  msgstr ""
891
  "Masukkan kunci lisensi Anda untuk mengaktifkan %s dan mendapatkan fitur "
892
  "Plugin premium."
893
 
894
+ #: class-bws-settings.php:806 class-bws-settings.php:1014 deprecated.php:243
 
895
  msgid ""
896
  "Unfortunately, you have exceeded the number of available tries per day. "
897
  "Please, upload the plugin manually."
899
  "Sayangnya, Anda telah melebihi jumlah mencoba tersedia per hari. Silakan, "
900
  "upload plugin secara manual."
901
 
902
+ #: class-bws-settings.php:809 deprecated.php:234
903
  #, php-format
904
  msgid "Start Your Free %s-Day Trial Now"
905
  msgstr "Mulai Anda gratis %s -Day Percobaan Sekarang"
906
 
907
+ #: class-bws-settings.php:824
908
  msgid ""
909
  "If necessary, you can check if the license key is correct or reenter it in "
910
  "the field below."
912
  "Jika perlu, Anda dapat memeriksa apakah kunci lisensi benar atau masuk "
913
  "kembali ke dalam bidang di bawah."
914
 
915
+ #: class-bws-settings.php:833
916
  msgid "Manage License Settings"
917
  msgstr "Kelola Setelan License"
918
 
919
+ #: class-bws-settings.php:835
920
  msgid "Login to Client Area"
921
  msgstr "Login ke Area Klien"
922
 
923
+ #: class-bws-settings.php:837
924
  msgid ""
925
  "Manage active licenses, download BWS products, and view your payment history "
926
  "using BestWebSoft Client Area."
928
  "Mengelola lisensi aktif, men-download produk BWS, dan melihat riwayat "
929
  "pembayaran Anda menggunakan BestWebSoft Client Area."
930
 
931
+ #: class-bws-settings.php:895 class-bws-settings.php:1012
 
932
  msgid "This license key is bound to another site."
933
  msgstr "kunci lisensi ini terikat ke situs lain."
934
 
935
+ #: class-bws-settings.php:897
936
  msgid ""
937
  "This license key is valid, but Your license has expired. If you want to "
938
  "update our plugin in future, you should extend the license."
941
  "ingin memperbarui plugin kami di masa depan, Anda harus memperpanjang "
942
  "lisensi."
943
 
944
+ #: class-bws-settings.php:899
945
  msgid "Unfortunately, you have exceeded the number of available tries."
946
  msgstr "Sayangnya, Anda telah melebihi jumlah mencoba tersedia."
947
 
948
+ #: class-bws-settings.php:901
949
  msgid ""
950
  "Unfortunately, the Pro Trial licence was already installed to this domain. "
951
  "The Pro Trial license can be installed only once."
953
  "Sayangnya, lisensi Percobaan Pro sudah dipasang untuk domain ini. Lisensi "
954
  "Percobaan Pro dapat diinstal hanya sekali."
955
 
956
+ #: class-bws-settings.php:906
957
  msgid "The Pro Trial license key is valid."
958
  msgstr "Kunci lisensi Percobaan Pro berlaku."
959
 
960
+ #: class-bws-settings.php:919 deprecated.php:142
961
  #, php-format
962
  msgid ""
963
  "In order to continue using the plugin it is necessary to buy a %s license."
964
  msgstr ""
965
  "Dalam rangka untuk terus menggunakan plugin perlu untuk membeli %s lisensi."
966
 
967
+ #: class-bws-settings.php:1016
968
  #, php-format
969
  msgid ""
970
  "Unfortunately, Your license has expired. To continue getting top-priority "
971
  "support and plugin updates, you should extend it in your %s."
972
  msgstr ""
973
 
974
+ #: class-bws-settings.php:1065
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
975
  msgid "Please, enter Your license key"
976
  msgstr "Silakan, masukkan kunci lisensi Anda"
977
 
978
+ #: class-bws-settings.php:1078
979
  msgid "Need Help?"
980
  msgstr "Butuh bantuan?"
981
 
982
+ #: class-bws-settings.php:1080
983
  msgid "Read the Instruction"
984
  msgstr "Baca Instruksi"
985
 
986
+ #: class-bws-settings.php:1084
987
  msgid "Watch the Video"
988
  msgstr "Saksikan Video"
989
 
990
+ #: class-bws-settings.php:1095
991
  msgid "Start Your Free Trial"
992
  msgstr "Mulai Uji Coba Gratis"
993
 
994
+ #: class-bws-settings.php:1130
995
+ #, fuzzy
996
+ #| msgid "Suggest a Feature"
997
+ msgid "Request a Feature"
998
+ msgstr "Sarankan Fitur sebuah"
999
+
1000
+ #: class-bws-settings.php:1135
1001
+ #, php-format
1002
+ msgid "How can we improve %s?"
1003
  msgstr ""
1004
 
1005
+ #: class-bws-settings.php:1137
1006
+ msgid "We look forward to hear your ideas."
1007
  msgstr ""
1008
 
1009
+ #: class-bws-settings.php:1139
1010
+ msgid "Describe your idea"
1011
  msgstr ""
1012
 
1013
+ #: class-bws-settings.php:1142 deactivation-form.php:120
1014
+ msgid "Send website data and allow to contact me back"
1015
  msgstr ""
1016
 
1017
+ #: class-bws-settings.php:1147
1018
+ msgid "Submit"
1019
+ msgstr "Menyerahkan"
1020
+
1021
+ #: class-bws-settings.php:1148 deactivation-form.php:127
1022
+ msgid "Processing"
1023
  msgstr ""
1024
 
1025
+ #: class-bws-settings.php:1149
1026
+ msgid "Thank you!"
1027
  msgstr ""
1028
 
1029
+ #: deactivation-form.php:22
1030
+ msgid "Need help? We are ready to answer your questions."
1031
+ msgstr ""
1032
+
1033
+ #: deactivation-form.php:22
1034
+ msgid "Contact Support"
1035
+ msgstr ""
1036
+
1037
+ #: deactivation-form.php:27
1038
+ msgid "The plugin is not working"
1039
+ msgstr ""
1040
+
1041
+ #: deactivation-form.php:33
1042
+ msgid "The plugin didn't work as expected"
1043
+ msgstr ""
1044
+
1045
+ #: deactivation-form.php:39
1046
  msgid "The plugin suddenly stopped working"
1047
  msgstr ""
1048
 
1049
+ #: deactivation-form.php:46
1050
  msgid "The plugin broke my site"
1051
  msgstr ""
1052
 
1053
+ #: deactivation-form.php:53
1054
  msgid "I couldn't understand how to get it work"
1055
  msgstr ""
1056
 
1057
+ #: deactivation-form.php:60
1058
  msgid "I found a better plugin"
1059
  msgstr ""
1060
 
1061
+ #: deactivation-form.php:66
 
 
 
 
1062
  msgid "The plugin is great, but I need specific feature that you don't support"
1063
  msgstr ""
1064
 
1065
+ #: deactivation-form.php:72
 
 
 
 
1066
  msgid "I no longer need the plugin"
1067
  msgstr ""
1068
 
1069
+ #: deactivation-form.php:78
1070
  msgid "It's a temporary deactivation, I'm just debugging an issue"
1071
  msgstr ""
1072
 
1073
+ #: deactivation-form.php:84
1074
  msgid "Other"
1075
  msgstr "Lain"
1076
 
1077
+ #: deactivation-form.php:93
1078
  msgid "Quick Feedback"
1079
  msgstr ""
1080
 
1081
+ #: deactivation-form.php:95
1082
  msgid "If you have a moment, please let us know why you are deactivating"
1083
  msgstr ""
1084
 
1085
+ #: deactivation-form.php:125
1086
+ msgid "Submit and Deactivate"
 
 
 
 
 
 
 
 
1087
  msgstr ""
1088
 
1089
+ #: deactivation-form.php:126
1090
+ msgid "Skip and Deactivate"
1091
  msgstr ""
1092
 
1093
+ #: deactivation-form.php:272
1094
  msgid "Please tell us the reason so we can improve it."
1095
  msgstr ""
1096
 
1097
+ #: deprecated.php:28
 
 
 
 
1098
  msgid "System Status"
1099
  msgstr "Status sistem"
1100
 
1101
+ #: deprecated.php:119
 
 
 
 
1102
  msgid ""
1103
  "If necessary, you can check if the license key is correct or reenter it in "
1104
  "the field below. You can find your license key on your personal page - "
1108
  "kembali ke dalam bidang di bawah. Anda dapat menemukan kunci lisensi Anda "
1109
  "pada halaman pribadi Anda - Area Klien - di website kami"
1110
 
1111
+ #: deprecated.php:119
1112
  msgid ""
1113
  "(your username is the email address specified during the purchase). If "
1114
  "necessary, please submit \"Lost your password?\" request."
1116
  "(Nama pengguna adalah alamat email yang ditentukan selama pembelian). Jika "
1117
  "perlu, silahkan pilih \\ \"Kehilangan kata sandi Anda? \" Permintaan."
1118
 
1119
+ #: deprecated.php:142
1120
  msgid "After that, you can activate it by entering your license key."
1121
  msgstr ""
1122
  "Setelah itu, Anda dapat mengaktifkannya dengan memasukkan kunci lisensi Anda."
1123
 
1124
+ #: deprecated.php:145 deprecated.php:228
1125
  msgid "License key can be found in the"
1126
  msgstr "kunci lisensi dapat ditemukan di"
1127
 
1128
+ #: deprecated.php:147 deprecated.php:230
1129
  msgid "(your username is the email address specified during the purchase)."
1130
  msgstr "(Nama pengguna adalah alamat email yang ditentukan selama pembelian)."
1131
 
1132
+ #: deprecated.php:170
1133
  msgid ""
1134
  "Congratulations! The Pro license of the plugin is activated successfully."
1135
  msgstr "Selamat! Lisensi Pro plugin tersebut berhasil diaktifkan."
1136
 
1137
+ #: deprecated.php:172 deprecated.php:210
1138
  msgid "Please, go to"
1139
  msgstr "Tolong, pergi ke"
1140
 
1141
+ #: deprecated.php:172 deprecated.php:210
1142
  msgid "the setting page"
1143
  msgstr "halaman pengaturan"
1144
 
1145
+ #: deprecated.php:187
 
 
 
 
 
 
 
 
1146
  msgid "Restore all plugin settings to defaults"
1147
  msgstr "Mengembalikan semua pengaturan plugin untuk default"
1148
 
1149
+ #: deprecated.php:189
1150
  msgid "Restore settings"
1151
  msgstr "mengembalikan pengaturan"
1152
 
1153
+ #: deprecated.php:208
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1154
  msgid ""
1155
  "Congratulations! Pro version of the plugin is installed and activated "
1156
  "successfully."
1157
  msgstr "Selamat! Versi Pro plugin diinstal dan diaktifkan berhasil."
1158
 
1159
+ #: deprecated.php:217
1160
  msgid "Show Pro features"
1161
  msgstr "Tampilkan fitur Pro"
1162
 
1163
+ #: deprecated.php:224
1164
  msgid "Enter your license key to install and activate"
1165
  msgstr "Masukkan kunci lisensi Anda untuk menginstal dan mengaktifkan"
1166
 
1167
+ #: deprecated.php:226
1168
  msgid "version of the plugin."
1169
  msgstr "versi plugin."
1170
 
1171
+ #: product_list.php:8
1172
  msgid "Admin Tools"
1173
  msgstr ""
1174
 
1175
+ #: product_list.php:9
1176
  msgid "Content"
1177
  msgstr ""
1178
 
1179
+ #: product_list.php:10
1180
  msgid "eCommerce"
1181
  msgstr ""
1182
 
1183
+ #: product_list.php:11
1184
  msgid "Marketing"
1185
  msgstr ""
1186
 
1187
+ #: product_list.php:12
1188
  msgid "Navigation"
1189
  msgstr ""
1190
 
1191
+ #: product_list.php:13
1192
  msgid "Recommended"
1193
  msgstr "Direkomendasikan"
1194
 
1195
+ #: product_list.php:14
1196
  msgid "Security"
1197
  msgstr "Keamanan"
1198
 
1199
+ #: product_list.php:15
1200
  msgid "SEO"
1201
  msgstr ""
1202
 
1203
+ #: product_list.php:16
1204
  msgid "SMM"
1205
  msgstr ""
1206
 
1207
+ #: product_list.php:23
1208
+ msgid "Give a birth for your bike rental and booking WordPress website."
1209
+ msgstr ""
1210
+
1211
+ #: product_list.php:35
1212
  msgid "Best secure captcha plugin to protect your WordPress forms."
1213
  msgstr ""
1214
 
1215
+ #: product_list.php:45
1216
+ msgid "Create your own rental website for car renting and booking."
1217
  msgstr ""
1218
 
1219
+ #: product_list.php:57
1220
+ msgid ""
1221
+ "Add columns with custom content to WordPress website pages, posts, widgets, "
1222
+ "etc."
1223
+ msgstr ""
1224
+
1225
+ #: product_list.php:64
1226
  msgid ""
1227
  "Allow customers to reach you using secure contact form plugin any website "
1228
  "must have."
1229
  msgstr ""
1230
 
1231
+ #: product_list.php:74
1232
  msgid "Add unlimited number of contact forms to WordPress website."
1233
  msgstr ""
1234
 
1235
+ #: product_list.php:84
1236
  msgid "Save and manage Contact Form messages. Never lose important data."
1237
  msgstr ""
1238
 
1239
+ #: product_list.php:94
1240
  msgid "Add unlimited custom pages to WordPress admin dashboard."
1241
  msgstr ""
1242
 
1243
+ #: product_list.php:104
 
 
 
 
1244
  msgid ""
1245
  "Add custom post types and taxonomies to WordPress website search results."
1246
  msgstr ""
1247
 
1248
+ #: product_list.php:114
1249
  msgid "Add PayPal and 2CO donate buttons to receive charity payments."
1250
  msgstr ""
1251
 
1252
+ #: product_list.php:121
1253
  msgid ""
1254
  "Get latest error log messages to diagnose website problems. Define and fix "
1255
  "issues faster."
1256
  msgstr ""
1257
 
1258
+ #: product_list.php:128
1259
  msgid ""
1260
  "Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and "
1261
  "widgets."
1262
  msgstr ""
1263
 
1264
+ #: product_list.php:138
1265
  msgid ""
1266
  "Add beautiful galleries, albums & images to your WordPress website in a few "
1267
  "clicks."
1268
  msgstr ""
1269
 
1270
+ #: product_list.php:148
 
 
 
 
 
 
1271
  msgid ""
1272
  "Stronger security solution which protects your WordPress website from hacks "
1273
  "and unauthorized login attempts."
1274
  msgstr ""
1275
 
1276
+ #: product_list.php:158
1277
  msgid ""
1278
  "Add Adsense ads to WordPress website pages, posts, custom posts, search "
1279
  "results, categories, tags, and widgets."
1280
  msgstr ""
1281
 
1282
+ #: product_list.php:168
1283
  msgid "Add Google Analytics code to WordPress website and track basic stats."
1284
  msgstr ""
1285
 
1286
+ #: product_list.php:178
1287
+ msgid "Protect WordPress website forms from spam entries with reCaptcha."
 
 
1288
  msgstr ""
1289
 
1290
+ #: product_list.php:188
1291
  msgid "Add customized Google maps to WordPress posts, pages and widgets."
1292
  msgstr ""
1293
 
1294
+ #: product_list.php:198
1295
  msgid ""
1296
  "Generate and add XML sitemap to WordPress website. Help search engines index "
1297
  "your blog."
1298
  msgstr ""
1299
 
1300
+ #: product_list.php:208
1301
  msgid ""
1302
  "Replace external WordPress website links with Google shortlinks and track "
1303
  "click stats."
1304
  msgstr ""
1305
 
1306
+ #: product_list.php:215
1307
  msgid ""
1308
  "Protect WordPress website – allow and deny access for certain IP addresses, "
1309
  "hostnames, etc."
1310
  msgstr ""
1311
 
1312
+ #: product_list.php:225
1313
  msgid ""
1314
  "Create your personal job board and listing WordPress website. Search jobs, "
1315
  "submit CV/resumes, choose candidates."
1316
  msgstr ""
1317
 
1318
+ #: product_list.php:232
1319
  msgid ""
1320
  "Protect WordPress website against brute force attacks. Limit rate of login "
1321
  "attempts."
1322
  msgstr ""
1323
 
1324
+ #: product_list.php:242
1325
  msgid ""
1326
  "Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. "
1327
  "5 plugins included – profile, insider, etc."
1328
  msgstr ""
1329
 
1330
+ #: product_list.php:252
1331
  msgid ""
1332
  "Translate WordPress website content to other languages manually. Create "
1333
  "multilingual pages, posts, widgets, menus, etc."
1334
  msgstr ""
1335
 
1336
+ #: product_list.php:262
1337
  msgid ""
1338
  "Add customizable pagination to WordPress website. Split long content to "
1339
  "multiple pages for better navigation."
1340
  msgstr ""
1341
 
1342
+ #: product_list.php:272
1343
  msgid ""
1344
  "Generate PDF files and print WordPress posts/pages. Customize document "
1345
  "header/footer styles and appearance."
1346
  msgstr ""
1347
 
1348
+ #: product_list.php:282
1349
  msgid ""
1350
  "Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, "
1351
  "Profile) to WordPress posts, pages and widgets."
1352
  msgstr ""
1353
 
1354
+ #: product_list.php:292
1355
  msgid ""
1356
  "Create your personal portfolio WordPress website. Manage and showcase past "
1357
  "projects to get more clients."
1358
  msgstr ""
1359
 
1360
+ #: product_list.php:302
1361
  msgid "Export WordPress posts to CSV file format easily. Configure data order."
1362
  msgstr ""
1363
 
1364
+ #: product_list.php:312
1365
  msgid ""
1366
  "Add extra fields to default WordPress user profile. The easiest way to "
1367
  "create and manage additional custom values."
1368
  msgstr ""
1369
 
1370
+ #: product_list.php:322
1371
  msgid ""
1372
  "Add and display HTML advertisement banner on WordPress website. Customize "
1373
  "bar styles and appearance."
1374
  msgstr ""
1375
 
1376
+ #: product_list.php:332
1377
  msgid ""
1378
  "Add customizable quotes and tips blocks to WordPress posts, pages and "
1379
  "widgets."
1380
  msgstr ""
1381
 
1382
+ #: product_list.php:339
1383
  msgid ""
1384
  "Add rating plugin to your WordPress website to receive feedback from your "
1385
  "customers."
1386
  msgstr ""
1387
 
1388
+ #: product_list.php:349
1389
  msgid ""
1390
  "Create your personal real estate WordPress website. Sell, rent and buy "
1391
  "properties. Add, search and browse listings easily."
1392
  msgstr ""
1393
 
1394
+ #: product_list.php:359
1395
  msgid ""
1396
  "Add related, featured, latest, and popular posts to your WordPress website. "
1397
  "Connect your blog readers with a relevant content."
1398
  msgstr ""
1399
 
1400
+ #: product_list.php:366
1401
  msgid ""
1402
  "Send bulk email messages to WordPress users. Custom templates, advanced "
1403
  "settings and detailed reports."
1404
  msgstr ""
1405
 
1406
+ #: product_list.php:376
1407
  msgid ""
1408
  "The best responsive slider plugin for your WordPress website. Create "
1409
  "beautifully animated slides just in a few clicks."
1410
  msgstr ""
1411
 
1412
+ #: product_list.php:383
1413
  msgid ""
1414
  "Configure SMTP server to receive email messages from WordPress to Gmail, "
1415
  "Yahoo, Hotmail and other services."
1416
  msgstr ""
1417
 
1418
+ #: product_list.php:390
1419
  msgid ""
1420
  "Add social media buttons and widgets to WordPress posts, pages and widgets. "
1421
+ "FB, Twitter, Pinterest, LinkedIn."
1422
  msgstr ""
1423
 
1424
+ #: product_list.php:400
1425
  msgid ""
1426
  "Add social media login, registration, and commenting to your WordPress "
1427
  "website."
1428
  msgstr ""
1429
 
1430
+ #: product_list.php:407
1431
  msgid ""
1432
  "Add email newsletter sign up form to WordPress posts, pages and widgets. "
1433
  "Collect data and subscribe your users."
1434
  msgstr ""
1435
 
1436
+ #: product_list.php:417
1437
  msgid ""
1438
  "Add testimonials and feedbacks from your customers to WordPress website "
1439
  "posts, pages, and widgets."
1440
  msgstr ""
1441
 
1442
+ #: product_list.php:424
1443
  msgid ""
1444
  "Best timesheet plugin for WordPress. Track employee time, streamline "
1445
  "attendance and generate reports."
1446
  msgstr ""
1447
 
1448
+ #: product_list.php:434
1449
  msgid ""
1450
  "Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts "
1451
  "and pages."
1452
  msgstr ""
1453
 
1454
+ #: product_list.php:444
1455
  msgid ""
1456
  "Automatically check and update WordPress website core with all installed "
1457
  "plugins and themes to the latest versions."
1458
  msgstr ""
1459
 
1460
+ #: product_list.php:454
1461
  msgid ""
1462
  "Powerful user role management plugin for WordPress website. Create, edit, "
1463
  "copy, and delete user roles."
1464
  msgstr ""
1465
 
1466
+ #: product_list.php:464
1467
  msgid ""
1468
  "Display live count of online visitors who are currently browsing your "
1469
  "WordPress website."
1470
  msgstr ""
1471
 
1472
+ #: product_list.php:474
1473
  msgid ""
1474
  "Backup and export Zendesk Help Center content automatically to your "
1475
  "WordPress website database."
1476
  msgstr ""
1477
 
1478
+ #~ msgid "Add BWS Plugins Shortcode"
1479
+ #~ msgstr "Tambahkan BWS Plugin pendek"
1480
+
1481
+ #~ msgid "Installing Plugin"
1482
+ #~ msgstr "Instalasi Plugin"
1483
+
1484
+ #~ msgid "Downloading install package from"
1485
+ #~ msgstr "Men-download menginstal paket dari"
1486
+
1487
+ #~ msgid ""
1488
+ #~ "Failed to download the zip archive. Please, upload the plugin manually"
1489
+ #~ msgstr "Gagal mengunduh arsip zip. Silakan, upload plugin secara manual"
1490
+
1491
+ #~ msgid "Unpacking the package"
1492
+ #~ msgstr "Membuka paket"
1493
+
1494
+ #~ msgid "Failed to open the zip archive. Please, upload the plugin manually"
1495
+ #~ msgstr "Gagal membuka arsip zip. Silakan, upload plugin secara manual"
1496
+
1497
+ #~ msgid ""
1498
+ #~ "Your server does not support either ZipArchive or Phar. Please, upload "
1499
+ #~ "the plugin manually"
1500
+ #~ msgstr ""
1501
+ #~ "server Anda tidak mendukung baik ZipArchive atau Phar. Silakan, upload "
1502
+ #~ "plugin secara manual"
1503
+
1504
+ #~ msgid "The plugin %s is successfully installed."
1505
+ #~ msgstr "Plugin %s berhasil diinstal."
1506
+
1507
+ #~ msgid "UploadDir is not writable. Please, upload the plugin manually"
1508
+ #~ msgstr "UploadDir tidak dapat ditulis. Silakan, upload plugin secara manual"
1509
+
1510
+ #~ msgid "Activate Plugin"
1511
+ #~ msgstr "Aktifkan Plugin"
1512
+
1513
+ #~ msgid "Congratulations! Pro license is activated successfully."
1514
+ #~ msgstr "Selamat! lisensi Pro berhasil diaktifkan."
1515
+
1516
+ #~ msgid "Settings page"
1517
+ #~ msgstr "halaman pengaturan"
1518
+
1519
+ #~ msgid "Please, enter your license key"
1520
+ #~ msgstr "Silakan, masukkan kunci lisensi Anda"
1521
+
1522
+ #~ msgid "You will be redirected automatically in 5 seconds."
1523
+ #~ msgstr "Anda akan diarahkan secara otomatis dalam 5 detik."
1524
+
1525
+ #~ msgid "Check premium options on the plugin settings page!"
1526
+ #~ msgstr "Periksa pilihan premium di halaman pengaturan plugin!"
1527
+
1528
+ #~ msgid "File %s edited successfully."
1529
+ #~ msgstr "File %s berhasil diedit."
1530
+
1531
+ #~ msgid "Not enough permissions to create or update the file"
1532
+ #~ msgstr "Tidak cukup izin untuk membuat atau memperbarui file"
1533
+
1534
+ #~ msgid "Not enough permissions to create the file"
1535
+ #~ msgstr "Tidak cukup izin untuk membuat file"
1536
+
1537
+ #~ msgid "Editing"
1538
+ #~ msgstr "editing"
1539
+
1540
  #~ msgid "Congratulations! Pro Membership license is activated successfully."
1541
  #~ msgstr "Selamat! lisensi Keanggotaan Pro berhasil diaktifkan."
1542
 
1606
  #~ msgid "Please, go to %s"
1607
  #~ msgstr "Silakan, pergi ke %s"
1608
 
 
 
 
1609
  #~ msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
1610
  #~ msgstr ""
1611
  #~ "Jika Anda menikmati plugin kami, silakan memberikan 5 bintang pada "
1705
  #~ msgid "Free plugins"
1706
  #~ msgstr "plugin gratis"
1707
 
 
 
 
1708
  #~ msgid "Install now from wordpress.org"
1709
  #~ msgstr "Instal sekarang dari wordpress.org"
1710
 
1759
  #~ msgid "Send me a copy"
1760
  #~ msgstr "Kirimkan saya salinan"
1761
 
 
 
 
1762
  #~ msgid "Your name is required."
1763
  #~ msgstr "Nama Anda diperlukan."
1764
 
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-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"
@@ -13,10 +13,10 @@ msgstr ""
13
  "X-Poedit-KeywordsList: __;_e;esc_attr_e\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
20
  msgid "requires"
21
  msgstr "benodigd"
22
 
@@ -53,7 +53,7 @@ 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,7 +61,7 @@ msgstr "Bezoek het Helpcentrum"
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,8 +77,8 @@ msgid ""
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,7 +98,7 @@ msgstr ""
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
 
@@ -115,7 +115,38 @@ msgstr "Opmerking: U gebruikt de Pro Trial licentie van de plugin."
115
  msgid "The Pro Trial license will expire on"
116
  msgstr "De Pro Trial licentie vervalt op"
117
 
118
- #: bws_functions.php:193
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
119
  msgid ""
120
  "or higher! We do not guarantee that our plugin will work correctly. Please "
121
  "upgrade to WordPress latest version."
@@ -123,89 +154,58 @@ msgstr ""
123
  "of hoger! Wij garanderen niet dat onze plugin correct blijft werken. Upgrade "
124
  "nu naar de nieuwste versie van WordPress."
125
 
126
- #: bws_functions.php:208
127
  #, php-format
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 "
198
- "SUPPORT or UPDATES."
199
- msgstr ""
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,25 +213,24 @@ msgstr ""
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,77 +238,68 @@ msgstr ""
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,18 +307,16 @@ msgstr ""
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
 
331
- #: bws_menu.php:130
332
  msgid ""
333
  "This license key is bound to another site. Change it via personal Client "
334
  "Area."
@@ -336,15 +324,15 @@ msgstr ""
336
  "Deze licentiesleutel is gebonden aan een andere website. Verander het via je "
337
  "persoonlijke beheeromgeving."
338
 
339
- #: bws_menu.php:130
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,7 +341,7 @@ msgstr ""
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,19 +349,19 @@ msgstr ""
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."
@@ -381,214 +369,216 @@ msgstr ""
381
  "Er is iets fout gegaan. Probeer het later opnieuw of upload de plugin "
382
  "handmatig. Het spijt ons voor ongemak."
383
 
384
- #: bws_menu.php:163
385
  msgid "Please enter your license key."
386
  msgstr "Vul alstublieft uw licentiesleutel in."
387
 
388
- #: bws_menu.php:174
389
  msgid "Not set"
390
  msgstr "Niet ingesteld"
391
 
392
- #: bws_menu.php:176
393
  msgid "On"
394
  msgstr "Aan"
395
 
396
- #: bws_menu.php:176
397
  msgid "Off"
398
  msgstr "Uit"
399
 
400
- #: bws_menu.php:177 bws_menu.php:178 bws_menu.php:179 bws_menu.php:180
401
- #: bws_menu.php:181 bws_menu.php:182 bws_menu.php:191
402
  msgid "N/A"
403
  msgstr "N/A"
404
 
405
- #: bws_menu.php:182
406
- msgid " Mb"
 
 
407
  msgstr "Mb"
408
 
409
- #: bws_menu.php:183 bws_menu.php:184 bws_menu.php:185 bws_menu.php:189
410
  msgid "Yes"
411
  msgstr "Ja"
412
 
413
- #: bws_menu.php:183 bws_menu.php:184 bws_menu.php:185 bws_menu.php:189
414
  msgid "No"
415
  msgstr "Nee"
416
 
417
- #: bws_menu.php:196
418
  msgid "WordPress Environment"
419
  msgstr "WordPress Omgeving"
420
 
421
- #: bws_menu.php:198
422
  msgid "Home URL"
423
  msgstr "Home URL"
424
 
425
- #: bws_menu.php:199
426
  msgid "Website URL"
427
  msgstr "Website URL"
428
 
429
- #: bws_menu.php:200
430
  msgid "WP Version"
431
  msgstr "WP Versiie"
432
 
433
- #: bws_menu.php:201
434
  msgid "WP Multisite"
435
  msgstr "WP Multisite"
436
 
437
- #: bws_menu.php:202
438
  msgid "WP Memory Limit"
439
  msgstr "WP Memory Limit"
440
 
441
- #: bws_menu.php:203
442
  msgid "Active Theme"
443
  msgstr "Activeer Thema"
444
 
445
- #: bws_menu.php:203 bws_menu.php:248 bws_menu.php:251
446
  #, php-format
447
  msgid "by %s"
448
  msgstr "by %s"
449
 
450
- #: bws_menu.php:207
451
  msgid "Server Environment"
452
  msgstr "Server Omgeving"
453
 
454
- #: bws_menu.php:209
455
  msgid "Operating System"
456
  msgstr "Besturingssysteem"
457
 
458
- #: bws_menu.php:210
459
  msgid "Server"
460
  msgstr "Server"
461
 
462
- #: bws_menu.php:211
463
  msgid "PHP Version"
464
  msgstr "PHP Versiie"
465
 
466
- #: bws_menu.php:212
467
  msgid "PHP Allow URL fopen"
468
  msgstr "PHP Allow URL fopen"
469
 
470
- #: bws_menu.php:213
471
  msgid "PHP Memory Limit"
472
  msgstr "PHP Memory Limit"
473
 
474
- #: bws_menu.php:214
475
  msgid "Memory Usage"
476
  msgstr "Memory Usage"
477
 
478
- #: bws_menu.php:215
479
  msgid "PHP Max Upload Size"
480
  msgstr "PHP Max Upload Size"
481
 
482
- #: bws_menu.php:216
483
  msgid "PHP Max Post Size"
484
  msgstr "PHP Max Post Size"
485
 
486
- #: bws_menu.php:217
487
  msgid "PHP Max Script Execute Time"
488
  msgstr "PHP Max Script Execute Time"
489
 
490
- #: bws_menu.php:218
491
  msgid "PHP Exif support"
492
  msgstr "PHP Exif support"
493
 
494
- #: bws_menu.php:219
495
  msgid "PHP IPTC support"
496
  msgstr "PHP IPTC support"
497
 
498
- #: bws_menu.php:220
499
  msgid "PHP XML support"
500
  msgstr "PHP XML support"
501
 
502
- #: bws_menu.php:226
503
  msgid "Database"
504
  msgstr "Database"
505
 
506
- #: bws_menu.php:228
507
  msgid "WP DB version"
508
  msgstr "WP DB version"
509
 
510
- #: bws_menu.php:229
511
  msgid "MySQL version"
512
  msgstr "MySQL version"
513
 
514
- #: bws_menu.php:230
515
  msgid "SQL Mode"
516
  msgstr "SQL Mode"
517
 
518
- #: bws_menu.php:234
519
  msgid "Active Plugins"
520
  msgstr "Active Plugins"
521
 
522
- #: bws_menu.php:239
523
  msgid "Inactive Plugins"
524
  msgstr "Inactive Plugins"
525
 
526
- #: bws_menu.php:260
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,7 +591,7 @@ msgstr ""
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,201 +599,202 @@ msgstr ""
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"
648
- msgstr ""
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
 
745
- #: class-bws-settings.php:136
746
  msgid "Information"
747
  msgstr "Informatie"
748
 
749
- #: class-bws-settings.php:144
750
  msgid "Inactive"
751
  msgstr "Inactief"
752
 
753
- #: class-bws-settings.php:152
754
  msgid "Expired"
755
  msgstr "Verlopen"
756
 
757
- #: class-bws-settings.php:155
758
  #, php-format
759
  msgid "%s day(-s) left"
760
  msgstr "%s dag(-en) over"
761
 
762
- #: class-bws-settings.php:161
763
  #, php-format
764
  msgid "Expired on %s"
765
  msgstr "Verlopen op %s"
766
 
767
- #: class-bws-settings.php:161
768
  msgid "Renew Now"
769
  msgstr "Vernieuw nu"
770
 
771
- #: class-bws-settings.php:163
772
  msgid "Active"
773
  msgstr "Actief"
774
 
775
- #: class-bws-settings.php:168
776
  msgid "License"
777
  msgstr "Licentie"
778
 
779
- #: class-bws-settings.php:171
780
  msgid "Status"
781
  msgstr "Status"
782
 
783
- #: class-bws-settings.php:175
784
  msgid "Version"
785
  msgstr "Versiie"
786
 
787
- #: class-bws-settings.php:285
788
  msgid "All plugin settings were restored."
789
  msgstr "Alle plugin-instellingen zijn hersteld."
790
 
791
- #: class-bws-settings.php:423
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 "
@@ -812,12 +803,12 @@ msgstr ""
812
  "Deze PHP-code wordt aangesloten op de %s actie en zal alleen op de website "
813
  "worden getoond."
814
 
815
- #: class-bws-settings.php:438
816
  msgid "These code will be added to the header on all pages of your site."
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,25 +817,25 @@ msgstr ""
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
 
833
- #: class-bws-settings.php:461
834
  #, php-format
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,7 +844,7 @@ msgstr ""
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,69 +852,54 @@ msgstr ""
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,12 +907,12 @@ msgstr ""
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,15 +920,15 @@ msgstr ""
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,12 +936,11 @@ msgstr ""
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,11 +948,11 @@ msgstr ""
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,168 +960,152 @@ msgstr ""
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
-
1141
- #: deprecated.php:93
1142
  msgid "System Status"
1143
  msgstr "Systeem status"
1144
 
1145
- #: deprecated.php:204
1146
- msgid "Please, enter your license key"
1147
- msgstr "Vul alstublieft uw licentiesleutel in"
1148
-
1149
- #: deprecated.php:223
1150
  msgid ""
1151
  "If necessary, you can check if the license key is correct or reenter it in "
1152
  "the field below. You can find your license key on your personal page - "
@@ -1156,7 +1115,7 @@ msgstr ""
1156
  "het opnieuw in het onderstaande veld. U vindt uw licentiesleutel op uw "
1157
  "persoonlijke omgeving - Klanten Omgeving - via onze website"
1158
 
1159
- #: deprecated.php:223
1160
  msgid ""
1161
  "(your username is the email address specified during the purchase). If "
1162
  "necessary, please submit \"Lost your password?\" request."
@@ -1164,68 +1123,43 @@ msgstr ""
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,327 +1167,392 @@ msgstr ""
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
 
1248
- #: product_list.php:7
1249
  msgid "Admin Tools"
1250
  msgstr ""
1251
 
1252
- #: product_list.php:8
1253
  msgid "Content"
1254
  msgstr ""
1255
 
1256
- #: product_list.php:9
1257
  msgid "eCommerce"
1258
  msgstr ""
1259
 
1260
- #: product_list.php:10
1261
  msgid "Marketing"
1262
  msgstr ""
1263
 
1264
- #: product_list.php:11
1265
  msgid "Navigation"
1266
  msgstr ""
1267
 
1268
- #: product_list.php:12
1269
  msgid "Recommended"
1270
  msgstr "Aanbevolen"
1271
 
1272
- #: product_list.php:13
1273
  msgid "Security"
1274
  msgstr "Veiligheid"
1275
 
1276
- #: product_list.php:14
1277
  msgid "SEO"
1278
  msgstr ""
1279
 
1280
- #: product_list.php:15
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 "
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2021-02-15 10:54+0200\n"
6
+ "PO-Revision-Date: 2021-02-15 10:54+0200\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"
13
  "X-Poedit-KeywordsList: __;_e;esc_attr_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Generator: Poedit 2.4.2\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: bws_functions.php:73 bws_functions.php:239
20
  msgid "requires"
21
  msgstr "benodigd"
22
 
53
  msgid "Need help?"
54
  msgstr "Hulp nodig?"
55
 
56
+ #: bws_functions.php:104 bws_functions.php:949 class-bws-settings.php:1082
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:529
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:208 bws_menu.php:600
81
+ #: class-bws-settings.php:179
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:226
102
  msgid "Learn more"
103
  msgstr "Leer meer"
104
 
115
  msgid "The Pro Trial license will expire on"
116
  msgstr "De Pro Trial licentie vervalt op"
117
 
118
+ #: bws_functions.php:199 bws_functions.php:222 bws_functions.php:266
119
+ #: bws_functions.php:276 bws_functions.php:475
120
+ msgid "Close notice"
121
+ msgstr "Opmerking sluiten"
122
+
123
+ #: bws_functions.php:204
124
+ msgid "It’s time to upgrade your"
125
+ msgstr "Het is tijd om te upgraden, "
126
+
127
+ #: bws_functions.php:204
128
+ msgid "to"
129
+ msgstr "aan"
130
+
131
+ #: bws_functions.php:204
132
+ msgid "version!"
133
+ msgstr "versie!"
134
+
135
+ #: bws_functions.php:205
136
+ msgid "Extend standard plugin functionality with new great options."
137
+ msgstr ""
138
+ "Verleng de standaard plugin functionaliteit met nieuwe geweldige opties."
139
+
140
+ #: bws_functions.php:226
141
+ #, php-format
142
+ msgid ""
143
+ "Your license key for %s expires on %s and you won't be granted TOP-PRIORITY "
144
+ "SUPPORT or UPDATES."
145
+ msgstr ""
146
+ "Uw licentiesleutel voor %s verloopt uit op %s en u krijgt geen TOP-"
147
+ "PRIORITEIT SUPPORT of UPDATES."
148
+
149
+ #: bws_functions.php:241
150
  msgid ""
151
  "or higher! We do not guarantee that our plugin will work correctly. Please "
152
  "upgrade to WordPress latest version."
154
  "of hoger! Wij garanderen niet dat onze plugin correct blijft werken. Upgrade "
155
  "nu naar de nieuwste versie van WordPress."
156
 
157
+ #: bws_functions.php:256
158
  #, php-format
159
  msgid "Thank you for installing %s plugin!"
160
  msgstr "Dank u voor het installeren van %s plugin!"
161
 
162
+ #: bws_functions.php:258
163
  msgid "Let's get started"
164
  msgstr "Laten we aan de slag gaan"
165
 
166
+ #: bws_functions.php:259 bws_functions.php:292 bws_menu.php:533
167
+ #: bws_menu.php:535
168
  msgid "Settings"
169
  msgstr "Settings"
170
 
171
+ #: bws_functions.php:261 bws_menu.php:327 class-bws-settings.php:809
172
+ #: class-bws-settings.php:1084 class-bws-settings.php:1094 deprecated.php:234
173
  msgid "or"
174
  msgstr "of"
175
 
176
+ #: bws_functions.php:262 bws_functions.php:294
177
  msgid "Add New"
178
  msgstr "Nieuwe toevoegen"
179
 
180
+ #: bws_functions.php:281
 
 
 
 
 
181
  msgid "Thank you for installing plugins by BestWebSoft!"
182
  msgstr "Dank u voor het installeren van een plugin van BestWebSoft!"
183
 
184
+ #: bws_functions.php:283
185
  msgid "More Details"
186
  msgstr "Meer details"
187
 
188
+ #: bws_functions.php:284
189
  msgid "Less Details"
190
  msgstr "Minder details"
191
 
192
+ #: bws_functions.php:312
193
  msgid "Deprecated function(-s) is used on the site here:"
194
  msgstr "Deprecated functie(-s) word hier op de site gebruikt:"
195
 
196
+ #: bws_functions.php:326
197
  msgid ""
198
  "This function(-s) will be removed over time. Please update the product(-s)."
199
  msgstr ""
200
  "Deze function(-s) zal mettertijd worden verwijderd. Update het product of "
201
  "producten."
202
 
203
+ #: bws_functions.php:470
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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:471
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:472
217
  msgid "Suggest a Feature"
218
  msgstr "Deel een idee"
219
 
220
+ #: bws_functions.php:488 class-bws-settings.php:580 class-bws-settings.php:583
221
+ #: class-bws-settings.php:635 class-bws-settings.php:638
222
  msgid "Notice"
223
  msgstr "Opmerking"
224
 
225
+ #: bws_functions.php:488
226
  msgid "The plugin's settings have been changed."
227
  msgstr "De instellingen van de plugin zijn gewijzigd."
228
 
229
+ #: bws_functions.php:489 class-bws-settings.php:222 class-bws-settings.php:242
 
230
  msgid "Save Changes"
231
  msgstr "Bewerkingen opslaan"
232
 
233
+ #: bws_functions.php:503
234
  msgid ""
235
  "You can always look at premium options by checking the \"Pro Options\" in "
236
  "the \"Misc\" tab."
238
  "U kunt altijd premium opties bekijken door de \"Pro Options\" in het tabblad "
239
  "\"Misc\" te controleren."
240
 
241
+ #: bws_functions.php:679
 
 
 
 
 
 
 
 
242
  msgid "Add shortcode"
243
  msgstr "Shortcode toevoegen"
244
 
245
+ #: bws_functions.php:679
246
  msgid "Add BestWebSoft plugins' shortcodes using this button."
247
  msgstr "Voeg BestWebSoft plugins shortcodes toe aan deze knop."
248
 
249
+ #: bws_functions.php:765
250
  msgid "Close"
251
  msgstr "Sluiten"
252
 
253
+ #: bws_functions.php:851
254
  msgid "Are you sure you want to restore default settings?"
255
  msgstr "Weet u zeker dat u de standaardinstellingen wilt herstellen?"
256
 
257
+ #: bws_functions.php:854
258
  msgid "Yes, restore all settings"
259
  msgstr "Ja, herstel alle instellingen"
260
 
261
+ #: bws_functions.php:855
262
  msgid "No, go back to the settings page"
263
  msgstr "Nee, ga terug naar de instellingen"
264
 
265
+ #: bws_functions.php:897
266
  msgid "Plugin"
267
  msgstr "Plugin"
268
 
269
+ #: bws_functions.php:906
270
  msgid "Shortcode settings"
271
  msgstr "Shortcode instellingen"
272
 
273
+ #: bws_functions.php:911
274
  msgid "The shortcode will be inserted"
275
  msgstr "De shortcode wordt ingevoegd"
276
 
277
+ #: bws_functions.php:954
278
  msgid "FAQ"
279
  msgstr "FAQ"
280
 
281
+ #: bws_functions.php:960
282
  msgid "For more information:"
283
  msgstr "Voor meer informatie:"
284
 
285
+ #: bws_functions.php:961 bws_menu.php:401 class-bws-settings.php:776
286
  msgid "Documentation"
287
  msgstr "Documentatie"
288
 
289
+ #: bws_functions.php:962 bws_menu.php:403 class-bws-settings.php:778
290
  msgid "Video Instructions"
291
  msgstr "Video Instructies"
292
 
293
+ #: bws_functions.php:963
294
  msgid "Submit a Request"
295
  msgstr "Verzend een verzoek"
296
 
297
+ #: bws_menu.php:101 class-bws-settings.php:860
298
  msgid "Wrong license key"
299
  msgstr "Incorrecte licentiesleutel"
300
 
301
+ #: bws_menu.php:122 class-bws-settings.php:887 class-bws-settings.php:966
302
+ #: class-bws-settings.php:1004
 
303
  msgid ""
304
  "Something went wrong. Please try again later. If the error appears again, "
305
  "please contact us"
307
  "Er is iets fout gegaan. Probeer het later nogmaals. Als de fout zich blijft "
308
  "voordoen, neem dan contact met ons op"
309
 
310
+ #: bws_menu.php:122 class-bws-settings.php:887 class-bws-settings.php:966
311
+ #: class-bws-settings.php:1004
 
312
  msgid "We are sorry for inconvenience."
313
  msgstr "Het spijt ons voor het ongemak."
314
 
315
+ #: bws_menu.php:129 class-bws-settings.php:893 class-bws-settings.php:1010
 
316
  msgid "Wrong license key."
317
  msgstr "Verkeerde licentiesleutel."
318
 
319
+ #: bws_menu.php:131
320
  msgid ""
321
  "This license key is bound to another site. Change it via personal Client "
322
  "Area."
324
  "Deze licentiesleutel is gebonden aan een andere website. Verander het via je "
325
  "persoonlijke beheeromgeving."
326
 
327
+ #: bws_menu.php:131
328
  msgid "Log in"
329
  msgstr "Log in"
330
 
331
+ #: bws_menu.php:133 bws_menu.php:333 deprecated.php:157
332
  msgid "Unfortunately, you have exceeded the number of available tries per day."
333
  msgstr "Helaas heb je het aantal beschikbare pogingen per dag overschreden."
334
 
335
+ #: bws_menu.php:135
336
  #, php-format
337
  msgid ""
338
  "Unfortunately, Your license has expired. To continue getting top-priority "
341
  "Helaas is uw licentie verlopen. Om voort te gaan met ondersteuning voor top-"
342
  "prioriteit en plugin-updates, moet u deze uitbreiden in uw %s"
343
 
344
+ #: bws_menu.php:137 class-bws-settings.php:1018
345
  msgid ""
346
  "Unfortunately, the Pro licence was already installed to this domain. The Pro "
347
  "Trial license can be installed only once."
349
  "Helaas is de Pro licentie al geïnstalleerd op dit domein. De Pro Trial "
350
  "licentie kan slechts één keer geïnstalleerd worden."
351
 
352
+ #: bws_menu.php:143 class-bws-settings.php:908
353
  msgid "The license key is valid."
354
  msgstr "De licentiesleutel is geldig."
355
 
356
+ #: bws_menu.php:145 class-bws-settings.php:912
357
  msgid "Your license will expire on"
358
  msgstr "Uw licentie vervalt op"
359
 
360
+ #: bws_menu.php:147
361
  msgid "Congratulations! Pro Membership license is activated successfully."
362
  msgstr ""
363
 
364
+ #: bws_menu.php:154 class-bws-settings.php:1028
365
  msgid ""
366
  "Something went wrong. Try again later or upload the plugin manually. We are "
367
  "sorry for inconvenience."
369
  "Er is iets fout gegaan. Probeer het later opnieuw of upload de plugin "
370
  "handmatig. Het spijt ons voor ongemak."
371
 
372
+ #: bws_menu.php:164
373
  msgid "Please enter your license key."
374
  msgstr "Vul alstublieft uw licentiesleutel in."
375
 
376
+ #: bws_menu.php:175
377
  msgid "Not set"
378
  msgstr "Niet ingesteld"
379
 
380
+ #: bws_menu.php:177
381
  msgid "On"
382
  msgstr "Aan"
383
 
384
+ #: bws_menu.php:177
385
  msgid "Off"
386
  msgstr "Uit"
387
 
388
+ #: bws_menu.php:178 bws_menu.php:179 bws_menu.php:180 bws_menu.php:181
389
+ #: bws_menu.php:182 bws_menu.php:183 bws_menu.php:192
390
  msgid "N/A"
391
  msgstr "N/A"
392
 
393
+ #: bws_menu.php:183
394
+ #, fuzzy
395
+ #| msgid " Mb"
396
+ msgid "Mb"
397
  msgstr "Mb"
398
 
399
+ #: bws_menu.php:184 bws_menu.php:185 bws_menu.php:186 bws_menu.php:190
400
  msgid "Yes"
401
  msgstr "Ja"
402
 
403
+ #: bws_menu.php:184 bws_menu.php:185 bws_menu.php:186 bws_menu.php:190
404
  msgid "No"
405
  msgstr "Nee"
406
 
407
+ #: bws_menu.php:197
408
  msgid "WordPress Environment"
409
  msgstr "WordPress Omgeving"
410
 
411
+ #: bws_menu.php:199
412
  msgid "Home URL"
413
  msgstr "Home URL"
414
 
415
+ #: bws_menu.php:200
416
  msgid "Website URL"
417
  msgstr "Website URL"
418
 
419
+ #: bws_menu.php:201
420
  msgid "WP Version"
421
  msgstr "WP Versiie"
422
 
423
+ #: bws_menu.php:202
424
  msgid "WP Multisite"
425
  msgstr "WP Multisite"
426
 
427
+ #: bws_menu.php:203
428
  msgid "WP Memory Limit"
429
  msgstr "WP Memory Limit"
430
 
431
+ #: bws_menu.php:204
432
  msgid "Active Theme"
433
  msgstr "Activeer Thema"
434
 
435
+ #: bws_menu.php:204 bws_menu.php:249 bws_menu.php:252
436
  #, php-format
437
  msgid "by %s"
438
  msgstr "by %s"
439
 
440
+ #: bws_menu.php:208
441
  msgid "Server Environment"
442
  msgstr "Server Omgeving"
443
 
444
+ #: bws_menu.php:210
445
  msgid "Operating System"
446
  msgstr "Besturingssysteem"
447
 
448
+ #: bws_menu.php:211
449
  msgid "Server"
450
  msgstr "Server"
451
 
452
+ #: bws_menu.php:212
453
  msgid "PHP Version"
454
  msgstr "PHP Versiie"
455
 
456
+ #: bws_menu.php:213
457
  msgid "PHP Allow URL fopen"
458
  msgstr "PHP Allow URL fopen"
459
 
460
+ #: bws_menu.php:214
461
  msgid "PHP Memory Limit"
462
  msgstr "PHP Memory Limit"
463
 
464
+ #: bws_menu.php:215
465
  msgid "Memory Usage"
466
  msgstr "Memory Usage"
467
 
468
+ #: bws_menu.php:216
469
  msgid "PHP Max Upload Size"
470
  msgstr "PHP Max Upload Size"
471
 
472
+ #: bws_menu.php:217
473
  msgid "PHP Max Post Size"
474
  msgstr "PHP Max Post Size"
475
 
476
+ #: bws_menu.php:218
477
  msgid "PHP Max Script Execute Time"
478
  msgstr "PHP Max Script Execute Time"
479
 
480
+ #: bws_menu.php:219
481
  msgid "PHP Exif support"
482
  msgstr "PHP Exif support"
483
 
484
+ #: bws_menu.php:220
485
  msgid "PHP IPTC support"
486
  msgstr "PHP IPTC support"
487
 
488
+ #: bws_menu.php:221
489
  msgid "PHP XML support"
490
  msgstr "PHP XML support"
491
 
492
+ #: bws_menu.php:227
493
  msgid "Database"
494
  msgstr "Database"
495
 
496
+ #: bws_menu.php:229
497
  msgid "WP DB version"
498
  msgstr "WP DB version"
499
 
500
+ #: bws_menu.php:230
501
  msgid "MySQL version"
502
  msgstr "MySQL version"
503
 
504
+ #: bws_menu.php:231
505
  msgid "SQL Mode"
506
  msgstr "SQL Mode"
507
 
508
+ #: bws_menu.php:235
509
  msgid "Active Plugins"
510
  msgstr "Active Plugins"
511
 
512
+ #: bws_menu.php:240
513
  msgid "Inactive Plugins"
514
  msgstr "Inactive Plugins"
515
 
516
+ #: bws_menu.php:261
517
  msgid "Please enter a valid email address."
518
  msgstr "Gelieve een geldig e-mailadres in te geven."
519
 
520
+ #: bws_menu.php:263
521
  #, php-format
522
  msgid "Email with system info is sent to %s."
523
  msgstr ""
524
 
525
+ #: bws_menu.php:267
526
  msgid "Thank you for contacting us."
527
  msgstr "Bedankt voor het contact met ons opnemen."
528
 
529
+ #: bws_menu.php:290
530
  msgid "Sorry, email message could not be delivered."
531
  msgstr "Sorry, e-mailbericht kon niet worden geleverd."
532
 
533
+ #: bws_menu.php:306 bws_menu.php:310 bws_menu.php:359 deprecated.php:26
534
  msgid "Plugins"
535
  msgstr "Plugins"
536
 
537
+ #: bws_menu.php:307 bws_menu.php:311 bws_menu.php:587 deprecated.php:27
538
  msgid "Themes"
539
  msgstr "Thema's"
540
 
541
+ #: bws_menu.php:308 bws_menu.php:312 bws_menu.php:617
542
  msgid "System status"
543
  msgstr "Systeem status"
544
 
545
+ #: bws_menu.php:316
546
  msgid "Support"
547
  msgstr "Support"
548
 
549
+ #: bws_menu.php:317
550
  msgid "Manage purchased licenses & subscriptions"
551
  msgstr "Beheerde licenties en abonnementen beheren"
552
 
553
+ #: bws_menu.php:325
554
  #, php-format
555
  msgid "Get Access to %s+ Premium Plugins"
556
  msgstr "Krijg toegang tot %s+ Premium plugins"
557
 
558
+ #: bws_menu.php:327
559
  msgid "Subscribe to Pro Membership"
560
  msgstr "Abonneer je op de Pro Membership"
561
 
562
+ #: bws_menu.php:335 bws_menu.php:346 class-bws-settings.php:822
563
+ #: deprecated.php:123
564
  msgid "Check license key"
565
  msgstr "Controleer de licentiesleutel"
566
 
567
+ #: bws_menu.php:338
568
  msgid "Enter your license key"
569
  msgstr "Vul uw licentiesleutel in"
570
 
571
+ #: bws_menu.php:344 bws_menu.php:539 bws_menu.php:548
572
+ #: class-bws-settings.php:801 deprecated.php:155 deprecated.php:163
573
+ #: deprecated.php:240 deprecated.php:249
574
  msgid "Activate"
575
  msgstr "Activateer"
576
 
577
+ #: bws_menu.php:360
578
  msgid "Upload Plugin"
579
  msgstr "Upload Plugin"
580
 
581
+ #: bws_menu.php:364
582
  #, php-format
583
  msgid ""
584
  "The plugin generated %d characters of <strong>unexpected output</strong> "
591
  "met syndicationfeeds of andere problemen zijn; probeer deze plugin uit te "
592
  "schakelen of te verwijderen."
593
 
594
+ #: bws_menu.php:366
595
  msgid ""
596
  "Plugin could not be activated because it triggered a <strong>fatal error</"
597
  "strong>."
599
  "Plugin kan niet geactiveerd worden omdat het er <strong>fatal error</strong> "
600
  "zich voordoet."
601
 
602
+ #: bws_menu.php:369
603
  msgid "Plugin <strong>activated</strong>."
604
  msgstr "Plugin <strong>geactiveerd</strong>."
605
 
606
+ #: bws_menu.php:383
607
+ #, fuzzy
608
+ #| msgid "Upload Plugin"
609
+ msgid "Download Pro Plugin"
610
+ msgstr "Upload Plugin"
611
 
612
+ #: bws_menu.php:385 class-bws-settings.php:759
613
+ msgid "Your Pro plugin is ready"
614
+ msgstr ""
615
 
616
+ #: bws_menu.php:387 class-bws-settings.php:761
617
+ msgid "Your plugin has been zipped, and now is ready to download."
 
618
  msgstr ""
 
 
619
 
620
+ #: bws_menu.php:390 class-bws-settings.php:764
621
+ msgid "Download Now"
622
+ msgstr ""
623
 
624
+ #: bws_menu.php:394 class-bws-settings.php:768
625
+ #, fuzzy
626
+ #| msgid "Installing the plugin"
627
+ msgid "Need help installing the plugin?"
628
  msgstr "De plugin installeren"
629
 
630
+ #: bws_menu.php:396 class-bws-settings.php:770
631
+ msgid "How to install WordPress plugin from your admin Dashboard (ZIP archive)"
632
  msgstr ""
 
633
 
634
+ #: bws_menu.php:399 class-bws-settings.php:774
635
+ #, fuzzy
636
+ #| msgid "Let's get started"
637
+ msgid "Get Started"
638
+ msgstr "Laten we aan de slag gaan"
 
 
639
 
640
+ #: bws_menu.php:405 class-bws-settings.php:780
641
+ msgid "Knowledge Base"
642
+ msgstr ""
 
643
 
644
+ #: bws_menu.php:408
645
+ msgid "Licenses & Domains"
646
  msgstr ""
 
 
647
 
648
+ #: bws_menu.php:411
649
+ #, fuzzy
650
+ #| msgid "Login to Client Area"
651
+ msgid "Client Area"
652
+ msgstr "Inloggen op client gebied"
653
 
654
+ #: bws_menu.php:413
655
  msgid "Return to BestWebSoft Panel"
656
  msgstr "Terug naar het BestWebSoft Paneel"
657
 
658
+ #: bws_menu.php:420 bws_menu.php:440 bws_menu.php:569
659
  msgid "All"
660
  msgstr "Alle"
661
 
662
+ #: bws_menu.php:423 bws_menu.php:606
663
  msgid "Installed"
664
  msgstr "Geinstalleerd"
665
 
666
+ #: bws_menu.php:426
667
  msgid "Not Installed"
668
  msgstr "Niet geinstalleerd"
669
 
670
+ #: bws_menu.php:433
671
  msgid "Filter results"
672
  msgstr "Filter resultaten"
673
 
674
+ #: bws_menu.php:436 bws_menu.php:565
675
  msgid "Category"
676
  msgstr "Categorieen"
677
 
678
+ #: bws_menu.php:500
679
  msgid "Not installed"
680
  msgstr "Niet geinstalleerd"
681
 
682
+ #: bws_menu.php:504
683
  msgid "Renew to get updates"
684
  msgstr "Vernieuw om updates te verkrijgen"
685
 
686
+ #: bws_menu.php:507
687
  #, php-format
688
  msgid "Update to v %s"
689
  msgstr "Update naar v %s"
690
 
691
+ #: bws_menu.php:519 bws_menu.php:542
692
+ msgid "Get Pro"
693
+ msgstr ""
694
 
695
+ #: bws_menu.php:525 class-bws-settings.php:192 class-bws-settings.php:1091
696
  msgid "Upgrade to Pro"
697
  msgstr "Upgrade naar Pro"
698
 
699
+ #: bws_menu.php:539 bws_menu.php:548
700
  msgid "Activate this plugin"
701
  msgstr "Activateer deze plugin"
702
 
703
+ #: bws_menu.php:551
704
  msgid "Install this plugin"
705
  msgstr "Installeer deze plugin"
706
 
707
+ #: bws_menu.php:551
708
+ msgid "Install Now"
709
+ msgstr "Installeer nu"
710
+
711
+ #: bws_menu.php:560
712
  msgid "Nothing found. Try another criteria."
713
  msgstr "Niks gevonden. Probeer een ander criteria."
714
 
715
+ #: bws_menu.php:597
716
  #, php-format
717
  msgid "By %s"
718
  msgstr "By %s"
719
 
720
+ #: bws_menu.php:604
721
  msgid "Already Installed"
722
  msgstr "Reeds geinstalleerd"
723
 
724
+ #: bws_menu.php:614
725
  msgid "Browse More WordPress Themes"
726
  msgstr ""
727
 
728
+ #: bws_menu.php:623
729
  msgid "Send to support"
730
  msgstr "Stuur uw vraag"
731
 
732
+ #: bws_menu.php:630
733
  msgid "Send to custom email &#187;"
734
  msgstr "Verzend naar aangepaste e-mail &#187;"
735
 
736
+ #: class-bws-settings.php:167
737
  msgid "Information"
738
  msgstr "Informatie"
739
 
740
+ #: class-bws-settings.php:179
741
  msgid "Inactive"
742
  msgstr "Inactief"
743
 
744
+ #: class-bws-settings.php:187
745
  msgid "Expired"
746
  msgstr "Verlopen"
747
 
748
+ #: class-bws-settings.php:190
749
  #, php-format
750
  msgid "%s day(-s) left"
751
  msgstr "%s dag(-en) over"
752
 
753
+ #: class-bws-settings.php:196
754
  #, php-format
755
  msgid "Expired on %s"
756
  msgstr "Verlopen op %s"
757
 
758
+ #: class-bws-settings.php:196
759
  msgid "Renew Now"
760
  msgstr "Vernieuw nu"
761
 
762
+ #: class-bws-settings.php:198
763
  msgid "Active"
764
  msgstr "Actief"
765
 
766
+ #: class-bws-settings.php:203
767
  msgid "License"
768
  msgstr "Licentie"
769
 
770
+ #: class-bws-settings.php:206
771
  msgid "Status"
772
  msgstr "Status"
773
 
774
+ #: class-bws-settings.php:210
775
  msgid "Version"
776
  msgstr "Versiie"
777
 
778
+ #: class-bws-settings.php:323
779
  msgid "All plugin settings were restored."
780
  msgstr "Alle plugin-instellingen zijn hersteld."
781
 
782
+ #: class-bws-settings.php:463
783
  msgid "Custom Code"
784
  msgstr "Maatwerk Code"
785
 
786
+ #: class-bws-settings.php:467
787
  msgid "You do not have sufficient permissions to edit plugins for this site."
788
  msgstr ""
789
  "U heeft niet voldoende permissies om plugins voor deze website te bewerken."
790
 
791
+ #: class-bws-settings.php:472
792
  msgid "These styles will be added to the header on all pages of your site."
793
  msgstr ""
794
  "Deze stijlen worden toegevoegd aan de koptekst op alle pagina's van uw "
795
  "website."
796
 
797
+ #: class-bws-settings.php:475
798
  #, php-format
799
  msgid ""
800
  "This PHP code will be hooked to the %s action and will be printed on front "
803
  "Deze PHP-code wordt aangesloten op de %s actie en zal alleen op de website "
804
  "worden getoond."
805
 
806
+ #: class-bws-settings.php:478
807
  msgid "These code will be added to the header on all pages of your site."
808
  msgstr ""
809
  "Deze code wordt toegevoegd aan de koptekst op alle pagina's van uw website."
810
 
811
+ #: class-bws-settings.php:486
812
  #, php-format
813
  msgid ""
814
  "You need to make this files writable before you can save your changes. See "
817
  "U moet deze bestanden schrijfrechten geven voordat u de wijzigingen kunt "
818
  "opslaan. Zie %s de Codex %s voor meer informatie."
819
 
820
+ #: class-bws-settings.php:496
821
  msgid "Browsing"
822
  msgstr "Browsing"
823
 
824
+ #: class-bws-settings.php:501
825
  #, php-format
826
  msgid "Activate custom %s code."
827
  msgstr "Activateer maatwerk %s code."
828
 
829
+ #: class-bws-settings.php:509
830
  #, php-format
831
  msgid "Learn more about %s"
832
  msgstr "Leer meer over %s"
833
 
834
+ #: class-bws-settings.php:571
835
  msgid "Miscellaneous Settings"
836
  msgstr "Diversen instellingen"
837
 
838
+ #: class-bws-settings.php:580 class-bws-settings.php:635
839
  #, php-format
840
  msgid ""
841
  "It is prohibited to change %s settings on this site in the %s network "
844
  "Het is verboden om %s instellingen op deze website te wijzigen in de %s "
845
  "netwerkinstellingen."
846
 
847
+ #: class-bws-settings.php:583 class-bws-settings.php:638
848
  #, php-format
849
  msgid ""
850
  "It is prohibited to view %s settings on this site in the %s network settings."
852
  "Het is verboden om %s instellingen op deze website te bekijken in de %s "
853
  "netwerkinstellingen."
854
 
855
+ #: class-bws-settings.php:592
856
  msgid "Pro Options"
857
  msgstr "Pro Opties"
858
 
859
+ #: class-bws-settings.php:596
860
  msgid "Enable to display plugin Pro options."
861
  msgstr "Schakel in om plugin Pro opties te zien."
862
 
863
+ #: class-bws-settings.php:602
864
  msgid "Track Usage"
865
  msgstr "Track gebruik"
866
 
867
+ #: class-bws-settings.php:606
868
  msgid ""
869
  "Enable to allow tracking plugin usage anonymously in order to make it better."
870
  msgstr ""
871
  "Activeer het gebruik van anonieme tracking van de bijbehorende plug-in, om "
872
  "het product beter te maken."
873
 
874
+ #: class-bws-settings.php:611
875
  msgid "Default Settings"
876
  msgstr "Standaard instellingen"
877
 
878
+ #: class-bws-settings.php:613
879
  msgid "Restore Settings"
880
  msgstr "Instellingen herstellen"
881
 
882
+ #: class-bws-settings.php:614
883
  msgid "This will restore plugin settings to defaults."
884
  msgstr ""
885
  "Dit zal de plugininstellingen herstellen naar de standaardinstellingen."
886
 
887
+ #: class-bws-settings.php:626
888
  msgid "Import / Export"
889
  msgstr "Import / Export"
890
 
891
+ #: class-bws-settings.php:744
 
892
  msgid "License Key"
893
  msgstr "Licentiesleutel"
894
 
895
+ #: class-bws-settings.php:803
 
 
 
 
 
 
 
 
 
 
 
 
 
896
  #, php-format
897
  msgid "Enter your license key to activate %s and get premium plugin features."
898
  msgstr ""
899
  "Voer uw licentiesleutel in om %s te activeren en premium-pluginfuncties te "
900
  "krijgen."
901
 
902
+ #: class-bws-settings.php:806 class-bws-settings.php:1014 deprecated.php:243
 
903
  msgid ""
904
  "Unfortunately, you have exceeded the number of available tries per day. "
905
  "Please, upload the plugin manually."
907
  "Helaas heeft u het aantal beschikbare pogingen per dag overschreden. Gelieve "
908
  "de plugin handmatig te uploaden."
909
 
910
+ #: class-bws-settings.php:809 deprecated.php:234
911
  #, php-format
912
  msgid "Start Your Free %s-Day Trial Now"
913
  msgstr "Start nu uw gratis %s dag trial"
914
 
915
+ #: class-bws-settings.php:824
916
  msgid ""
917
  "If necessary, you can check if the license key is correct or reenter it in "
918
  "the field below."
920
  "Indien nodig kunt u controleren of de licentiesleutel juist is of u voert "
921
  "het opnieuw in het onderstaande veld."
922
 
923
+ #: class-bws-settings.php:833
924
  msgid "Manage License Settings"
925
  msgstr "Beheer licentie instellingen"
926
 
927
+ #: class-bws-settings.php:835
928
  msgid "Login to Client Area"
929
  msgstr "Inloggen op client gebied"
930
 
931
+ #: class-bws-settings.php:837
932
  msgid ""
933
  "Manage active licenses, download BWS products, and view your payment history "
934
  "using BestWebSoft Client Area."
936
  "Beheer actieve licenties, download BWS-producten en bekijk uw de "
937
  "betalingsgeschiedenis met behulp van de BestWebSoft Klanten Omgeving."
938
 
939
+ #: class-bws-settings.php:895 class-bws-settings.php:1012
 
940
  msgid "This license key is bound to another site."
941
  msgstr "Deze licentiesleutel is gebonden aan een andere website."
942
 
943
+ #: class-bws-settings.php:897
944
  msgid ""
945
  "This license key is valid, but Your license has expired. If you want to "
946
  "update our plugin in future, you should extend the license."
948
  "Deze licentiesleutel is geldig, maar uw licentie is verlopen. Als u onze "
949
  "plugin in de toekomst wilt bijwerken, moet u de licentie verlengen."
950
 
951
+ #: class-bws-settings.php:899
952
  msgid "Unfortunately, you have exceeded the number of available tries."
953
  msgstr "Helaas heeft u het aantal beschikbare pogingen overschreden."
954
 
955
+ #: class-bws-settings.php:901
956
  msgid ""
957
  "Unfortunately, the Pro Trial licence was already installed to this domain. "
958
  "The Pro Trial license can be installed only once."
960
  "Helaas, de Pro Trial licentie was al geïnstalleerd op dit domein. De Pro "
961
  "Trial License kan helaas maar eenmalig gebruikt worden."
962
 
963
+ #: class-bws-settings.php:906
964
  msgid "The Pro Trial license key is valid."
965
  msgstr "De Pro Trial licentiesleutel is geldig."
966
 
967
+ #: class-bws-settings.php:919 deprecated.php:142
968
  #, php-format
969
  msgid ""
970
  "In order to continue using the plugin it is necessary to buy a %s license."
971
  msgstr ""
972
  "Om door te gaan met de plugin is het nodig om een %s licentie te kopen."
973
 
974
+ #: class-bws-settings.php:1016
975
  #, php-format
976
  msgid ""
977
  "Unfortunately, Your license has expired. To continue getting top-priority "
978
  "support and plugin updates, you should extend it in your %s."
979
  msgstr ""
980
 
981
+ #: class-bws-settings.php:1065
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
982
  msgid "Please, enter Your license key"
983
  msgstr "Vul alstublieft uw licentiesleutel in"
984
 
985
+ #: class-bws-settings.php:1078
986
  msgid "Need Help?"
987
  msgstr "Hulp nodig?"
988
 
989
+ #: class-bws-settings.php:1080
990
  msgid "Read the Instruction"
991
  msgstr "Lees de instructie"
992
 
993
+ #: class-bws-settings.php:1084
994
  msgid "Watch the Video"
995
  msgstr "Bekijk de Video"
996
 
997
+ #: class-bws-settings.php:1095
998
  msgid "Start Your Free Trial"
999
  msgstr "Begin uw gratis proefperiode"
1000
 
1001
+ #: class-bws-settings.php:1130
1002
+ #, fuzzy
1003
+ #| msgid "Suggest a Feature"
1004
+ msgid "Request a Feature"
1005
+ msgstr "Deel een idee"
1006
+
1007
+ #: class-bws-settings.php:1135
1008
+ #, php-format
1009
+ msgid "How can we improve %s?"
1010
  msgstr ""
1011
 
1012
+ #: class-bws-settings.php:1137
1013
+ msgid "We look forward to hear your ideas."
1014
  msgstr ""
1015
 
1016
+ #: class-bws-settings.php:1139
1017
+ msgid "Describe your idea"
1018
  msgstr ""
1019
 
1020
+ #: class-bws-settings.php:1142 deactivation-form.php:120
1021
+ msgid "Send website data and allow to contact me back"
1022
  msgstr ""
1023
 
1024
+ #: class-bws-settings.php:1147
1025
+ msgid "Submit"
1026
+ msgstr ""
1027
+
1028
+ #: class-bws-settings.php:1148 deactivation-form.php:127
1029
+ msgid "Processing"
1030
  msgstr ""
1031
 
1032
+ #: class-bws-settings.php:1149
1033
+ msgid "Thank you!"
1034
  msgstr ""
1035
 
1036
+ #: deactivation-form.php:22
1037
+ msgid "Need help? We are ready to answer your questions."
1038
+ msgstr ""
1039
+
1040
+ #: deactivation-form.php:22
1041
+ msgid "Contact Support"
1042
+ msgstr ""
1043
+
1044
+ #: deactivation-form.php:27
1045
+ msgid "The plugin is not working"
1046
+ msgstr ""
1047
+
1048
+ #: deactivation-form.php:33
1049
+ msgid "The plugin didn't work as expected"
1050
+ msgstr ""
1051
+
1052
+ #: deactivation-form.php:39
1053
  msgid "The plugin suddenly stopped working"
1054
  msgstr ""
1055
 
1056
+ #: deactivation-form.php:46
1057
  msgid "The plugin broke my site"
1058
  msgstr ""
1059
 
1060
+ #: deactivation-form.php:53
1061
  msgid "I couldn't understand how to get it work"
1062
  msgstr ""
1063
 
1064
+ #: deactivation-form.php:60
1065
  msgid "I found a better plugin"
1066
  msgstr ""
1067
 
1068
+ #: deactivation-form.php:66
 
 
 
 
1069
  msgid "The plugin is great, but I need specific feature that you don't support"
1070
  msgstr ""
1071
 
1072
+ #: deactivation-form.php:72
 
 
 
 
1073
  msgid "I no longer need the plugin"
1074
  msgstr ""
1075
 
1076
+ #: deactivation-form.php:78
1077
  msgid "It's a temporary deactivation, I'm just debugging an issue"
1078
  msgstr ""
1079
 
1080
+ #: deactivation-form.php:84
1081
  msgid "Other"
1082
  msgstr "Anders"
1083
 
1084
+ #: deactivation-form.php:93
1085
  msgid "Quick Feedback"
1086
  msgstr ""
1087
 
1088
+ #: deactivation-form.php:95
1089
  msgid "If you have a moment, please let us know why you are deactivating"
1090
  msgstr ""
1091
 
1092
+ #: deactivation-form.php:125
1093
+ msgid "Submit and Deactivate"
 
 
 
 
 
 
 
 
1094
  msgstr ""
1095
 
1096
+ #: deactivation-form.php:126
1097
+ msgid "Skip and Deactivate"
1098
  msgstr ""
1099
 
1100
+ #: deactivation-form.php:272
1101
  msgid "Please tell us the reason so we can improve it."
1102
  msgstr ""
1103
 
1104
+ #: deprecated.php:28
 
 
 
 
1105
  msgid "System Status"
1106
  msgstr "Systeem status"
1107
 
1108
+ #: deprecated.php:119
 
 
 
 
1109
  msgid ""
1110
  "If necessary, you can check if the license key is correct or reenter it in "
1111
  "the field below. You can find your license key on your personal page - "
1115
  "het opnieuw in het onderstaande veld. U vindt uw licentiesleutel op uw "
1116
  "persoonlijke omgeving - Klanten Omgeving - via onze website"
1117
 
1118
+ #: deprecated.php:119
1119
  msgid ""
1120
  "(your username is the email address specified during the purchase). If "
1121
  "necessary, please submit \"Lost your password?\" request."
1123
  "(Uw gebruikersnaam is het e-mailadres dat is opgegeven tijdens de aankoop). "
1124
  "Indien nodig, verstuur alstublieft \"Verstuur uw wachtwoord?\" Verzoek."
1125
 
1126
+ #: deprecated.php:142
1127
  msgid "After that, you can activate it by entering your license key."
1128
  msgstr "Daarna kunt u activeren door uw licentiesleutel in te voeren."
1129
 
1130
+ #: deprecated.php:145 deprecated.php:228
1131
  msgid "License key can be found in the"
1132
  msgstr "Licentiesleutel is te vinden in de"
1133
 
1134
+ #: deprecated.php:147 deprecated.php:230
1135
  msgid "(your username is the email address specified during the purchase)."
1136
  msgstr ""
1137
  "(Uw gebruikersnaam is het e-mailadres dat is opgegeven tijdens de aankoop)."
1138
 
1139
+ #: deprecated.php:170
1140
  msgid ""
1141
  "Congratulations! The Pro license of the plugin is activated successfully."
1142
  msgstr ""
1143
  "Hartelijk gefeliciteerd! De Pro-licentie van de plugin is succesvol "
1144
  "geactiveerd."
1145
 
1146
+ #: deprecated.php:172 deprecated.php:210
1147
  msgid "Please, go to"
1148
  msgstr "Ga aub naar"
1149
 
1150
+ #: deprecated.php:172 deprecated.php:210
1151
  msgid "the setting page"
1152
  msgstr "de instellingen"
1153
 
1154
+ #: deprecated.php:187
 
 
 
 
 
 
 
 
1155
  msgid "Restore all plugin settings to defaults"
1156
  msgstr "Herstel alle plugin-instellingen naar de standaardinstellingen"
1157
 
1158
+ #: deprecated.php:189
1159
  msgid "Restore settings"
1160
  msgstr "Herstel instellingen"
1161
 
1162
+ #: deprecated.php:208
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1163
  msgid ""
1164
  "Congratulations! Pro version of the plugin is installed and activated "
1165
  "successfully."
1167
  "Hartelijk gefeliciteerd! De Pro-versie van de plugin is succesvol "
1168
  "geïnstalleerd en geactiveerd."
1169
 
1170
+ #: deprecated.php:217
1171
  msgid "Show Pro features"
1172
  msgstr "Toon de Pro functies"
1173
 
1174
+ #: deprecated.php:224
1175
  msgid "Enter your license key to install and activate"
1176
  msgstr "Voer uw licentiesleutel in om te installeren en te activeren"
1177
 
1178
+ #: deprecated.php:226
1179
  msgid "version of the plugin."
1180
  msgstr "versie van de plugin."
1181
 
1182
+ #: product_list.php:8
1183
  msgid "Admin Tools"
1184
  msgstr ""
1185
 
1186
+ #: product_list.php:9
1187
  msgid "Content"
1188
  msgstr ""
1189
 
1190
+ #: product_list.php:10
1191
  msgid "eCommerce"
1192
  msgstr ""
1193
 
1194
+ #: product_list.php:11
1195
  msgid "Marketing"
1196
  msgstr ""
1197
 
1198
+ #: product_list.php:12
1199
  msgid "Navigation"
1200
  msgstr ""
1201
 
1202
+ #: product_list.php:13
1203
  msgid "Recommended"
1204
  msgstr "Aanbevolen"
1205
 
1206
+ #: product_list.php:14
1207
  msgid "Security"
1208
  msgstr "Veiligheid"
1209
 
1210
+ #: product_list.php:15
1211
  msgid "SEO"
1212
  msgstr ""
1213
 
1214
+ #: product_list.php:16
1215
  msgid "SMM"
1216
  msgstr ""
1217
 
1218
+ #: product_list.php:23
1219
+ msgid "Give a birth for your bike rental and booking WordPress website."
1220
+ msgstr ""
1221
+
1222
+ #: product_list.php:35
1223
  msgid "Best secure captcha plugin to protect your WordPress forms."
1224
  msgstr ""
1225
 
1226
+ #: product_list.php:45
1227
+ msgid "Create your own rental website for car renting and booking."
1228
  msgstr ""
1229
 
1230
+ #: product_list.php:57
1231
+ msgid ""
1232
+ "Add columns with custom content to WordPress website pages, posts, widgets, "
1233
+ "etc."
1234
+ msgstr ""
1235
+
1236
+ #: product_list.php:64
1237
  msgid ""
1238
  "Allow customers to reach you using secure contact form plugin any website "
1239
  "must have."
1240
  msgstr ""
1241
 
1242
+ #: product_list.php:74
1243
  msgid "Add unlimited number of contact forms to WordPress website."
1244
  msgstr ""
1245
 
1246
+ #: product_list.php:84
1247
  msgid "Save and manage Contact Form messages. Never lose important data."
1248
  msgstr ""
1249
 
1250
+ #: product_list.php:94
1251
  msgid "Add unlimited custom pages to WordPress admin dashboard."
1252
  msgstr ""
1253
 
1254
+ #: product_list.php:104
 
 
 
 
1255
  msgid ""
1256
  "Add custom post types and taxonomies to WordPress website search results."
1257
  msgstr ""
1258
 
1259
+ #: product_list.php:114
1260
  msgid "Add PayPal and 2CO donate buttons to receive charity payments."
1261
  msgstr ""
1262
 
1263
+ #: product_list.php:121
1264
  msgid ""
1265
  "Get latest error log messages to diagnose website problems. Define and fix "
1266
  "issues faster."
1267
  msgstr ""
1268
 
1269
+ #: product_list.php:128
1270
  msgid ""
1271
  "Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and "
1272
  "widgets."
1273
  msgstr ""
1274
 
1275
+ #: product_list.php:138
1276
  msgid ""
1277
  "Add beautiful galleries, albums & images to your WordPress website in a few "
1278
  "clicks."
1279
  msgstr ""
1280
 
1281
+ #: product_list.php:148
 
 
 
 
 
 
1282
  msgid ""
1283
  "Stronger security solution which protects your WordPress website from hacks "
1284
  "and unauthorized login attempts."
1285
  msgstr ""
1286
 
1287
+ #: product_list.php:158
1288
  msgid ""
1289
  "Add Adsense ads to WordPress website pages, posts, custom posts, search "
1290
  "results, categories, tags, and widgets."
1291
  msgstr ""
1292
 
1293
+ #: product_list.php:168
1294
  msgid "Add Google Analytics code to WordPress website and track basic stats."
1295
  msgstr ""
1296
 
1297
+ #: product_list.php:178
1298
+ msgid "Protect WordPress website forms from spam entries with reCaptcha."
 
 
1299
  msgstr ""
1300
 
1301
+ #: product_list.php:188
1302
  msgid "Add customized Google maps to WordPress posts, pages and widgets."
1303
  msgstr ""
1304
 
1305
+ #: product_list.php:198
1306
  msgid ""
1307
  "Generate and add XML sitemap to WordPress website. Help search engines index "
1308
  "your blog."
1309
  msgstr ""
1310
 
1311
+ #: product_list.php:208
1312
  msgid ""
1313
  "Replace external WordPress website links with Google shortlinks and track "
1314
  "click stats."
1315
  msgstr ""
1316
 
1317
+ #: product_list.php:215
1318
  msgid ""
1319
  "Protect WordPress website – allow and deny access for certain IP addresses, "
1320
  "hostnames, etc."
1321
  msgstr ""
1322
 
1323
+ #: product_list.php:225
1324
  msgid ""
1325
  "Create your personal job board and listing WordPress website. Search jobs, "
1326
  "submit CV/resumes, choose candidates."
1327
  msgstr ""
1328
 
1329
+ #: product_list.php:232
1330
  msgid ""
1331
  "Protect WordPress website against brute force attacks. Limit rate of login "
1332
  "attempts."
1333
  msgstr ""
1334
 
1335
+ #: product_list.php:242
1336
  msgid ""
1337
  "Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. "
1338
  "5 plugins included – profile, insider, etc."
1339
  msgstr ""
1340
 
1341
+ #: product_list.php:252
1342
  msgid ""
1343
  "Translate WordPress website content to other languages manually. Create "
1344
  "multilingual pages, posts, widgets, menus, etc."
1345
  msgstr ""
1346
 
1347
+ #: product_list.php:262
1348
  msgid ""
1349
  "Add customizable pagination to WordPress website. Split long content to "
1350
  "multiple pages for better navigation."
1351
  msgstr ""
1352
 
1353
+ #: product_list.php:272
1354
  msgid ""
1355
  "Generate PDF files and print WordPress posts/pages. Customize document "
1356
  "header/footer styles and appearance."
1357
  msgstr ""
1358
 
1359
+ #: product_list.php:282
1360
  msgid ""
1361
  "Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, "
1362
  "Profile) to WordPress posts, pages and widgets."
1363
  msgstr ""
1364
 
1365
+ #: product_list.php:292
1366
  msgid ""
1367
  "Create your personal portfolio WordPress website. Manage and showcase past "
1368
  "projects to get more clients."
1369
  msgstr ""
1370
 
1371
+ #: product_list.php:302
1372
  msgid "Export WordPress posts to CSV file format easily. Configure data order."
1373
  msgstr ""
1374
 
1375
+ #: product_list.php:312
1376
  msgid ""
1377
  "Add extra fields to default WordPress user profile. The easiest way to "
1378
  "create and manage additional custom values."
1379
  msgstr ""
1380
 
1381
+ #: product_list.php:322
1382
  msgid ""
1383
  "Add and display HTML advertisement banner on WordPress website. Customize "
1384
  "bar styles and appearance."
1385
  msgstr ""
1386
 
1387
+ #: product_list.php:332
1388
  msgid ""
1389
  "Add customizable quotes and tips blocks to WordPress posts, pages and "
1390
  "widgets."
1391
  msgstr ""
1392
 
1393
+ #: product_list.php:339
1394
  msgid ""
1395
  "Add rating plugin to your WordPress website to receive feedback from your "
1396
  "customers."
1397
  msgstr ""
1398
 
1399
+ #: product_list.php:349
1400
  msgid ""
1401
  "Create your personal real estate WordPress website. Sell, rent and buy "
1402
  "properties. Add, search and browse listings easily."
1403
  msgstr ""
1404
 
1405
+ #: product_list.php:359
1406
  msgid ""
1407
  "Add related, featured, latest, and popular posts to your WordPress website. "
1408
  "Connect your blog readers with a relevant content."
1409
  msgstr ""
1410
 
1411
+ #: product_list.php:366
1412
  msgid ""
1413
  "Send bulk email messages to WordPress users. Custom templates, advanced "
1414
  "settings and detailed reports."
1415
  msgstr ""
1416
 
1417
+ #: product_list.php:376
1418
  msgid ""
1419
  "The best responsive slider plugin for your WordPress website. Create "
1420
  "beautifully animated slides just in a few clicks."
1421
  msgstr ""
1422
 
1423
+ #: product_list.php:383
1424
  msgid ""
1425
  "Configure SMTP server to receive email messages from WordPress to Gmail, "
1426
  "Yahoo, Hotmail and other services."
1427
  msgstr ""
1428
 
1429
+ #: product_list.php:390
1430
  msgid ""
1431
  "Add social media buttons and widgets to WordPress posts, pages and widgets. "
1432
+ "FB, Twitter, Pinterest, LinkedIn."
1433
  msgstr ""
1434
 
1435
+ #: product_list.php:400
1436
  msgid ""
1437
  "Add social media login, registration, and commenting to your WordPress "
1438
  "website."
1439
  msgstr ""
1440
 
1441
+ #: product_list.php:407
1442
  msgid ""
1443
  "Add email newsletter sign up form to WordPress posts, pages and widgets. "
1444
  "Collect data and subscribe your users."
1445
  msgstr ""
1446
 
1447
+ #: product_list.php:417
1448
  msgid ""
1449
  "Add testimonials and feedbacks from your customers to WordPress website "
1450
  "posts, pages, and widgets."
1451
  msgstr ""
1452
 
1453
+ #: product_list.php:424
1454
  msgid ""
1455
  "Best timesheet plugin for WordPress. Track employee time, streamline "
1456
  "attendance and generate reports."
1457
  msgstr ""
1458
 
1459
+ #: product_list.php:434
1460
  msgid ""
1461
  "Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts "
1462
  "and pages."
1463
  msgstr ""
1464
 
1465
+ #: product_list.php:444
1466
  msgid ""
1467
  "Automatically check and update WordPress website core with all installed "
1468
  "plugins and themes to the latest versions."
1469
  msgstr ""
1470
 
1471
+ #: product_list.php:454
1472
  msgid ""
1473
  "Powerful user role management plugin for WordPress website. Create, edit, "
1474
  "copy, and delete user roles."
1475
  msgstr ""
1476
 
1477
+ #: product_list.php:464
1478
  msgid ""
1479
  "Display live count of online visitors who are currently browsing your "
1480
  "WordPress website."
1481
  msgstr ""
1482
 
1483
+ #: product_list.php:474
1484
  msgid ""
1485
  "Backup and export Zendesk Help Center content automatically to your "
1486
  "WordPress website database."
1487
  msgstr ""
1488
 
1489
+ #~ msgid "Installing Plugin"
1490
+ #~ msgstr "Installatie Plugin bezig"
1491
+
1492
+ #~ msgid "Downloading install package from"
1493
+ #~ msgstr "Installatiepakket downloaden vanaf"
1494
+
1495
+ #~ msgid ""
1496
+ #~ "Failed to download the zip archive. Please, upload the plugin manually"
1497
+ #~ msgstr ""
1498
+ #~ "Het ziparchief kon niet worden geladen. Gelieve de plugin handmatig te "
1499
+ #~ "uploaden"
1500
+
1501
+ #~ msgid "Unpacking the package"
1502
+ #~ msgstr "Uitpakken van het pakket"
1503
+
1504
+ #~ msgid "Failed to open the zip archive. Please, upload the plugin manually"
1505
+ #~ msgstr ""
1506
+ #~ "Kan het zip-bestand niet openen. Gelieve de plugin handmatig te uploaden"
1507
+
1508
+ #~ msgid ""
1509
+ #~ "Your server does not support either ZipArchive or Phar. Please, upload "
1510
+ #~ "the plugin manually"
1511
+ #~ msgstr ""
1512
+ #~ "Uw server ondersteunt geen ZipArchive of Phar. Gelieve de plugin "
1513
+ #~ "handmatig te uploaden"
1514
+
1515
+ #~ msgid "The plugin %s is successfully installed."
1516
+ #~ msgstr "De plugin %s is succesvol geïnstalleerd."
1517
+
1518
+ #~ msgid "UploadDir is not writable. Please, upload the plugin manually"
1519
+ #~ msgstr ""
1520
+ #~ "UploadDir is kan niet worden weggeschreven. Gelieve de plugin handmatig "
1521
+ #~ "te uploaden"
1522
+
1523
+ #~ msgid "Activate Plugin"
1524
+ #~ msgstr "Activateer Plugin"
1525
+
1526
+ #~ msgid "Congratulations! Pro license is activated successfully."
1527
+ #~ msgstr "Hartelijk gefeliciteerd! De Pro licentie is succesvol geactiveerd."
1528
+
1529
+ #~ msgid "You will be automatically redirected to the %s in %s seconds."
1530
+ #~ msgstr "U wordt automatisch doorgestuurd naar %s in %s seconden."
1531
+
1532
+ #~ msgid "Settings page"
1533
+ #~ msgstr "Instellingen"
1534
+
1535
+ #~ msgid "Please, enter your license key"
1536
+ #~ msgstr "Vul alstublieft uw licentiesleutel in"
1537
+
1538
+ #~ msgid "You will be redirected automatically in 5 seconds."
1539
+ #~ msgstr "U wordt na 5 seconden automatisch doorverwezen."
1540
+
1541
+ #~ msgid "Check premium options on the plugin settings page!"
1542
+ #~ msgstr "Controleer de premiumopties op de pagina met Plugin-instellingen!"
1543
+
1544
+ #~ msgid "File %s edited successfully."
1545
+ #~ msgstr "Bestand %s is succesvol bewerkt"
1546
+
1547
+ #~ msgid "Not enough permissions to create or update the file"
1548
+ #~ msgstr "Niet genoeg rechten om het bestand te maken of aan te passen"
1549
+
1550
+ #~ msgid "Not enough permissions to create the file"
1551
+ #~ msgstr "Niet genoeg rechten om het bestand te maken"
1552
+
1553
+ #~ msgid "Editing"
1554
+ #~ msgstr "Bewerken"
1555
+
1556
  #~ msgid "Congratulations! Pro Membership license is activated successfully."
1557
  #~ msgstr ""
1558
  #~ "Hartelijk gefeliciteerd! Uw Pro Membership licentie is succesvol "
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-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"
@@ -13,12 +13,12 @@ msgstr ""
13
  "X-Poedit-KeywordsList: __;_e;esc_attr_e\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==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
18
  "|| n%100>=20) ? 1 : 2);\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
- #: bws_functions.php:73 bws_functions.php:191
22
  msgid "requires"
23
  msgstr "wymaga wersja"
24
 
@@ -56,7 +56,7 @@ 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,7 +65,7 @@ msgstr ""
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,8 +81,8 @@ msgid ""
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,7 +104,7 @@ msgstr ""
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
 
@@ -121,7 +121,37 @@ msgstr "Uwaga: Wykorzystywana jest próbna licencja wtyczki."
121
  msgid "The Pro Trial license will expire on"
122
  msgstr "Licencja próbna wygaśnie"
123
 
124
- #: bws_functions.php:193
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
125
  msgid ""
126
  "or higher! We do not guarantee that our plugin will work correctly. Please "
127
  "upgrade to WordPress latest version."
@@ -129,113 +159,82 @@ msgstr ""
129
  "lub nowsza! Nie gwarantujemy, że nasza wtyczka będzie działała poprawnie. "
130
  "Proszę zaktualizować WordPress do najnowszej wersji."
131
 
132
- #: bws_functions.php:208
133
  #, php-format
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 "
204
- "SUPPORT or UPDATES."
205
- msgstr ""
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,82 +243,73 @@ msgstr ""
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,33 +317,31 @@ msgstr ""
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
 
341
- #: bws_menu.php:130
342
  #, fuzzy
343
  msgid ""
344
  "This license key is bound to another site. Change it via personal Client "
345
  "Area."
346
  msgstr "Klucz licencji został przypisany do innej strony."
347
 
348
- #: bws_menu.php:130
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,7 +350,7 @@ msgstr ""
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,19 +358,19 @@ msgstr ""
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."
@@ -390,227 +378,229 @@ msgstr ""
390
  "Coś poszło nie tak. Spróbuj ponowie później lub dodaj wtyczkę manualnie. "
391
  "Przepraszamy za niedogodności."
392
 
393
- #: bws_menu.php:163
394
  #, fuzzy
395
  msgid "Please enter your license key."
396
  msgstr "Podaj klucz licencji"
397
 
398
- #: bws_menu.php:174
399
  msgid "Not set"
400
  msgstr "Nie ustawiono"
401
 
402
- #: bws_menu.php:176
403
  msgid "On"
404
  msgstr "Włączone"
405
 
406
- #: bws_menu.php:176
407
  msgid "Off"
408
  msgstr "Wyłączone"
409
 
410
- #: bws_menu.php:177 bws_menu.php:178 bws_menu.php:179 bws_menu.php:180
411
- #: bws_menu.php:181 bws_menu.php:182 bws_menu.php:191
412
  msgid "N/A"
413
  msgstr "Brak danych"
414
 
415
- #: bws_menu.php:182
416
- msgid " Mb"
 
 
417
  msgstr " Mb"
418
 
419
- #: bws_menu.php:183 bws_menu.php:184 bws_menu.php:185 bws_menu.php:189
420
  msgid "Yes"
421
  msgstr "Tak"
422
 
423
- #: bws_menu.php:183 bws_menu.php:184 bws_menu.php:185 bws_menu.php:189
424
  msgid "No"
425
  msgstr "Nie"
426
 
427
- #: bws_menu.php:196
428
  #, fuzzy
429
  msgid "WordPress Environment"
430
  msgstr "Środowisko"
431
 
432
- #: bws_menu.php:198
433
  msgid "Home URL"
434
  msgstr "Adres strony głównej:"
435
 
436
- #: bws_menu.php:199
437
  #, fuzzy
438
  msgid "Website URL"
439
  msgstr "Adres strony:"
440
 
441
- #: bws_menu.php:200
442
  #, fuzzy
443
  msgid "WP Version"
444
  msgstr "Wersja PHP"
445
 
446
- #: bws_menu.php:201
447
  #, fuzzy
448
  msgid "WP Multisite"
449
  msgstr "Multisite"
450
 
451
- #: bws_menu.php:202
452
  #, fuzzy
453
  msgid "WP Memory Limit"
454
  msgstr "PHP Limit pamięci"
455
 
456
- #: bws_menu.php:203
457
  msgid "Active Theme"
458
  msgstr "Aktywny motyw"
459
 
460
- #: bws_menu.php:203 bws_menu.php:248 bws_menu.php:251
461
  #, fuzzy, php-format
462
  msgid "by %s"
463
  msgstr "Od %s"
464
 
465
- #: bws_menu.php:207
466
  #, fuzzy
467
  msgid "Server Environment"
468
  msgstr "Środowisko"
469
 
470
- #: bws_menu.php:209
471
  msgid "Operating System"
472
  msgstr "System operacyjny"
473
 
474
- #: bws_menu.php:210
475
  msgid "Server"
476
  msgstr "Serwer"
477
 
478
- #: bws_menu.php:211
479
  msgid "PHP Version"
480
  msgstr "Wersja PHP"
481
 
482
- #: bws_menu.php:212
483
  msgid "PHP Allow URL fopen"
484
  msgstr "Zezwól na PHP fopen"
485
 
486
- #: bws_menu.php:213
487
  msgid "PHP Memory Limit"
488
  msgstr "PHP Limit pamięci"
489
 
490
- #: bws_menu.php:214
491
  #, fuzzy
492
  msgid "Memory Usage"
493
  msgstr "Wykorzystanie pamięci"
494
 
495
- #: bws_menu.php:215
496
  msgid "PHP Max Upload Size"
497
  msgstr "PHP Max rozmiar przesyłanego pliku"
498
 
499
- #: bws_menu.php:216
500
  msgid "PHP Max Post Size"
501
  msgstr "PHP Max rozmiar przesyłania POST"
502
 
503
- #: bws_menu.php:217
504
  msgid "PHP Max Script Execute Time"
505
  msgstr "PHP Max czas przetwarzania skryptu"
506
 
507
- #: bws_menu.php:218
508
  msgid "PHP Exif support"
509
  msgstr "PHP Wsparcie Exif"
510
 
511
- #: bws_menu.php:219
512
  msgid "PHP IPTC support"
513
  msgstr "PHP Wsparcie IPTC"
514
 
515
- #: bws_menu.php:220
516
  msgid "PHP XML support"
517
  msgstr "PHP Wsparcie XML"
518
 
519
- #: bws_menu.php:226
520
  msgid "Database"
521
  msgstr ""
522
 
523
- #: bws_menu.php:228
524
  #, fuzzy
525
  msgid "WP DB version"
526
  msgstr "Wersja Bazy Danych dla WordPress"
527
 
528
- #: bws_menu.php:229
529
  #, fuzzy
530
  msgid "MySQL version"
531
  msgstr "Wersja MySQL"
532
 
533
- #: bws_menu.php:230
534
  msgid "SQL Mode"
535
  msgstr "Tryb SQL"
536
 
537
- #: bws_menu.php:234
538
  msgid "Active Plugins"
539
  msgstr "Aktywne wtyczki"
540
 
541
- #: bws_menu.php:239
542
  msgid "Inactive Plugins"
543
  msgstr "Nieaktywne wtyczki"
544
 
545
- #: bws_menu.php:260
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,329 +609,310 @@ msgid ""
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
 
767
- #: class-bws-settings.php:136
768
  msgid "Information"
769
  msgstr ""
770
 
771
- #: class-bws-settings.php:144
772
  #, fuzzy
773
  msgid "Inactive"
774
  msgstr "Nieaktywne wtyczki"
775
 
776
- #: class-bws-settings.php:152
777
  msgid "Expired"
778
  msgstr ""
779
 
780
- #: class-bws-settings.php:155
781
  #, php-format
782
  msgid "%s day(-s) left"
783
  msgstr ""
784
 
785
- #: class-bws-settings.php:161
786
  #, fuzzy, php-format
787
  msgid "Expired on %s"
788
  msgstr "wygasa"
789
 
790
- #: class-bws-settings.php:161
791
  msgid "Renew Now"
792
  msgstr ""
793
 
794
- #: class-bws-settings.php:163
795
  #, fuzzy
796
  msgid "Active"
797
  msgstr "Aktywuj"
798
 
799
- #: class-bws-settings.php:168
800
  #, fuzzy
801
  msgid "License"
802
  msgstr "Niepoprawny klucz licencji"
803
 
804
- #: class-bws-settings.php:171
805
  #, fuzzy
806
  msgid "Status"
807
  msgstr "Status systemu"
808
 
809
- #: class-bws-settings.php:175
810
  #, fuzzy
811
  msgid "Version"
812
  msgstr "wersji!"
813
 
814
- #: class-bws-settings.php:285
815
  #, fuzzy
816
  msgid "All plugin settings were restored."
817
  msgstr "Ustawienia wtyczki zostały zmienione."
818
 
819
- #: class-bws-settings.php:423
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 "
835
  "end only."
836
  msgstr ""
837
 
838
- #: class-bws-settings.php:438
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
 
853
- #: class-bws-settings.php:461
854
  #, php-format
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,12 +920,12 @@ msgstr ""
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,28 +935,27 @@ msgstr ""
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,11 +963,11 @@ msgstr ""
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,11 +975,11 @@ msgstr ""
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,160 +987,142 @@ msgstr ""
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
-
1164
- #: deprecated.php:93
1165
  #, fuzzy
1166
  msgid "System Status"
1167
  msgstr "Status systemu"
1168
 
1169
- #: deprecated.php:204
1170
- msgid "Please, enter your license key"
1171
- msgstr "Podaj klucz licencji"
1172
-
1173
- #: deprecated.php:223
1174
  #, fuzzy
1175
  msgid ""
1176
  "If necessary, you can check if the license key is correct or reenter it in "
@@ -1181,7 +1133,7 @@ msgstr ""
1181
  "w polu poniżej. Możesz znaleźć swój klucz na naszej stronie w strefie - "
1182
  "Panel Klienta"
1183
 
1184
- #: deprecated.php:223
1185
  #, fuzzy
1186
  msgid ""
1187
  "(your username is the email address specified during the purchase). If "
@@ -1190,397 +1142,420 @@ msgstr ""
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ę"
1273
 
1274
- #: product_list.php:7
1275
  msgid "Admin Tools"
1276
  msgstr ""
1277
 
1278
- #: product_list.php:8
1279
  msgid "Content"
1280
  msgstr ""
1281
 
1282
- #: product_list.php:9
1283
  msgid "eCommerce"
1284
  msgstr ""
1285
 
1286
- #: product_list.php:10
1287
  msgid "Marketing"
1288
  msgstr ""
1289
 
1290
- #: product_list.php:11
1291
  msgid "Navigation"
1292
  msgstr ""
1293
 
1294
- #: product_list.php:12
1295
  msgid "Recommended"
1296
  msgstr "Polecane"
1297
 
1298
- #: product_list.php:13
1299
  msgid "Security"
1300
  msgstr ""
1301
 
1302
- #: product_list.php:14
1303
  msgid "SEO"
1304
  msgstr ""
1305
 
1306
- #: product_list.php:15
1307
  msgid "SMM"
1308
  msgstr ""
1309
 
1310
  #: product_list.php:23
1311
- msgid ""
1312
- "Protect WordPress website forms from spam entries by means of math logic."
1313
  msgstr ""
1314
 
1315
  #: product_list.php:35
1316
- msgid "Create your personal car rental/booking and reservation website."
1317
  msgstr ""
1318
 
1319
  #: product_list.php:45
 
 
 
 
 
 
 
 
 
 
1320
  msgid ""
1321
  "Allow customers to reach you using secure contact form plugin any website "
1322
  "must have."
1323
  msgstr ""
1324
 
1325
- #: product_list.php:55
1326
  msgid "Add unlimited number of contact forms to WordPress website."
1327
  msgstr ""
1328
 
1329
- #: product_list.php:65
1330
  msgid "Save and manage Contact Form messages. Never lose important data."
1331
  msgstr ""
1332
 
1333
- #: product_list.php:75
1334
  msgid "Add unlimited custom pages to WordPress admin dashboard."
1335
  msgstr ""
1336
 
1337
- #: product_list.php:82
1338
- msgid "Add custom fields to WordPress website search results."
1339
- msgstr ""
1340
-
1341
- #: product_list.php:89
1342
  msgid ""
1343
  "Add custom post types and taxonomies to WordPress website search results."
1344
  msgstr ""
1345
 
1346
- #: product_list.php:99
1347
  msgid "Add PayPal and 2CO donate buttons to receive charity payments."
1348
  msgstr ""
1349
 
1350
- #: product_list.php:106
1351
  msgid ""
1352
  "Get latest error log messages to diagnose website problems. Define and fix "
1353
  "issues faster."
1354
  msgstr ""
1355
 
1356
- #: product_list.php:113
1357
  msgid ""
1358
  "Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and "
1359
  "widgets."
1360
  msgstr ""
1361
 
1362
- #: product_list.php:123
1363
  msgid ""
1364
  "Add beautiful galleries, albums & images to your WordPress website in a few "
1365
  "clicks."
1366
  msgstr ""
1367
 
1368
- #: product_list.php:133
1369
- msgid ""
1370
- "Add Google +1, Share, Follow, Hangout buttons and profile badge to WordPress "
1371
- "posts, pages and widgets."
1372
- msgstr ""
1373
-
1374
- #: product_list.php:143
1375
  msgid ""
1376
  "Stronger security solution which protects your WordPress website from hacks "
1377
  "and unauthorized login attempts."
1378
  msgstr ""
1379
 
1380
- #: product_list.php:153
1381
  msgid ""
1382
  "Add Adsense ads to WordPress website pages, posts, custom posts, search "
1383
  "results, categories, tags, and widgets."
1384
  msgstr ""
1385
 
1386
- #: product_list.php:163
1387
  msgid "Add Google Analytics code to WordPress website and track basic stats."
1388
  msgstr ""
1389
 
1390
- #: product_list.php:173
1391
- msgid ""
1392
- "Protect WordPress website forms from spam entries with Google Captcha "
1393
- "(reCaptcha)."
1394
  msgstr ""
1395
 
1396
- #: product_list.php:183
1397
  msgid "Add customized Google maps to WordPress posts, pages and widgets."
1398
  msgstr ""
1399
 
1400
- #: product_list.php:193
1401
  msgid ""
1402
  "Generate and add XML sitemap to WordPress website. Help search engines index "
1403
  "your blog."
1404
  msgstr ""
1405
 
1406
- #: product_list.php:203
1407
  msgid ""
1408
  "Replace external WordPress website links with Google shortlinks and track "
1409
  "click stats."
1410
  msgstr ""
1411
 
1412
- #: product_list.php:210
1413
  msgid ""
1414
  "Protect WordPress website – allow and deny access for certain IP addresses, "
1415
  "hostnames, etc."
1416
  msgstr ""
1417
 
1418
- #: product_list.php:220
1419
  msgid ""
1420
  "Create your personal job board and listing WordPress website. Search jobs, "
1421
  "submit CV/resumes, choose candidates."
1422
  msgstr ""
1423
 
1424
- #: product_list.php:227
1425
  msgid ""
1426
  "Protect WordPress website against brute force attacks. Limit rate of login "
1427
  "attempts."
1428
  msgstr ""
1429
 
1430
- #: product_list.php:237
1431
  msgid ""
1432
  "Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. "
1433
  "5 plugins included – profile, insider, etc."
1434
  msgstr ""
1435
 
1436
- #: product_list.php:247
1437
  msgid ""
1438
  "Translate WordPress website content to other languages manually. Create "
1439
  "multilingual pages, posts, widgets, menus, etc."
1440
  msgstr ""
1441
 
1442
- #: product_list.php:257
1443
  msgid ""
1444
  "Add customizable pagination to WordPress website. Split long content to "
1445
  "multiple pages for better navigation."
1446
  msgstr ""
1447
 
1448
- #: product_list.php:267
1449
  msgid ""
1450
  "Generate PDF files and print WordPress posts/pages. Customize document "
1451
  "header/footer styles and appearance."
1452
  msgstr ""
1453
 
1454
- #: product_list.php:277
1455
  msgid ""
1456
  "Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, "
1457
  "Profile) to WordPress posts, pages and widgets."
1458
  msgstr ""
1459
 
1460
- #: product_list.php:287
1461
  msgid ""
1462
  "Create your personal portfolio WordPress website. Manage and showcase past "
1463
  "projects to get more clients."
1464
  msgstr ""
1465
 
1466
- #: product_list.php:297
1467
  msgid "Export WordPress posts to CSV file format easily. Configure data order."
1468
  msgstr ""
1469
 
1470
- #: product_list.php:304
1471
  msgid ""
1472
  "Add extra fields to default WordPress user profile. The easiest way to "
1473
  "create and manage additional custom values."
1474
  msgstr ""
1475
 
1476
- #: product_list.php:311
1477
  msgid ""
1478
  "Add and display HTML advertisement banner on WordPress website. Customize "
1479
  "bar styles and appearance."
1480
  msgstr ""
1481
 
1482
- #: product_list.php:321
1483
  msgid ""
1484
  "Add customizable quotes and tips blocks to WordPress posts, pages and "
1485
  "widgets."
1486
  msgstr ""
1487
 
1488
- #: product_list.php:328
1489
  msgid ""
1490
  "Add rating plugin to your WordPress website to receive feedback from your "
1491
  "customers."
1492
  msgstr ""
1493
 
1494
- #: product_list.php:335
1495
  msgid ""
1496
  "Create your personal real estate WordPress website. Sell, rent and buy "
1497
  "properties. Add, search and browse listings easily."
1498
  msgstr ""
1499
 
1500
- #: product_list.php:345
1501
  msgid ""
1502
  "Add related, featured, latest, and popular posts to your WordPress website. "
1503
  "Connect your blog readers with a relevant content."
1504
  msgstr ""
1505
 
1506
- #: product_list.php:352
1507
  msgid ""
1508
  "Send bulk email messages to WordPress users. Custom templates, advanced "
1509
  "settings and detailed reports."
1510
  msgstr ""
1511
 
1512
- #: product_list.php:362
1513
  msgid ""
1514
  "The best responsive slider plugin for your WordPress website. Create "
1515
  "beautifully animated slides just in a few clicks."
1516
  msgstr ""
1517
 
1518
- #: product_list.php:369
1519
  msgid ""
1520
  "Configure SMTP server to receive email messages from WordPress to Gmail, "
1521
  "Yahoo, Hotmail and other services."
1522
  msgstr ""
1523
 
1524
- #: product_list.php:376
1525
  msgid ""
1526
  "Add social media buttons and widgets to WordPress posts, pages and widgets. "
1527
- "FB, Twitter, G+1, Pinterest, LinkedIn."
1528
  msgstr ""
1529
 
1530
- #: product_list.php:386
1531
  msgid ""
1532
  "Add social media login, registration, and commenting to your WordPress "
1533
  "website."
1534
  msgstr ""
1535
 
1536
- #: product_list.php:393
1537
  msgid ""
1538
  "Add email newsletter sign up form to WordPress posts, pages and widgets. "
1539
  "Collect data and subscribe your users."
1540
  msgstr ""
1541
 
1542
- #: product_list.php:403
1543
  msgid ""
1544
  "Add testimonials and feedbacks from your customers to WordPress website "
1545
  "posts, pages, and widgets."
1546
  msgstr ""
1547
 
1548
- #: product_list.php:410
1549
  msgid ""
1550
  "Best timesheet plugin for WordPress. Track employee time, streamline "
1551
  "attendance and generate reports."
1552
  msgstr ""
1553
 
1554
- #: product_list.php:420
1555
  msgid ""
1556
  "Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts "
1557
  "and pages."
1558
  msgstr ""
1559
 
1560
- #: product_list.php:430
1561
  msgid ""
1562
  "Automatically check and update WordPress website core with all installed "
1563
  "plugins and themes to the latest versions."
1564
  msgstr ""
1565
 
1566
- #: product_list.php:440
1567
  msgid ""
1568
  "Powerful user role management plugin for WordPress website. Create, edit, "
1569
  "copy, and delete user roles."
1570
  msgstr ""
1571
 
1572
- #: product_list.php:450
1573
  msgid ""
1574
  "Display live count of online visitors who are currently browsing your "
1575
  "WordPress website."
1576
  msgstr ""
1577
 
1578
- #: product_list.php:460
1579
  msgid ""
1580
  "Backup and export Zendesk Help Center content automatically to your "
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."
@@ -1638,10 +1613,6 @@ msgstr ""
1638
  #~ msgid "Please, go to %s"
1639
  #~ msgstr "Proszę przejść do"
1640
 
1641
- #, fuzzy
1642
- #~ msgid "Client Area"
1643
- #~ msgstr "Panel Klienta"
1644
-
1645
  #~ msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
1646
  #~ msgstr "Jeśli polubiłeś naszą wtyczkę daj nam 5 gwiazdek"
1647
 
@@ -1709,9 +1680,6 @@ msgstr ""
1709
  #~ msgid "Free plugins"
1710
  #~ msgstr "無料プラグイン"
1711
 
1712
- #~ msgid "Download"
1713
- #~ msgstr "ダウンロード"
1714
-
1715
  #~ msgid "Install now from wordpress.org"
1716
  #~ msgstr "wordpress.org から直ぐに導入"
1717
 
@@ -1760,9 +1728,6 @@ msgstr ""
1760
  #~ msgid "Send me a copy"
1761
  #~ msgstr "コピーを自分に送る"
1762
 
1763
- #~ msgid "Submit"
1764
- #~ msgstr "送信"
1765
-
1766
  #~ msgid "Your name is required."
1767
  #~ msgstr "名前は必須です。"
1768
 
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2021-02-15 10:54+0200\n"
6
+ "PO-Revision-Date: 2021-02-15 10:54+0200\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"
13
  "X-Poedit-KeywordsList: __;_e;esc_attr_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Generator: Poedit 2.4.2\n"
17
  "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
18
  "|| n%100>=20) ? 1 : 2);\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
+ #: bws_functions.php:73 bws_functions.php:239
22
  msgid "requires"
23
  msgstr "wymaga wersja"
24
 
56
  msgid "Need help?"
57
  msgstr "Potrzebujesz pomocy?"
58
 
59
+ #: bws_functions.php:104 bws_functions.php:949 class-bws-settings.php:1082
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:529
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:208 bws_menu.php:600
85
+ #: class-bws-settings.php:179
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:226
108
  msgid "Learn more"
109
  msgstr "Dowiedz się więcej"
110
 
121
  msgid "The Pro Trial license will expire on"
122
  msgstr "Licencja próbna wygaśnie"
123
 
124
+ #: bws_functions.php:199 bws_functions.php:222 bws_functions.php:266
125
+ #: bws_functions.php:276 bws_functions.php:475
126
+ msgid "Close notice"
127
+ msgstr "Zamknij powiadomienie"
128
+
129
+ #: bws_functions.php:204
130
+ msgid "It’s time to upgrade your"
131
+ msgstr "Czas by zaktualizować"
132
+
133
+ #: bws_functions.php:204
134
+ msgid "to"
135
+ msgstr "do"
136
+
137
+ #: bws_functions.php:204
138
+ msgid "version!"
139
+ msgstr "wersji!"
140
+
141
+ #: bws_functions.php:205
142
+ msgid "Extend standard plugin functionality with new great options."
143
+ msgstr "Rozszerz podstawowe funkcje wtyczki o nowe wspaniałe opcje."
144
+
145
+ #: bws_functions.php:226
146
+ #, fuzzy, php-format
147
+ msgid ""
148
+ "Your license key for %s expires on %s and you won't be granted TOP-PRIORITY "
149
+ "SUPPORT or UPDATES."
150
+ msgstr ""
151
+ "zostaniesz wówczas pozbawiony SZYBKIEGO DOSTĘDO DO SUPPORTU oraz "
152
+ "AKTUALIZACJI."
153
+
154
+ #: bws_functions.php:241
155
  msgid ""
156
  "or higher! We do not guarantee that our plugin will work correctly. Please "
157
  "upgrade to WordPress latest version."
159
  "lub nowsza! Nie gwarantujemy, że nasza wtyczka będzie działała poprawnie. "
160
  "Proszę zaktualizować WordPress do najnowszej wersji."
161
 
162
+ #: bws_functions.php:256
163
  #, php-format
164
  msgid "Thank you for installing %s plugin!"
165
  msgstr ""
166
 
167
+ #: bws_functions.php:258
168
  msgid "Let's get started"
169
  msgstr "Zaczynajmny"
170
 
171
+ #: bws_functions.php:259 bws_functions.php:292 bws_menu.php:533
172
+ #: bws_menu.php:535
173
  msgid "Settings"
174
  msgstr "Ustawienia"
175
 
176
+ #: bws_functions.php:261 bws_menu.php:327 class-bws-settings.php:809
177
+ #: class-bws-settings.php:1084 class-bws-settings.php:1094 deprecated.php:234
178
  msgid "or"
179
  msgstr "lub"
180
 
181
+ #: bws_functions.php:262 bws_functions.php:294
182
  msgid "Add New"
183
  msgstr "Dodaj nowy"
184
 
185
+ #: bws_functions.php:281
 
 
 
 
 
186
  #, fuzzy
187
  msgid "Thank you for installing plugins by BestWebSoft!"
188
  msgstr "Dziękujemy za instalację"
189
 
190
+ #: bws_functions.php:283
191
  #, fuzzy
192
  msgid "More Details"
193
  msgstr "Szczegóły"
194
 
195
+ #: bws_functions.php:284
196
  #, fuzzy
197
  msgid "Less Details"
198
  msgstr "Szczegóły"
199
 
200
+ #: bws_functions.php:312
201
  msgid "Deprecated function(-s) is used on the site here:"
202
  msgstr ""
203
 
204
+ #: bws_functions.php:326
205
  msgid ""
206
  "This function(-s) will be removed over time. Please update the product(-s)."
207
  msgstr ""
208
 
209
+ #: bws_functions.php:470
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
210
  #, php-format
211
  msgid "Thank you for choosing %s plugin!"
212
  msgstr ""
213
 
214
+ #: bws_functions.php:471
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:472
221
  msgid "Suggest a Feature"
222
  msgstr ""
223
 
224
+ #: bws_functions.php:488 class-bws-settings.php:580 class-bws-settings.php:583
225
+ #: class-bws-settings.php:635 class-bws-settings.php:638
226
  msgid "Notice"
227
  msgstr "Uwaga"
228
 
229
+ #: bws_functions.php:488
230
  msgid "The plugin's settings have been changed."
231
  msgstr "Ustawienia wtyczki zostały zmienione."
232
 
233
+ #: bws_functions.php:489 class-bws-settings.php:222 class-bws-settings.php:242
 
234
  msgid "Save Changes"
235
  msgstr "Zapisz zmiany"
236
 
237
+ #: bws_functions.php:503
238
  #, fuzzy
239
  msgid ""
240
  "You can always look at premium options by checking the \"Pro Options\" in "
243
  "Zawsze możesz sprawdzić funkcje premium poprzez kliknięcie \"Pokaż funkcje "
244
  "PRO\" w zakładce \"Go PRO\""
245
 
246
+ #: bws_functions.php:679
 
 
 
 
 
 
 
 
247
  #, fuzzy
248
  msgid "Add shortcode"
249
  msgstr "Dodaj BWS Shortcode"
250
 
251
+ #: bws_functions.php:679
252
  msgid "Add BestWebSoft plugins' shortcodes using this button."
253
  msgstr ""
254
 
255
+ #: bws_functions.php:765
256
  msgid "Close"
257
  msgstr "Zamknij"
258
 
259
+ #: bws_functions.php:851
260
  #, fuzzy
261
  msgid "Are you sure you want to restore default settings?"
262
  msgstr ""
263
  "Czy jesteś pewien, że chcesz przywrócić wszystkie ustawienia do wartości "
264
  "domyślnych?"
265
 
266
+ #: bws_functions.php:854
267
  msgid "Yes, restore all settings"
268
  msgstr "Tak, przywróć wszystkie ustawienia"
269
 
270
+ #: bws_functions.php:855
271
  msgid "No, go back to the settings page"
272
  msgstr "Nie, wróć do ustawień"
273
 
274
+ #: bws_functions.php:897
275
  msgid "Plugin"
276
  msgstr "Wtyczka"
277
 
278
+ #: bws_functions.php:906
279
  msgid "Shortcode settings"
280
  msgstr "Ustawienia shortcode"
281
 
282
+ #: bws_functions.php:911
283
  msgid "The shortcode will be inserted"
284
  msgstr "Shortcode zostanie umieszczony"
285
 
286
+ #: bws_functions.php:954
287
  msgid "FAQ"
288
  msgstr "FAQ"
289
 
290
+ #: bws_functions.php:960
291
  msgid "For more information:"
292
  msgstr ""
293
 
294
+ #: bws_functions.php:961 bws_menu.php:401 class-bws-settings.php:776
295
  msgid "Documentation"
296
  msgstr ""
297
 
298
+ #: bws_functions.php:962 bws_menu.php:403 class-bws-settings.php:778
299
  msgid "Video Instructions"
300
  msgstr ""
301
 
302
+ #: bws_functions.php:963
303
  #, fuzzy
304
  msgid "Submit a Request"
305
  msgstr "送信ボタン"
306
 
307
+ #: bws_menu.php:101 class-bws-settings.php:860
308
  msgid "Wrong license key"
309
  msgstr "Niepoprawny klucz licencji"
310
 
311
+ #: bws_menu.php:122 class-bws-settings.php:887 class-bws-settings.php:966
312
+ #: class-bws-settings.php:1004
 
313
  msgid ""
314
  "Something went wrong. Please try again later. If the error appears again, "
315
  "please contact us"
317
  "Coś poszło nie tak. Spróbuj ponownie później. Jeśli błąd pojawi się ponownie "
318
  "proszę skontaktować się z nami"
319
 
320
+ #: bws_menu.php:122 class-bws-settings.php:887 class-bws-settings.php:966
321
+ #: class-bws-settings.php:1004
 
322
  msgid "We are sorry for inconvenience."
323
  msgstr "Przepraszamy za niedogodności."
324
 
325
+ #: bws_menu.php:129 class-bws-settings.php:893 class-bws-settings.php:1010
 
326
  msgid "Wrong license key."
327
  msgstr "Niepoprawny klucz licencji"
328
 
329
+ #: bws_menu.php:131
330
  #, fuzzy
331
  msgid ""
332
  "This license key is bound to another site. Change it via personal Client "
333
  "Area."
334
  msgstr "Klucz licencji został przypisany do innej strony."
335
 
336
+ #: bws_menu.php:131
337
  msgid "Log in"
338
  msgstr ""
339
 
340
+ #: bws_menu.php:133 bws_menu.php:333 deprecated.php:157
341
  msgid "Unfortunately, you have exceeded the number of available tries per day."
342
  msgstr "Niestety, przekroczono dzienną liczbę dostępnych prób."
343
 
344
+ #: bws_menu.php:135
345
  #, fuzzy, php-format
346
  msgid ""
347
  "Unfortunately, Your license has expired. To continue getting top-priority "
350
  "Niestety, Twoja licencja wygasła. By nadal korzystać z szybkiego dostępu do "
351
  "wsparcia oraz aktualizacji powinieneś przedłużyć licencję."
352
 
353
+ #: bws_menu.php:137 class-bws-settings.php:1018
354
  msgid ""
355
  "Unfortunately, the Pro licence was already installed to this domain. The Pro "
356
  "Trial license can be installed only once."
358
  "Niestety, licencja PRO była już przypisana do tej domeny. Licencja testowa "
359
  "może być wykorzystana tylko raz."
360
 
361
+ #: bws_menu.php:143 class-bws-settings.php:908
362
  msgid "The license key is valid."
363
  msgstr "Klucz licencji jest poprawny"
364
 
365
+ #: bws_menu.php:145 class-bws-settings.php:912
366
  msgid "Your license will expire on"
367
  msgstr "Twoja licencja wygaśnie"
368
 
369
+ #: bws_menu.php:147
370
  msgid "Congratulations! Pro Membership license is activated successfully."
371
  msgstr ""
372
 
373
+ #: bws_menu.php:154 class-bws-settings.php:1028
374
  msgid ""
375
  "Something went wrong. Try again later or upload the plugin manually. We are "
376
  "sorry for inconvenience."
378
  "Coś poszło nie tak. Spróbuj ponowie później lub dodaj wtyczkę manualnie. "
379
  "Przepraszamy za niedogodności."
380
 
381
+ #: bws_menu.php:164
382
  #, fuzzy
383
  msgid "Please enter your license key."
384
  msgstr "Podaj klucz licencji"
385
 
386
+ #: bws_menu.php:175
387
  msgid "Not set"
388
  msgstr "Nie ustawiono"
389
 
390
+ #: bws_menu.php:177
391
  msgid "On"
392
  msgstr "Włączone"
393
 
394
+ #: bws_menu.php:177
395
  msgid "Off"
396
  msgstr "Wyłączone"
397
 
398
+ #: bws_menu.php:178 bws_menu.php:179 bws_menu.php:180 bws_menu.php:181
399
+ #: bws_menu.php:182 bws_menu.php:183 bws_menu.php:192
400
  msgid "N/A"
401
  msgstr "Brak danych"
402
 
403
+ #: bws_menu.php:183
404
+ #, fuzzy
405
+ #| msgid " Mb"
406
+ msgid "Mb"
407
  msgstr " Mb"
408
 
409
+ #: bws_menu.php:184 bws_menu.php:185 bws_menu.php:186 bws_menu.php:190
410
  msgid "Yes"
411
  msgstr "Tak"
412
 
413
+ #: bws_menu.php:184 bws_menu.php:185 bws_menu.php:186 bws_menu.php:190
414
  msgid "No"
415
  msgstr "Nie"
416
 
417
+ #: bws_menu.php:197
418
  #, fuzzy
419
  msgid "WordPress Environment"
420
  msgstr "Środowisko"
421
 
422
+ #: bws_menu.php:199
423
  msgid "Home URL"
424
  msgstr "Adres strony głównej:"
425
 
426
+ #: bws_menu.php:200
427
  #, fuzzy
428
  msgid "Website URL"
429
  msgstr "Adres strony:"
430
 
431
+ #: bws_menu.php:201
432
  #, fuzzy
433
  msgid "WP Version"
434
  msgstr "Wersja PHP"
435
 
436
+ #: bws_menu.php:202
437
  #, fuzzy
438
  msgid "WP Multisite"
439
  msgstr "Multisite"
440
 
441
+ #: bws_menu.php:203
442
  #, fuzzy
443
  msgid "WP Memory Limit"
444
  msgstr "PHP Limit pamięci"
445
 
446
+ #: bws_menu.php:204
447
  msgid "Active Theme"
448
  msgstr "Aktywny motyw"
449
 
450
+ #: bws_menu.php:204 bws_menu.php:249 bws_menu.php:252
451
  #, fuzzy, php-format
452
  msgid "by %s"
453
  msgstr "Od %s"
454
 
455
+ #: bws_menu.php:208
456
  #, fuzzy
457
  msgid "Server Environment"
458
  msgstr "Środowisko"
459
 
460
+ #: bws_menu.php:210
461
  msgid "Operating System"
462
  msgstr "System operacyjny"
463
 
464
+ #: bws_menu.php:211
465
  msgid "Server"
466
  msgstr "Serwer"
467
 
468
+ #: bws_menu.php:212
469
  msgid "PHP Version"
470
  msgstr "Wersja PHP"
471
 
472
+ #: bws_menu.php:213
473
  msgid "PHP Allow URL fopen"
474
  msgstr "Zezwól na PHP fopen"
475
 
476
+ #: bws_menu.php:214
477
  msgid "PHP Memory Limit"
478
  msgstr "PHP Limit pamięci"
479
 
480
+ #: bws_menu.php:215
481
  #, fuzzy
482
  msgid "Memory Usage"
483
  msgstr "Wykorzystanie pamięci"
484
 
485
+ #: bws_menu.php:216
486
  msgid "PHP Max Upload Size"
487
  msgstr "PHP Max rozmiar przesyłanego pliku"
488
 
489
+ #: bws_menu.php:217
490
  msgid "PHP Max Post Size"
491
  msgstr "PHP Max rozmiar przesyłania POST"
492
 
493
+ #: bws_menu.php:218
494
  msgid "PHP Max Script Execute Time"
495
  msgstr "PHP Max czas przetwarzania skryptu"
496
 
497
+ #: bws_menu.php:219
498
  msgid "PHP Exif support"
499
  msgstr "PHP Wsparcie Exif"
500
 
501
+ #: bws_menu.php:220
502
  msgid "PHP IPTC support"
503
  msgstr "PHP Wsparcie IPTC"
504
 
505
+ #: bws_menu.php:221
506
  msgid "PHP XML support"
507
  msgstr "PHP Wsparcie XML"
508
 
509
+ #: bws_menu.php:227
510
  msgid "Database"
511
  msgstr ""
512
 
513
+ #: bws_menu.php:229
514
  #, fuzzy
515
  msgid "WP DB version"
516
  msgstr "Wersja Bazy Danych dla WordPress"
517
 
518
+ #: bws_menu.php:230
519
  #, fuzzy
520
  msgid "MySQL version"
521
  msgstr "Wersja MySQL"
522
 
523
+ #: bws_menu.php:231
524
  msgid "SQL Mode"
525
  msgstr "Tryb SQL"
526
 
527
+ #: bws_menu.php:235
528
  msgid "Active Plugins"
529
  msgstr "Aktywne wtyczki"
530
 
531
+ #: bws_menu.php:240
532
  msgid "Inactive Plugins"
533
  msgstr "Nieaktywne wtyczki"
534
 
535
+ #: bws_menu.php:261
536
  msgid "Please enter a valid email address."
537
  msgstr "Podaj poprawny adres email"
538
 
539
+ #: bws_menu.php:263
540
  #, php-format
541
  msgid "Email with system info is sent to %s."
542
  msgstr ""
543
 
544
+ #: bws_menu.php:267
545
  msgid "Thank you for contacting us."
546
  msgstr "Dziękujemy za kontakt."
547
 
548
+ #: bws_menu.php:290
549
  msgid "Sorry, email message could not be delivered."
550
  msgstr "Przepraszamy, wiadomość nie została dostarczona."
551
 
552
+ #: bws_menu.php:306 bws_menu.php:310 bws_menu.php:359 deprecated.php:26
553
  msgid "Plugins"
554
  msgstr "Wtyczki"
555
 
556
+ #: bws_menu.php:307 bws_menu.php:311 bws_menu.php:587 deprecated.php:27
557
  msgid "Themes"
558
  msgstr "Motywy"
559
 
560
+ #: bws_menu.php:308 bws_menu.php:312 bws_menu.php:617
561
  msgid "System status"
562
  msgstr "Status systemu"
563
 
564
+ #: bws_menu.php:316
565
  msgid "Support"
566
  msgstr "サポート"
567
 
568
+ #: bws_menu.php:317
569
  msgid "Manage purchased licenses & subscriptions"
570
  msgstr ""
571
 
572
+ #: bws_menu.php:325
573
  #, php-format
574
  msgid "Get Access to %s+ Premium Plugins"
575
  msgstr ""
576
 
577
+ #: bws_menu.php:327
578
  #, fuzzy
579
  msgid "Subscribe to Pro Membership"
580
  msgstr "有効なテーマ"
581
 
582
+ #: bws_menu.php:335 bws_menu.php:346 class-bws-settings.php:822
583
+ #: deprecated.php:123
584
  msgid "Check license key"
585
  msgstr "Sprawdź klucz licencji"
586
 
587
+ #: bws_menu.php:338
588
  #, fuzzy
589
  msgid "Enter your license key"
590
  msgstr "Podaj klucz licencji"
591
 
592
+ #: bws_menu.php:344 bws_menu.php:539 bws_menu.php:548
593
+ #: class-bws-settings.php:801 deprecated.php:155 deprecated.php:163
594
+ #: deprecated.php:240 deprecated.php:249
595
  msgid "Activate"
596
  msgstr "Aktywuj"
597
 
598
+ #: bws_menu.php:360
599
  #, fuzzy
600
  msgid "Upload Plugin"
601
  msgstr "Wtyczka"
602
 
603
+ #: bws_menu.php:364
604
  #, php-format
605
  msgid ""
606
  "The plugin generated %d characters of <strong>unexpected output</strong> "
609
  "or removing this plugin."
610
  msgstr ""
611
 
612
+ #: bws_menu.php:366
613
  msgid ""
614
  "Plugin could not be activated because it triggered a <strong>fatal error</"
615
  "strong>."
616
  msgstr ""
617
 
618
+ #: bws_menu.php:369
619
  msgid "Plugin <strong>activated</strong>."
620
  msgstr ""
621
 
622
+ #: bws_menu.php:383
623
  #, fuzzy
624
+ msgid "Download Pro Plugin"
625
+ msgstr "Wtyczka"
626
 
627
+ #: bws_menu.php:385 class-bws-settings.php:759
628
+ msgid "Your Pro plugin is ready"
629
  msgstr ""
630
 
631
+ #: bws_menu.php:387 class-bws-settings.php:761
632
+ msgid "Your plugin has been zipped, and now is ready to download."
 
633
  msgstr ""
 
 
634
 
635
+ #: bws_menu.php:390 class-bws-settings.php:764
636
+ #, fuzzy
637
+ #| msgid "Download"
638
+ msgid "Download Now"
639
+ msgstr "ダウンロード"
640
 
641
+ #: bws_menu.php:394 class-bws-settings.php:768
642
  #, fuzzy
643
+ msgid "Need help installing the plugin?"
644
  msgstr "Zainstalowane"
645
 
646
+ #: bws_menu.php:396 class-bws-settings.php:770
647
+ msgid "How to install WordPress plugin from your admin Dashboard (ZIP archive)"
648
  msgstr ""
 
 
649
 
650
+ #: bws_menu.php:399 class-bws-settings.php:774
651
+ #, fuzzy
652
+ #| msgid "Let's get started"
653
+ msgid "Get Started"
654
+ msgstr "Zaczynajmny"
 
655
 
656
+ #: bws_menu.php:405 class-bws-settings.php:780
657
+ msgid "Knowledge Base"
 
658
  msgstr ""
659
 
660
+ #: bws_menu.php:408
661
+ msgid "Licenses & Domains"
662
  msgstr ""
 
663
 
664
+ #: bws_menu.php:411
665
  #, fuzzy
666
+ msgid "Client Area"
667
+ msgstr "Panel Klienta"
668
 
669
+ #: bws_menu.php:413
670
  msgid "Return to BestWebSoft Panel"
671
  msgstr ""
672
 
673
+ #: bws_menu.php:420 bws_menu.php:440 bws_menu.php:569
674
  msgid "All"
675
  msgstr "Wszystko"
676
 
677
+ #: bws_menu.php:423 bws_menu.php:606
678
  msgid "Installed"
679
  msgstr "Zainstalowane"
680
 
681
+ #: bws_menu.php:426
682
  #, fuzzy
683
  msgid "Not Installed"
684
  msgstr "Zainstalowane"
685
 
686
+ #: bws_menu.php:433
687
  msgid "Filter results"
688
  msgstr ""
689
 
690
+ #: bws_menu.php:436 bws_menu.php:565
691
  msgid "Category"
692
  msgstr ""
693
 
694
+ #: bws_menu.php:500
695
  #, fuzzy
696
  msgid "Not installed"
697
  msgstr "Zainstalowane"
698
 
699
+ #: bws_menu.php:504
700
  #, fuzzy
701
  msgid "Renew to get updates"
702
  msgstr "ページに転送"
703
 
704
+ #: bws_menu.php:507
705
  #, fuzzy, php-format
706
  msgid "Update to v %s"
707
  msgstr "Aktualizuj do wersji %s"
708
 
709
+ #: bws_menu.php:519 bws_menu.php:542
710
+ msgid "Get Pro"
711
+ msgstr ""
712
 
713
+ #: bws_menu.php:525 class-bws-settings.php:192 class-bws-settings.php:1091
714
  msgid "Upgrade to Pro"
715
  msgstr ""
716
 
717
+ #: bws_menu.php:539 bws_menu.php:548
718
  msgid "Activate this plugin"
719
  msgstr "Aktywuj wtyczkę"
720
 
721
+ #: bws_menu.php:551
722
  #, fuzzy
723
  msgid "Install this plugin"
724
  msgstr "Zainstalowane"
725
 
726
+ #: bws_menu.php:551
727
+ msgid "Install Now"
728
+ msgstr "Instaluj teraz"
729
+
730
+ #: bws_menu.php:560
731
  msgid "Nothing found. Try another criteria."
732
  msgstr ""
733
 
734
+ #: bws_menu.php:597
735
  #, php-format
736
  msgid "By %s"
737
  msgstr "Od %s"
738
 
739
+ #: bws_menu.php:604
740
  msgid "Already Installed"
741
  msgstr "Zainstalowane"
742
 
743
+ #: bws_menu.php:614
744
  msgid "Browse More WordPress Themes"
745
  msgstr ""
746
 
747
+ #: bws_menu.php:623
748
  msgid "Send to support"
749
  msgstr "Wyślij do supportu"
750
 
751
+ #: bws_menu.php:630
752
  msgid "Send to custom email &#187;"
753
  msgstr "Prześlij na własny adres &#187;"
754
 
755
+ #: class-bws-settings.php:167
756
  msgid "Information"
757
  msgstr ""
758
 
759
+ #: class-bws-settings.php:179
760
  #, fuzzy
761
  msgid "Inactive"
762
  msgstr "Nieaktywne wtyczki"
763
 
764
+ #: class-bws-settings.php:187
765
  msgid "Expired"
766
  msgstr ""
767
 
768
+ #: class-bws-settings.php:190
769
  #, php-format
770
  msgid "%s day(-s) left"
771
  msgstr ""
772
 
773
+ #: class-bws-settings.php:196
774
  #, fuzzy, php-format
775
  msgid "Expired on %s"
776
  msgstr "wygasa"
777
 
778
+ #: class-bws-settings.php:196
779
  msgid "Renew Now"
780
  msgstr ""
781
 
782
+ #: class-bws-settings.php:198
783
  #, fuzzy
784
  msgid "Active"
785
  msgstr "Aktywuj"
786
 
787
+ #: class-bws-settings.php:203
788
  #, fuzzy
789
  msgid "License"
790
  msgstr "Niepoprawny klucz licencji"
791
 
792
+ #: class-bws-settings.php:206
793
  #, fuzzy
794
  msgid "Status"
795
  msgstr "Status systemu"
796
 
797
+ #: class-bws-settings.php:210
798
  #, fuzzy
799
  msgid "Version"
800
  msgstr "wersji!"
801
 
802
+ #: class-bws-settings.php:323
803
  #, fuzzy
804
  msgid "All plugin settings were restored."
805
  msgstr "Ustawienia wtyczki zostały zmienione."
806
 
807
+ #: class-bws-settings.php:463
808
  msgid "Custom Code"
809
  msgstr ""
810
 
811
+ #: class-bws-settings.php:467
812
  msgid "You do not have sufficient permissions to edit plugins for this site."
813
  msgstr ""
814
 
815
+ #: class-bws-settings.php:472
816
  msgid "These styles will be added to the header on all pages of your site."
817
  msgstr ""
818
 
819
+ #: class-bws-settings.php:475
820
  #, php-format
821
  msgid ""
822
  "This PHP code will be hooked to the %s action and will be printed on front "
823
  "end only."
824
  msgstr ""
825
 
826
+ #: class-bws-settings.php:478
827
  msgid "These code will be added to the header on all pages of your site."
828
  msgstr ""
829
 
830
+ #: class-bws-settings.php:486
831
  #, php-format
832
  msgid ""
833
  "You need to make this files writable before you can save your changes. See "
834
  "%s the Codex %s for more information."
835
  msgstr ""
836
 
837
+ #: class-bws-settings.php:496
838
  msgid "Browsing"
839
  msgstr ""
840
 
841
+ #: class-bws-settings.php:501
842
  #, php-format
843
  msgid "Activate custom %s code."
844
  msgstr ""
845
 
846
+ #: class-bws-settings.php:509
847
  #, fuzzy, php-format
848
  msgid "Learn more about %s"
849
  msgstr "Dowiedz się więcej"
850
 
851
+ #: class-bws-settings.php:571
852
  msgid "Miscellaneous Settings"
853
  msgstr ""
854
 
855
+ #: class-bws-settings.php:580 class-bws-settings.php:635
856
  #, php-format
857
  msgid ""
858
  "It is prohibited to change %s settings on this site in the %s network "
859
  "settings."
860
  msgstr ""
861
 
862
+ #: class-bws-settings.php:583 class-bws-settings.php:638
863
  #, php-format
864
  msgid ""
865
  "It is prohibited to view %s settings on this site in the %s network settings."
866
  msgstr ""
867
 
868
+ #: class-bws-settings.php:592
869
  #, fuzzy
870
  msgid "Pro Options"
871
  msgstr "Pro Plugins"
872
 
873
+ #: class-bws-settings.php:596
874
  msgid "Enable to display plugin Pro options."
875
  msgstr ""
876
 
877
+ #: class-bws-settings.php:602
878
  msgid "Track Usage"
879
  msgstr ""
880
 
881
+ #: class-bws-settings.php:606
882
  msgid ""
883
  "Enable to allow tracking plugin usage anonymously in order to make it better."
884
  msgstr ""
885
 
886
+ #: class-bws-settings.php:611
887
  #, fuzzy
888
  msgid "Default Settings"
889
  msgstr "Ustawienia"
890
 
891
+ #: class-bws-settings.php:613
892
  #, fuzzy
893
  msgid "Restore Settings"
894
  msgstr "Przywróć ustawienia"
895
 
896
+ #: class-bws-settings.php:614
897
  #, fuzzy
898
  msgid "This will restore plugin settings to defaults."
899
  msgstr "Przywróć wszystkie ustawienia do wartości domyśłnych"
900
 
901
+ #: class-bws-settings.php:626
902
  msgid "Import / Export"
903
  msgstr ""
904
 
905
+ #: class-bws-settings.php:744
 
906
  #, fuzzy
907
  msgid "License Key"
908
  msgstr "Niepoprawny klucz licencji"
909
 
910
+ #: class-bws-settings.php:803
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
911
  #, php-format
912
  msgid "Enter your license key to activate %s and get premium plugin features."
913
  msgstr ""
914
 
915
+ #: class-bws-settings.php:806 class-bws-settings.php:1014 deprecated.php:243
 
916
  msgid ""
917
  "Unfortunately, you have exceeded the number of available tries per day. "
918
  "Please, upload the plugin manually."
920
  "Niestety, przekroczono liczb dostępnych prób na dziś. Proszę dodać wtyczkę "
921
  "manualnie."
922
 
923
+ #: class-bws-settings.php:809 deprecated.php:234
924
  #, php-format
925
  msgid "Start Your Free %s-Day Trial Now"
926
  msgstr "Rozpocznij swój darmowy %s-dniowy okres testowy"
927
 
928
+ #: class-bws-settings.php:824
929
  #, fuzzy
930
  msgid ""
931
  "If necessary, you can check if the license key is correct or reenter it in "
935
  "w polu poniżej. Możesz znaleźć swój klucz na naszej stronie w strefie - "
936
  "Panel Klienta"
937
 
938
+ #: class-bws-settings.php:833
939
  msgid "Manage License Settings"
940
  msgstr ""
941
 
942
+ #: class-bws-settings.php:835
943
  #, fuzzy
944
  msgid "Login to Client Area"
945
  msgstr "Panel Klienta"
946
 
947
+ #: class-bws-settings.php:837
948
  msgid ""
949
  "Manage active licenses, download BWS products, and view your payment history "
950
  "using BestWebSoft Client Area."
951
  msgstr ""
952
 
953
+ #: class-bws-settings.php:895 class-bws-settings.php:1012
 
954
  #, fuzzy
955
  msgid "This license key is bound to another site."
956
  msgstr "Klucz licencji został przypisany do innej strony."
957
 
958
+ #: class-bws-settings.php:897
959
  msgid ""
960
  "This license key is valid, but Your license has expired. If you want to "
961
  "update our plugin in future, you should extend the license."
963
  "Klucz jest poprawny, jednak Twoja licencja wygasła. Jeśli chcesz "
964
  "aktualizować naszą wtyczkę w przyszłości powinieneś przedłużyć licencję."
965
 
966
+ #: class-bws-settings.php:899
967
  msgid "Unfortunately, you have exceeded the number of available tries."
968
  msgstr "Niestety, przekroczono liczbę dostępnych prób."
969
 
970
+ #: class-bws-settings.php:901
971
  msgid ""
972
  "Unfortunately, the Pro Trial licence was already installed to this domain. "
973
  "The Pro Trial license can be installed only once."
975
  "Niestety, licencja PRO była już przypisana do tej domeny. Licencja testowa "
976
  "może być wykorzystana tylko raz."
977
 
978
+ #: class-bws-settings.php:906
979
  msgid "The Pro Trial license key is valid."
980
  msgstr "Klucz licencji do testowej wersji PRO jest poprawny."
981
 
982
+ #: class-bws-settings.php:919 deprecated.php:142
983
  #, php-format
984
  msgid ""
985
  "In order to continue using the plugin it is necessary to buy a %s license."
987
  "W celu dalszego wykorzystywania wtyczki niezbędne jest wykupienie licencji "
988
  "%s."
989
 
990
+ #: class-bws-settings.php:1016
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:1065
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
998
  msgid "Please, enter Your license key"
999
  msgstr "Proszę podać klucz licencji."
1000
 
1001
+ #: class-bws-settings.php:1078
1002
  #, fuzzy
1003
  msgid "Need Help?"
1004
  msgstr "Potrzebujesz pomocy?"
1005
 
1006
+ #: class-bws-settings.php:1080
1007
  msgid "Read the Instruction"
1008
  msgstr ""
1009
 
1010
+ #: class-bws-settings.php:1084
1011
  msgid "Watch the Video"
1012
  msgstr ""
1013
 
1014
+ #: class-bws-settings.php:1095
1015
  #, fuzzy
1016
  msgid "Start Your Free Trial"
1017
  msgstr "Rozpocznij swój darmowy %s-dniowy okres testowy"
1018
 
1019
+ #: class-bws-settings.php:1130
1020
+ msgid "Request a Feature"
1021
  msgstr ""
1022
 
1023
+ #: class-bws-settings.php:1135
1024
+ #, php-format
1025
+ msgid "How can we improve %s?"
1026
  msgstr ""
1027
 
1028
+ #: class-bws-settings.php:1137
1029
+ msgid "We look forward to hear your ideas."
1030
  msgstr ""
1031
 
1032
+ #: class-bws-settings.php:1139
1033
+ msgid "Describe your idea"
1034
  msgstr ""
1035
 
1036
+ #: class-bws-settings.php:1142 deactivation-form.php:120
1037
+ msgid "Send website data and allow to contact me back"
1038
+ msgstr ""
1039
+
1040
+ #: class-bws-settings.php:1147
1041
+ msgid "Submit"
1042
+ msgstr "送信"
1043
+
1044
+ #: class-bws-settings.php:1148 deactivation-form.php:127
1045
+ msgid "Processing"
1046
  msgstr ""
1047
 
1048
+ #: class-bws-settings.php:1149
1049
+ msgid "Thank you!"
1050
  msgstr ""
1051
 
1052
+ #: deactivation-form.php:22
1053
+ msgid "Need help? We are ready to answer your questions."
1054
+ msgstr ""
1055
+
1056
+ #: deactivation-form.php:22
1057
+ msgid "Contact Support"
1058
+ msgstr ""
1059
+
1060
+ #: deactivation-form.php:27
1061
+ msgid "The plugin is not working"
1062
+ msgstr ""
1063
+
1064
+ #: deactivation-form.php:33
1065
+ msgid "The plugin didn't work as expected"
1066
+ msgstr ""
1067
+
1068
+ #: deactivation-form.php:39
1069
  msgid "The plugin suddenly stopped working"
1070
  msgstr ""
1071
 
1072
+ #: deactivation-form.php:46
1073
  msgid "The plugin broke my site"
1074
  msgstr ""
1075
 
1076
+ #: deactivation-form.php:53
1077
  msgid "I couldn't understand how to get it work"
1078
  msgstr ""
1079
 
1080
+ #: deactivation-form.php:60
1081
  msgid "I found a better plugin"
1082
  msgstr ""
1083
 
1084
+ #: deactivation-form.php:66
 
 
 
 
1085
  msgid "The plugin is great, but I need specific feature that you don't support"
1086
  msgstr ""
1087
 
1088
+ #: deactivation-form.php:72
 
 
 
 
1089
  msgid "I no longer need the plugin"
1090
  msgstr ""
1091
 
1092
+ #: deactivation-form.php:78
1093
  msgid "It's a temporary deactivation, I'm just debugging an issue"
1094
  msgstr ""
1095
 
1096
+ #: deactivation-form.php:84
1097
  msgid "Other"
1098
  msgstr ""
1099
 
1100
+ #: deactivation-form.php:93
1101
  msgid "Quick Feedback"
1102
  msgstr ""
1103
 
1104
+ #: deactivation-form.php:95
1105
  msgid "If you have a moment, please let us know why you are deactivating"
1106
  msgstr ""
1107
 
1108
+ #: deactivation-form.php:125
1109
+ msgid "Submit and Deactivate"
1110
  msgstr ""
1111
 
1112
+ #: deactivation-form.php:126
1113
+ msgid "Skip and Deactivate"
1114
  msgstr ""
1115
 
1116
+ #: deactivation-form.php:272
 
 
 
 
 
 
 
 
1117
  msgid "Please tell us the reason so we can improve it."
1118
  msgstr ""
1119
 
1120
+ #: deprecated.php:28
 
 
 
 
1121
  #, fuzzy
1122
  msgid "System Status"
1123
  msgstr "Status systemu"
1124
 
1125
+ #: deprecated.php:119
 
 
 
 
1126
  #, fuzzy
1127
  msgid ""
1128
  "If necessary, you can check if the license key is correct or reenter it in "
1133
  "w polu poniżej. Możesz znaleźć swój klucz na naszej stronie w strefie - "
1134
  "Panel Klienta"
1135
 
1136
+ #: deprecated.php:119
1137
  #, fuzzy
1138
  msgid ""
1139
  "(your username is the email address specified during the purchase). If "
1142
  "(login to adres email podany przy zakupie). Jeśli to koniczne użyj opcji "
1143
  "\"Zgubiłeś swoje hasło?\"."
1144
 
1145
+ #: deprecated.php:142
1146
  #, fuzzy
1147
  msgid "After that, you can activate it by entering your license key."
1148
  msgstr "Po wszystkim możesz aktywować wtyczkę poprzez podanie klucza licencji."
1149
 
1150
+ #: deprecated.php:145 deprecated.php:228
1151
  msgid "License key can be found in the"
1152
  msgstr ""
1153
 
1154
+ #: deprecated.php:147 deprecated.php:230
1155
  #, fuzzy
1156
  msgid "(your username is the email address specified during the purchase)."
1157
  msgstr "(twoja nazwa użytkownika to email podany podczas zakupu)."
1158
 
1159
+ #: deprecated.php:170
1160
  #, fuzzy
1161
  msgid ""
1162
  "Congratulations! The Pro license of the plugin is activated successfully."
1163
  msgstr "Gratulacje! Licencja do wersji PRO została aktywowana pomyślnie."
1164
 
1165
+ #: deprecated.php:172 deprecated.php:210
1166
  msgid "Please, go to"
1167
  msgstr "Proszę przejść do"
1168
 
1169
+ #: deprecated.php:172 deprecated.php:210
1170
  msgid "the setting page"
1171
  msgstr "ustawień"
1172
 
1173
+ #: deprecated.php:187
 
 
 
 
 
 
 
 
1174
  msgid "Restore all plugin settings to defaults"
1175
  msgstr "Przywróć wszystkie ustawienia do wartości domyśłnych"
1176
 
1177
+ #: deprecated.php:189
1178
  msgid "Restore settings"
1179
  msgstr "Przywróć ustawienia"
1180
 
1181
+ #: deprecated.php:208
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1182
  #, fuzzy
1183
  msgid ""
1184
  "Congratulations! Pro version of the plugin is installed and activated "
1185
  "successfully."
1186
  msgstr "Gratulacje! Wersja PRO została pobrana i aktywowana pomyślnie."
1187
 
1188
+ #: deprecated.php:217
1189
  msgid "Show Pro features"
1190
  msgstr "Pokaż funkcje PRO"
1191
 
1192
+ #: deprecated.php:224
1193
  msgid "Enter your license key to install and activate"
1194
  msgstr ""
1195
 
1196
+ #: deprecated.php:226
1197
  #, fuzzy
1198
  msgid "version of the plugin."
1199
  msgstr "Oceń wtyczkę"
1200
 
1201
+ #: product_list.php:8
1202
  msgid "Admin Tools"
1203
  msgstr ""
1204
 
1205
+ #: product_list.php:9
1206
  msgid "Content"
1207
  msgstr ""
1208
 
1209
+ #: product_list.php:10
1210
  msgid "eCommerce"
1211
  msgstr ""
1212
 
1213
+ #: product_list.php:11
1214
  msgid "Marketing"
1215
  msgstr ""
1216
 
1217
+ #: product_list.php:12
1218
  msgid "Navigation"
1219
  msgstr ""
1220
 
1221
+ #: product_list.php:13
1222
  msgid "Recommended"
1223
  msgstr "Polecane"
1224
 
1225
+ #: product_list.php:14
1226
  msgid "Security"
1227
  msgstr ""
1228
 
1229
+ #: product_list.php:15
1230
  msgid "SEO"
1231
  msgstr ""
1232
 
1233
+ #: product_list.php:16
1234
  msgid "SMM"
1235
  msgstr ""
1236
 
1237
  #: product_list.php:23
1238
+ msgid "Give a birth for your bike rental and booking WordPress website."
 
1239
  msgstr ""
1240
 
1241
  #: product_list.php:35
1242
+ msgid "Best secure captcha plugin to protect your WordPress forms."
1243
  msgstr ""
1244
 
1245
  #: product_list.php:45
1246
+ msgid "Create your own rental website for car renting and booking."
1247
+ msgstr ""
1248
+
1249
+ #: product_list.php:57
1250
+ msgid ""
1251
+ "Add columns with custom content to WordPress website pages, posts, widgets, "
1252
+ "etc."
1253
+ msgstr ""
1254
+
1255
+ #: product_list.php:64
1256
  msgid ""
1257
  "Allow customers to reach you using secure contact form plugin any website "
1258
  "must have."
1259
  msgstr ""
1260
 
1261
+ #: product_list.php:74
1262
  msgid "Add unlimited number of contact forms to WordPress website."
1263
  msgstr ""
1264
 
1265
+ #: product_list.php:84
1266
  msgid "Save and manage Contact Form messages. Never lose important data."
1267
  msgstr ""
1268
 
1269
+ #: product_list.php:94
1270
  msgid "Add unlimited custom pages to WordPress admin dashboard."
1271
  msgstr ""
1272
 
1273
+ #: product_list.php:104
 
 
 
 
1274
  msgid ""
1275
  "Add custom post types and taxonomies to WordPress website search results."
1276
  msgstr ""
1277
 
1278
+ #: product_list.php:114
1279
  msgid "Add PayPal and 2CO donate buttons to receive charity payments."
1280
  msgstr ""
1281
 
1282
+ #: product_list.php:121
1283
  msgid ""
1284
  "Get latest error log messages to diagnose website problems. Define and fix "
1285
  "issues faster."
1286
  msgstr ""
1287
 
1288
+ #: product_list.php:128
1289
  msgid ""
1290
  "Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and "
1291
  "widgets."
1292
  msgstr ""
1293
 
1294
+ #: product_list.php:138
1295
  msgid ""
1296
  "Add beautiful galleries, albums & images to your WordPress website in a few "
1297
  "clicks."
1298
  msgstr ""
1299
 
1300
+ #: product_list.php:148
 
 
 
 
 
 
1301
  msgid ""
1302
  "Stronger security solution which protects your WordPress website from hacks "
1303
  "and unauthorized login attempts."
1304
  msgstr ""
1305
 
1306
+ #: product_list.php:158
1307
  msgid ""
1308
  "Add Adsense ads to WordPress website pages, posts, custom posts, search "
1309
  "results, categories, tags, and widgets."
1310
  msgstr ""
1311
 
1312
+ #: product_list.php:168
1313
  msgid "Add Google Analytics code to WordPress website and track basic stats."
1314
  msgstr ""
1315
 
1316
+ #: product_list.php:178
1317
+ msgid "Protect WordPress website forms from spam entries with reCaptcha."
 
 
1318
  msgstr ""
1319
 
1320
+ #: product_list.php:188
1321
  msgid "Add customized Google maps to WordPress posts, pages and widgets."
1322
  msgstr ""
1323
 
1324
+ #: product_list.php:198
1325
  msgid ""
1326
  "Generate and add XML sitemap to WordPress website. Help search engines index "
1327
  "your blog."
1328
  msgstr ""
1329
 
1330
+ #: product_list.php:208
1331
  msgid ""
1332
  "Replace external WordPress website links with Google shortlinks and track "
1333
  "click stats."
1334
  msgstr ""
1335
 
1336
+ #: product_list.php:215
1337
  msgid ""
1338
  "Protect WordPress website – allow and deny access for certain IP addresses, "
1339
  "hostnames, etc."
1340
  msgstr ""
1341
 
1342
+ #: product_list.php:225
1343
  msgid ""
1344
  "Create your personal job board and listing WordPress website. Search jobs, "
1345
  "submit CV/resumes, choose candidates."
1346
  msgstr ""
1347
 
1348
+ #: product_list.php:232
1349
  msgid ""
1350
  "Protect WordPress website against brute force attacks. Limit rate of login "
1351
  "attempts."
1352
  msgstr ""
1353
 
1354
+ #: product_list.php:242
1355
  msgid ""
1356
  "Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. "
1357
  "5 plugins included – profile, insider, etc."
1358
  msgstr ""
1359
 
1360
+ #: product_list.php:252
1361
  msgid ""
1362
  "Translate WordPress website content to other languages manually. Create "
1363
  "multilingual pages, posts, widgets, menus, etc."
1364
  msgstr ""
1365
 
1366
+ #: product_list.php:262
1367
  msgid ""
1368
  "Add customizable pagination to WordPress website. Split long content to "
1369
  "multiple pages for better navigation."
1370
  msgstr ""
1371
 
1372
+ #: product_list.php:272
1373
  msgid ""
1374
  "Generate PDF files and print WordPress posts/pages. Customize document "
1375
  "header/footer styles and appearance."
1376
  msgstr ""
1377
 
1378
+ #: product_list.php:282
1379
  msgid ""
1380
  "Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, "
1381
  "Profile) to WordPress posts, pages and widgets."
1382
  msgstr ""
1383
 
1384
+ #: product_list.php:292
1385
  msgid ""
1386
  "Create your personal portfolio WordPress website. Manage and showcase past "
1387
  "projects to get more clients."
1388
  msgstr ""
1389
 
1390
+ #: product_list.php:302
1391
  msgid "Export WordPress posts to CSV file format easily. Configure data order."
1392
  msgstr ""
1393
 
1394
+ #: product_list.php:312
1395
  msgid ""
1396
  "Add extra fields to default WordPress user profile. The easiest way to "
1397
  "create and manage additional custom values."
1398
  msgstr ""
1399
 
1400
+ #: product_list.php:322
1401
  msgid ""
1402
  "Add and display HTML advertisement banner on WordPress website. Customize "
1403
  "bar styles and appearance."
1404
  msgstr ""
1405
 
1406
+ #: product_list.php:332
1407
  msgid ""
1408
  "Add customizable quotes and tips blocks to WordPress posts, pages and "
1409
  "widgets."
1410
  msgstr ""
1411
 
1412
+ #: product_list.php:339
1413
  msgid ""
1414
  "Add rating plugin to your WordPress website to receive feedback from your "
1415
  "customers."
1416
  msgstr ""
1417
 
1418
+ #: product_list.php:349
1419
  msgid ""
1420
  "Create your personal real estate WordPress website. Sell, rent and buy "
1421
  "properties. Add, search and browse listings easily."
1422
  msgstr ""
1423
 
1424
+ #: product_list.php:359
1425
  msgid ""
1426
  "Add related, featured, latest, and popular posts to your WordPress website. "
1427
  "Connect your blog readers with a relevant content."
1428
  msgstr ""
1429
 
1430
+ #: product_list.php:366
1431
  msgid ""
1432
  "Send bulk email messages to WordPress users. Custom templates, advanced "
1433
  "settings and detailed reports."
1434
  msgstr ""
1435
 
1436
+ #: product_list.php:376
1437
  msgid ""
1438
  "The best responsive slider plugin for your WordPress website. Create "
1439
  "beautifully animated slides just in a few clicks."
1440
  msgstr ""
1441
 
1442
+ #: product_list.php:383
1443
  msgid ""
1444
  "Configure SMTP server to receive email messages from WordPress to Gmail, "
1445
  "Yahoo, Hotmail and other services."
1446
  msgstr ""
1447
 
1448
+ #: product_list.php:390
1449
  msgid ""
1450
  "Add social media buttons and widgets to WordPress posts, pages and widgets. "
1451
+ "FB, Twitter, Pinterest, LinkedIn."
1452
  msgstr ""
1453
 
1454
+ #: product_list.php:400
1455
  msgid ""
1456
  "Add social media login, registration, and commenting to your WordPress "
1457
  "website."
1458
  msgstr ""
1459
 
1460
+ #: product_list.php:407
1461
  msgid ""
1462
  "Add email newsletter sign up form to WordPress posts, pages and widgets. "
1463
  "Collect data and subscribe your users."
1464
  msgstr ""
1465
 
1466
+ #: product_list.php:417
1467
  msgid ""
1468
  "Add testimonials and feedbacks from your customers to WordPress website "
1469
  "posts, pages, and widgets."
1470
  msgstr ""
1471
 
1472
+ #: product_list.php:424
1473
  msgid ""
1474
  "Best timesheet plugin for WordPress. Track employee time, streamline "
1475
  "attendance and generate reports."
1476
  msgstr ""
1477
 
1478
+ #: product_list.php:434
1479
  msgid ""
1480
  "Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts "
1481
  "and pages."
1482
  msgstr ""
1483
 
1484
+ #: product_list.php:444
1485
  msgid ""
1486
  "Automatically check and update WordPress website core with all installed "
1487
  "plugins and themes to the latest versions."
1488
  msgstr ""
1489
 
1490
+ #: product_list.php:454
1491
  msgid ""
1492
  "Powerful user role management plugin for WordPress website. Create, edit, "
1493
  "copy, and delete user roles."
1494
  msgstr ""
1495
 
1496
+ #: product_list.php:464
1497
  msgid ""
1498
  "Display live count of online visitors who are currently browsing your "
1499
  "WordPress website."
1500
  msgstr ""
1501
 
1502
+ #: product_list.php:474
1503
  msgid ""
1504
  "Backup and export Zendesk Help Center content automatically to your "
1505
  "WordPress website database."
1506
  msgstr ""
1507
 
1508
+ #~ msgid "Add BWS Plugins Shortcode"
1509
+ #~ msgstr "Dodaj BWS Shortcode"
1510
+
1511
+ #, fuzzy
1512
+ #~ msgid "Installing Plugin"
1513
+ #~ msgstr "Zainstalowane"
1514
+
1515
+ #~ msgid ""
1516
+ #~ "Failed to download the zip archive. Please, upload the plugin manually"
1517
+ #~ msgstr ""
1518
+ #~ "Pobieranie archiwum zip zakończyło się niepowodzeniem. Proszę dodać "
1519
+ #~ "wtyczkę manualnie"
1520
+
1521
+ #~ msgid "Failed to open the zip archive. Please, upload the plugin manually"
1522
+ #~ msgstr ""
1523
+ #~ "Otwieranie archiwum zip zakończyło się niepowodzeniem. Proszę dodać "
1524
+ #~ "wtyczkę manualnie"
1525
+
1526
+ #~ msgid ""
1527
+ #~ "Your server does not support either ZipArchive or Phar. Please, upload "
1528
+ #~ "the plugin manually"
1529
+ #~ msgstr ""
1530
+ #~ "Twój serwer nie wspiera ZipAcrchive lub Phar. Proszę dodać wtyczkę "
1531
+ #~ "manualnie"
1532
+
1533
+ #~ msgid "UploadDir is not writable. Please, upload the plugin manually"
1534
+ #~ msgstr ""
1535
+ #~ "Folder uploadu jest chroniony przez zapisem. Proszę dodać wtyczkę "
1536
+ #~ "manualnie"
1537
+
1538
+ #, fuzzy
1539
+ #~ msgid "Activate Plugin"
1540
+ #~ msgstr "Aktywne wtyczki"
1541
+
1542
+ #, fuzzy
1543
+ #~ msgid "Congratulations! Pro license is activated successfully."
1544
+ #~ msgstr "Gratulacje! Licencja do wersji PRO została aktywowana pomyślnie."
1545
+
1546
+ #, fuzzy
1547
+ #~ msgid "Settings page"
1548
+ #~ msgstr "設定保存."
1549
+
1550
+ #~ msgid "Please, enter your license key"
1551
+ #~ msgstr "Podaj klucz licencji"
1552
+
1553
+ #~ msgid "You will be redirected automatically in 5 seconds."
1554
+ #~ msgstr "Zostaniesz automatycznie przekierowany w ciągu 5 sekund."
1555
+
1556
+ #~ msgid "Check premium options on the plugin settings page!"
1557
+ #~ msgstr "Sprawdź dodatkowe opcje premium w ustawieniach wtyczki."
1558
+
1559
  #, fuzzy
1560
  #~ msgid "Congratulations! Pro Membership license is activated successfully."
1561
  #~ msgstr "Gratulacje! Licencja do wersji PRO została aktywowana pomyślnie."
1613
  #~ msgid "Please, go to %s"
1614
  #~ msgstr "Proszę przejść do"
1615
 
 
 
 
 
1616
  #~ msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
1617
  #~ msgstr "Jeśli polubiłeś naszą wtyczkę daj nam 5 gwiazdek"
1618
 
1680
  #~ msgid "Free plugins"
1681
  #~ msgstr "無料プラグイン"
1682
 
 
 
 
1683
  #~ msgid "Install now from wordpress.org"
1684
  #~ msgstr "wordpress.org から直ぐに導入"
1685
 
1728
  #~ msgid "Send me a copy"
1729
  #~ msgstr "コピーを自分に送る"
1730
 
 
 
 
1731
  #~ msgid "Your name is required."
1732
  #~ msgstr "名前は必須です。"
1733
 
bws_menu/languages/bestwebsoft-ru_RU.mo CHANGED
Binary file
bws_menu/languages/bestwebsoft-ru_RU.po CHANGED
@@ -2,24 +2,24 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2020-03-05 15:24+0200\n"
6
- "PO-Revision-Date: 2020-03-05 15:25+0200\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"
13
- "X-Poedit-KeywordsList: __;_e;esc_attr_e;printf\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
- "X-Generator: Poedit 2.3\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
  "X-Poedit-SearchPathExcluded-0: js\n"
21
 
22
- #: bws_functions.php:73 bws_functions.php:231
23
  msgid "requires"
24
  msgstr "требует"
25
 
@@ -56,7 +56,7 @@ msgstr "Оценить"
56
  msgid "Need help?"
57
  msgstr "Нужна помощь?"
58
 
59
- #: bws_functions.php:104 bws_functions.php:940 class-bws-settings.php:1055
60
  msgid "Visit Help Center"
61
  msgstr "Перейти в Help Center"
62
 
@@ -64,7 +64,7 @@ msgstr "Перейти в Help Center"
64
  msgid "Want to support the plugin?"
65
  msgstr "Хотите поддержать плагин?"
66
 
67
- #: bws_functions.php:108 bws_menu.php:528
68
  msgid "Donate"
69
  msgstr "Пожертвовать"
70
 
@@ -84,8 +84,8 @@ msgstr ""
84
  "используя Ваш личный Client Area. Мы настоятельно рекомендуем вам решить "
85
  "проблему в течение 24 часов, в противном случае плагин будет деактивирован."
86
 
87
- #: bws_functions.php:128 bws_functions.php:200 bws_menu.php:599
88
- #: class-bws-settings.php:161
89
  msgid "Learn More"
90
  msgstr "Подробнее"
91
 
@@ -106,7 +106,7 @@ msgstr ""
106
  "плагин в дальнейшем и иметь приоритетную тех.поддержку, то вам нужно "
107
  "продлить лицензию."
108
 
109
- #: bws_functions.php:147 bws_functions.php:218
110
  msgid "Learn more"
111
  msgstr "Подробнее"
112
 
@@ -123,28 +123,28 @@ msgstr "Внимание: Вы используете Pro Trial версию п
123
  msgid "The Pro Trial license will expire on"
124
  msgstr "Ваша лицензия Pro Trial версии плагина истекает"
125
 
126
- #: bws_functions.php:191 bws_functions.php:214 bws_functions.php:258
127
- #: bws_functions.php:268 bws_functions.php:467
128
  msgid "Close notice"
129
  msgstr "Закрыть"
130
 
131
- #: bws_functions.php:196
132
  msgid "It’s time to upgrade your"
133
  msgstr "Настало время обновить Ваш"
134
 
135
- #: bws_functions.php:196
136
  msgid "to"
137
  msgstr "до"
138
 
139
- #: bws_functions.php:196
140
  msgid "version!"
141
  msgstr "версии!"
142
 
143
- #: bws_functions.php:197
144
  msgid "Extend standard plugin functionality with new great options."
145
  msgstr "Расширяет возможности стандартного функционала плагина."
146
 
147
- #: bws_functions.php:218
148
  #, php-format
149
  msgid ""
150
  "Your license key for %s expires on %s and you won't be granted TOP-PRIORITY "
@@ -153,7 +153,7 @@ msgstr ""
153
  "Ваш лицензионный ключ для %s истекает %s и вы не будете получать "
154
  "приоритетную тех.поддержку или обновления."
155
 
156
- #: bws_functions.php:233
157
  msgid ""
158
  "or higher! We do not guarantee that our plugin will work correctly. Please "
159
  "upgrade to WordPress latest version."
@@ -161,63 +161,63 @@ msgstr ""
161
  "или выше! Мы не гарантируем, что наш плагин будет работать корректно. "
162
  "Пожалуйста, обновите WordPress до последней версии."
163
 
164
- #: bws_functions.php:229
165
  #, php-format
166
  msgid "<strong>%s</strong> %s <strong>WordPress %s</strong> %s"
167
  msgstr ""
168
 
169
- #: bws_functions.php:248
170
  #, php-format
171
  msgid "Thank you for installing %s plugin!"
172
  msgstr "Спасибо, что установили %s плагин!"
173
 
174
- #: bws_functions.php:250
175
  msgid "Let's get started"
176
  msgstr "Давайте начнем"
177
 
178
- #: bws_functions.php:251 bws_functions.php:284 bws_menu.php:532
179
- #: bws_menu.php:534
180
  msgid "Settings"
181
  msgstr "Настройки"
182
 
183
- #: bws_functions.php:253 bws_menu.php:326 class-bws-settings.php:791
184
- #: class-bws-settings.php:1057 class-bws-settings.php:1067 deprecated.php:234
185
  msgid "or"
186
  msgstr "или"
187
 
188
- #: bws_functions.php:254 bws_functions.php:286
189
  msgid "Add New"
190
  msgstr "Добавить"
191
 
192
- #: bws_functions.php:273
193
  msgid "Thank you for installing plugins by BestWebSoft!"
194
  msgstr "Спасибо за установку плагинов компании BestWebSoft!"
195
 
196
- #: bws_functions.php:275
197
  msgid "More Details"
198
  msgstr "Детали"
199
 
200
- #: bws_functions.php:276
201
  msgid "Less Details"
202
  msgstr "Скрыть детали"
203
 
204
- #: bws_functions.php:304
205
  msgid "Deprecated function(-s) is used on the site here:"
206
  msgstr "Устаревшие функции используются на сайте здесь:"
207
 
208
- #: bws_functions.php:318
209
  msgid ""
210
  "This function(-s) will be removed over time. Please update the product(-s)."
211
  msgstr ""
212
  "Эти функции будет удалены через некоторое время. Пожалуйста, обновите "
213
  "продукт."
214
 
215
- #: bws_functions.php:462
216
  #, php-format
217
  msgid "Thank you for choosing %s plugin!"
218
  msgstr "Спасибо за выбор плагина %s!"
219
 
220
- #: bws_functions.php:463
221
  msgid ""
222
  "If you have a feature, suggestion or idea you'd like to see in the plugin, "
223
  "we'd love to hear about it!"
@@ -226,24 +226,24 @@ msgstr ""
226
  "функционала плагина, пожалуйста, присылайте их нам! Мы вседа открыты для "
227
  "новых идей!"
228
 
229
- #: bws_functions.php:464
230
  msgid "Suggest a Feature"
231
  msgstr "Предложить функционал"
232
 
233
- #: bws_functions.php:480 class-bws-settings.php:559 class-bws-settings.php:562
234
- #: class-bws-settings.php:614 class-bws-settings.php:617
235
  msgid "Notice"
236
  msgstr "Внимание"
237
 
238
- #: bws_functions.php:480
239
  msgid "The plugin's settings have been changed."
240
  msgstr "Настройки плагина были изменены"
241
 
242
- #: bws_functions.php:481 class-bws-settings.php:200 class-bws-settings.php:220
243
  msgid "Save Changes"
244
  msgstr "Сохранить изменения"
245
 
246
- #: bws_functions.php:495
247
  msgid ""
248
  "You can always look at premium options by checking the \"Pro Options\" in "
249
  "the \"Misc\" tab."
@@ -251,70 +251,70 @@ msgstr ""
251
  "Вы всегда можете просмотреть премиум опции нажав на кнопку \"Pro опции\" на "
252
  "вкладке \"Разное\"."
253
 
254
- #: bws_functions.php:671
255
  msgid "Add shortcode"
256
  msgstr "Добавить шорткод"
257
 
258
- #: bws_functions.php:671
259
  msgid "Add BestWebSoft plugins' shortcodes using this button."
260
  msgstr "Добавьте шорткоды BestWebSoft плагинов с помощью этой кнопки."
261
 
262
- #: bws_functions.php:756
263
  msgid "Close"
264
  msgstr "Закрыть"
265
 
266
- #: bws_functions.php:842
267
  msgid "Are you sure you want to restore default settings?"
268
  msgstr ""
269
  "Вы уверены что хотите восстановить все настройки плагина к настройкам по "
270
  "умолчанию?"
271
 
272
- #: bws_functions.php:845
273
  msgid "Yes, restore all settings"
274
  msgstr "Да, восстановить все настройки"
275
 
276
- #: bws_functions.php:846
277
  msgid "No, go back to the settings page"
278
  msgstr "Нет, вернуться на страницу настроек"
279
 
280
- #: bws_functions.php:888
281
  msgid "Plugin"
282
  msgstr "Плагин"
283
 
284
- #: bws_functions.php:897
285
  msgid "Shortcode settings"
286
  msgstr "Настройки шорткода"
287
 
288
- #: bws_functions.php:902
289
  msgid "The shortcode will be inserted"
290
  msgstr "Будет вставлен шорткод"
291
 
292
- #: bws_functions.php:945
293
  msgid "FAQ"
294
  msgstr "FAQ"
295
 
296
- #: bws_functions.php:951
297
  msgid "For more information:"
298
  msgstr "Для дополнительной информации:"
299
 
300
- #: bws_functions.php:952 bws_menu.php:400 class-bws-settings.php:755
301
  msgid "Documentation"
302
  msgstr "Документация"
303
 
304
- #: bws_functions.php:953 bws_menu.php:402 class-bws-settings.php:757
305
  msgid "Video Instructions"
306
  msgstr "Видео инструкции"
307
 
308
- #: bws_functions.php:954
309
  msgid "Submit a Request"
310
  msgstr "Отправить запрос"
311
 
312
- #: bws_menu.php:101 class-bws-settings.php:841
313
  msgid "Wrong license key"
314
  msgstr "Неправильный лицензионный ключ"
315
 
316
- #: bws_menu.php:122 class-bws-settings.php:868 class-bws-settings.php:939
317
- #: class-bws-settings.php:977
318
  msgid ""
319
  "Something went wrong. Please try again later. If the error appears again, "
320
  "please contact us"
@@ -322,12 +322,12 @@ msgstr ""
322
  "Что-то пошло не так. Повторите попытку позже. Если ошибка появится снова, "
323
  "пожалуйста, свяжитесь с нами"
324
 
325
- #: bws_menu.php:122 class-bws-settings.php:868 class-bws-settings.php:939
326
- #: class-bws-settings.php:977
327
  msgid "We are sorry for inconvenience."
328
  msgstr "Приносим извинения за неудобства."
329
 
330
- #: bws_menu.php:129 class-bws-settings.php:874 class-bws-settings.php:983
331
  msgid "Wrong license key."
332
  msgstr "Неправильный лицензионный ключ."
333
 
@@ -342,7 +342,7 @@ msgstr ""
342
  msgid "Log in"
343
  msgstr "Авторизоваться"
344
 
345
- #: bws_menu.php:133 bws_menu.php:332 deprecated.php:157
346
  msgid "Unfortunately, you have exceeded the number of available tries per day."
347
  msgstr "К сожалению, вы превысили количество доступных попыток."
348
 
@@ -356,7 +356,7 @@ msgstr ""
356
  "обновлений и приоритетной тех.поддержки, вам необходимо продлить лицензию в "
357
  "вашей %s"
358
 
359
- #: bws_menu.php:137 class-bws-settings.php:991
360
  msgid ""
361
  "Unfortunately, the Pro licence was already installed to this domain. The Pro "
362
  "Trial license can be installed only once."
@@ -364,19 +364,19 @@ msgstr ""
364
  "К сожалению, Pro лицензия уже была установлена на этом доменен. Pro Trial "
365
  "лицензия может быть установлена только один раз."
366
 
367
- #: bws_menu.php:142 class-bws-settings.php:889
368
  msgid "The license key is valid."
369
  msgstr "Лицензионный ключ действителен."
370
 
371
- #: bws_menu.php:144 class-bws-settings.php:893
372
  msgid "Your license will expire on"
373
  msgstr "Ваша лицензия истечет"
374
 
375
- #: bws_menu.php:146
376
  msgid "Congratulations! Pro Membership license is activated successfully."
377
  msgstr "Поздравляем! Pro Membership лицензия успешно активирована."
378
 
379
- #: bws_menu.php:153 class-bws-settings.php:1001
380
  msgid ""
381
  "Something went wrong. Try again later or upload the plugin manually. We are "
382
  "sorry for inconvenience."
@@ -384,214 +384,214 @@ msgstr ""
384
  "Что-то пошло не так. Повторите попытку позже или загрузите плагин вручную. "
385
  "Приносим извинения за неудобства."
386
 
387
- #: bws_menu.php:163
388
  msgid "Please enter your license key."
389
  msgstr "Пожалуйста, введите Ваш лицензионный ключ."
390
 
391
- #: bws_menu.php:174
392
  msgid "Not set"
393
  msgstr "Не задан"
394
 
395
- #: bws_menu.php:176
396
  msgid "On"
397
  msgstr "Вкл"
398
 
399
- #: bws_menu.php:176
400
  msgid "Off"
401
  msgstr "Выкл"
402
 
403
- #: bws_menu.php:177 bws_menu.php:178 bws_menu.php:179 bws_menu.php:180
404
- #: bws_menu.php:181 bws_menu.php:182 bws_menu.php:191
405
  msgid "N/A"
406
  msgstr "Неизвестно"
407
 
408
- #: bws_menu.php:182
409
  msgid "Mb"
410
  msgstr "Мб"
411
 
412
- #: bws_menu.php:183 bws_menu.php:184 bws_menu.php:185 bws_menu.php:189
413
  msgid "Yes"
414
  msgstr "Да"
415
 
416
- #: bws_menu.php:183 bws_menu.php:184 bws_menu.php:185 bws_menu.php:189
417
  msgid "No"
418
  msgstr "Нет"
419
 
420
- #: bws_menu.php:196
421
  msgid "WordPress Environment"
422
  msgstr "WordPress Системная среда"
423
 
424
- #: bws_menu.php:198
425
  msgid "Home URL"
426
  msgstr "Основной адрес сайта"
427
 
428
- #: bws_menu.php:199
429
  msgid "Website URL"
430
  msgstr "Адрес сайта"
431
 
432
- #: bws_menu.php:200
433
  msgid "WP Version"
434
  msgstr "Версия WordPress"
435
 
436
- #: bws_menu.php:201
437
  msgid "WP Multisite"
438
  msgstr "Мультисайт"
439
 
440
- #: bws_menu.php:202
441
  msgid "WP Memory Limit"
442
  msgstr "Лимит памяти WordPress"
443
 
444
- #: bws_menu.php:203
445
  msgid "Active Theme"
446
  msgstr "Текущая тема"
447
 
448
- #: bws_menu.php:203 bws_menu.php:248 bws_menu.php:251
449
  #, php-format
450
  msgid "by %s"
451
  msgstr "%s"
452
 
453
- #: bws_menu.php:207
454
  msgid "Server Environment"
455
  msgstr "Системная среда сервера"
456
 
457
- #: bws_menu.php:209
458
  msgid "Operating System"
459
  msgstr "Операционная система"
460
 
461
- #: bws_menu.php:210
462
  msgid "Server"
463
  msgstr "Тип сервера"
464
 
465
- #: bws_menu.php:211
466
  msgid "PHP Version"
467
  msgstr "Версия PHP"
468
 
469
- #: bws_menu.php:212
470
  msgid "PHP Allow URL fopen"
471
  msgstr "PHP Allow URL fopen"
472
 
473
- #: bws_menu.php:213
474
  msgid "PHP Memory Limit"
475
  msgstr "Лимит памяти"
476
 
477
- #: bws_menu.php:214
478
  msgid "Memory Usage"
479
  msgstr "Использование памяти"
480
 
481
- #: bws_menu.php:215
482
  msgid "PHP Max Upload Size"
483
  msgstr "Макс. размер загружаемого файла"
484
 
485
- #: bws_menu.php:216
486
  msgid "PHP Max Post Size"
487
  msgstr "Макс. размер записи"
488
 
489
- #: bws_menu.php:217
490
  msgid "PHP Max Script Execute Time"
491
  msgstr "Макс. время выполнения сценария"
492
 
493
- #: bws_menu.php:218
494
  msgid "PHP Exif support"
495
  msgstr "Поддержка PHP Exif"
496
 
497
- #: bws_menu.php:219
498
  msgid "PHP IPTC support"
499
  msgstr "Поддержка PHP IPTC"
500
 
501
- #: bws_menu.php:220
502
  msgid "PHP XML support"
503
  msgstr "Поддержка PHP XML"
504
 
505
- #: bws_menu.php:226
506
  msgid "Database"
507
  msgstr "База данных"
508
 
509
- #: bws_menu.php:228
510
  msgid "WP DB version"
511
  msgstr "Версия базы данных WordPress"
512
 
513
- #: bws_menu.php:229
514
  msgid "MySQL version"
515
  msgstr "Версия MYSQL"
516
 
517
- #: bws_menu.php:230
518
  msgid "SQL Mode"
519
  msgstr "Режим SQL"
520
 
521
- #: bws_menu.php:234
522
  msgid "Active Plugins"
523
  msgstr "Активированные плагины"
524
 
525
- #: bws_menu.php:239
526
  msgid "Inactive Plugins"
527
  msgstr "Неактивированные плагины"
528
 
529
- #: bws_menu.php:260
530
  msgid "Please enter a valid email address."
531
  msgstr "Пожалуйста, введите валидный емайл."
532
 
533
- #: bws_menu.php:262
534
  #, php-format
535
  msgid "Email with system info is sent to %s."
536
  msgstr "Емейл с системной информацией отправлен на %s."
537
 
538
- #: bws_menu.php:266
539
  msgid "Thank you for contacting us."
540
  msgstr "Спасибо что связались с нами."
541
 
542
- #: bws_menu.php:289
543
  msgid "Sorry, email message could not be delivered."
544
  msgstr "Извините, ваш емейл не может быть отправлен."
545
 
546
- #: bws_menu.php:305 bws_menu.php:309 bws_menu.php:358 deprecated.php:26
547
  msgid "Plugins"
548
  msgstr "Плагины"
549
 
550
- #: bws_menu.php:306 bws_menu.php:310 bws_menu.php:586 deprecated.php:27
551
  msgid "Themes"
552
  msgstr "Темы"
553
 
554
- #: bws_menu.php:307 bws_menu.php:311 bws_menu.php:616
555
  msgid "System status"
556
  msgstr "Системная информация"
557
 
558
- #: bws_menu.php:315
559
  msgid "Support"
560
  msgstr "Тех. поддержка"
561
 
562
- #: bws_menu.php:316
563
  msgid "Manage purchased licenses & subscriptions"
564
  msgstr "Управление купленными лицензиями и подписками"
565
 
566
- #: bws_menu.php:324
567
  #, php-format
568
  msgid "Get Access to %s+ Premium Plugins"
569
  msgstr "Получить доступ к %s+ премиум плагинам"
570
 
571
- #: bws_menu.php:326
572
  msgid "Subscribe to Pro Membership"
573
  msgstr "Подписаться на Pro Membership"
574
 
575
- #: bws_menu.php:334 bws_menu.php:345 class-bws-settings.php:804
576
  #: deprecated.php:123
577
  msgid "Check license key"
578
  msgstr "Проверка лицензионного ключа"
579
 
580
- #: bws_menu.php:337
581
  msgid "Enter your license key"
582
  msgstr "Ваш лицензионный ключ"
583
 
584
- #: bws_menu.php:343 bws_menu.php:538 bws_menu.php:547
585
- #: class-bws-settings.php:783 deprecated.php:155 deprecated.php:163
586
  #: deprecated.php:240 deprecated.php:249
587
  msgid "Activate"
588
  msgstr "Активировать"
589
 
590
- #: bws_menu.php:359
591
  msgid "Upload Plugin"
592
  msgstr "Добавить новый"
593
 
594
- #: bws_menu.php:363
595
  #, php-format
596
  msgid ""
597
  "The plugin generated %d characters of <strong>unexpected output</strong> "
@@ -604,7 +604,7 @@ msgstr ""
604
  "проблемы с RSS-лентами или другие неполадки, попробуйте деактивировать или "
605
  "удалить этот плагин."
606
 
607
- #: bws_menu.php:365
608
  msgid ""
609
  "Plugin could not be activated because it triggered a <strong>fatal error</"
610
  "strong>."
@@ -612,51 +612,51 @@ msgstr ""
612
  "Плагин не может быть активирован, поскольку он вызвал <strong>фатальную "
613
  "ошибку</strong>."
614
 
615
- #: bws_menu.php:368
616
  msgid "Plugin <strong>activated</strong>."
617
  msgstr "Плагин <strong>активировано</strong>."
618
 
619
- #: bws_menu.php:382
620
  msgid "Download Pro Plugin"
621
  msgstr "Загрузить Pro плагина"
622
 
623
- #: bws_menu.php:384 class-bws-settings.php:738
624
  msgid "Your Pro plugin is ready"
625
  msgstr "Ваш Pro плагин готов"
626
 
627
- #: bws_menu.php:386 class-bws-settings.php:740
628
  msgid "Your plugin has been zipped, and now is ready to download."
629
  msgstr "Ваш плагин заархивирован, и готов к загрузке."
630
 
631
- #: bws_menu.php:389 class-bws-settings.php:743
632
  msgid "Download Now"
633
  msgstr "Загрузить сейчас"
634
 
635
- #: bws_menu.php:393 class-bws-settings.php:747
636
  msgid "Need help installing the plugin?"
637
  msgstr "Нужна помощь в установке плагина?"
638
 
639
- #: bws_menu.php:395 class-bws-settings.php:749
640
  msgid "How to install WordPress plugin from your admin Dashboard (ZIP archive)"
641
  msgstr "Как установить WordPress плагин с админ панели (ZIP архив)"
642
 
643
- #: bws_menu.php:398 class-bws-settings.php:753
644
  msgid "Get Started"
645
  msgstr "Начать "
646
 
647
- #: bws_menu.php:404 class-bws-settings.php:759
648
  msgid "Knowledge Base"
649
  msgstr "База Знаний"
650
 
651
- #: bws_menu.php:407
652
  msgid "Licenses & Domains"
653
  msgstr "Лицензии & Домены"
654
 
655
- #: bws_menu.php:410
656
  msgid "Client Area"
657
  msgstr "Client Area"
658
 
659
- #: bws_menu.php:409
660
  #, php-format
661
  msgid ""
662
  "Manage your license(-s) and change domain names using the %s at BestWebSoft."
@@ -664,148 +664,148 @@ msgstr ""
664
  "Управляйте своей лицензией(-ами) и меняйте доменные имена, используя %s на "
665
  "BestWebSoft."
666
 
667
- #: bws_menu.php:412
668
  msgid "Return to BestWebSoft Panel"
669
  msgstr "Возврат к BestWebSoft Panel"
670
 
671
- #: bws_menu.php:419 bws_menu.php:439 bws_menu.php:568
672
  msgid "All"
673
  msgstr "Все"
674
 
675
- #: bws_menu.php:422 bws_menu.php:605
676
  msgid "Installed"
677
  msgstr "Установленные"
678
 
679
- #: bws_menu.php:425
680
  msgid "Not Installed"
681
  msgstr "Не установленные"
682
 
683
- #: bws_menu.php:432
684
  msgid "Filter results"
685
  msgstr "Фильтр результатов"
686
 
687
- #: bws_menu.php:435 bws_menu.php:564
688
  msgid "Category"
689
  msgstr "Категория"
690
 
691
- #: bws_menu.php:499
692
  msgid "Not installed"
693
  msgstr "Не установлен"
694
 
695
- #: bws_menu.php:503
696
  msgid "Renew to get updates"
697
  msgstr "Продлить для обновления"
698
 
699
- #: bws_menu.php:506
700
  #, php-format
701
  msgid "Update to v %s"
702
  msgstr "Обновить до версии %s"
703
 
704
- #: bws_menu.php:518 bws_menu.php:541
705
  msgid "Get Pro"
706
  msgstr "Получить Pro"
707
 
708
- #: bws_menu.php:524 class-bws-settings.php:174 class-bws-settings.php:1064
709
  msgid "Upgrade to Pro"
710
  msgstr "Обновить до Pro"
711
 
712
- #: bws_menu.php:538 bws_menu.php:547
713
  msgid "Activate this plugin"
714
  msgstr "Активировать плагин"
715
 
716
- #: bws_menu.php:550
717
  msgid "Install this plugin"
718
  msgstr "Установить этот плагин"
719
 
720
- #: bws_menu.php:550
721
  msgid "Install Now"
722
  msgstr "Установить"
723
 
724
- #: bws_menu.php:559
725
  msgid "Nothing found. Try another criteria."
726
  msgstr "Ничего не найдено. Попробуйте другие критерии."
727
 
728
- #: bws_menu.php:596
729
  #, php-format
730
  msgid "By %s"
731
  msgstr "%s"
732
 
733
- #: bws_menu.php:603
734
  msgid "Already Installed"
735
  msgstr "Уже установлена"
736
 
737
- #: bws_menu.php:613
738
  msgid "Browse More WordPress Themes"
739
  msgstr "Обзор WordPress тем"
740
 
741
- #: bws_menu.php:622
742
  msgid "Send to support"
743
  msgstr "Отправить в тех. поддержку"
744
 
745
- #: bws_menu.php:629
746
  msgid "Send to custom email &#187;"
747
  msgstr "Отправить на емейл &#187;"
748
 
749
- #: class-bws-settings.php:153
750
  msgid "Information"
751
  msgstr "Информация"
752
 
753
- #: class-bws-settings.php:161
754
  msgid "Inactive"
755
  msgstr "Неактивна"
756
 
757
- #: class-bws-settings.php:169
758
  msgid "Expired"
759
  msgstr "Истекла"
760
 
761
- #: class-bws-settings.php:172
762
  #, php-format
763
  msgid "%s day(-s) left"
764
  msgstr "%s дней осталось"
765
 
766
- #: class-bws-settings.php:178
767
  #, php-format
768
  msgid "Expired on %s"
769
  msgstr "Истекает %s"
770
 
771
- #: class-bws-settings.php:178
772
  msgid "Renew Now"
773
  msgstr "Возобновить сейчас"
774
 
775
- #: class-bws-settings.php:180
776
  msgid "Active"
777
  msgstr "Активна"
778
 
779
- #: class-bws-settings.php:185
780
  msgid "License"
781
  msgstr "Лицензия"
782
 
783
- #: class-bws-settings.php:188
784
  msgid "Status"
785
  msgstr "Статус"
786
 
787
- #: class-bws-settings.php:192
788
  msgid "Version"
789
  msgstr "Версия"
790
 
791
- #: class-bws-settings.php:302
792
  msgid "All plugin settings were restored."
793
  msgstr "Все настройки плагина были восстановлены."
794
 
795
- #: class-bws-settings.php:442
796
  msgid "Custom Code"
797
  msgstr "Пользовательский код"
798
 
799
- #: class-bws-settings.php:446
800
  msgid "You do not have sufficient permissions to edit plugins for this site."
801
  msgstr ""
802
  "У вас недостаточно полномочий, чтобы редактировать плагины на этом сайте."
803
 
804
- #: class-bws-settings.php:451
805
  msgid "These styles will be added to the header on all pages of your site."
806
  msgstr "Эти стили будут добавлены в хедер на всех страницах вашего сайта."
807
 
808
- #: class-bws-settings.php:454
809
  #, php-format
810
  msgid ""
811
  "This PHP code will be hooked to the %s action and will be printed on front "
@@ -814,11 +814,11 @@ msgstr ""
814
  "Этот PHP код будет прикреплен к %s аction и будет добавлен только во "
815
  "фронтенде."
816
 
817
- #: class-bws-settings.php:457
818
  msgid "These code will be added to the header on all pages of your site."
819
  msgstr "Этот код будет добавлен в хедер на всех страницах вашего сайта."
820
 
821
- #: class-bws-settings.php:465
822
  #, php-format
823
  msgid ""
824
  "You need to make this files writable before you can save your changes. See "
@@ -827,25 +827,25 @@ msgstr ""
827
  "Чтобы сохранить изменения, нужно сделать этот файл доступным для записи. "
828
  "Дополнительную информацию можно получить в %s Кодексе %s."
829
 
830
- #: class-bws-settings.php:475
831
  msgid "Browsing"
832
  msgstr "Просмотр"
833
 
834
- #: class-bws-settings.php:480
835
  #, php-format
836
  msgid "Activate custom %s code."
837
  msgstr "Активировать пользовательский %s код."
838
 
839
- #: class-bws-settings.php:488
840
  #, php-format
841
  msgid "Learn more about %s"
842
  msgstr "Подробнее о %s"
843
 
844
- #: class-bws-settings.php:550
845
  msgid "Miscellaneous Settings"
846
  msgstr "Прочие настройки"
847
 
848
- #: class-bws-settings.php:559 class-bws-settings.php:614
849
  #, php-format
850
  msgid ""
851
  "It is prohibited to change %s settings on this site in the %s network "
@@ -853,60 +853,60 @@ msgid ""
853
  msgstr ""
854
  "Cетевыми настройками %s запрещается изменять настройки %s на этом сайте."
855
 
856
- #: class-bws-settings.php:562 class-bws-settings.php:617
857
  #, php-format
858
  msgid ""
859
  "It is prohibited to view %s settings on this site in the %s network settings."
860
  msgstr ""
861
  "Cетевыми настройками %s запрещается просматривать настройки %s на этом сайте."
862
 
863
- #: class-bws-settings.php:571
864
  msgid "Pro Options"
865
  msgstr "Pro опции"
866
 
867
- #: class-bws-settings.php:575
868
  msgid "Enable to display plugin Pro options."
869
  msgstr "Включите для отображения Pro опций плагина."
870
 
871
- #: class-bws-settings.php:581
872
  msgid "Track Usage"
873
  msgstr "Собирать статистику"
874
 
875
- #: class-bws-settings.php:585
876
  msgid ""
877
  "Enable to allow tracking plugin usage anonymously in order to make it better."
878
  msgstr ""
879
  "Включить, чтобы разрешить анонимно отслеживать использование и сделать "
880
  "плагин лучше."
881
 
882
- #: class-bws-settings.php:590
883
  msgid "Default Settings"
884
  msgstr "Настройки по умолчанию"
885
 
886
- #: class-bws-settings.php:592
887
  msgid "Restore Settings"
888
  msgstr "Восстановить настройки"
889
 
890
- #: class-bws-settings.php:593
891
  msgid "This will restore plugin settings to defaults."
892
  msgstr "Восстановить все настройки плагина к настройкам по умолчанию."
893
 
894
- #: class-bws-settings.php:605
895
  msgid "Import / Export"
896
  msgstr "Импорт / Экспорт"
897
 
898
- #: class-bws-settings.php:723
899
  msgid "License Key"
900
  msgstr "Лицензионный ключ"
901
 
902
- #: class-bws-settings.php:785
903
  #, php-format
904
  msgid "Enter your license key to activate %s and get premium plugin features."
905
  msgstr ""
906
  "Введите лицензионный ключ для активации %s и получения дополнительных "
907
  "возможностей плагина."
908
 
909
- #: class-bws-settings.php:788 class-bws-settings.php:987 deprecated.php:243
910
  msgid ""
911
  "Unfortunately, you have exceeded the number of available tries per day. "
912
  "Please, upload the plugin manually."
@@ -914,12 +914,12 @@ msgstr ""
914
  "К сожалению, вы превысили количество доступных попыток в день. Пожалуйста, "
915
  "загрузите плагин вручную."
916
 
917
- #: class-bws-settings.php:791 deprecated.php:234
918
  #, php-format
919
  msgid "Start Your Free %s-Day Trial Now"
920
  msgstr "Попробуйте %s-дневную Trial версию бесплатно"
921
 
922
- #: class-bws-settings.php:806
923
  msgid ""
924
  "If necessary, you can check if the license key is correct or reenter it in "
925
  "the field below."
@@ -927,15 +927,15 @@ msgstr ""
927
  "При необходимости вы можете проверить валидность лицензионного ключа или "
928
  "повторно ввести его в поле выше."
929
 
930
- #: class-bws-settings.php:815
931
  msgid "Manage License Settings"
932
  msgstr "Управление настройками лицензий"
933
 
934
- #: class-bws-settings.php:817
935
  msgid "Login to Client Area"
936
  msgstr "Зайти в Client Area"
937
 
938
- #: class-bws-settings.php:819
939
  msgid ""
940
  "Manage active licenses, download BWS products, and view your payment history "
941
  "using BestWebSoft Client Area."
@@ -943,11 +943,11 @@ msgstr ""
943
  "Управляй активными лицензиями, загружай BWS продукты, а также просматривай "
944
  "историю платежей с помощью BestWebSoft Client Area."
945
 
946
- #: class-bws-settings.php:876 class-bws-settings.php:985
947
  msgid "This license key is bound to another site."
948
  msgstr "Этот лицензионный ключ привязан к другому сайту."
949
 
950
- #: class-bws-settings.php:878
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."
@@ -955,11 +955,11 @@ msgstr ""
955
  "Лицензионный ключ принят, но срок действия лицензии истек. Если вы хотите "
956
  "обновлять плагин в будущем, вы должны продлить лицензию."
957
 
958
- #: class-bws-settings.php:880
959
  msgid "Unfortunately, you have exceeded the number of available tries."
960
  msgstr "К сожалению, вы превысили количество доступных попыток."
961
 
962
- #: class-bws-settings.php:882
963
  msgid ""
964
  "Unfortunately, the Pro Trial licence was already installed to this domain. "
965
  "The Pro Trial license can be installed only once."
@@ -967,18 +967,18 @@ msgstr ""
967
  "К сожалению, Pro Trial версия плагина уже устанавливалась на этот домен. Pro "
968
  "Trial версию можно устанавливать лишь один раз."
969
 
970
- #: class-bws-settings.php:887
971
  msgid "The Pro Trial license key is valid."
972
  msgstr "Ключ Pro Trial версии действителен."
973
 
974
- #: class-bws-settings.php:897 deprecated.php:142
975
  #, php-format
976
  msgid ""
977
  "In order to continue using the plugin it is necessary to buy a %s license."
978
  msgstr ""
979
  "Чтобы продолжить пользоваться плагином, необходимо приобрести %s лицензию."
980
 
981
- #: class-bws-settings.php:989
982
  #, php-format
983
  msgid ""
984
  "Unfortunately, Your license has expired. To continue getting top-priority "
@@ -988,26 +988,59 @@ msgstr ""
988
  "обновлений и приоритетной тех.поддержки, вам необходимо продлить лицензию в "
989
  "вашей %s."
990
 
991
- #: class-bws-settings.php:1038
992
  msgid "Please, enter Your license key"
993
  msgstr "Пожалуйста, введите ваш лицензионный ключ"
994
 
995
- #: class-bws-settings.php:1051
996
  msgid "Need Help?"
997
  msgstr "Нужна помощь?"
998
 
999
- #: class-bws-settings.php:1053
1000
  msgid "Read the Instruction"
1001
  msgstr "Читать инструкцию"
1002
 
1003
- #: class-bws-settings.php:1057
1004
  msgid "Watch the Video"
1005
  msgstr "Смотреть видео"
1006
 
1007
- #: class-bws-settings.php:1068
1008
  msgid "Start Your Free Trial"
1009
  msgstr "Использовать бесплатную Trial версию"
1010
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1011
  #: deactivation-form.php:22
1012
  msgid "Need help? We are ready to answer your questions."
1013
  msgstr "Нужна помощь? Мы готовы ответить на ваши вопросы."
@@ -1068,26 +1101,18 @@ msgstr ""
1068
  "Если у вас есть время, пожалуйста, сообщите нам, почему вы деактивируете "
1069
  "плагин"
1070
 
1071
- #: deactivation-form.php:120
1072
- msgid "Send website data and allow to contact me back"
1073
- msgstr "Отправить данные сайта и позволить связаться со мной"
1074
-
1075
- #: deactivation-form.php:225
1076
- msgid "Processing"
1077
- msgstr "Обработка"
1078
-
1079
- #: deactivation-form.php:254
1080
  msgid "Submit and Deactivate"
1081
  msgstr "Отправить и Деактивировать"
1082
 
1083
- #: deactivation-form.php:269
1084
- msgid "Please tell us the reason so we can improve it."
1085
- msgstr "Пожалуйста, сообщите нам причину, чтобы мы могли улучшить плагин."
1086
-
1087
- #: deactivation-form.php:334
1088
  msgid "Skip and Deactivate"
1089
  msgstr "Пропустить и Деактивировать"
1090
 
 
 
 
 
1091
  #: deprecated.php:28
1092
  msgid "System Status"
1093
  msgstr "Системная информация"
@@ -1161,51 +1186,55 @@ msgstr "Введите лицензионный ключ для установк
1161
  msgid "version of the plugin."
1162
  msgstr "версия плагина."
1163
 
1164
- #: product_list.php:7
1165
  msgid "Admin Tools"
1166
  msgstr "Инструменты"
1167
 
1168
- #: product_list.php:8
1169
  msgid "Content"
1170
  msgstr "Контент"
1171
 
1172
- #: product_list.php:9
1173
  msgid "eCommerce"
1174
  msgstr "Коммерция"
1175
 
1176
- #: product_list.php:10
1177
  msgid "Marketing"
1178
  msgstr "Маркетинг"
1179
 
1180
- #: product_list.php:11
1181
  msgid "Navigation"
1182
  msgstr "Навигация"
1183
 
1184
- #: product_list.php:12
1185
  msgid "Recommended"
1186
  msgstr "Рекомендованные"
1187
 
1188
- #: product_list.php:13
1189
  msgid "Security"
1190
  msgstr "Безопасность"
1191
 
1192
- #: product_list.php:14
1193
  msgid "SEO"
1194
  msgstr "Поисковая оптимизация"
1195
 
1196
- #: product_list.php:15
1197
  msgid "SMM"
1198
  msgstr "СММ"
1199
 
1200
- #: product_list.php:22
 
 
 
 
1201
  msgid "Best secure captcha plugin to protect your WordPress forms."
1202
  msgstr "Лучший плагин капчи, который защитит формы вашего сайта WordPress."
1203
 
1204
- #: product_list.php:32
1205
  msgid "Create your own rental website for car renting and booking."
1206
  msgstr "Создайте свой собственный сайт проката и резервирования автомобилей."
1207
 
1208
- #: product_list.php:44
1209
  msgid ""
1210
  "Add columns with custom content to WordPress website pages, posts, widgets, "
1211
  "etc."
@@ -1213,7 +1242,7 @@ msgstr ""
1213
  "Добавляйте столбцы с пользовательским контентом в ваш WordPress сайт на "
1214
  "страницы, посты, виджеты, и т.д."
1215
 
1216
- #: product_list.php:51
1217
  msgid ""
1218
  "Allow customers to reach you using secure contact form plugin any website "
1219
  "must have."
@@ -1221,37 +1250,37 @@ msgstr ""
1221
  "Предоставьте возможность клиентам осуществлять связь с вами через безопасный "
1222
  "плагин контактной формы, который должен иметь любой сайт."
1223
 
1224
- #: product_list.php:61
1225
  msgid "Add unlimited number of contact forms to WordPress website."
1226
  msgstr ""
1227
  "Добавляйте неограниченное количество контактных форм на ваш сайт WordPress."
1228
 
1229
- #: product_list.php:71
1230
  msgid "Save and manage Contact Form messages. Never lose important data."
1231
  msgstr ""
1232
  "Сохраняйте и управляйте сообщениями плагина Contact Form. Никогда не теряйте "
1233
  "важные данные."
1234
 
1235
- #: product_list.php:81
1236
  msgid "Add unlimited custom pages to WordPress admin dashboard."
1237
  msgstr ""
1238
  "Добавляйте неограниченное количество пользовательских страниц в панели "
1239
  "администратора WordPress."
1240
 
1241
- #: product_list.php:91
1242
  msgid ""
1243
  "Add custom post types and taxonomies to WordPress website search results."
1244
  msgstr ""
1245
  "Добавляйте пользовательские типы постов и таксономии в результаты поиска на "
1246
  "вашем сайте WordPress."
1247
 
1248
- #: product_list.php:101
1249
  msgid "Add PayPal and 2CO donate buttons to receive charity payments."
1250
  msgstr ""
1251
  "Добавляйте кнопки PayPal и 2CO, чтобы получать пожертвования и "
1252
  "благотворительные взносы."
1253
 
1254
- #: product_list.php:108
1255
  msgid ""
1256
  "Get latest error log messages to diagnose website problems. Define and fix "
1257
  "issues faster."
@@ -1259,7 +1288,7 @@ msgstr ""
1259
  "Получайте последние сообщения из журнала ошибок для диагностики проблем "
1260
  "сайта. Быстрее выявляйте и устраняйте проблемы."
1261
 
1262
- #: product_list.php:115
1263
  msgid ""
1264
  "Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and "
1265
  "widgets."
@@ -1267,7 +1296,7 @@ msgstr ""
1267
  "Добавляйте кнопки Facebook \"Подписаться\", \"Нравится\" и \"Поделиться\" в "
1268
  "посты, страницы и виджеты сайта WordPress."
1269
 
1270
- #: product_list.php:125
1271
  msgid ""
1272
  "Add beautiful galleries, albums & images to your WordPress website in a few "
1273
  "clicks."
@@ -1275,7 +1304,7 @@ msgstr ""
1275
  "Добавляйте живописные галереи, альбомы, изображения и категории галереи на "
1276
  "ваш сайт WordPress всего в несколько кликов."
1277
 
1278
- #: product_list.php:135
1279
  msgid ""
1280
  "Stronger security solution which protects your WordPress website from hacks "
1281
  "and unauthorized login attempts."
@@ -1283,7 +1312,7 @@ msgstr ""
1283
  "Мощнейшее решение для безопасности, которое защищает ваш сайт WordPress от "
1284
  "взломов и неавторизованных попыток входа в систему."
1285
 
1286
- #: product_list.php:145
1287
  msgid ""
1288
  "Add Adsense ads to WordPress website pages, posts, custom posts, search "
1289
  "results, categories, tags, and widgets."
@@ -1291,23 +1320,23 @@ msgstr ""
1291
  "Добавляйте рекламу сервиса Adsense на страницы, посты, пользовательские "
1292
  "посты, результаты поиска, категории, теги и виджеты сайта WordPress."
1293
 
1294
- #: product_list.php:155
1295
  msgid "Add Google Analytics code to WordPress website and track basic stats."
1296
  msgstr ""
1297
  "Добавляйте код Google Analytics на ваш сайт WordPress и отслеживайте базовую "
1298
  "статистику сайта."
1299
 
1300
- #: product_list.php:165
1301
  msgid "Protect WordPress website forms from spam entries with reCaptcha."
1302
  msgstr "Защищайте формы вашего сайта WordPress от спама с помощью reCaptcha."
1303
 
1304
- #: product_list.php:175
1305
  msgid "Add customized Google maps to WordPress posts, pages and widgets."
1306
  msgstr ""
1307
  "Добавляйте пользовательские карты Google в посты, страницы и виджеты "
1308
  "WordPress."
1309
 
1310
- #: product_list.php:185
1311
  msgid ""
1312
  "Generate and add XML sitemap to WordPress website. Help search engines index "
1313
  "your blog."
@@ -1315,7 +1344,7 @@ msgstr ""
1315
  "Создавайте и добавляйте файлы XML sitemap на ваш сайт WordPress. Помогите "
1316
  "поисковым системам проиндексировать ваш блог."
1317
 
1318
- #: product_list.php:195
1319
  msgid ""
1320
  "Replace external WordPress website links with Google shortlinks and track "
1321
  "click stats."
@@ -1323,7 +1352,7 @@ msgstr ""
1323
  "Замените внешние ссылки сайта WordPress на короткие ссылки Google и "
1324
  "отслеживайте статистику кликов."
1325
 
1326
- #: product_list.php:202
1327
  msgid ""
1328
  "Protect WordPress website – allow and deny access for certain IP addresses, "
1329
  "hostnames, etc."
@@ -1331,7 +1360,7 @@ msgstr ""
1331
  "Защитите свой сайт WordPress - предоставляйте и запрещайте доступ с "
1332
  "определенных IP-адресов, имен хостов и т.д."
1333
 
1334
- #: product_list.php:212
1335
  msgid ""
1336
  "Create your personal job board and listing WordPress website. Search jobs, "
1337
  "submit CV/resumes, choose candidates."
@@ -1340,7 +1369,7 @@ msgstr ""
1340
  "WordPress. Осуществляйте поиск вакансий, подачу резюме/CV кандидата, выбор "
1341
  "кандидатов."
1342
 
1343
- #: product_list.php:219
1344
  msgid ""
1345
  "Protect WordPress website against brute force attacks. Limit rate of login "
1346
  "attempts."
@@ -1348,7 +1377,7 @@ msgstr ""
1348
  "Защищайте свой сайт WordPress от брутфорс-атак. Ограничивайте количество "
1349
  "попыток ввода логина."
1350
 
1351
- #: product_list.php:229
1352
  msgid ""
1353
  "Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. "
1354
  "5 plugins included – profile, insider, etc."
@@ -1357,7 +1386,7 @@ msgstr ""
1357
  "страницам и виджетам WordPress. 5 плагинов включено - Профиль, Инсайдер и т."
1358
  "д."
1359
 
1360
- #: product_list.php:239
1361
  msgid ""
1362
  "Translate WordPress website content to other languages manually. Create "
1363
  "multilingual pages, posts, widgets, menus, etc."
@@ -1365,7 +1394,7 @@ msgstr ""
1365
  "Переводите содержимое сайта WordPress на другие языки вручную. Создавайте "
1366
  "многоязычные страницы, посты, виджеты, меню и т.д."
1367
 
1368
- #: product_list.php:249
1369
  msgid ""
1370
  "Add customizable pagination to WordPress website. Split long content to "
1371
  "multiple pages for better navigation."
@@ -1373,7 +1402,7 @@ msgstr ""
1373
  "Добавляйте настраиваемую пагинацию на ваш сайт WordPress. Разбивайте "
1374
  "объемный контент на несколько страниц для лучшей навигации."
1375
 
1376
- #: product_list.php:259
1377
  msgid ""
1378
  "Generate PDF files and print WordPress posts/pages. Customize document "
1379
  "header/footer styles and appearance."
@@ -1381,7 +1410,7 @@ msgstr ""
1381
  "Создавайте PDF-файлы и печатайте посты/страницы сайта WordPress. "
1382
  "Настраивайте стили хедера/футера документа и его внешний вид."
1383
 
1384
- #: product_list.php:269
1385
  msgid ""
1386
  "Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, "
1387
  "Profile) to WordPress posts, pages and widgets."
@@ -1389,7 +1418,7 @@ msgstr ""
1389
  "Добавляйте кнопки Pinterest \"Подписаться\", \"Сохранить\" и виджеты профиля "
1390
  "(Пин, Доска, Профиль) к постам, страницам и виджетам WordPress."
1391
 
1392
- #: product_list.php:279
1393
  msgid ""
1394
  "Create your personal portfolio WordPress website. Manage and showcase past "
1395
  "projects to get more clients."
@@ -1397,13 +1426,13 @@ msgstr ""
1397
  "Создавайте и добавляйте портфолио на свой сайт WordPress. Управляйте и "
1398
  "демонстрируйте прошлые проекты, чтобы привлечь больше клиентов."
1399
 
1400
- #: product_list.php:289
1401
  msgid "Export WordPress posts to CSV file format easily. Configure data order."
1402
  msgstr ""
1403
  "С легкостью экспортируйте посты WordPress в файлы формата CSV. Настраивайте "
1404
  "порядок отображения данных."
1405
 
1406
- #: product_list.php:299
1407
  msgid ""
1408
  "Add extra fields to default WordPress user profile. The easiest way to "
1409
  "create and manage additional custom values."
@@ -1411,7 +1440,7 @@ msgstr ""
1411
  "Добавляйте пользовательские поля в стандартный профиль WordPress. Самый "
1412
  "простой способ создания и управления дополнительными полями."
1413
 
1414
- #: product_list.php:309
1415
  msgid ""
1416
  "Add and display HTML advertisement banner on WordPress website. Customize "
1417
  "bar styles and appearance."
@@ -1419,7 +1448,7 @@ msgstr ""
1419
  "Добавляйте и отображайте баннерную HTML рекламу на сайте WordPress. "
1420
  "Настраивайте стили и внешний вид баннера."
1421
 
1422
- #: product_list.php:319
1423
  msgid ""
1424
  "Add customizable quotes and tips blocks to WordPress posts, pages and "
1425
  "widgets."
@@ -1427,7 +1456,7 @@ msgstr ""
1427
  "Добавляйте настраиваемые цитаты и подсказки к постам, страницам и виджетам "
1428
  "WordPress."
1429
 
1430
- #: product_list.php:326
1431
  msgid ""
1432
  "Add rating plugin to your WordPress website to receive feedback from your "
1433
  "customers."
@@ -1435,7 +1464,7 @@ msgstr ""
1435
  "Добавляйте систему оценивания и рейтинга на ваш сайт WordPress и получайте "
1436
  "отзывы от ваших клиентов."
1437
 
1438
- #: product_list.php:336
1439
  msgid ""
1440
  "Create your personal real estate WordPress website. Sell, rent and buy "
1441
  "properties. Add, search and browse listings easily."
@@ -1444,7 +1473,7 @@ msgstr ""
1444
  "Продавайте, арендуйте и покупайте недвижимость. Легко добавляйте, находите и "
1445
  "просматривайте листинги."
1446
 
1447
- #: product_list.php:346
1448
  msgid ""
1449
  "Add related, featured, latest, and popular posts to your WordPress website. "
1450
  "Connect your blog readers with a relevant content."
@@ -1452,7 +1481,7 @@ msgstr ""
1452
  "Добавляйте похожие, избранные, последние и популярные посты на ваш сайт "
1453
  "WordPress. Предоставляйте своим читателям контент схожей тематики."
1454
 
1455
- #: product_list.php:353
1456
  msgid ""
1457
  "Send bulk email messages to WordPress users. Custom templates, advanced "
1458
  "settings and detailed reports."
@@ -1460,7 +1489,7 @@ msgstr ""
1460
  "Осуществляйте массовую рассылку писем пользователям WordPress. "
1461
  "Пользовательские шаблоны, дополнительные настройки и подробные отчеты."
1462
 
1463
- #: product_list.php:363
1464
  msgid ""
1465
  "The best responsive slider plugin for your WordPress website. Create "
1466
  "beautifully animated slides just in a few clicks."
@@ -1468,7 +1497,7 @@ msgstr ""
1468
  "Самый лучший адаптивный слайдер для вашего сайта WordPress. Создавайте "
1469
  "красиво анимированные слайды всего в несколько кликов."
1470
 
1471
- #: product_list.php:370
1472
  msgid ""
1473
  "Configure SMTP server to receive email messages from WordPress to Gmail, "
1474
  "Yahoo, Hotmail and other services."
@@ -1477,7 +1506,7 @@ msgstr ""
1477
  "WordPress на такие почтовые службы, как Gmail, Yahoo, Hotmail и многие "
1478
  "другие."
1479
 
1480
- #: product_list.php:377
1481
  msgid ""
1482
  "Add social media buttons and widgets to WordPress posts, pages and widgets. "
1483
  "FB, Twitter, Pinterest, LinkedIn."
@@ -1485,7 +1514,7 @@ msgstr ""
1485
  "Добавляйте кнопки и виджеты социальных сетей к постам, страницам и виджетам "
1486
  "WordPress. FB, Twitter, Pinterest, LinkedIn."
1487
 
1488
- #: product_list.php:387
1489
  msgid ""
1490
  "Add social media login, registration, and commenting to your WordPress "
1491
  "website."
@@ -1493,7 +1522,7 @@ msgstr ""
1493
  "Добавляйте на свой сайт WordPress возможность входа, регистрации и "
1494
  "комментирования с использованием существующих аккаунтов социальных сетей."
1495
 
1496
- #: product_list.php:394
1497
  msgid ""
1498
  "Add email newsletter sign up form to WordPress posts, pages and widgets. "
1499
  "Collect data and subscribe your users."
@@ -1501,7 +1530,7 @@ msgstr ""
1501
  "Добавляйте форму подписки на новостную рассылку в посты, страницы и виджеты "
1502
  "WordPress. Собирайте данные и осуществляйте подписку пользователей."
1503
 
1504
- #: product_list.php:404
1505
  msgid ""
1506
  "Add testimonials and feedbacks from your customers to WordPress website "
1507
  "posts, pages, and widgets."
@@ -1509,7 +1538,7 @@ msgstr ""
1509
  "Добавляйте рекомендации и отзывы ваших клиентов в посты, страницы и виджеты "
1510
  "сайта WordPress."
1511
 
1512
- #: product_list.php:411
1513
  msgid ""
1514
  "Best timesheet plugin for WordPress. Track employee time, streamline "
1515
  "attendance and generate reports."
@@ -1517,7 +1546,7 @@ msgstr ""
1517
  "Лучший плагин учёта рабочего времени на сайте WordPress. Отслеживайте время "
1518
  "работы сотрудников, оптимизируйте график работы в офисе и создавайте отчеты."
1519
 
1520
- #: product_list.php:421
1521
  msgid ""
1522
  "Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts "
1523
  "and pages."
@@ -1525,7 +1554,7 @@ msgstr ""
1525
  "Добавляйте кнопки Твиттера \"Читать\", \"Твитнуть\", \"Метка\" и \"Упомянуть"
1526
  "\" к постам и страницам WordPress. "
1527
 
1528
- #: product_list.php:431
1529
  msgid ""
1530
  "Automatically check and update WordPress website core with all installed "
1531
  "plugins and themes to the latest versions."
@@ -1533,7 +1562,7 @@ msgstr ""
1533
  "Выполняйте автоматическую проверку и обновление ядра WordPress до последних "
1534
  "версий со всеми установленными плагинами и темами."
1535
 
1536
- #: product_list.php:441
1537
  msgid ""
1538
  "Powerful user role management plugin for WordPress website. Create, edit, "
1539
  "copy, and delete user roles."
@@ -1541,7 +1570,7 @@ msgstr ""
1541
  "Эффективный плагин управления ролями пользователей для сайта WordPress. "
1542
  "Создавайте, редактируйте, копируйте и удаляйте роли пользователей."
1543
 
1544
- #: product_list.php:451
1545
  msgid ""
1546
  "Display live count of online visitors who are currently browsing your "
1547
  "WordPress website."
@@ -1549,7 +1578,7 @@ msgstr ""
1549
  "Ведите подсчет количества посетителей, которые в настоящее время "
1550
  "просматривают ваш сайт WordPress."
1551
 
1552
- #: product_list.php:461
1553
  msgid ""
1554
  "Backup and export Zendesk Help Center content automatically to your "
1555
  "WordPress website database."
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2021-02-15 10:55+0200\n"
6
+ "PO-Revision-Date: 2021-02-15 10:55+0200\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"
13
+ "X-Poedit-KeywordsList: __;_e;esc_attr_e;printf;esc_html__;esc_html_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Generator: Poedit 2.4.2\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
  "X-Poedit-SearchPathExcluded-0: js\n"
21
 
22
+ #: bws_functions.php:73 bws_functions.php:239
23
  msgid "requires"
24
  msgstr "требует"
25
 
56
  msgid "Need help?"
57
  msgstr "Нужна помощь?"
58
 
59
+ #: bws_functions.php:104 bws_functions.php:949 class-bws-settings.php:1082
60
  msgid "Visit Help Center"
61
  msgstr "Перейти в Help Center"
62
 
64
  msgid "Want to support the plugin?"
65
  msgstr "Хотите поддержать плагин?"
66
 
67
+ #: bws_functions.php:108 bws_menu.php:529
68
  msgid "Donate"
69
  msgstr "Пожертвовать"
70
 
84
  "используя Ваш личный Client Area. Мы настоятельно рекомендуем вам решить "
85
  "проблему в течение 24 часов, в противном случае плагин будет деактивирован."
86
 
87
+ #: bws_functions.php:128 bws_functions.php:208 bws_menu.php:600
88
+ #: class-bws-settings.php:179
89
  msgid "Learn More"
90
  msgstr "Подробнее"
91
 
106
  "плагин в дальнейшем и иметь приоритетную тех.поддержку, то вам нужно "
107
  "продлить лицензию."
108
 
109
+ #: bws_functions.php:147 bws_functions.php:226
110
  msgid "Learn more"
111
  msgstr "Подробнее"
112
 
123
  msgid "The Pro Trial license will expire on"
124
  msgstr "Ваша лицензия Pro Trial версии плагина истекает"
125
 
126
+ #: bws_functions.php:199 bws_functions.php:222 bws_functions.php:266
127
+ #: bws_functions.php:276 bws_functions.php:475
128
  msgid "Close notice"
129
  msgstr "Закрыть"
130
 
131
+ #: bws_functions.php:204
132
  msgid "It’s time to upgrade your"
133
  msgstr "Настало время обновить Ваш"
134
 
135
+ #: bws_functions.php:204
136
  msgid "to"
137
  msgstr "до"
138
 
139
+ #: bws_functions.php:204
140
  msgid "version!"
141
  msgstr "версии!"
142
 
143
+ #: bws_functions.php:205
144
  msgid "Extend standard plugin functionality with new great options."
145
  msgstr "Расширяет возможности стандартного функционала плагина."
146
 
147
+ #: bws_functions.php:226
148
  #, php-format
149
  msgid ""
150
  "Your license key for %s expires on %s and you won't be granted TOP-PRIORITY "
153
  "Ваш лицензионный ключ для %s истекает %s и вы не будете получать "
154
  "приоритетную тех.поддержку или обновления."
155
 
156
+ #: bws_functions.php:241
157
  msgid ""
158
  "or higher! We do not guarantee that our plugin will work correctly. Please "
159
  "upgrade to WordPress latest version."
161
  "или выше! Мы не гарантируем, что наш плагин будет работать корректно. "
162
  "Пожалуйста, обновите WordPress до последней версии."
163
 
164
+ #: bws_functions.php:237
165
  #, php-format
166
  msgid "<strong>%s</strong> %s <strong>WordPress %s</strong> %s"
167
  msgstr ""
168
 
169
+ #: bws_functions.php:256
170
  #, php-format
171
  msgid "Thank you for installing %s plugin!"
172
  msgstr "Спасибо, что установили %s плагин!"
173
 
174
+ #: bws_functions.php:258
175
  msgid "Let's get started"
176
  msgstr "Давайте начнем"
177
 
178
+ #: bws_functions.php:259 bws_functions.php:292 bws_menu.php:533
179
+ #: bws_menu.php:535
180
  msgid "Settings"
181
  msgstr "Настройки"
182
 
183
+ #: bws_functions.php:261 bws_menu.php:327 class-bws-settings.php:809
184
+ #: class-bws-settings.php:1084 class-bws-settings.php:1094 deprecated.php:234
185
  msgid "or"
186
  msgstr "или"
187
 
188
+ #: bws_functions.php:262 bws_functions.php:294
189
  msgid "Add New"
190
  msgstr "Добавить"
191
 
192
+ #: bws_functions.php:281
193
  msgid "Thank you for installing plugins by BestWebSoft!"
194
  msgstr "Спасибо за установку плагинов компании BestWebSoft!"
195
 
196
+ #: bws_functions.php:283
197
  msgid "More Details"
198
  msgstr "Детали"
199
 
200
+ #: bws_functions.php:284
201
  msgid "Less Details"
202
  msgstr "Скрыть детали"
203
 
204
+ #: bws_functions.php:312
205
  msgid "Deprecated function(-s) is used on the site here:"
206
  msgstr "Устаревшие функции используются на сайте здесь:"
207
 
208
+ #: bws_functions.php:326
209
  msgid ""
210
  "This function(-s) will be removed over time. Please update the product(-s)."
211
  msgstr ""
212
  "Эти функции будет удалены через некоторое время. Пожалуйста, обновите "
213
  "продукт."
214
 
215
+ #: bws_functions.php:470
216
  #, php-format
217
  msgid "Thank you for choosing %s plugin!"
218
  msgstr "Спасибо за выбор плагина %s!"
219
 
220
+ #: bws_functions.php:471
221
  msgid ""
222
  "If you have a feature, suggestion or idea you'd like to see in the plugin, "
223
  "we'd love to hear about it!"
226
  "функционала плагина, пожалуйста, присылайте их нам! Мы вседа открыты для "
227
  "новых идей!"
228
 
229
+ #: bws_functions.php:472
230
  msgid "Suggest a Feature"
231
  msgstr "Предложить функционал"
232
 
233
+ #: bws_functions.php:488 class-bws-settings.php:580 class-bws-settings.php:583
234
+ #: class-bws-settings.php:635 class-bws-settings.php:638
235
  msgid "Notice"
236
  msgstr "Внимание"
237
 
238
+ #: bws_functions.php:488
239
  msgid "The plugin's settings have been changed."
240
  msgstr "Настройки плагина были изменены"
241
 
242
+ #: bws_functions.php:489 class-bws-settings.php:222 class-bws-settings.php:242
243
  msgid "Save Changes"
244
  msgstr "Сохранить изменения"
245
 
246
+ #: bws_functions.php:503
247
  msgid ""
248
  "You can always look at premium options by checking the \"Pro Options\" in "
249
  "the \"Misc\" tab."
251
  "Вы всегда можете просмотреть премиум опции нажав на кнопку \"Pro опции\" на "
252
  "вкладке \"Разное\"."
253
 
254
+ #: bws_functions.php:679
255
  msgid "Add shortcode"
256
  msgstr "Добавить шорткод"
257
 
258
+ #: bws_functions.php:679
259
  msgid "Add BestWebSoft plugins' shortcodes using this button."
260
  msgstr "Добавьте шорткоды BestWebSoft плагинов с помощью этой кнопки."
261
 
262
+ #: bws_functions.php:765
263
  msgid "Close"
264
  msgstr "Закрыть"
265
 
266
+ #: bws_functions.php:851
267
  msgid "Are you sure you want to restore default settings?"
268
  msgstr ""
269
  "Вы уверены что хотите восстановить все настройки плагина к настройкам по "
270
  "умолчанию?"
271
 
272
+ #: bws_functions.php:854
273
  msgid "Yes, restore all settings"
274
  msgstr "Да, восстановить все настройки"
275
 
276
+ #: bws_functions.php:855
277
  msgid "No, go back to the settings page"
278
  msgstr "Нет, вернуться на страницу настроек"
279
 
280
+ #: bws_functions.php:897
281
  msgid "Plugin"
282
  msgstr "Плагин"
283
 
284
+ #: bws_functions.php:906
285
  msgid "Shortcode settings"
286
  msgstr "Настройки шорткода"
287
 
288
+ #: bws_functions.php:911
289
  msgid "The shortcode will be inserted"
290
  msgstr "Будет вставлен шорткод"
291
 
292
+ #: bws_functions.php:954
293
  msgid "FAQ"
294
  msgstr "FAQ"
295
 
296
+ #: bws_functions.php:960
297
  msgid "For more information:"
298
  msgstr "Для дополнительной информации:"
299
 
300
+ #: bws_functions.php:961 bws_menu.php:401 class-bws-settings.php:776
301
  msgid "Documentation"
302
  msgstr "Документация"
303
 
304
+ #: bws_functions.php:962 bws_menu.php:403 class-bws-settings.php:778
305
  msgid "Video Instructions"
306
  msgstr "Видео инструкции"
307
 
308
+ #: bws_functions.php:963
309
  msgid "Submit a Request"
310
  msgstr "Отправить запрос"
311
 
312
+ #: bws_menu.php:101 class-bws-settings.php:860
313
  msgid "Wrong license key"
314
  msgstr "Неправильный лицензионный ключ"
315
 
316
+ #: bws_menu.php:122 class-bws-settings.php:887 class-bws-settings.php:966
317
+ #: class-bws-settings.php:1004
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:887 class-bws-settings.php:966
326
+ #: class-bws-settings.php:1004
327
  msgid "We are sorry for inconvenience."
328
  msgstr "Приносим извинения за неудобства."
329
 
330
+ #: bws_menu.php:129 class-bws-settings.php:893 class-bws-settings.php:1010
331
  msgid "Wrong license key."
332
  msgstr "Неправильный лицензионный ключ."
333
 
342
  msgid "Log in"
343
  msgstr "Авторизоваться"
344
 
345
+ #: bws_menu.php:133 bws_menu.php:333 deprecated.php:157
346
  msgid "Unfortunately, you have exceeded the number of available tries per day."
347
  msgstr "К сожалению, вы превысили количество доступных попыток."
348
 
356
  "обновлений и приоритетной тех.поддержки, вам необходимо продлить лицензию в "
357
  "вашей %s"
358
 
359
+ #: bws_menu.php:137 class-bws-settings.php:1018
360
  msgid ""
361
  "Unfortunately, the Pro licence was already installed to this domain. The Pro "
362
  "Trial license can be installed only once."
364
  "К сожалению, Pro лицензия уже была установлена на этом доменен. Pro Trial "
365
  "лицензия может быть установлена только один раз."
366
 
367
+ #: bws_menu.php:143 class-bws-settings.php:908
368
  msgid "The license key is valid."
369
  msgstr "Лицензионный ключ действителен."
370
 
371
+ #: bws_menu.php:145 class-bws-settings.php:912
372
  msgid "Your license will expire on"
373
  msgstr "Ваша лицензия истечет"
374
 
375
+ #: bws_menu.php:147
376
  msgid "Congratulations! Pro Membership license is activated successfully."
377
  msgstr "Поздравляем! Pro Membership лицензия успешно активирована."
378
 
379
+ #: bws_menu.php:154 class-bws-settings.php:1028
380
  msgid ""
381
  "Something went wrong. Try again later or upload the plugin manually. We are "
382
  "sorry for inconvenience."
384
  "Что-то пошло не так. Повторите попытку позже или загрузите плагин вручную. "
385
  "Приносим извинения за неудобства."
386
 
387
+ #: bws_menu.php:164
388
  msgid "Please enter your license key."
389
  msgstr "Пожалуйста, введите Ваш лицензионный ключ."
390
 
391
+ #: bws_menu.php:175
392
  msgid "Not set"
393
  msgstr "Не задан"
394
 
395
+ #: bws_menu.php:177
396
  msgid "On"
397
  msgstr "Вкл"
398
 
399
+ #: bws_menu.php:177
400
  msgid "Off"
401
  msgstr "Выкл"
402
 
403
+ #: bws_menu.php:178 bws_menu.php:179 bws_menu.php:180 bws_menu.php:181
404
+ #: bws_menu.php:182 bws_menu.php:183 bws_menu.php:192
405
  msgid "N/A"
406
  msgstr "Неизвестно"
407
 
408
+ #: bws_menu.php:183
409
  msgid "Mb"
410
  msgstr "Мб"
411
 
412
+ #: bws_menu.php:184 bws_menu.php:185 bws_menu.php:186 bws_menu.php:190
413
  msgid "Yes"
414
  msgstr "Да"
415
 
416
+ #: bws_menu.php:184 bws_menu.php:185 bws_menu.php:186 bws_menu.php:190
417
  msgid "No"
418
  msgstr "Нет"
419
 
420
+ #: bws_menu.php:197
421
  msgid "WordPress Environment"
422
  msgstr "WordPress Системная среда"
423
 
424
+ #: bws_menu.php:199
425
  msgid "Home URL"
426
  msgstr "Основной адрес сайта"
427
 
428
+ #: bws_menu.php:200
429
  msgid "Website URL"
430
  msgstr "Адрес сайта"
431
 
432
+ #: bws_menu.php:201
433
  msgid "WP Version"
434
  msgstr "Версия WordPress"
435
 
436
+ #: bws_menu.php:202
437
  msgid "WP Multisite"
438
  msgstr "Мультисайт"
439
 
440
+ #: bws_menu.php:203
441
  msgid "WP Memory Limit"
442
  msgstr "Лимит памяти WordPress"
443
 
444
+ #: bws_menu.php:204
445
  msgid "Active Theme"
446
  msgstr "Текущая тема"
447
 
448
+ #: bws_menu.php:204 bws_menu.php:249 bws_menu.php:252
449
  #, php-format
450
  msgid "by %s"
451
  msgstr "%s"
452
 
453
+ #: bws_menu.php:208
454
  msgid "Server Environment"
455
  msgstr "Системная среда сервера"
456
 
457
+ #: bws_menu.php:210
458
  msgid "Operating System"
459
  msgstr "Операционная система"
460
 
461
+ #: bws_menu.php:211
462
  msgid "Server"
463
  msgstr "Тип сервера"
464
 
465
+ #: bws_menu.php:212
466
  msgid "PHP Version"
467
  msgstr "Версия PHP"
468
 
469
+ #: bws_menu.php:213
470
  msgid "PHP Allow URL fopen"
471
  msgstr "PHP Allow URL fopen"
472
 
473
+ #: bws_menu.php:214
474
  msgid "PHP Memory Limit"
475
  msgstr "Лимит памяти"
476
 
477
+ #: bws_menu.php:215
478
  msgid "Memory Usage"
479
  msgstr "Использование памяти"
480
 
481
+ #: bws_menu.php:216
482
  msgid "PHP Max Upload Size"
483
  msgstr "Макс. размер загружаемого файла"
484
 
485
+ #: bws_menu.php:217
486
  msgid "PHP Max Post Size"
487
  msgstr "Макс. размер записи"
488
 
489
+ #: bws_menu.php:218
490
  msgid "PHP Max Script Execute Time"
491
  msgstr "Макс. время выполнения сценария"
492
 
493
+ #: bws_menu.php:219
494
  msgid "PHP Exif support"
495
  msgstr "Поддержка PHP Exif"
496
 
497
+ #: bws_menu.php:220
498
  msgid "PHP IPTC support"
499
  msgstr "Поддержка PHP IPTC"
500
 
501
+ #: bws_menu.php:221
502
  msgid "PHP XML support"
503
  msgstr "Поддержка PHP XML"
504
 
505
+ #: bws_menu.php:227
506
  msgid "Database"
507
  msgstr "База данных"
508
 
509
+ #: bws_menu.php:229
510
  msgid "WP DB version"
511
  msgstr "Версия базы данных WordPress"
512
 
513
+ #: bws_menu.php:230
514
  msgid "MySQL version"
515
  msgstr "Версия MYSQL"
516
 
517
+ #: bws_menu.php:231
518
  msgid "SQL Mode"
519
  msgstr "Режим SQL"
520
 
521
+ #: bws_menu.php:235
522
  msgid "Active Plugins"
523
  msgstr "Активированные плагины"
524
 
525
+ #: bws_menu.php:240
526
  msgid "Inactive Plugins"
527
  msgstr "Неактивированные плагины"
528
 
529
+ #: bws_menu.php:261
530
  msgid "Please enter a valid email address."
531
  msgstr "Пожалуйста, введите валидный емайл."
532
 
533
+ #: bws_menu.php:263
534
  #, php-format
535
  msgid "Email with system info is sent to %s."
536
  msgstr "Емейл с системной информацией отправлен на %s."
537
 
538
+ #: bws_menu.php:267
539
  msgid "Thank you for contacting us."
540
  msgstr "Спасибо что связались с нами."
541
 
542
+ #: bws_menu.php:290
543
  msgid "Sorry, email message could not be delivered."
544
  msgstr "Извините, ваш емейл не может быть отправлен."
545
 
546
+ #: bws_menu.php:306 bws_menu.php:310 bws_menu.php:359 deprecated.php:26
547
  msgid "Plugins"
548
  msgstr "Плагины"
549
 
550
+ #: bws_menu.php:307 bws_menu.php:311 bws_menu.php:587 deprecated.php:27
551
  msgid "Themes"
552
  msgstr "Темы"
553
 
554
+ #: bws_menu.php:308 bws_menu.php:312 bws_menu.php:617
555
  msgid "System status"
556
  msgstr "Системная информация"
557
 
558
+ #: bws_menu.php:316
559
  msgid "Support"
560
  msgstr "Тех. поддержка"
561
 
562
+ #: bws_menu.php:317
563
  msgid "Manage purchased licenses & subscriptions"
564
  msgstr "Управление купленными лицензиями и подписками"
565
 
566
+ #: bws_menu.php:325
567
  #, php-format
568
  msgid "Get Access to %s+ Premium Plugins"
569
  msgstr "Получить доступ к %s+ премиум плагинам"
570
 
571
+ #: bws_menu.php:327
572
  msgid "Subscribe to Pro Membership"
573
  msgstr "Подписаться на Pro Membership"
574
 
575
+ #: bws_menu.php:335 bws_menu.php:346 class-bws-settings.php:822
576
  #: deprecated.php:123
577
  msgid "Check license key"
578
  msgstr "Проверка лицензионного ключа"
579
 
580
+ #: bws_menu.php:338
581
  msgid "Enter your license key"
582
  msgstr "Ваш лицензионный ключ"
583
 
584
+ #: bws_menu.php:344 bws_menu.php:539 bws_menu.php:548
585
+ #: class-bws-settings.php:801 deprecated.php:155 deprecated.php:163
586
  #: deprecated.php:240 deprecated.php:249
587
  msgid "Activate"
588
  msgstr "Активировать"
589
 
590
+ #: bws_menu.php:360
591
  msgid "Upload Plugin"
592
  msgstr "Добавить новый"
593
 
594
+ #: bws_menu.php:364
595
  #, php-format
596
  msgid ""
597
  "The plugin generated %d characters of <strong>unexpected output</strong> "
604
  "проблемы с RSS-лентами или другие неполадки, попробуйте деактивировать или "
605
  "удалить этот плагин."
606
 
607
+ #: bws_menu.php:366
608
  msgid ""
609
  "Plugin could not be activated because it triggered a <strong>fatal error</"
610
  "strong>."
612
  "Плагин не может быть активирован, поскольку он вызвал <strong>фатальную "
613
  "ошибку</strong>."
614
 
615
+ #: bws_menu.php:369
616
  msgid "Plugin <strong>activated</strong>."
617
  msgstr "Плагин <strong>активировано</strong>."
618
 
619
+ #: bws_menu.php:383
620
  msgid "Download Pro Plugin"
621
  msgstr "Загрузить Pro плагина"
622
 
623
+ #: bws_menu.php:385 class-bws-settings.php:759
624
  msgid "Your Pro plugin is ready"
625
  msgstr "Ваш Pro плагин готов"
626
 
627
+ #: bws_menu.php:387 class-bws-settings.php:761
628
  msgid "Your plugin has been zipped, and now is ready to download."
629
  msgstr "Ваш плагин заархивирован, и готов к загрузке."
630
 
631
+ #: bws_menu.php:390 class-bws-settings.php:764
632
  msgid "Download Now"
633
  msgstr "Загрузить сейчас"
634
 
635
+ #: bws_menu.php:394 class-bws-settings.php:768
636
  msgid "Need help installing the plugin?"
637
  msgstr "Нужна помощь в установке плагина?"
638
 
639
+ #: bws_menu.php:396 class-bws-settings.php:770
640
  msgid "How to install WordPress plugin from your admin Dashboard (ZIP archive)"
641
  msgstr "Как установить WordPress плагин с админ панели (ZIP архив)"
642
 
643
+ #: bws_menu.php:399 class-bws-settings.php:774
644
  msgid "Get Started"
645
  msgstr "Начать "
646
 
647
+ #: bws_menu.php:405 class-bws-settings.php:780
648
  msgid "Knowledge Base"
649
  msgstr "База Знаний"
650
 
651
+ #: bws_menu.php:408
652
  msgid "Licenses & Domains"
653
  msgstr "Лицензии & Домены"
654
 
655
+ #: bws_menu.php:411
656
  msgid "Client Area"
657
  msgstr "Client Area"
658
 
659
+ #: bws_menu.php:410
660
  #, php-format
661
  msgid ""
662
  "Manage your license(-s) and change domain names using the %s at BestWebSoft."
664
  "Управляйте своей лицензией(-ами) и меняйте доменные имена, используя %s на "
665
  "BestWebSoft."
666
 
667
+ #: bws_menu.php:413
668
  msgid "Return to BestWebSoft Panel"
669
  msgstr "Возврат к BestWebSoft Panel"
670
 
671
+ #: bws_menu.php:420 bws_menu.php:440 bws_menu.php:569
672
  msgid "All"
673
  msgstr "Все"
674
 
675
+ #: bws_menu.php:423 bws_menu.php:606
676
  msgid "Installed"
677
  msgstr "Установленные"
678
 
679
+ #: bws_menu.php:426
680
  msgid "Not Installed"
681
  msgstr "Не установленные"
682
 
683
+ #: bws_menu.php:433
684
  msgid "Filter results"
685
  msgstr "Фильтр результатов"
686
 
687
+ #: bws_menu.php:436 bws_menu.php:565
688
  msgid "Category"
689
  msgstr "Категория"
690
 
691
+ #: bws_menu.php:500
692
  msgid "Not installed"
693
  msgstr "Не установлен"
694
 
695
+ #: bws_menu.php:504
696
  msgid "Renew to get updates"
697
  msgstr "Продлить для обновления"
698
 
699
+ #: bws_menu.php:507
700
  #, php-format
701
  msgid "Update to v %s"
702
  msgstr "Обновить до версии %s"
703
 
704
+ #: bws_menu.php:519 bws_menu.php:542
705
  msgid "Get Pro"
706
  msgstr "Получить Pro"
707
 
708
+ #: bws_menu.php:525 class-bws-settings.php:192 class-bws-settings.php:1091
709
  msgid "Upgrade to Pro"
710
  msgstr "Обновить до Pro"
711
 
712
+ #: bws_menu.php:539 bws_menu.php:548
713
  msgid "Activate this plugin"
714
  msgstr "Активировать плагин"
715
 
716
+ #: bws_menu.php:551
717
  msgid "Install this plugin"
718
  msgstr "Установить этот плагин"
719
 
720
+ #: bws_menu.php:551
721
  msgid "Install Now"
722
  msgstr "Установить"
723
 
724
+ #: bws_menu.php:560
725
  msgid "Nothing found. Try another criteria."
726
  msgstr "Ничего не найдено. Попробуйте другие критерии."
727
 
728
+ #: bws_menu.php:597
729
  #, php-format
730
  msgid "By %s"
731
  msgstr "%s"
732
 
733
+ #: bws_menu.php:604
734
  msgid "Already Installed"
735
  msgstr "Уже установлена"
736
 
737
+ #: bws_menu.php:614
738
  msgid "Browse More WordPress Themes"
739
  msgstr "Обзор WordPress тем"
740
 
741
+ #: bws_menu.php:623
742
  msgid "Send to support"
743
  msgstr "Отправить в тех. поддержку"
744
 
745
+ #: bws_menu.php:630
746
  msgid "Send to custom email &#187;"
747
  msgstr "Отправить на емейл &#187;"
748
 
749
+ #: class-bws-settings.php:167
750
  msgid "Information"
751
  msgstr "Информация"
752
 
753
+ #: class-bws-settings.php:179
754
  msgid "Inactive"
755
  msgstr "Неактивна"
756
 
757
+ #: class-bws-settings.php:187
758
  msgid "Expired"
759
  msgstr "Истекла"
760
 
761
+ #: class-bws-settings.php:190
762
  #, php-format
763
  msgid "%s day(-s) left"
764
  msgstr "%s дней осталось"
765
 
766
+ #: class-bws-settings.php:196
767
  #, php-format
768
  msgid "Expired on %s"
769
  msgstr "Истекает %s"
770
 
771
+ #: class-bws-settings.php:196
772
  msgid "Renew Now"
773
  msgstr "Возобновить сейчас"
774
 
775
+ #: class-bws-settings.php:198
776
  msgid "Active"
777
  msgstr "Активна"
778
 
779
+ #: class-bws-settings.php:203
780
  msgid "License"
781
  msgstr "Лицензия"
782
 
783
+ #: class-bws-settings.php:206
784
  msgid "Status"
785
  msgstr "Статус"
786
 
787
+ #: class-bws-settings.php:210
788
  msgid "Version"
789
  msgstr "Версия"
790
 
791
+ #: class-bws-settings.php:323
792
  msgid "All plugin settings were restored."
793
  msgstr "Все настройки плагина были восстановлены."
794
 
795
+ #: class-bws-settings.php:463
796
  msgid "Custom Code"
797
  msgstr "Пользовательский код"
798
 
799
+ #: class-bws-settings.php:467
800
  msgid "You do not have sufficient permissions to edit plugins for this site."
801
  msgstr ""
802
  "У вас недостаточно полномочий, чтобы редактировать плагины на этом сайте."
803
 
804
+ #: class-bws-settings.php:472
805
  msgid "These styles will be added to the header on all pages of your site."
806
  msgstr "Эти стили будут добавлены в хедер на всех страницах вашего сайта."
807
 
808
+ #: class-bws-settings.php:475
809
  #, php-format
810
  msgid ""
811
  "This PHP code will be hooked to the %s action and will be printed on front "
814
  "Этот PHP код будет прикреплен к %s аction и будет добавлен только во "
815
  "фронтенде."
816
 
817
+ #: class-bws-settings.php:478
818
  msgid "These code will be added to the header on all pages of your site."
819
  msgstr "Этот код будет добавлен в хедер на всех страницах вашего сайта."
820
 
821
+ #: class-bws-settings.php:486
822
  #, php-format
823
  msgid ""
824
  "You need to make this files writable before you can save your changes. See "
827
  "Чтобы сохранить изменения, нужно сделать этот файл доступным для записи. "
828
  "Дополнительную информацию можно получить в %s Кодексе %s."
829
 
830
+ #: class-bws-settings.php:496
831
  msgid "Browsing"
832
  msgstr "Просмотр"
833
 
834
+ #: class-bws-settings.php:501
835
  #, php-format
836
  msgid "Activate custom %s code."
837
  msgstr "Активировать пользовательский %s код."
838
 
839
+ #: class-bws-settings.php:509
840
  #, php-format
841
  msgid "Learn more about %s"
842
  msgstr "Подробнее о %s"
843
 
844
+ #: class-bws-settings.php:571
845
  msgid "Miscellaneous Settings"
846
  msgstr "Прочие настройки"
847
 
848
+ #: class-bws-settings.php:580 class-bws-settings.php:635
849
  #, php-format
850
  msgid ""
851
  "It is prohibited to change %s settings on this site in the %s network "
853
  msgstr ""
854
  "Cетевыми настройками %s запрещается изменять настройки %s на этом сайте."
855
 
856
+ #: class-bws-settings.php:583 class-bws-settings.php:638
857
  #, php-format
858
  msgid ""
859
  "It is prohibited to view %s settings on this site in the %s network settings."
860
  msgstr ""
861
  "Cетевыми настройками %s запрещается просматривать настройки %s на этом сайте."
862
 
863
+ #: class-bws-settings.php:592
864
  msgid "Pro Options"
865
  msgstr "Pro опции"
866
 
867
+ #: class-bws-settings.php:596
868
  msgid "Enable to display plugin Pro options."
869
  msgstr "Включите для отображения Pro опций плагина."
870
 
871
+ #: class-bws-settings.php:602
872
  msgid "Track Usage"
873
  msgstr "Собирать статистику"
874
 
875
+ #: class-bws-settings.php:606
876
  msgid ""
877
  "Enable to allow tracking plugin usage anonymously in order to make it better."
878
  msgstr ""
879
  "Включить, чтобы разрешить анонимно отслеживать использование и сделать "
880
  "плагин лучше."
881
 
882
+ #: class-bws-settings.php:611
883
  msgid "Default Settings"
884
  msgstr "Настройки по умолчанию"
885
 
886
+ #: class-bws-settings.php:613
887
  msgid "Restore Settings"
888
  msgstr "Восстановить настройки"
889
 
890
+ #: class-bws-settings.php:614
891
  msgid "This will restore plugin settings to defaults."
892
  msgstr "Восстановить все настройки плагина к настройкам по умолчанию."
893
 
894
+ #: class-bws-settings.php:626
895
  msgid "Import / Export"
896
  msgstr "Импорт / Экспорт"
897
 
898
+ #: class-bws-settings.php:744
899
  msgid "License Key"
900
  msgstr "Лицензионный ключ"
901
 
902
+ #: class-bws-settings.php:803
903
  #, php-format
904
  msgid "Enter your license key to activate %s and get premium plugin features."
905
  msgstr ""
906
  "Введите лицензионный ключ для активации %s и получения дополнительных "
907
  "возможностей плагина."
908
 
909
+ #: class-bws-settings.php:806 class-bws-settings.php:1014 deprecated.php:243
910
  msgid ""
911
  "Unfortunately, you have exceeded the number of available tries per day. "
912
  "Please, upload the plugin manually."
914
  "К сожалению, вы превысили количество доступных попыток в день. Пожалуйста, "
915
  "загрузите плагин вручную."
916
 
917
+ #: class-bws-settings.php:809 deprecated.php:234
918
  #, php-format
919
  msgid "Start Your Free %s-Day Trial Now"
920
  msgstr "Попробуйте %s-дневную Trial версию бесплатно"
921
 
922
+ #: class-bws-settings.php:824
923
  msgid ""
924
  "If necessary, you can check if the license key is correct or reenter it in "
925
  "the field below."
927
  "При необходимости вы можете проверить валидность лицензионного ключа или "
928
  "повторно ввести его в поле выше."
929
 
930
+ #: class-bws-settings.php:833
931
  msgid "Manage License Settings"
932
  msgstr "Управление настройками лицензий"
933
 
934
+ #: class-bws-settings.php:835
935
  msgid "Login to Client Area"
936
  msgstr "Зайти в Client Area"
937
 
938
+ #: class-bws-settings.php:837
939
  msgid ""
940
  "Manage active licenses, download BWS products, and view your payment history "
941
  "using BestWebSoft Client Area."
943
  "Управляй активными лицензиями, загружай BWS продукты, а также просматривай "
944
  "историю платежей с помощью BestWebSoft Client Area."
945
 
946
+ #: class-bws-settings.php:895 class-bws-settings.php:1012
947
  msgid "This license key is bound to another site."
948
  msgstr "Этот лицензионный ключ привязан к другому сайту."
949
 
950
+ #: class-bws-settings.php:897
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."
955
  "Лицензионный ключ принят, но срок действия лицензии истек. Если вы хотите "
956
  "обновлять плагин в будущем, вы должны продлить лицензию."
957
 
958
+ #: class-bws-settings.php:899
959
  msgid "Unfortunately, you have exceeded the number of available tries."
960
  msgstr "К сожалению, вы превысили количество доступных попыток."
961
 
962
+ #: class-bws-settings.php:901
963
  msgid ""
964
  "Unfortunately, the Pro Trial licence was already installed to this domain. "
965
  "The Pro Trial license can be installed only once."
967
  "К сожалению, Pro Trial версия плагина уже устанавливалась на этот домен. Pro "
968
  "Trial версию можно устанавливать лишь один раз."
969
 
970
+ #: class-bws-settings.php:906
971
  msgid "The Pro Trial license key is valid."
972
  msgstr "Ключ Pro Trial версии действителен."
973
 
974
+ #: class-bws-settings.php:919 deprecated.php:142
975
  #, php-format
976
  msgid ""
977
  "In order to continue using the plugin it is necessary to buy a %s license."
978
  msgstr ""
979
  "Чтобы продолжить пользоваться плагином, необходимо приобрести %s лицензию."
980
 
981
+ #: class-bws-settings.php:1016
982
  #, php-format
983
  msgid ""
984
  "Unfortunately, Your license has expired. To continue getting top-priority "
988
  "обновлений и приоритетной тех.поддержки, вам необходимо продлить лицензию в "
989
  "вашей %s."
990
 
991
+ #: class-bws-settings.php:1065
992
  msgid "Please, enter Your license key"
993
  msgstr "Пожалуйста, введите ваш лицензионный ключ"
994
 
995
+ #: class-bws-settings.php:1078
996
  msgid "Need Help?"
997
  msgstr "Нужна помощь?"
998
 
999
+ #: class-bws-settings.php:1080
1000
  msgid "Read the Instruction"
1001
  msgstr "Читать инструкцию"
1002
 
1003
+ #: class-bws-settings.php:1084
1004
  msgid "Watch the Video"
1005
  msgstr "Смотреть видео"
1006
 
1007
+ #: class-bws-settings.php:1095
1008
  msgid "Start Your Free Trial"
1009
  msgstr "Использовать бесплатную Trial версию"
1010
 
1011
+ #: class-bws-settings.php:1130
1012
+ msgid "Request a Feature"
1013
+ msgstr "Предложить функционал"
1014
+
1015
+ #: class-bws-settings.php:1135
1016
+ #, php-format
1017
+ msgid "How can we improve %s?"
1018
+ msgstr "Как нам улучшить %s?"
1019
+
1020
+ #: class-bws-settings.php:1137
1021
+ msgid "We look forward to hear your ideas."
1022
+ msgstr "Мы с нетерпением ждем ваших идей."
1023
+
1024
+ #: class-bws-settings.php:1139
1025
+ msgid "Describe your idea"
1026
+ msgstr "Опишите свою идею"
1027
+
1028
+ #: class-bws-settings.php:1142 deactivation-form.php:120
1029
+ msgid "Send website data and allow to contact me back"
1030
+ msgstr "Отправить данные сайта и позволить связаться со мной"
1031
+
1032
+ #: class-bws-settings.php:1147
1033
+ msgid "Submit"
1034
+ msgstr "Отправить"
1035
+
1036
+ #: class-bws-settings.php:1148 deactivation-form.php:127
1037
+ msgid "Processing"
1038
+ msgstr "Обработка"
1039
+
1040
+ #: class-bws-settings.php:1149
1041
+ msgid "Thank you!"
1042
+ msgstr "Спасибо!"
1043
+
1044
  #: deactivation-form.php:22
1045
  msgid "Need help? We are ready to answer your questions."
1046
  msgstr "Нужна помощь? Мы готовы ответить на ваши вопросы."
1101
  "Если у вас есть время, пожалуйста, сообщите нам, почему вы деактивируете "
1102
  "плагин"
1103
 
1104
+ #: deactivation-form.php:125
 
 
 
 
 
 
 
 
1105
  msgid "Submit and Deactivate"
1106
  msgstr "Отправить и Деактивировать"
1107
 
1108
+ #: deactivation-form.php:126
 
 
 
 
1109
  msgid "Skip and Deactivate"
1110
  msgstr "Пропустить и Деактивировать"
1111
 
1112
+ #: deactivation-form.php:272
1113
+ msgid "Please tell us the reason so we can improve it."
1114
+ msgstr "Пожалуйста, сообщите нам причину, чтобы мы могли улучшить плагин."
1115
+
1116
  #: deprecated.php:28
1117
  msgid "System Status"
1118
  msgstr "Системная информация"
1186
  msgid "version of the plugin."
1187
  msgstr "версия плагина."
1188
 
1189
+ #: product_list.php:8
1190
  msgid "Admin Tools"
1191
  msgstr "Инструменты"
1192
 
1193
+ #: product_list.php:9
1194
  msgid "Content"
1195
  msgstr "Контент"
1196
 
1197
+ #: product_list.php:10
1198
  msgid "eCommerce"
1199
  msgstr "Коммерция"
1200
 
1201
+ #: product_list.php:11
1202
  msgid "Marketing"
1203
  msgstr "Маркетинг"
1204
 
1205
+ #: product_list.php:12
1206
  msgid "Navigation"
1207
  msgstr "Навигация"
1208
 
1209
+ #: product_list.php:13
1210
  msgid "Recommended"
1211
  msgstr "Рекомендованные"
1212
 
1213
+ #: product_list.php:14
1214
  msgid "Security"
1215
  msgstr "Безопасность"
1216
 
1217
+ #: product_list.php:15
1218
  msgid "SEO"
1219
  msgstr "Поисковая оптимизация"
1220
 
1221
+ #: product_list.php:16
1222
  msgid "SMM"
1223
  msgstr "СММ"
1224
 
1225
+ #: product_list.php:23
1226
+ msgid "Give a birth for your bike rental and booking WordPress website."
1227
+ msgstr "Создайте прокат и бронирование велосипедов на сайте WordPress."
1228
+
1229
+ #: product_list.php:35
1230
  msgid "Best secure captcha plugin to protect your WordPress forms."
1231
  msgstr "Лучший плагин капчи, который защитит формы вашего сайта WordPress."
1232
 
1233
+ #: product_list.php:45
1234
  msgid "Create your own rental website for car renting and booking."
1235
  msgstr "Создайте свой собственный сайт проката и резервирования автомобилей."
1236
 
1237
+ #: product_list.php:57
1238
  msgid ""
1239
  "Add columns with custom content to WordPress website pages, posts, widgets, "
1240
  "etc."
1242
  "Добавляйте столбцы с пользовательским контентом в ваш WordPress сайт на "
1243
  "страницы, посты, виджеты, и т.д."
1244
 
1245
+ #: product_list.php:64
1246
  msgid ""
1247
  "Allow customers to reach you using secure contact form plugin any website "
1248
  "must have."
1250
  "Предоставьте возможность клиентам осуществлять связь с вами через безопасный "
1251
  "плагин контактной формы, который должен иметь любой сайт."
1252
 
1253
+ #: product_list.php:74
1254
  msgid "Add unlimited number of contact forms to WordPress website."
1255
  msgstr ""
1256
  "Добавляйте неограниченное количество контактных форм на ваш сайт WordPress."
1257
 
1258
+ #: product_list.php:84
1259
  msgid "Save and manage Contact Form messages. Never lose important data."
1260
  msgstr ""
1261
  "Сохраняйте и управляйте сообщениями плагина Contact Form. Никогда не теряйте "
1262
  "важные данные."
1263
 
1264
+ #: product_list.php:94
1265
  msgid "Add unlimited custom pages to WordPress admin dashboard."
1266
  msgstr ""
1267
  "Добавляйте неограниченное количество пользовательских страниц в панели "
1268
  "администратора WordPress."
1269
 
1270
+ #: product_list.php:104
1271
  msgid ""
1272
  "Add custom post types and taxonomies to WordPress website search results."
1273
  msgstr ""
1274
  "Добавляйте пользовательские типы постов и таксономии в результаты поиска на "
1275
  "вашем сайте WordPress."
1276
 
1277
+ #: product_list.php:114
1278
  msgid "Add PayPal and 2CO donate buttons to receive charity payments."
1279
  msgstr ""
1280
  "Добавляйте кнопки PayPal и 2CO, чтобы получать пожертвования и "
1281
  "благотворительные взносы."
1282
 
1283
+ #: product_list.php:121
1284
  msgid ""
1285
  "Get latest error log messages to diagnose website problems. Define and fix "
1286
  "issues faster."
1288
  "Получайте последние сообщения из журнала ошибок для диагностики проблем "
1289
  "сайта. Быстрее выявляйте и устраняйте проблемы."
1290
 
1291
+ #: product_list.php:128
1292
  msgid ""
1293
  "Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and "
1294
  "widgets."
1296
  "Добавляйте кнопки Facebook \"Подписаться\", \"Нравится\" и \"Поделиться\" в "
1297
  "посты, страницы и виджеты сайта WordPress."
1298
 
1299
+ #: product_list.php:138
1300
  msgid ""
1301
  "Add beautiful galleries, albums & images to your WordPress website in a few "
1302
  "clicks."
1304
  "Добавляйте живописные галереи, альбомы, изображения и категории галереи на "
1305
  "ваш сайт WordPress всего в несколько кликов."
1306
 
1307
+ #: product_list.php:148
1308
  msgid ""
1309
  "Stronger security solution which protects your WordPress website from hacks "
1310
  "and unauthorized login attempts."
1312
  "Мощнейшее решение для безопасности, которое защищает ваш сайт WordPress от "
1313
  "взломов и неавторизованных попыток входа в систему."
1314
 
1315
+ #: product_list.php:158
1316
  msgid ""
1317
  "Add Adsense ads to WordPress website pages, posts, custom posts, search "
1318
  "results, categories, tags, and widgets."
1320
  "Добавляйте рекламу сервиса Adsense на страницы, посты, пользовательские "
1321
  "посты, результаты поиска, категории, теги и виджеты сайта WordPress."
1322
 
1323
+ #: product_list.php:168
1324
  msgid "Add Google Analytics code to WordPress website and track basic stats."
1325
  msgstr ""
1326
  "Добавляйте код Google Analytics на ваш сайт WordPress и отслеживайте базовую "
1327
  "статистику сайта."
1328
 
1329
+ #: product_list.php:178
1330
  msgid "Protect WordPress website forms from spam entries with reCaptcha."
1331
  msgstr "Защищайте формы вашего сайта WordPress от спама с помощью reCaptcha."
1332
 
1333
+ #: product_list.php:188
1334
  msgid "Add customized Google maps to WordPress posts, pages and widgets."
1335
  msgstr ""
1336
  "Добавляйте пользовательские карты Google в посты, страницы и виджеты "
1337
  "WordPress."
1338
 
1339
+ #: product_list.php:198
1340
  msgid ""
1341
  "Generate and add XML sitemap to WordPress website. Help search engines index "
1342
  "your blog."
1344
  "Создавайте и добавляйте файлы XML sitemap на ваш сайт WordPress. Помогите "
1345
  "поисковым системам проиндексировать ваш блог."
1346
 
1347
+ #: product_list.php:208
1348
  msgid ""
1349
  "Replace external WordPress website links with Google shortlinks and track "
1350
  "click stats."
1352
  "Замените внешние ссылки сайта WordPress на короткие ссылки Google и "
1353
  "отслеживайте статистику кликов."
1354
 
1355
+ #: product_list.php:215
1356
  msgid ""
1357
  "Protect WordPress website – allow and deny access for certain IP addresses, "
1358
  "hostnames, etc."
1360
  "Защитите свой сайт WordPress - предоставляйте и запрещайте доступ с "
1361
  "определенных IP-адресов, имен хостов и т.д."
1362
 
1363
+ #: product_list.php:225
1364
  msgid ""
1365
  "Create your personal job board and listing WordPress website. Search jobs, "
1366
  "submit CV/resumes, choose candidates."
1369
  "WordPress. Осуществляйте поиск вакансий, подачу резюме/CV кандидата, выбор "
1370
  "кандидатов."
1371
 
1372
+ #: product_list.php:232
1373
  msgid ""
1374
  "Protect WordPress website against brute force attacks. Limit rate of login "
1375
  "attempts."
1377
  "Защищайте свой сайт WordPress от брутфорс-атак. Ограничивайте количество "
1378
  "попыток ввода логина."
1379
 
1380
+ #: product_list.php:242
1381
  msgid ""
1382
  "Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. "
1383
  "5 plugins included – profile, insider, etc."
1386
  "страницам и виджетам WordPress. 5 плагинов включено - Профиль, Инсайдер и т."
1387
  "д."
1388
 
1389
+ #: product_list.php:252
1390
  msgid ""
1391
  "Translate WordPress website content to other languages manually. Create "
1392
  "multilingual pages, posts, widgets, menus, etc."
1394
  "Переводите содержимое сайта WordPress на другие языки вручную. Создавайте "
1395
  "многоязычные страницы, посты, виджеты, меню и т.д."
1396
 
1397
+ #: product_list.php:262
1398
  msgid ""
1399
  "Add customizable pagination to WordPress website. Split long content to "
1400
  "multiple pages for better navigation."
1402
  "Добавляйте настраиваемую пагинацию на ваш сайт WordPress. Разбивайте "
1403
  "объемный контент на несколько страниц для лучшей навигации."
1404
 
1405
+ #: product_list.php:272
1406
  msgid ""
1407
  "Generate PDF files and print WordPress posts/pages. Customize document "
1408
  "header/footer styles and appearance."
1410
  "Создавайте PDF-файлы и печатайте посты/страницы сайта WordPress. "
1411
  "Настраивайте стили хедера/футера документа и его внешний вид."
1412
 
1413
+ #: product_list.php:282
1414
  msgid ""
1415
  "Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, "
1416
  "Profile) to WordPress posts, pages and widgets."
1418
  "Добавляйте кнопки Pinterest \"Подписаться\", \"Сохранить\" и виджеты профиля "
1419
  "(Пин, Доска, Профиль) к постам, страницам и виджетам WordPress."
1420
 
1421
+ #: product_list.php:292
1422
  msgid ""
1423
  "Create your personal portfolio WordPress website. Manage and showcase past "
1424
  "projects to get more clients."
1426
  "Создавайте и добавляйте портфолио на свой сайт WordPress. Управляйте и "
1427
  "демонстрируйте прошлые проекты, чтобы привлечь больше клиентов."
1428
 
1429
+ #: product_list.php:302
1430
  msgid "Export WordPress posts to CSV file format easily. Configure data order."
1431
  msgstr ""
1432
  "С легкостью экспортируйте посты WordPress в файлы формата CSV. Настраивайте "
1433
  "порядок отображения данных."
1434
 
1435
+ #: product_list.php:312
1436
  msgid ""
1437
  "Add extra fields to default WordPress user profile. The easiest way to "
1438
  "create and manage additional custom values."
1440
  "Добавляйте пользовательские поля в стандартный профиль WordPress. Самый "
1441
  "простой способ создания и управления дополнительными полями."
1442
 
1443
+ #: product_list.php:322
1444
  msgid ""
1445
  "Add and display HTML advertisement banner on WordPress website. Customize "
1446
  "bar styles and appearance."
1448
  "Добавляйте и отображайте баннерную HTML рекламу на сайте WordPress. "
1449
  "Настраивайте стили и внешний вид баннера."
1450
 
1451
+ #: product_list.php:332
1452
  msgid ""
1453
  "Add customizable quotes and tips blocks to WordPress posts, pages and "
1454
  "widgets."
1456
  "Добавляйте настраиваемые цитаты и подсказки к постам, страницам и виджетам "
1457
  "WordPress."
1458
 
1459
+ #: product_list.php:339
1460
  msgid ""
1461
  "Add rating plugin to your WordPress website to receive feedback from your "
1462
  "customers."
1464
  "Добавляйте систему оценивания и рейтинга на ваш сайт WordPress и получайте "
1465
  "отзывы от ваших клиентов."
1466
 
1467
+ #: product_list.php:349
1468
  msgid ""
1469
  "Create your personal real estate WordPress website. Sell, rent and buy "
1470
  "properties. Add, search and browse listings easily."
1473
  "Продавайте, арендуйте и покупайте недвижимость. Легко добавляйте, находите и "
1474
  "просматривайте листинги."
1475
 
1476
+ #: product_list.php:359
1477
  msgid ""
1478
  "Add related, featured, latest, and popular posts to your WordPress website. "
1479
  "Connect your blog readers with a relevant content."
1481
  "Добавляйте похожие, избранные, последние и популярные посты на ваш сайт "
1482
  "WordPress. Предоставляйте своим читателям контент схожей тематики."
1483
 
1484
+ #: product_list.php:366
1485
  msgid ""
1486
  "Send bulk email messages to WordPress users. Custom templates, advanced "
1487
  "settings and detailed reports."
1489
  "Осуществляйте массовую рассылку писем пользователям WordPress. "
1490
  "Пользовательские шаблоны, дополнительные настройки и подробные отчеты."
1491
 
1492
+ #: product_list.php:376
1493
  msgid ""
1494
  "The best responsive slider plugin for your WordPress website. Create "
1495
  "beautifully animated slides just in a few clicks."
1497
  "Самый лучший адаптивный слайдер для вашего сайта WordPress. Создавайте "
1498
  "красиво анимированные слайды всего в несколько кликов."
1499
 
1500
+ #: product_list.php:383
1501
  msgid ""
1502
  "Configure SMTP server to receive email messages from WordPress to Gmail, "
1503
  "Yahoo, Hotmail and other services."
1506
  "WordPress на такие почтовые службы, как Gmail, Yahoo, Hotmail и многие "
1507
  "другие."
1508
 
1509
+ #: product_list.php:390
1510
  msgid ""
1511
  "Add social media buttons and widgets to WordPress posts, pages and widgets. "
1512
  "FB, Twitter, Pinterest, LinkedIn."
1514
  "Добавляйте кнопки и виджеты социальных сетей к постам, страницам и виджетам "
1515
  "WordPress. FB, Twitter, Pinterest, LinkedIn."
1516
 
1517
+ #: product_list.php:400
1518
  msgid ""
1519
  "Add social media login, registration, and commenting to your WordPress "
1520
  "website."
1522
  "Добавляйте на свой сайт WordPress возможность входа, регистрации и "
1523
  "комментирования с использованием существующих аккаунтов социальных сетей."
1524
 
1525
+ #: product_list.php:407
1526
  msgid ""
1527
  "Add email newsletter sign up form to WordPress posts, pages and widgets. "
1528
  "Collect data and subscribe your users."
1530
  "Добавляйте форму подписки на новостную рассылку в посты, страницы и виджеты "
1531
  "WordPress. Собирайте данные и осуществляйте подписку пользователей."
1532
 
1533
+ #: product_list.php:417
1534
  msgid ""
1535
  "Add testimonials and feedbacks from your customers to WordPress website "
1536
  "posts, pages, and widgets."
1538
  "Добавляйте рекомендации и отзывы ваших клиентов в посты, страницы и виджеты "
1539
  "сайта WordPress."
1540
 
1541
+ #: product_list.php:424
1542
  msgid ""
1543
  "Best timesheet plugin for WordPress. Track employee time, streamline "
1544
  "attendance and generate reports."
1546
  "Лучший плагин учёта рабочего времени на сайте WordPress. Отслеживайте время "
1547
  "работы сотрудников, оптимизируйте график работы в офисе и создавайте отчеты."
1548
 
1549
+ #: product_list.php:434
1550
  msgid ""
1551
  "Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts "
1552
  "and pages."
1554
  "Добавляйте кнопки Твиттера \"Читать\", \"Твитнуть\", \"Метка\" и \"Упомянуть"
1555
  "\" к постам и страницам WordPress. "
1556
 
1557
+ #: product_list.php:444
1558
  msgid ""
1559
  "Automatically check and update WordPress website core with all installed "
1560
  "plugins and themes to the latest versions."
1562
  "Выполняйте автоматическую проверку и обновление ядра WordPress до последних "
1563
  "версий со всеми установленными плагинами и темами."
1564
 
1565
+ #: product_list.php:454
1566
  msgid ""
1567
  "Powerful user role management plugin for WordPress website. Create, edit, "
1568
  "copy, and delete user roles."
1570
  "Эффективный плагин управления ролями пользователей для сайта WordPress. "
1571
  "Создавайте, редактируйте, копируйте и удаляйте роли пользователей."
1572
 
1573
+ #: product_list.php:464
1574
  msgid ""
1575
  "Display live count of online visitors who are currently browsing your "
1576
  "WordPress website."
1578
  "Ведите подсчет количества посетителей, которые в настоящее время "
1579
  "просматривают ваш сайт WordPress."
1580
 
1581
+ #: product_list.php:474
1582
  msgid ""
1583
  "Backup and export Zendesk Help Center content automatically to your "
1584
  "WordPress website database."
bws_menu/languages/bestwebsoft-uk.mo CHANGED
Binary file
bws_menu/languages/bestwebsoft-uk.po CHANGED
@@ -2,18 +2,19 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2020-03-05 15:25+0200\n"
6
- "PO-Revision-Date: 2020-03-05 15:26+0200\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"
13
- "X-Poedit-KeywordsList: __;_e;esc_attr_e;sprintf;printf\n"
 
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
- "X-Generator: Poedit 2.3\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"
@@ -24,7 +25,7 @@ msgstr ""
24
  msgid "%s/%s"
25
  msgstr ""
26
 
27
- #: bws_functions.php:73 bws_functions.php:231
28
  msgid "requires"
29
  msgstr "потребує"
30
 
@@ -68,7 +69,7 @@ msgstr "Оцінити"
68
  msgid "Need help?"
69
  msgstr "Потрібна допомога?"
70
 
71
- #: bws_functions.php:104 bws_functions.php:940 class-bws-settings.php:1055
72
  msgid "Visit Help Center"
73
  msgstr "Перейти до Help Center"
74
 
@@ -76,7 +77,7 @@ msgstr "Перейти до Help Center"
76
  msgid "Want to support the plugin?"
77
  msgstr "Хочете підтримати плагін?"
78
 
79
- #: bws_functions.php:108 bws_menu.php:528
80
  msgid "Donate"
81
  msgstr "Пожертвувати"
82
 
@@ -96,8 +97,8 @@ msgstr ""
96
  "вкладці Client Area. Ми настійливо рекомендуємо Вам вирішити це питання "
97
  "протягом 24 годин, інакше плагін буде деактивовано."
98
 
99
- #: bws_functions.php:128 bws_functions.php:200 bws_menu.php:599
100
- #: class-bws-settings.php:161
101
  msgid "Learn More"
102
  msgstr "Дізнатись більше"
103
 
@@ -117,7 +118,7 @@ msgstr ""
117
  "Строк вашої ліцензії витік. Якщо ви хочете отримувати першочергову технічну "
118
  "підтримку та оновлювати плагін у майбутньому, вам слід подовжити ліцензію."
119
 
120
- #: bws_functions.php:147 bws_functions.php:218
121
  msgid "Learn more"
122
  msgstr "Дізнатись більше"
123
 
@@ -134,28 +135,28 @@ msgstr "Увага: Ви використовуєте тріал Pro версі
134
  msgid "The Pro Trial license will expire on"
135
  msgstr "Trial період Pro версії плагіну закінчується"
136
 
137
- #: bws_functions.php:191 bws_functions.php:214 bws_functions.php:258
138
- #: bws_functions.php:268 bws_functions.php:467
139
  msgid "Close notice"
140
  msgstr "Закрити"
141
 
142
- #: bws_functions.php:196
143
  msgid "It’s time to upgrade your"
144
  msgstr "Настав час модернізувати Ваш"
145
 
146
- #: bws_functions.php:196
147
  msgid "to"
148
  msgstr "до"
149
 
150
- #: bws_functions.php:196
151
  msgid "version!"
152
  msgstr "версії!"
153
 
154
- #: bws_functions.php:197
155
  msgid "Extend standard plugin functionality with new great options."
156
  msgstr "Розширює можливості стандартного функціоналу плагіна."
157
 
158
- #: bws_functions.php:218
159
  #, php-format
160
  msgid ""
161
  "Your license key for %s expires on %s and you won't be granted TOP-PRIORITY "
@@ -164,7 +165,7 @@ msgstr ""
164
  "Ваш ліцензійний ключ для %s витікає %s та ви більше не будете отримувати "
165
  "першочергову технічну підтримку та оновлення."
166
 
167
- #: bws_functions.php:233
168
  msgid ""
169
  "or higher! We do not guarantee that our plugin will work correctly. Please "
170
  "upgrade to WordPress latest version."
@@ -172,62 +173,62 @@ msgstr ""
172
  "чи вище! Ми не гарантуємо, що наш плагін буде працювати правильно. Будь "
173
  "ласка, оновіть WordPress до останньої версії."
174
 
175
- #: bws_functions.php:229
176
  #, php-format
177
  msgid "<strong>%s</strong> %s <strong>WordPress %s</strong> %s"
178
  msgstr ""
179
 
180
- #: bws_functions.php:248
181
  #, php-format
182
  msgid "Thank you for installing %s plugin!"
183
  msgstr "Дякуємо, що встановили %s плагін!"
184
 
185
- #: bws_functions.php:250
186
  msgid "Let's get started"
187
  msgstr "Розпочнемо"
188
 
189
- #: bws_functions.php:251 bws_functions.php:284 bws_menu.php:532
190
- #: bws_menu.php:534
191
  msgid "Settings"
192
  msgstr "Налаштування"
193
 
194
- #: bws_functions.php:253 bws_menu.php:326 class-bws-settings.php:791
195
- #: class-bws-settings.php:1057 class-bws-settings.php:1067 deprecated.php:234
196
  msgid "or"
197
  msgstr "або"
198
 
199
- #: bws_functions.php:254 bws_functions.php:286
200
  msgid "Add New"
201
  msgstr "Додати"
202
 
203
- #: bws_functions.php:273
204
  msgid "Thank you for installing plugins by BestWebSoft!"
205
  msgstr "Дякуємо, що встановили плагіни від BestWebSoft!"
206
 
207
- #: bws_functions.php:275
208
  msgid "More Details"
209
  msgstr "Деталі"
210
 
211
- #: bws_functions.php:276
212
  msgid "Less Details"
213
  msgstr "Сховати Деталі"
214
 
215
- #: bws_functions.php:304
216
  msgid "Deprecated function(-s) is used on the site here:"
217
  msgstr "Застарілі функціі використовується на сайті тут:"
218
 
219
- #: bws_functions.php:318
220
  msgid ""
221
  "This function(-s) will be removed over time. Please update the product(-s)."
222
  msgstr ""
223
  "Ці функції буде видалено через деякий час. Будь ласка, поновіть продукт."
224
 
225
- #: bws_functions.php:462
226
  #, php-format
227
  msgid "Thank you for choosing %s plugin!"
228
  msgstr "Дякую за вибір плагіна %s!"
229
 
230
- #: bws_functions.php:463
231
  msgid ""
232
  "If you have a feature, suggestion or idea you'd like to see in the plugin, "
233
  "we'd love to hear about it!"
@@ -236,24 +237,24 @@ msgstr ""
236
  "функціоналу плагіна, будь ласка, надсилайте їх нам! Ми завжди відкриті для "
237
  "нових ідей!"
238
 
239
- #: bws_functions.php:464
240
  msgid "Suggest a Feature"
241
  msgstr "Запропонувати функціонал"
242
 
243
- #: bws_functions.php:480 class-bws-settings.php:559 class-bws-settings.php:562
244
- #: class-bws-settings.php:614 class-bws-settings.php:617
245
  msgid "Notice"
246
  msgstr "Зауважте"
247
 
248
- #: bws_functions.php:480
249
  msgid "The plugin's settings have been changed."
250
  msgstr "Налаштування плагіну змінено."
251
 
252
- #: bws_functions.php:481 class-bws-settings.php:200 class-bws-settings.php:220
253
  msgid "Save Changes"
254
  msgstr "Зберегти зміни"
255
 
256
- #: bws_functions.php:495
257
  msgid ""
258
  "You can always look at premium options by checking the \"Pro Options\" in "
259
  "the \"Misc\" tab."
@@ -261,68 +262,68 @@ msgstr ""
261
  "Ви завжди можете подивитися на преміум опції, натиснувши на кнопку \"Pro "
262
  "опції\" на вкладці \"Різне\"."
263
 
264
- #: bws_functions.php:671
265
  msgid "Add shortcode"
266
  msgstr "Додати шорткод"
267
 
268
- #: bws_functions.php:671
269
  msgid "Add BestWebSoft plugins' shortcodes using this button."
270
  msgstr "Додайте шорткоди BestWebSoft плагінів за допомогою цієї кнопки."
271
 
272
- #: bws_functions.php:756
273
  msgid "Close"
274
  msgstr "Закрити"
275
 
276
- #: bws_functions.php:842
277
  msgid "Are you sure you want to restore default settings?"
278
  msgstr "Ви впевнені, що хочете скинути налаштування плагіну до стандартних?"
279
 
280
- #: bws_functions.php:845
281
  msgid "Yes, restore all settings"
282
  msgstr "Так, скинути налаштування"
283
 
284
- #: bws_functions.php:846
285
  msgid "No, go back to the settings page"
286
  msgstr "Ні, повернутись назад на сторінку налаштувань"
287
 
288
- #: bws_functions.php:888
289
  msgid "Plugin"
290
  msgstr "Плагін"
291
 
292
- #: bws_functions.php:897
293
  msgid "Shortcode settings"
294
  msgstr "Налаштування шорткоду"
295
 
296
- #: bws_functions.php:902
297
  msgid "The shortcode will be inserted"
298
  msgstr "Буде вставлено шорткод"
299
 
300
- #: bws_functions.php:945
301
  msgid "FAQ"
302
  msgstr "FAQ"
303
 
304
- #: bws_functions.php:951
305
  msgid "For more information:"
306
  msgstr "Для отримання додаткової інформації:"
307
 
308
- #: bws_functions.php:952 bws_menu.php:400 class-bws-settings.php:755
309
  msgid "Documentation"
310
  msgstr "Документація"
311
 
312
- #: bws_functions.php:953 bws_menu.php:402 class-bws-settings.php:757
313
  msgid "Video Instructions"
314
  msgstr "Відео інструкції"
315
 
316
- #: bws_functions.php:954
317
  msgid "Submit a Request"
318
  msgstr "Надіслати запит"
319
 
320
- #: bws_menu.php:101 class-bws-settings.php:841
321
  msgid "Wrong license key"
322
  msgstr "Невірний ключ ліцензії"
323
 
324
- #: bws_menu.php:122 class-bws-settings.php:868 class-bws-settings.php:939
325
- #: class-bws-settings.php:977
326
  msgid ""
327
  "Something went wrong. Please try again later. If the error appears again, "
328
  "please contact us"
@@ -330,12 +331,12 @@ msgstr ""
330
  "Щось не так, спробуйте пізніше. Якщо помилка повториться, будь ласка, "
331
  "повідомте нам"
332
 
333
- #: bws_menu.php:122 class-bws-settings.php:868 class-bws-settings.php:939
334
- #: class-bws-settings.php:977
335
  msgid "We are sorry for inconvenience."
336
  msgstr "Просимо вибачення за незручності."
337
 
338
- #: bws_menu.php:129 class-bws-settings.php:874 class-bws-settings.php:983
339
  msgid "Wrong license key."
340
  msgstr "Неправильний ліцензійний ключ."
341
 
@@ -350,7 +351,7 @@ msgstr ""
350
  msgid "Log in"
351
  msgstr "Увійти"
352
 
353
- #: bws_menu.php:133 bws_menu.php:332 deprecated.php:157
354
  msgid "Unfortunately, you have exceeded the number of available tries per day."
355
  msgstr "На жаль, ви перевищили кількість допустимих спроб."
356
 
@@ -363,7 +364,7 @@ msgstr ""
363
  "На жаль, ваша ліцензія скінчилась. Для того, щоб і надалі отримувати "
364
  "першочергову техпідтримку і оновлення, будь ласка, продовжте ліцензію на %s"
365
 
366
- #: bws_menu.php:137 class-bws-settings.php:991
367
  msgid ""
368
  "Unfortunately, the Pro licence was already installed to this domain. The Pro "
369
  "Trial license can be installed only once."
@@ -371,19 +372,19 @@ msgstr ""
371
  "На жаль, Pro ліцензія уже використовувалась на цьому домені. Тріал Pro "
372
  "версії плагіну можна використати лише один раз."
373
 
374
- #: bws_menu.php:142 class-bws-settings.php:889
375
  msgid "The license key is valid."
376
  msgstr "Ліцензійний ключ дійсний."
377
 
378
- #: bws_menu.php:144 class-bws-settings.php:893
379
  msgid "Your license will expire on"
380
  msgstr "Ваша ліцензія закінчується"
381
 
382
- #: bws_menu.php:146
383
  msgid "Congratulations! Pro Membership license is activated successfully."
384
  msgstr "Вітаємо! Pro Membership ліцензія успішно активована."
385
 
386
- #: bws_menu.php:153 class-bws-settings.php:1001
387
  msgid ""
388
  "Something went wrong. Try again later or upload the plugin manually. We are "
389
  "sorry for inconvenience."
@@ -391,214 +392,214 @@ msgstr ""
391
  "Виникли певні проблеми. Спробуйте ще раз пізніше або завантажте плагін "
392
  "вручну. Просимо вибачення за незручності."
393
 
394
- #: bws_menu.php:163
395
  msgid "Please enter your license key."
396
  msgstr "Будь ласка, введіть ваш ліцензійний ключ."
397
 
398
- #: bws_menu.php:174
399
  msgid "Not set"
400
  msgstr "Не задано"
401
 
402
- #: bws_menu.php:176
403
  msgid "On"
404
  msgstr "Увімк."
405
 
406
- #: bws_menu.php:176
407
  msgid "Off"
408
  msgstr "Вимк."
409
 
410
- #: bws_menu.php:177 bws_menu.php:178 bws_menu.php:179 bws_menu.php:180
411
- #: bws_menu.php:181 bws_menu.php:182 bws_menu.php:191
412
  msgid "N/A"
413
  msgstr "Невідомо"
414
 
415
- #: bws_menu.php:182
416
  msgid "Mb"
417
  msgstr "Мб"
418
 
419
- #: bws_menu.php:183 bws_menu.php:184 bws_menu.php:185 bws_menu.php:189
420
  msgid "Yes"
421
  msgstr "Так"
422
 
423
- #: bws_menu.php:183 bws_menu.php:184 bws_menu.php:185 bws_menu.php:189
424
  msgid "No"
425
  msgstr "Ні"
426
 
427
- #: bws_menu.php:196
428
  msgid "WordPress Environment"
429
  msgstr "Системне оточення WordPress"
430
 
431
- #: bws_menu.php:198
432
  msgid "Home URL"
433
  msgstr "Адреса домашньої сторінки"
434
 
435
- #: bws_menu.php:199
436
  msgid "Website URL"
437
  msgstr "Адреса сайту"
438
 
439
- #: bws_menu.php:200
440
  msgid "WP Version"
441
  msgstr "Версія WordPress"
442
 
443
- #: bws_menu.php:201
444
  msgid "WP Multisite"
445
  msgstr "Мультисайт"
446
 
447
- #: bws_menu.php:202
448
  msgid "WP Memory Limit"
449
  msgstr "Ліміт пам’яті WordPress"
450
 
451
- #: bws_menu.php:203
452
  msgid "Active Theme"
453
  msgstr "Активна тема"
454
 
455
- #: bws_menu.php:203 bws_menu.php:248 bws_menu.php:251
456
  #, php-format
457
  msgid "by %s"
458
  msgstr "%s"
459
 
460
- #: bws_menu.php:207
461
  msgid "Server Environment"
462
  msgstr "Системне оточення сервера"
463
 
464
- #: bws_menu.php:209
465
  msgid "Operating System"
466
  msgstr "Операційна система"
467
 
468
- #: bws_menu.php:210
469
  msgid "Server"
470
  msgstr "Тип серверу"
471
 
472
- #: bws_menu.php:211
473
  msgid "PHP Version"
474
  msgstr "Версія PHP"
475
 
476
- #: bws_menu.php:212
477
  msgid "PHP Allow URL fopen"
478
  msgstr "Дозволити PHP URL fopen"
479
 
480
- #: bws_menu.php:213
481
  msgid "PHP Memory Limit"
482
  msgstr "Ліміт пам’яті"
483
 
484
- #: bws_menu.php:214
485
  msgid "Memory Usage"
486
  msgstr "Використання пам'яті"
487
 
488
- #: bws_menu.php:215
489
  msgid "PHP Max Upload Size"
490
  msgstr "Макс. розмір файлу, що завантажується"
491
 
492
- #: bws_menu.php:216
493
  msgid "PHP Max Post Size"
494
  msgstr "Макс. розмір посту"
495
 
496
- #: bws_menu.php:217
497
  msgid "PHP Max Script Execute Time"
498
  msgstr "Макс. час виконання сценарію"
499
 
500
- #: bws_menu.php:218
501
  msgid "PHP Exif support"
502
  msgstr "Підтримка PHP Exif"
503
 
504
- #: bws_menu.php:219
505
  msgid "PHP IPTC support"
506
  msgstr "Підтримка PHP IPTC"
507
 
508
- #: bws_menu.php:220
509
  msgid "PHP XML support"
510
  msgstr "Підтримка PHP XML"
511
 
512
- #: bws_menu.php:226
513
  msgid "Database"
514
  msgstr "База даних"
515
 
516
- #: bws_menu.php:228
517
  msgid "WP DB version"
518
  msgstr "Версія бази даних WordPress"
519
 
520
- #: bws_menu.php:229
521
  msgid "MySQL version"
522
  msgstr "Версія MYSQL"
523
 
524
- #: bws_menu.php:230
525
  msgid "SQL Mode"
526
  msgstr "Режим SQL"
527
 
528
- #: bws_menu.php:234
529
  msgid "Active Plugins"
530
  msgstr "Активні плагіни"
531
 
532
- #: bws_menu.php:239
533
  msgid "Inactive Plugins"
534
  msgstr "Не активні плагіни"
535
 
536
- #: bws_menu.php:260
537
  msgid "Please enter a valid email address."
538
  msgstr "Будь ласка, введіть коректний емейл."
539
 
540
- #: bws_menu.php:262
541
  #, php-format
542
  msgid "Email with system info is sent to %s."
543
  msgstr "Емейл з системною інформацією надіслано на %s."
544
 
545
- #: bws_menu.php:266
546
  msgid "Thank you for contacting us."
547
  msgstr "Дякуємо, що звернулись до нас."
548
 
549
- #: bws_menu.php:289
550
  msgid "Sorry, email message could not be delivered."
551
  msgstr "Вибачте, ваше емейл не може бути доставлено"
552
 
553
- #: bws_menu.php:305 bws_menu.php:309 bws_menu.php:358 deprecated.php:26
554
  msgid "Plugins"
555
  msgstr "Плагіни"
556
 
557
- #: bws_menu.php:306 bws_menu.php:310 bws_menu.php:586 deprecated.php:27
558
  msgid "Themes"
559
  msgstr "Теми"
560
 
561
- #: bws_menu.php:307 bws_menu.php:311 bws_menu.php:616
562
  msgid "System status"
563
  msgstr "Системна інформація"
564
 
565
- #: bws_menu.php:315
566
  msgid "Support"
567
  msgstr "Підтримка"
568
 
569
- #: bws_menu.php:316
570
  msgid "Manage purchased licenses & subscriptions"
571
  msgstr "Управління придбаними ліцензіями і підписками"
572
 
573
- #: bws_menu.php:324
574
  #, php-format
575
  msgid "Get Access to %s+ Premium Plugins"
576
  msgstr "Отримати доступ до %s+ преміум плагинам"
577
 
578
- #: bws_menu.php:326
579
  msgid "Subscribe to Pro Membership"
580
  msgstr "Підписатися на Pro Membership"
581
 
582
- #: bws_menu.php:334 bws_menu.php:345 class-bws-settings.php:804
583
  #: deprecated.php:123
584
  msgid "Check license key"
585
  msgstr "Перевірте ліцензійний ключ"
586
 
587
- #: bws_menu.php:337
588
  msgid "Enter your license key"
589
  msgstr "Ваш ліцензійний ключ"
590
 
591
- #: bws_menu.php:343 bws_menu.php:538 bws_menu.php:547
592
- #: class-bws-settings.php:783 deprecated.php:155 deprecated.php:163
593
  #: deprecated.php:240 deprecated.php:249
594
  msgid "Activate"
595
  msgstr "Активувати"
596
 
597
- #: bws_menu.php:359
598
  msgid "Upload Plugin"
599
  msgstr "Завантажити плагін"
600
 
601
- #: bws_menu.php:363
602
  #, php-format
603
  msgid ""
604
  "The plugin generated %d characters of <strong>unexpected output</strong> "
@@ -611,7 +612,7 @@ msgstr ""
611
  "надіслані&#8221;, проблеми з каналами чи інші неполадки, спробуйте вимкнути "
612
  "чи видалити цей плагін."
613
 
614
- #: bws_menu.php:365
615
  msgid ""
616
  "Plugin could not be activated because it triggered a <strong>fatal error</"
617
  "strong>."
@@ -619,52 +620,52 @@ msgstr ""
619
  "Плагін не вдалося активувати, бо він спричинив <strong>критичну помилку</"
620
  "strong>."
621
 
622
- #: bws_menu.php:368
623
  msgid "Plugin <strong>activated</strong>."
624
  msgstr "Плагін <strong>активовано</strong>."
625
 
626
- #: bws_menu.php:382
627
  msgid "Download Pro Plugin"
628
  msgstr "Завантажити Pro плагін"
629
 
630
- #: bws_menu.php:384 class-bws-settings.php:738
631
  msgid "Your Pro plugin is ready"
632
  msgstr "Ваш Pro плагін готовий"
633
 
634
- #: bws_menu.php:386 class-bws-settings.php:740
635
  msgid "Your plugin has been zipped, and now is ready to download."
636
  msgstr "Ваш плагін був спакованний і тепер готовий до завантаження."
637
 
638
- #: bws_menu.php:389 class-bws-settings.php:743
639
  msgid "Download Now"
640
  msgstr "Завантажити Зараз"
641
 
642
- #: bws_menu.php:393 class-bws-settings.php:747
643
  msgid "Need help installing the plugin?"
644
  msgstr "Потрібна допомога в установці плагіна?"
645
 
646
- #: bws_menu.php:395 class-bws-settings.php:749
647
  msgid "How to install WordPress plugin from your admin Dashboard (ZIP archive)"
648
  msgstr ""
649
  "Як встановити WordPress плагін з вашої панелі адміністратора (ZIP архів)"
650
 
651
- #: bws_menu.php:398 class-bws-settings.php:753
652
  msgid "Get Started"
653
  msgstr "Розпочнемо"
654
 
655
- #: bws_menu.php:404 class-bws-settings.php:759
656
  msgid "Knowledge Base"
657
  msgstr "База знань"
658
 
659
- #: bws_menu.php:407
660
  msgid "Licenses & Domains"
661
  msgstr "Ліцензії та домени"
662
 
663
- #: bws_menu.php:410
664
  msgid "Client Area"
665
  msgstr "Client Area"
666
 
667
- #: bws_menu.php:409
668
  #, php-format
669
  msgid ""
670
  "Manage your license(-s) and change domain names using the %s at BestWebSoft."
@@ -672,147 +673,147 @@ msgstr ""
672
  "Керуйте своїми ліцензіями та змінюйте доменні імена, використовуючи %s на "
673
  "BestWebSoft."
674
 
675
- #: bws_menu.php:412
676
  msgid "Return to BestWebSoft Panel"
677
  msgstr "Назад до BestWebSoft Panel"
678
 
679
- #: bws_menu.php:419 bws_menu.php:439 bws_menu.php:568
680
  msgid "All"
681
  msgstr "Всі"
682
 
683
- #: bws_menu.php:422 bws_menu.php:605
684
  msgid "Installed"
685
  msgstr "Встановлені"
686
 
687
- #: bws_menu.php:425
688
  msgid "Not Installed"
689
  msgstr "Не встановлені"
690
 
691
- #: bws_menu.php:432
692
  msgid "Filter results"
693
  msgstr "Фільтр результатів"
694
 
695
- #: bws_menu.php:435 bws_menu.php:564
696
  msgid "Category"
697
  msgstr "Категорія"
698
 
699
- #: bws_menu.php:499
700
  msgid "Not installed"
701
  msgstr "Не встановлен"
702
 
703
- #: bws_menu.php:503
704
  msgid "Renew to get updates"
705
  msgstr "Продовжити для поновлення"
706
 
707
- #: bws_menu.php:506
708
  #, php-format
709
  msgid "Update to v %s"
710
  msgstr "Оновити до версії %s"
711
 
712
- #: bws_menu.php:518 bws_menu.php:541
713
  msgid "Get Pro"
714
  msgstr "Отримати Pro"
715
 
716
- #: bws_menu.php:524 class-bws-settings.php:174 class-bws-settings.php:1064
717
  msgid "Upgrade to Pro"
718
  msgstr "Оновити до Pro"
719
 
720
- #: bws_menu.php:538 bws_menu.php:547
721
  msgid "Activate this plugin"
722
  msgstr "Активувати плагін"
723
 
724
- #: bws_menu.php:550
725
  msgid "Install this plugin"
726
  msgstr "Встановити плагін"
727
 
728
- #: bws_menu.php:550
729
  msgid "Install Now"
730
  msgstr "Встановити"
731
 
732
- #: bws_menu.php:559
733
  msgid "Nothing found. Try another criteria."
734
  msgstr "Нічого не знайдено. Спробуйте інші критерії."
735
 
736
- #: bws_menu.php:596
737
  #, php-format
738
  msgid "By %s"
739
  msgstr "За %s"
740
 
741
- #: bws_menu.php:603
742
  msgid "Already Installed"
743
  msgstr "Уже встановлено %s"
744
 
745
- #: bws_menu.php:613
746
  msgid "Browse More WordPress Themes"
747
  msgstr "Огляд WordPress тем"
748
 
749
- #: bws_menu.php:622
750
  msgid "Send to support"
751
  msgstr "Відправити службі тех. підтримки"
752
 
753
- #: bws_menu.php:629
754
  msgid "Send to custom email &#187;"
755
  msgstr "Відправити на електронну адресу &#187;"
756
 
757
- #: class-bws-settings.php:153
758
  msgid "Information"
759
  msgstr "Інформація"
760
 
761
- #: class-bws-settings.php:161
762
  msgid "Inactive"
763
  msgstr "Неактивна"
764
 
765
- #: class-bws-settings.php:169
766
  msgid "Expired"
767
  msgstr "Закінчилась"
768
 
769
- #: class-bws-settings.php:172
770
  #, php-format
771
  msgid "%s day(-s) left"
772
  msgstr "%s днів залишилося"
773
 
774
- #: class-bws-settings.php:178
775
  #, php-format
776
  msgid "Expired on %s"
777
  msgstr "Витікає %s"
778
 
779
- #: class-bws-settings.php:178
780
  msgid "Renew Now"
781
  msgstr "Відновити зараз"
782
 
783
- #: class-bws-settings.php:180
784
  msgid "Active"
785
  msgstr "Активна"
786
 
787
- #: class-bws-settings.php:185
788
  msgid "License"
789
  msgstr "Ліцензія"
790
 
791
- #: class-bws-settings.php:188
792
  msgid "Status"
793
  msgstr "Статус"
794
 
795
- #: class-bws-settings.php:192
796
  msgid "Version"
797
  msgstr "Версія"
798
 
799
- #: class-bws-settings.php:302
800
  msgid "All plugin settings were restored."
801
  msgstr "Усі налаштування плагіну відновлені."
802
 
803
- #: class-bws-settings.php:442
804
  msgid "Custom Code"
805
  msgstr "Користувацький код"
806
 
807
- #: class-bws-settings.php:446
808
  msgid "You do not have sufficient permissions to edit plugins for this site."
809
  msgstr "У вас недостатньо повноважень для редагування плагінів цього сайту."
810
 
811
- #: class-bws-settings.php:451
812
  msgid "These styles will be added to the header on all pages of your site."
813
  msgstr "Ці стилі будуть додані в заголовок на всіх сторінках вашого сайту."
814
 
815
- #: class-bws-settings.php:454
816
  #, php-format
817
  msgid ""
818
  "This PHP code will be hooked to the %s action and will be printed on front "
@@ -820,11 +821,11 @@ msgid ""
820
  msgstr ""
821
  "Цей PHP код буде прикріплений до %s action і буде додано лише у фронтенді."
822
 
823
- #: class-bws-settings.php:457
824
  msgid "These code will be added to the header on all pages of your site."
825
  msgstr "Цей код буде додано в заголовок на всіх сторінках вашого сайту."
826
 
827
- #: class-bws-settings.php:465
828
  #, php-format
829
  msgid ""
830
  "You need to make this files writable before you can save your changes. See "
@@ -833,25 +834,25 @@ msgstr ""
833
  "Вам потрібно зробити цей файл доступним для запису, перед тим як ви зможете "
834
  "зберегти свої зміни. Перегляньте %sКодекс%s для додаткової інформації."
835
 
836
- #: class-bws-settings.php:475
837
  msgid "Browsing"
838
  msgstr "Огляд"
839
 
840
- #: class-bws-settings.php:480
841
  #, php-format
842
  msgid "Activate custom %s code."
843
  msgstr "Активувати користувацький %s код."
844
 
845
- #: class-bws-settings.php:488
846
  #, php-format
847
  msgid "Learn more about %s"
848
  msgstr "Дізнатись більше про %s"
849
 
850
- #: class-bws-settings.php:550
851
  msgid "Miscellaneous Settings"
852
  msgstr "Інші налаштування"
853
 
854
- #: class-bws-settings.php:559 class-bws-settings.php:614
855
  #, php-format
856
  msgid ""
857
  "It is prohibited to change %s settings on this site in the %s network "
@@ -860,7 +861,7 @@ msgstr ""
860
  "Мережевими налаштуваннями %s забороняється змінювати налаштування %s на "
861
  "цьому сайті."
862
 
863
- #: class-bws-settings.php:562 class-bws-settings.php:617
864
  #, php-format
865
  msgid ""
866
  "It is prohibited to view %s settings on this site in the %s network settings."
@@ -868,53 +869,53 @@ msgstr ""
868
  "Мережевими налаштуваннями %s забороняється дивитися налаштування %s на цьому "
869
  "сайті."
870
 
871
- #: class-bws-settings.php:571
872
  msgid "Pro Options"
873
  msgstr "Pro опції"
874
 
875
- #: class-bws-settings.php:575
876
  msgid "Enable to display plugin Pro options."
877
  msgstr "Увімкніть для відображення Pro опцій плагіна."
878
 
879
- #: class-bws-settings.php:581
880
  msgid "Track Usage"
881
  msgstr "Збирати статистику"
882
 
883
- #: class-bws-settings.php:585
884
  msgid ""
885
  "Enable to allow tracking plugin usage anonymously in order to make it better."
886
  msgstr ""
887
  "Включити, щоб дозволити анонімно відстежувати використання і зробити плагін "
888
  "краще."
889
 
890
- #: class-bws-settings.php:590
891
  msgid "Default Settings"
892
  msgstr "Налаштування за замовчуванням"
893
 
894
- #: class-bws-settings.php:592
895
  msgid "Restore Settings"
896
  msgstr "Відновлення налаштувань"
897
 
898
- #: class-bws-settings.php:593
899
  msgid "This will restore plugin settings to defaults."
900
  msgstr "Відновити всі налаштування плагіна до налаштувань за замовчуванням."
901
 
902
- #: class-bws-settings.php:605
903
  msgid "Import / Export"
904
  msgstr "Імпорт / Експорт"
905
 
906
- #: class-bws-settings.php:723
907
  msgid "License Key"
908
  msgstr "Ключ ліцензії"
909
 
910
- #: class-bws-settings.php:785
911
  #, php-format
912
  msgid "Enter your license key to activate %s and get premium plugin features."
913
  msgstr ""
914
  "Введіть ліцензійний ключ для активації %s і отримання додаткових можливостей "
915
  "плагіна."
916
 
917
- #: class-bws-settings.php:788 class-bws-settings.php:987 deprecated.php:243
918
  msgid ""
919
  "Unfortunately, you have exceeded the number of available tries per day. "
920
  "Please, upload the plugin manually."
@@ -922,12 +923,12 @@ msgstr ""
922
  "На жаль, ви перевищили кількість доступних спроб на день. Будь ласка, "
923
  "завантажте плагін вручну"
924
 
925
- #: class-bws-settings.php:791 deprecated.php:234
926
  #, php-format
927
  msgid "Start Your Free %s-Day Trial Now"
928
  msgstr "Спробуйте %s-денну Trial версію безкоштовно"
929
 
930
- #: class-bws-settings.php:806
931
  msgid ""
932
  "If necessary, you can check if the license key is correct or reenter it in "
933
  "the field below."
@@ -935,15 +936,15 @@ msgstr ""
935
  "При необхідності ви можете перевірити правильність вашого ліцензійного ключа "
936
  "або знову ввести його у полі, що знаходиться вище."
937
 
938
- #: class-bws-settings.php:815
939
  msgid "Manage License Settings"
940
  msgstr "Управління налаштуваннями ліцензій"
941
 
942
- #: class-bws-settings.php:817
943
  msgid "Login to Client Area"
944
  msgstr "Зайти в Client Area"
945
 
946
- #: class-bws-settings.php:819
947
  msgid ""
948
  "Manage active licenses, download BWS products, and view your payment history "
949
  "using BestWebSoft Client Area."
@@ -951,11 +952,11 @@ msgstr ""
951
  "Керуй активними ліцензіями, завантажуй BWS продукти, а також переглядай "
952
  "історію платежів за допомогою BestWebSoft Client Area."
953
 
954
- #: class-bws-settings.php:876 class-bws-settings.php:985
955
  msgid "This license key is bound to another site."
956
  msgstr "Цей ліцензійний ключ прив'язано до іншого сайту."
957
 
958
- #: class-bws-settings.php:878
959
  msgid ""
960
  "This license key is valid, but Your license has expired. If you want to "
961
  "update our plugin in future, you should extend the license."
@@ -963,11 +964,11 @@ msgstr ""
963
  "Даний ліцензійний ключ дійсний, але строк вашої ліцензії витік. Якщо ви "
964
  "хочете оновлювати наш плагін у майбутньому, вам слід подовжити ліцензію."
965
 
966
- #: class-bws-settings.php:880
967
  msgid "Unfortunately, you have exceeded the number of available tries."
968
  msgstr "На жаль, ви перевищили кількість допустимих спроб."
969
 
970
- #: class-bws-settings.php:882
971
  msgid ""
972
  "Unfortunately, the Pro Trial licence was already installed to this domain. "
973
  "The Pro Trial license can be installed only once."
@@ -975,17 +976,17 @@ msgstr ""
975
  "На жаль, Trial Pro версія плагіну уже встановлювалась на цей домен. Trial "
976
  "Pro версію можна встановлювати лише один раз."
977
 
978
- #: class-bws-settings.php:887
979
  msgid "The Pro Trial license key is valid."
980
  msgstr "Ключ тріал Pro версії вірний."
981
 
982
- #: class-bws-settings.php:897 deprecated.php:142
983
  #, php-format
984
  msgid ""
985
  "In order to continue using the plugin it is necessary to buy a %s license."
986
  msgstr "Щоб продовжити користуватись плагіном, потрібно придбати %s ліцензію."
987
 
988
- #: class-bws-settings.php:989
989
  #, php-format
990
  msgid ""
991
  "Unfortunately, Your license has expired. To continue getting top-priority "
@@ -994,26 +995,59 @@ msgstr ""
994
  "На жаль, ваша ліцензія скінчилась. Для того, щоб і надалі отримувати "
995
  "першочергову тех.підтримку і оновлення, будь ласка, продовжте ліцензію у %s."
996
 
997
- #: class-bws-settings.php:1038
998
  msgid "Please, enter Your license key"
999
  msgstr "Будь ласка, впишіть ваш ліцензійний ключ"
1000
 
1001
- #: class-bws-settings.php:1051
1002
  msgid "Need Help?"
1003
  msgstr "Потрібна допомога?"
1004
 
1005
- #: class-bws-settings.php:1053
1006
  msgid "Read the Instruction"
1007
  msgstr "Читати інструкцію"
1008
 
1009
- #: class-bws-settings.php:1057
1010
  msgid "Watch the Video"
1011
  msgstr "Дивитися відео"
1012
 
1013
- #: class-bws-settings.php:1068
1014
  msgid "Start Your Free Trial"
1015
  msgstr "Використовувати безкоштовну Trial версію"
1016
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1017
  #: deactivation-form.php:22
1018
  msgid "Need help? We are ready to answer your questions."
1019
  msgstr "Потрібна допомога? Ми готові відповісти на ваші питання."
@@ -1071,26 +1105,18 @@ msgid "If you have a moment, please let us know why you are deactivating"
1071
  msgstr ""
1072
  "Якщо у вас є час, будь ласка, повідомте нам, чому ви деактивуете плагін"
1073
 
1074
- #: deactivation-form.php:120
1075
- msgid "Send website data and allow to contact me back"
1076
- msgstr "Надіслати дані сайту і дозволити зв'язатися зі мною"
1077
-
1078
- #: deactivation-form.php:225
1079
- msgid "Processing"
1080
- msgstr "Обробка"
1081
-
1082
- #: deactivation-form.php:254
1083
  msgid "Submit and Deactivate"
1084
  msgstr "Надіслати і деактивувати"
1085
 
1086
- #: deactivation-form.php:269
1087
- msgid "Please tell us the reason so we can improve it."
1088
- msgstr "Будь ласка, повідомте нам причину, щоб ми могли покращити плагін."
1089
-
1090
- #: deactivation-form.php:334
1091
  msgid "Skip and Deactivate"
1092
  msgstr "Пропустити і деактивувати"
1093
 
 
 
 
 
1094
  #: deprecated.php:28
1095
  msgid "System Status"
1096
  msgstr "Системна інформація"
@@ -1165,51 +1191,55 @@ msgstr "Введіть ліцензійний ключ для установки
1165
  msgid "version of the plugin."
1166
  msgstr "версія плагіна."
1167
 
1168
- #: product_list.php:7
1169
  msgid "Admin Tools"
1170
  msgstr "Інструменти"
1171
 
1172
- #: product_list.php:8
1173
  msgid "Content"
1174
  msgstr "Контент"
1175
 
1176
- #: product_list.php:9
1177
  msgid "eCommerce"
1178
  msgstr "Комерція"
1179
 
1180
- #: product_list.php:10
1181
  msgid "Marketing"
1182
  msgstr "Маркетинг"
1183
 
1184
- #: product_list.php:11
1185
  msgid "Navigation"
1186
  msgstr "Навігація"
1187
 
1188
- #: product_list.php:12
1189
  msgid "Recommended"
1190
  msgstr "Рекомендовані "
1191
 
1192
- #: product_list.php:13
1193
  msgid "Security"
1194
  msgstr "Безпека"
1195
 
1196
- #: product_list.php:14
1197
  msgid "SEO"
1198
  msgstr "Пошукова оптимізація"
1199
 
1200
- #: product_list.php:15
1201
  msgid "SMM"
1202
  msgstr "СММ"
1203
 
1204
- #: product_list.php:22
 
 
 
 
1205
  msgid "Best secure captcha plugin to protect your WordPress forms."
1206
  msgstr "Кращий плагін капчі, який захистить форми вашого сайту WordPress."
1207
 
1208
- #: product_list.php:32
1209
  msgid "Create your own rental website for car renting and booking."
1210
  msgstr "Створіть свій власний сайт прокату і резервування автомобілів."
1211
 
1212
- #: product_list.php:44
1213
  msgid ""
1214
  "Add columns with custom content to WordPress website pages, posts, widgets, "
1215
  "etc."
@@ -1217,7 +1247,7 @@ msgstr ""
1217
  "Додайте стовпці з користувачим вмістом на сторінки веб-сайту WordPress, "
1218
  "повідомлення, віджети тощо."
1219
 
1220
- #: product_list.php:51
1221
  msgid ""
1222
  "Allow customers to reach you using secure contact form plugin any website "
1223
  "must have."
@@ -1225,35 +1255,35 @@ msgstr ""
1225
  "Надайте можливість клієнтам здійснювати зв'язок з вами через безпечний "
1226
  "плагін контактної форми, який повинен мати будь-який сайт."
1227
 
1228
- #: product_list.php:61
1229
  msgid "Add unlimited number of contact forms to WordPress website."
1230
  msgstr "Додавайте необмежену кількість контактних форм на ваш сайт WordPress."
1231
 
1232
- #: product_list.php:71
1233
  msgid "Save and manage Contact Form messages. Never lose important data."
1234
  msgstr ""
1235
  "Зберігайте і керуйте повідомленнями плагіну Contact Form. Ніколи не "
1236
  "втрачайте важливі дані."
1237
 
1238
- #: product_list.php:81
1239
  msgid "Add unlimited custom pages to WordPress admin dashboard."
1240
  msgstr ""
1241
  "Додавайте необмежену кількість користувацьких сторінок у панелі "
1242
  "адміністратора WordPress."
1243
 
1244
- #: product_list.php:91
1245
  msgid ""
1246
  "Add custom post types and taxonomies to WordPress website search results."
1247
  msgstr ""
1248
  "Додавайте користувацькі типи постів і таксономії у результати пошуку на "
1249
  "вашому сайті WordPress."
1250
 
1251
- #: product_list.php:101
1252
  msgid "Add PayPal and 2CO donate buttons to receive charity payments."
1253
  msgstr ""
1254
  "Додавайте кнопки PayPal і 2CO, щоб отримувати пожертви та благодійні внески."
1255
 
1256
- #: product_list.php:108
1257
  msgid ""
1258
  "Get latest error log messages to diagnose website problems. Define and fix "
1259
  "issues faster."
@@ -1261,7 +1291,7 @@ msgstr ""
1261
  "Отримуйте останні повідомлення з журналу помилок для діагностики проблем "
1262
  "сайту. Швидше виявляйте і усувайте проблеми."
1263
 
1264
- #: product_list.php:115
1265
  msgid ""
1266
  "Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and "
1267
  "widgets."
@@ -1269,7 +1299,7 @@ msgstr ""
1269
  "Додавайте кнопки Facebook \"Підписатися\", \"Подобається\" та \"Поділитися\" "
1270
  "у пости, сторінки і віджети сайту WordPress."
1271
 
1272
- #: product_list.php:125
1273
  msgid ""
1274
  "Add beautiful galleries, albums & images to your WordPress website in a few "
1275
  "clicks."
@@ -1277,7 +1307,7 @@ msgstr ""
1277
  "Додавайте мальовничі галереї, альбоми, зображення та категорії галереї на "
1278
  "ваш сайт WordPress всього в декілька кліків."
1279
 
1280
- #: product_list.php:135
1281
  msgid ""
1282
  "Stronger security solution which protects your WordPress website from hacks "
1283
  "and unauthorized login attempts."
@@ -1285,7 +1315,7 @@ msgstr ""
1285
  "Найпотужніше рішення безпеки, яке захищає ваш сайт WordPress від зломів та "
1286
  "неавторизованих спроб входу в систему."
1287
 
1288
- #: product_list.php:145
1289
  msgid ""
1290
  "Add Adsense ads to WordPress website pages, posts, custom posts, search "
1291
  "results, categories, tags, and widgets."
@@ -1293,23 +1323,23 @@ msgstr ""
1293
  "Додавайте рекламу сервісу Adsense на сторінки, пости, користувацькі пости, "
1294
  "результати пошуку, категорії, теги і віджети сайту WordPress."
1295
 
1296
- #: product_list.php:155
1297
  msgid "Add Google Analytics code to WordPress website and track basic stats."
1298
  msgstr ""
1299
  "Додавайте код Google Analytics на ваш сайт WordPress та відстежуйте базову "
1300
  "статистику сайту."
1301
 
1302
- #: product_list.php:165
1303
  msgid "Protect WordPress website forms from spam entries with reCaptcha."
1304
  msgstr ""
1305
  "Захищайте форми вашого сайту WordPress від спаму за допомогою reCaptcha."
1306
 
1307
- #: product_list.php:175
1308
  msgid "Add customized Google maps to WordPress posts, pages and widgets."
1309
  msgstr ""
1310
  "Додавайте користувацькі карти Google у пости, сторінки та віджети WordPress."
1311
 
1312
- #: product_list.php:185
1313
  msgid ""
1314
  "Generate and add XML sitemap to WordPress website. Help search engines index "
1315
  "your blog."
@@ -1317,7 +1347,7 @@ msgstr ""
1317
  "Створюйте та додавайте файли XML sitemap на ваш сайт WordPress. Допоможіть "
1318
  "пошуковим системам проіндексувати ваш блог."
1319
 
1320
- #: product_list.php:195
1321
  msgid ""
1322
  "Replace external WordPress website links with Google shortlinks and track "
1323
  "click stats."
@@ -1325,7 +1355,7 @@ msgstr ""
1325
  "Замініть зовнішні посилання сайту WordPress на короткі посилання Google і "
1326
  "відстежуйте статистику кліків."
1327
 
1328
- #: product_list.php:202
1329
  msgid ""
1330
  "Protect WordPress website – allow and deny access for certain IP addresses, "
1331
  "hostnames, etc."
@@ -1333,7 +1363,7 @@ msgstr ""
1333
  "Захистіть свій сайт WordPress - надавайте та забороняйте доступ з певних IP-"
1334
  "адрес, імен хостів і т.д."
1335
 
1336
- #: product_list.php:212
1337
  msgid ""
1338
  "Create your personal job board and listing WordPress website. Search jobs, "
1339
  "submit CV/resumes, choose candidates."
@@ -1342,7 +1372,7 @@ msgstr ""
1342
  "WordPress. Здійснюйте пошук вакансій, подачу резюме/CV кандидата, вибір "
1343
  "кандидатів."
1344
 
1345
- #: product_list.php:219
1346
  msgid ""
1347
  "Protect WordPress website against brute force attacks. Limit rate of login "
1348
  "attempts."
@@ -1350,7 +1380,7 @@ msgstr ""
1350
  "Захищайте свій сайт WordPress від брутфорс-атак. Обмежуйте кількість спроб "
1351
  "введення логіна."
1352
 
1353
- #: product_list.php:229
1354
  msgid ""
1355
  "Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. "
1356
  "5 plugins included – profile, insider, etc."
@@ -1358,7 +1388,7 @@ msgstr ""
1358
  "Додавайте кнопки LinkedIn \"Поділитися\" та \"Відстежувати\" до постів, "
1359
  "сторінок і віджетів WordPress. 5 плагінів включено - Профіль, Інсайдер і т.д."
1360
 
1361
- #: product_list.php:239
1362
  msgid ""
1363
  "Translate WordPress website content to other languages manually. Create "
1364
  "multilingual pages, posts, widgets, menus, etc."
@@ -1366,7 +1396,7 @@ msgstr ""
1366
  "Перекладайте вміст сайту WordPress іншими мовами вручну. Створюйте "
1367
  "багатомовні сторінки, пости, віджети, меню і т.д."
1368
 
1369
- #: product_list.php:249
1370
  msgid ""
1371
  "Add customizable pagination to WordPress website. Split long content to "
1372
  "multiple pages for better navigation."
@@ -1374,7 +1404,7 @@ msgstr ""
1374
  "Додавайте пагінацію з можливістю налаштування на ваш сайт WordPress. "
1375
  "Розбивайте об'ємний контент на декілька сторінок для кращої навігації."
1376
 
1377
- #: product_list.php:259
1378
  msgid ""
1379
  "Generate PDF files and print WordPress posts/pages. Customize document "
1380
  "header/footer styles and appearance."
@@ -1382,7 +1412,7 @@ msgstr ""
1382
  "Створюйте PDF-файли і друкуйте пости/сторінки сайту WordPress. Налаштовуйте "
1383
  "стилі хедера/футера документа і його зовнішній вигляд."
1384
 
1385
- #: product_list.php:269
1386
  msgid ""
1387
  "Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, "
1388
  "Profile) to WordPress posts, pages and widgets."
@@ -1390,7 +1420,7 @@ msgstr ""
1390
  "Додавайте кнопки Pinterest \"Підписатися\", \"Зберегти\" і віджети профілю "
1391
  "(Пін, Дошка, Профіль) до постів, сторінок і віджетів WordPress."
1392
 
1393
- #: product_list.php:279
1394
  msgid ""
1395
  "Create your personal portfolio WordPress website. Manage and showcase past "
1396
  "projects to get more clients."
@@ -1398,13 +1428,13 @@ msgstr ""
1398
  "Створюйте і додавайте портфоліо на свій сайт WordPress. Керуйте і "
1399
  "демонструйте минулі проекти, щоб залучити більше клієнтів."
1400
 
1401
- #: product_list.php:289
1402
  msgid "Export WordPress posts to CSV file format easily. Configure data order."
1403
  msgstr ""
1404
  "З легкістю експортуйте пости WordPress в файли формату CSV. Налаштуйте "
1405
  "порядок відображення даних."
1406
 
1407
- #: product_list.php:299
1408
  msgid ""
1409
  "Add extra fields to default WordPress user profile. The easiest way to "
1410
  "create and manage additional custom values."
@@ -1412,7 +1442,7 @@ msgstr ""
1412
  "Додавайте користувацькі поля у стандартний профіль WordPress. Найпростіший "
1413
  "спосіб створення і управління додатковими полями."
1414
 
1415
- #: product_list.php:309
1416
  msgid ""
1417
  "Add and display HTML advertisement banner on WordPress website. Customize "
1418
  "bar styles and appearance."
@@ -1420,7 +1450,7 @@ msgstr ""
1420
  "Додавайте відображення банерної HTML реклами на сайті WordPress. Налаштуйте "
1421
  "стилі і зовнішній вигляд банеру."
1422
 
1423
- #: product_list.php:319
1424
  msgid ""
1425
  "Add customizable quotes and tips blocks to WordPress posts, pages and "
1426
  "widgets."
@@ -1428,7 +1458,7 @@ msgstr ""
1428
  "Додавайте редаговані цитати та підказки до постів, сторінок і віджетів "
1429
  "WordPress."
1430
 
1431
- #: product_list.php:326
1432
  msgid ""
1433
  "Add rating plugin to your WordPress website to receive feedback from your "
1434
  "customers."
@@ -1436,7 +1466,7 @@ msgstr ""
1436
  "Додавайте систему оцінювання і рейтингу на ваш сайт WordPress і отримуйте "
1437
  "відгуки від ваших клієнтів."
1438
 
1439
- #: product_list.php:336
1440
  msgid ""
1441
  "Create your personal real estate WordPress website. Sell, rent and buy "
1442
  "properties. Add, search and browse listings easily."
@@ -1445,7 +1475,7 @@ msgstr ""
1445
  "Продавайте, орендуйте і купуйте нерухомість. Легко додавайте, знаходьте і "
1446
  "переглядайте лістинги."
1447
 
1448
- #: product_list.php:346
1449
  msgid ""
1450
  "Add related, featured, latest, and popular posts to your WordPress website. "
1451
  "Connect your blog readers with a relevant content."
@@ -1453,7 +1483,7 @@ msgstr ""
1453
  "Додавайте схожі, обрані, останні та популярні пости на ваш сайт WordPress. "
1454
  "Надавайте своїм читачам контент схожої тематики."
1455
 
1456
- #: product_list.php:353
1457
  msgid ""
1458
  "Send bulk email messages to WordPress users. Custom templates, advanced "
1459
  "settings and detailed reports."
@@ -1461,7 +1491,7 @@ msgstr ""
1461
  "Здійснюйте масову розсилку листів користувачам WordPress. Користувацькі "
1462
  "шаблони, додаткові налаштування і детальні звіти."
1463
 
1464
- #: product_list.php:363
1465
  msgid ""
1466
  "The best responsive slider plugin for your WordPress website. Create "
1467
  "beautifully animated slides just in a few clicks."
@@ -1469,7 +1499,7 @@ msgstr ""
1469
  "Найкращий адаптивний слайдер для вашого сайту WordPress. Створюйте красиво "
1470
  "анімовані слайди всього в декілька кліків."
1471
 
1472
- #: product_list.php:370
1473
  msgid ""
1474
  "Configure SMTP server to receive email messages from WordPress to Gmail, "
1475
  "Yahoo, Hotmail and other services."
@@ -1477,7 +1507,7 @@ msgstr ""
1477
  "Налаштовуйте SMTP-сервер, щоб отримувати електронні повідомлення з сайту "
1478
  "WordPress на такі поштові служби, як Gmail, Yahoo, Hotmail і багато інших."
1479
 
1480
- #: product_list.php:377
1481
  msgid ""
1482
  "Add social media buttons and widgets to WordPress posts, pages and widgets. "
1483
  "FB, Twitter, Pinterest, LinkedIn."
@@ -1485,7 +1515,7 @@ msgstr ""
1485
  "Додавайте кнопки і віджети соціальних мереж до постів, сторінок і віджетів "
1486
  "WordPress. FB, Twitter, Pinterest, LinkedIn."
1487
 
1488
- #: product_list.php:387
1489
  msgid ""
1490
  "Add social media login, registration, and commenting to your WordPress "
1491
  "website."
@@ -1493,7 +1523,7 @@ msgstr ""
1493
  "Додавайте на свій сайт WordPress можливість входу, реєстрації та "
1494
  "коментування з використанням існуючих акаунтів соціальних мереж."
1495
 
1496
- #: product_list.php:394
1497
  msgid ""
1498
  "Add email newsletter sign up form to WordPress posts, pages and widgets. "
1499
  "Collect data and subscribe your users."
@@ -1501,7 +1531,7 @@ msgstr ""
1501
  "Додавайте форму підписки на розсилку новин у пости, сторінки і віджети "
1502
  "WordPress. Збирайте дані і здійснюйте підписку користувачів."
1503
 
1504
- #: product_list.php:404
1505
  msgid ""
1506
  "Add testimonials and feedbacks from your customers to WordPress website "
1507
  "posts, pages, and widgets."
@@ -1509,7 +1539,7 @@ msgstr ""
1509
  "Додавайте рекомендації та відгуки ваших клієнтів в пости, сторінки і віджети "
1510
  "сайту WordPress."
1511
 
1512
- #: product_list.php:411
1513
  msgid ""
1514
  "Best timesheet plugin for WordPress. Track employee time, streamline "
1515
  "attendance and generate reports."
@@ -1517,7 +1547,7 @@ msgstr ""
1517
  "Кращий плагін обліку робочого часу на сайті WordPress. Відстежуйте час "
1518
  "роботи співробітників, оптимізуйте графік роботи в офісі і створюйте звіти."
1519
 
1520
- #: product_list.php:421
1521
  msgid ""
1522
  "Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts "
1523
  "and pages."
@@ -1525,7 +1555,7 @@ msgstr ""
1525
  "Додавайте кнопки Твіттера \"Читати\", \"Твітнути\", \"Хештеґ\" і \"Згадати\" "
1526
  "до постів і сторінок WordPress."
1527
 
1528
- #: product_list.php:431
1529
  msgid ""
1530
  "Automatically check and update WordPress website core with all installed "
1531
  "plugins and themes to the latest versions."
@@ -1533,7 +1563,7 @@ msgstr ""
1533
  "Виконуйте автоматичну перевірку і оновлення ядра WordPress до останніх "
1534
  "версій з усіма встановленими плагінами та темами."
1535
 
1536
- #: product_list.php:441
1537
  msgid ""
1538
  "Powerful user role management plugin for WordPress website. Create, edit, "
1539
  "copy, and delete user roles."
@@ -1541,7 +1571,7 @@ msgstr ""
1541
  "Ефективний плагін управління ролями користувачів для сайту WordPress. "
1542
  "Створюйте, редагуйте, копіюйте і видаляйте ролі користувачів."
1543
 
1544
- #: product_list.php:451
1545
  msgid ""
1546
  "Display live count of online visitors who are currently browsing your "
1547
  "WordPress website."
@@ -1549,7 +1579,7 @@ msgstr ""
1549
  "Ведіть підрахунок кількості відвідувачів, які в даний час переглядають ваш "
1550
  "сайт WordPress."
1551
 
1552
- #: product_list.php:461
1553
  msgid ""
1554
  "Backup and export Zendesk Help Center content automatically to your "
1555
  "WordPress website database."
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2021-02-15 10:56+0200\n"
6
+ "PO-Revision-Date: 2021-02-15 10:56+0200\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"
13
+ "X-Poedit-KeywordsList: __;_e;esc_attr_e;sprintf;printf;esc_html__;"
14
+ "esc_html_e\n"
15
  "X-Poedit-Basepath: ..\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
+ "X-Generator: Poedit 2.4.2\n"
18
  "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
19
  "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
20
  "X-Poedit-SearchPath-0: .\n"
25
  msgid "%s/%s"
26
  msgstr ""
27
 
28
+ #: bws_functions.php:73 bws_functions.php:239
29
  msgid "requires"
30
  msgstr "потребує"
31
 
69
  msgid "Need help?"
70
  msgstr "Потрібна допомога?"
71
 
72
+ #: bws_functions.php:104 bws_functions.php:949 class-bws-settings.php:1082
73
  msgid "Visit Help Center"
74
  msgstr "Перейти до Help Center"
75
 
77
  msgid "Want to support the plugin?"
78
  msgstr "Хочете підтримати плагін?"
79
 
80
+ #: bws_functions.php:108 bws_menu.php:529
81
  msgid "Donate"
82
  msgstr "Пожертвувати"
83
 
97
  "вкладці Client Area. Ми настійливо рекомендуємо Вам вирішити це питання "
98
  "протягом 24 годин, інакше плагін буде деактивовано."
99
 
100
+ #: bws_functions.php:128 bws_functions.php:208 bws_menu.php:600
101
+ #: class-bws-settings.php:179
102
  msgid "Learn More"
103
  msgstr "Дізнатись більше"
104
 
118
  "Строк вашої ліцензії витік. Якщо ви хочете отримувати першочергову технічну "
119
  "підтримку та оновлювати плагін у майбутньому, вам слід подовжити ліцензію."
120
 
121
+ #: bws_functions.php:147 bws_functions.php:226
122
  msgid "Learn more"
123
  msgstr "Дізнатись більше"
124
 
135
  msgid "The Pro Trial license will expire on"
136
  msgstr "Trial період Pro версії плагіну закінчується"
137
 
138
+ #: bws_functions.php:199 bws_functions.php:222 bws_functions.php:266
139
+ #: bws_functions.php:276 bws_functions.php:475
140
  msgid "Close notice"
141
  msgstr "Закрити"
142
 
143
+ #: bws_functions.php:204
144
  msgid "It’s time to upgrade your"
145
  msgstr "Настав час модернізувати Ваш"
146
 
147
+ #: bws_functions.php:204
148
  msgid "to"
149
  msgstr "до"
150
 
151
+ #: bws_functions.php:204
152
  msgid "version!"
153
  msgstr "версії!"
154
 
155
+ #: bws_functions.php:205
156
  msgid "Extend standard plugin functionality with new great options."
157
  msgstr "Розширює можливості стандартного функціоналу плагіна."
158
 
159
+ #: bws_functions.php:226
160
  #, php-format
161
  msgid ""
162
  "Your license key for %s expires on %s and you won't be granted TOP-PRIORITY "
165
  "Ваш ліцензійний ключ для %s витікає %s та ви більше не будете отримувати "
166
  "першочергову технічну підтримку та оновлення."
167
 
168
+ #: bws_functions.php:241
169
  msgid ""
170
  "or higher! We do not guarantee that our plugin will work correctly. Please "
171
  "upgrade to WordPress latest version."
173
  "чи вище! Ми не гарантуємо, що наш плагін буде працювати правильно. Будь "
174
  "ласка, оновіть WordPress до останньої версії."
175
 
176
+ #: bws_functions.php:237
177
  #, php-format
178
  msgid "<strong>%s</strong> %s <strong>WordPress %s</strong> %s"
179
  msgstr ""
180
 
181
+ #: bws_functions.php:256
182
  #, php-format
183
  msgid "Thank you for installing %s plugin!"
184
  msgstr "Дякуємо, що встановили %s плагін!"
185
 
186
+ #: bws_functions.php:258
187
  msgid "Let's get started"
188
  msgstr "Розпочнемо"
189
 
190
+ #: bws_functions.php:259 bws_functions.php:292 bws_menu.php:533
191
+ #: bws_menu.php:535
192
  msgid "Settings"
193
  msgstr "Налаштування"
194
 
195
+ #: bws_functions.php:261 bws_menu.php:327 class-bws-settings.php:809
196
+ #: class-bws-settings.php:1084 class-bws-settings.php:1094 deprecated.php:234
197
  msgid "or"
198
  msgstr "або"
199
 
200
+ #: bws_functions.php:262 bws_functions.php:294
201
  msgid "Add New"
202
  msgstr "Додати"
203
 
204
+ #: bws_functions.php:281
205
  msgid "Thank you for installing plugins by BestWebSoft!"
206
  msgstr "Дякуємо, що встановили плагіни від BestWebSoft!"
207
 
208
+ #: bws_functions.php:283
209
  msgid "More Details"
210
  msgstr "Деталі"
211
 
212
+ #: bws_functions.php:284
213
  msgid "Less Details"
214
  msgstr "Сховати Деталі"
215
 
216
+ #: bws_functions.php:312
217
  msgid "Deprecated function(-s) is used on the site here:"
218
  msgstr "Застарілі функціі використовується на сайті тут:"
219
 
220
+ #: bws_functions.php:326
221
  msgid ""
222
  "This function(-s) will be removed over time. Please update the product(-s)."
223
  msgstr ""
224
  "Ці функції буде видалено через деякий час. Будь ласка, поновіть продукт."
225
 
226
+ #: bws_functions.php:470
227
  #, php-format
228
  msgid "Thank you for choosing %s plugin!"
229
  msgstr "Дякую за вибір плагіна %s!"
230
 
231
+ #: bws_functions.php:471
232
  msgid ""
233
  "If you have a feature, suggestion or idea you'd like to see in the plugin, "
234
  "we'd love to hear about it!"
237
  "функціоналу плагіна, будь ласка, надсилайте їх нам! Ми завжди відкриті для "
238
  "нових ідей!"
239
 
240
+ #: bws_functions.php:472
241
  msgid "Suggest a Feature"
242
  msgstr "Запропонувати функціонал"
243
 
244
+ #: bws_functions.php:488 class-bws-settings.php:580 class-bws-settings.php:583
245
+ #: class-bws-settings.php:635 class-bws-settings.php:638
246
  msgid "Notice"
247
  msgstr "Зауважте"
248
 
249
+ #: bws_functions.php:488
250
  msgid "The plugin's settings have been changed."
251
  msgstr "Налаштування плагіну змінено."
252
 
253
+ #: bws_functions.php:489 class-bws-settings.php:222 class-bws-settings.php:242
254
  msgid "Save Changes"
255
  msgstr "Зберегти зміни"
256
 
257
+ #: bws_functions.php:503
258
  msgid ""
259
  "You can always look at premium options by checking the \"Pro Options\" in "
260
  "the \"Misc\" tab."
262
  "Ви завжди можете подивитися на преміум опції, натиснувши на кнопку \"Pro "
263
  "опції\" на вкладці \"Різне\"."
264
 
265
+ #: bws_functions.php:679
266
  msgid "Add shortcode"
267
  msgstr "Додати шорткод"
268
 
269
+ #: bws_functions.php:679
270
  msgid "Add BestWebSoft plugins' shortcodes using this button."
271
  msgstr "Додайте шорткоди BestWebSoft плагінів за допомогою цієї кнопки."
272
 
273
+ #: bws_functions.php:765
274
  msgid "Close"
275
  msgstr "Закрити"
276
 
277
+ #: bws_functions.php:851
278
  msgid "Are you sure you want to restore default settings?"
279
  msgstr "Ви впевнені, що хочете скинути налаштування плагіну до стандартних?"
280
 
281
+ #: bws_functions.php:854
282
  msgid "Yes, restore all settings"
283
  msgstr "Так, скинути налаштування"
284
 
285
+ #: bws_functions.php:855
286
  msgid "No, go back to the settings page"
287
  msgstr "Ні, повернутись назад на сторінку налаштувань"
288
 
289
+ #: bws_functions.php:897
290
  msgid "Plugin"
291
  msgstr "Плагін"
292
 
293
+ #: bws_functions.php:906
294
  msgid "Shortcode settings"
295
  msgstr "Налаштування шорткоду"
296
 
297
+ #: bws_functions.php:911
298
  msgid "The shortcode will be inserted"
299
  msgstr "Буде вставлено шорткод"
300
 
301
+ #: bws_functions.php:954
302
  msgid "FAQ"
303
  msgstr "FAQ"
304
 
305
+ #: bws_functions.php:960
306
  msgid "For more information:"
307
  msgstr "Для отримання додаткової інформації:"
308
 
309
+ #: bws_functions.php:961 bws_menu.php:401 class-bws-settings.php:776
310
  msgid "Documentation"
311
  msgstr "Документація"
312
 
313
+ #: bws_functions.php:962 bws_menu.php:403 class-bws-settings.php:778
314
  msgid "Video Instructions"
315
  msgstr "Відео інструкції"
316
 
317
+ #: bws_functions.php:963
318
  msgid "Submit a Request"
319
  msgstr "Надіслати запит"
320
 
321
+ #: bws_menu.php:101 class-bws-settings.php:860
322
  msgid "Wrong license key"
323
  msgstr "Невірний ключ ліцензії"
324
 
325
+ #: bws_menu.php:122 class-bws-settings.php:887 class-bws-settings.php:966
326
+ #: class-bws-settings.php:1004
327
  msgid ""
328
  "Something went wrong. Please try again later. If the error appears again, "
329
  "please contact us"
331
  "Щось не так, спробуйте пізніше. Якщо помилка повториться, будь ласка, "
332
  "повідомте нам"
333
 
334
+ #: bws_menu.php:122 class-bws-settings.php:887 class-bws-settings.php:966
335
+ #: class-bws-settings.php:1004
336
  msgid "We are sorry for inconvenience."
337
  msgstr "Просимо вибачення за незручності."
338
 
339
+ #: bws_menu.php:129 class-bws-settings.php:893 class-bws-settings.php:1010
340
  msgid "Wrong license key."
341
  msgstr "Неправильний ліцензійний ключ."
342
 
351
  msgid "Log in"
352
  msgstr "Увійти"
353
 
354
+ #: bws_menu.php:133 bws_menu.php:333 deprecated.php:157
355
  msgid "Unfortunately, you have exceeded the number of available tries per day."
356
  msgstr "На жаль, ви перевищили кількість допустимих спроб."
357
 
364
  "На жаль, ваша ліцензія скінчилась. Для того, щоб і надалі отримувати "
365
  "першочергову техпідтримку і оновлення, будь ласка, продовжте ліцензію на %s"
366
 
367
+ #: bws_menu.php:137 class-bws-settings.php:1018
368
  msgid ""
369
  "Unfortunately, the Pro licence was already installed to this domain. The Pro "
370
  "Trial license can be installed only once."
372
  "На жаль, Pro ліцензія уже використовувалась на цьому домені. Тріал Pro "
373
  "версії плагіну можна використати лише один раз."
374
 
375
+ #: bws_menu.php:143 class-bws-settings.php:908
376
  msgid "The license key is valid."
377
  msgstr "Ліцензійний ключ дійсний."
378
 
379
+ #: bws_menu.php:145 class-bws-settings.php:912
380
  msgid "Your license will expire on"
381
  msgstr "Ваша ліцензія закінчується"
382
 
383
+ #: bws_menu.php:147
384
  msgid "Congratulations! Pro Membership license is activated successfully."
385
  msgstr "Вітаємо! Pro Membership ліцензія успішно активована."
386
 
387
+ #: bws_menu.php:154 class-bws-settings.php:1028
388
  msgid ""
389
  "Something went wrong. Try again later or upload the plugin manually. We are "
390
  "sorry for inconvenience."
392
  "Виникли певні проблеми. Спробуйте ще раз пізніше або завантажте плагін "
393
  "вручну. Просимо вибачення за незручності."
394
 
395
+ #: bws_menu.php:164
396
  msgid "Please enter your license key."
397
  msgstr "Будь ласка, введіть ваш ліцензійний ключ."
398
 
399
+ #: bws_menu.php:175
400
  msgid "Not set"
401
  msgstr "Не задано"
402
 
403
+ #: bws_menu.php:177
404
  msgid "On"
405
  msgstr "Увімк."
406
 
407
+ #: bws_menu.php:177
408
  msgid "Off"
409
  msgstr "Вимк."
410
 
411
+ #: bws_menu.php:178 bws_menu.php:179 bws_menu.php:180 bws_menu.php:181
412
+ #: bws_menu.php:182 bws_menu.php:183 bws_menu.php:192
413
  msgid "N/A"
414
  msgstr "Невідомо"
415
 
416
+ #: bws_menu.php:183
417
  msgid "Mb"
418
  msgstr "Мб"
419
 
420
+ #: bws_menu.php:184 bws_menu.php:185 bws_menu.php:186 bws_menu.php:190
421
  msgid "Yes"
422
  msgstr "Так"
423
 
424
+ #: bws_menu.php:184 bws_menu.php:185 bws_menu.php:186 bws_menu.php:190
425
  msgid "No"
426
  msgstr "Ні"
427
 
428
+ #: bws_menu.php:197
429
  msgid "WordPress Environment"
430
  msgstr "Системне оточення WordPress"
431
 
432
+ #: bws_menu.php:199
433
  msgid "Home URL"
434
  msgstr "Адреса домашньої сторінки"
435
 
436
+ #: bws_menu.php:200
437
  msgid "Website URL"
438
  msgstr "Адреса сайту"
439
 
440
+ #: bws_menu.php:201
441
  msgid "WP Version"
442
  msgstr "Версія WordPress"
443
 
444
+ #: bws_menu.php:202
445
  msgid "WP Multisite"
446
  msgstr "Мультисайт"
447
 
448
+ #: bws_menu.php:203
449
  msgid "WP Memory Limit"
450
  msgstr "Ліміт пам’яті WordPress"
451
 
452
+ #: bws_menu.php:204
453
  msgid "Active Theme"
454
  msgstr "Активна тема"
455
 
456
+ #: bws_menu.php:204 bws_menu.php:249 bws_menu.php:252
457
  #, php-format
458
  msgid "by %s"
459
  msgstr "%s"
460
 
461
+ #: bws_menu.php:208
462
  msgid "Server Environment"
463
  msgstr "Системне оточення сервера"
464
 
465
+ #: bws_menu.php:210
466
  msgid "Operating System"
467
  msgstr "Операційна система"
468
 
469
+ #: bws_menu.php:211
470
  msgid "Server"
471
  msgstr "Тип серверу"
472
 
473
+ #: bws_menu.php:212
474
  msgid "PHP Version"
475
  msgstr "Версія PHP"
476
 
477
+ #: bws_menu.php:213
478
  msgid "PHP Allow URL fopen"
479
  msgstr "Дозволити PHP URL fopen"
480
 
481
+ #: bws_menu.php:214
482
  msgid "PHP Memory Limit"
483
  msgstr "Ліміт пам’яті"
484
 
485
+ #: bws_menu.php:215
486
  msgid "Memory Usage"
487
  msgstr "Використання пам'яті"
488
 
489
+ #: bws_menu.php:216
490
  msgid "PHP Max Upload Size"
491
  msgstr "Макс. розмір файлу, що завантажується"
492
 
493
+ #: bws_menu.php:217
494
  msgid "PHP Max Post Size"
495
  msgstr "Макс. розмір посту"
496
 
497
+ #: bws_menu.php:218
498
  msgid "PHP Max Script Execute Time"
499
  msgstr "Макс. час виконання сценарію"
500
 
501
+ #: bws_menu.php:219
502
  msgid "PHP Exif support"
503
  msgstr "Підтримка PHP Exif"
504
 
505
+ #: bws_menu.php:220
506
  msgid "PHP IPTC support"
507
  msgstr "Підтримка PHP IPTC"
508
 
509
+ #: bws_menu.php:221
510
  msgid "PHP XML support"
511
  msgstr "Підтримка PHP XML"
512
 
513
+ #: bws_menu.php:227
514
  msgid "Database"
515
  msgstr "База даних"
516
 
517
+ #: bws_menu.php:229
518
  msgid "WP DB version"
519
  msgstr "Версія бази даних WordPress"
520
 
521
+ #: bws_menu.php:230
522
  msgid "MySQL version"
523
  msgstr "Версія MYSQL"
524
 
525
+ #: bws_menu.php:231
526
  msgid "SQL Mode"
527
  msgstr "Режим SQL"
528
 
529
+ #: bws_menu.php:235
530
  msgid "Active Plugins"
531
  msgstr "Активні плагіни"
532
 
533
+ #: bws_menu.php:240
534
  msgid "Inactive Plugins"
535
  msgstr "Не активні плагіни"
536
 
537
+ #: bws_menu.php:261
538
  msgid "Please enter a valid email address."
539
  msgstr "Будь ласка, введіть коректний емейл."
540
 
541
+ #: bws_menu.php:263
542
  #, php-format
543
  msgid "Email with system info is sent to %s."
544
  msgstr "Емейл з системною інформацією надіслано на %s."
545
 
546
+ #: bws_menu.php:267
547
  msgid "Thank you for contacting us."
548
  msgstr "Дякуємо, що звернулись до нас."
549
 
550
+ #: bws_menu.php:290
551
  msgid "Sorry, email message could not be delivered."
552
  msgstr "Вибачте, ваше емейл не може бути доставлено"
553
 
554
+ #: bws_menu.php:306 bws_menu.php:310 bws_menu.php:359 deprecated.php:26
555
  msgid "Plugins"
556
  msgstr "Плагіни"
557
 
558
+ #: bws_menu.php:307 bws_menu.php:311 bws_menu.php:587 deprecated.php:27
559
  msgid "Themes"
560
  msgstr "Теми"
561
 
562
+ #: bws_menu.php:308 bws_menu.php:312 bws_menu.php:617
563
  msgid "System status"
564
  msgstr "Системна інформація"
565
 
566
+ #: bws_menu.php:316
567
  msgid "Support"
568
  msgstr "Підтримка"
569
 
570
+ #: bws_menu.php:317
571
  msgid "Manage purchased licenses & subscriptions"
572
  msgstr "Управління придбаними ліцензіями і підписками"
573
 
574
+ #: bws_menu.php:325
575
  #, php-format
576
  msgid "Get Access to %s+ Premium Plugins"
577
  msgstr "Отримати доступ до %s+ преміум плагинам"
578
 
579
+ #: bws_menu.php:327
580
  msgid "Subscribe to Pro Membership"
581
  msgstr "Підписатися на Pro Membership"
582
 
583
+ #: bws_menu.php:335 bws_menu.php:346 class-bws-settings.php:822
584
  #: deprecated.php:123
585
  msgid "Check license key"
586
  msgstr "Перевірте ліцензійний ключ"
587
 
588
+ #: bws_menu.php:338
589
  msgid "Enter your license key"
590
  msgstr "Ваш ліцензійний ключ"
591
 
592
+ #: bws_menu.php:344 bws_menu.php:539 bws_menu.php:548
593
+ #: class-bws-settings.php:801 deprecated.php:155 deprecated.php:163
594
  #: deprecated.php:240 deprecated.php:249
595
  msgid "Activate"
596
  msgstr "Активувати"
597
 
598
+ #: bws_menu.php:360
599
  msgid "Upload Plugin"
600
  msgstr "Завантажити плагін"
601
 
602
+ #: bws_menu.php:364
603
  #, php-format
604
  msgid ""
605
  "The plugin generated %d characters of <strong>unexpected output</strong> "
612
  "надіслані&#8221;, проблеми з каналами чи інші неполадки, спробуйте вимкнути "
613
  "чи видалити цей плагін."
614
 
615
+ #: bws_menu.php:366
616
  msgid ""
617
  "Plugin could not be activated because it triggered a <strong>fatal error</"
618
  "strong>."
620
  "Плагін не вдалося активувати, бо він спричинив <strong>критичну помилку</"
621
  "strong>."
622
 
623
+ #: bws_menu.php:369
624
  msgid "Plugin <strong>activated</strong>."
625
  msgstr "Плагін <strong>активовано</strong>."
626
 
627
+ #: bws_menu.php:383
628
  msgid "Download Pro Plugin"
629
  msgstr "Завантажити Pro плагін"
630
 
631
+ #: bws_menu.php:385 class-bws-settings.php:759
632
  msgid "Your Pro plugin is ready"
633
  msgstr "Ваш Pro плагін готовий"
634
 
635
+ #: bws_menu.php:387 class-bws-settings.php:761
636
  msgid "Your plugin has been zipped, and now is ready to download."
637
  msgstr "Ваш плагін був спакованний і тепер готовий до завантаження."
638
 
639
+ #: bws_menu.php:390 class-bws-settings.php:764
640
  msgid "Download Now"
641
  msgstr "Завантажити Зараз"
642
 
643
+ #: bws_menu.php:394 class-bws-settings.php:768
644
  msgid "Need help installing the plugin?"
645
  msgstr "Потрібна допомога в установці плагіна?"
646
 
647
+ #: bws_menu.php:396 class-bws-settings.php:770
648
  msgid "How to install WordPress plugin from your admin Dashboard (ZIP archive)"
649
  msgstr ""
650
  "Як встановити WordPress плагін з вашої панелі адміністратора (ZIP архів)"
651
 
652
+ #: bws_menu.php:399 class-bws-settings.php:774
653
  msgid "Get Started"
654
  msgstr "Розпочнемо"
655
 
656
+ #: bws_menu.php:405 class-bws-settings.php:780
657
  msgid "Knowledge Base"
658
  msgstr "База знань"
659
 
660
+ #: bws_menu.php:408
661
  msgid "Licenses & Domains"
662
  msgstr "Ліцензії та домени"
663
 
664
+ #: bws_menu.php:411
665
  msgid "Client Area"
666
  msgstr "Client Area"
667
 
668
+ #: bws_menu.php:410
669
  #, php-format
670
  msgid ""
671
  "Manage your license(-s) and change domain names using the %s at BestWebSoft."
673
  "Керуйте своїми ліцензіями та змінюйте доменні імена, використовуючи %s на "
674
  "BestWebSoft."
675
 
676
+ #: bws_menu.php:413
677
  msgid "Return to BestWebSoft Panel"
678
  msgstr "Назад до BestWebSoft Panel"
679
 
680
+ #: bws_menu.php:420 bws_menu.php:440 bws_menu.php:569
681
  msgid "All"
682
  msgstr "Всі"
683
 
684
+ #: bws_menu.php:423 bws_menu.php:606
685
  msgid "Installed"
686
  msgstr "Встановлені"
687
 
688
+ #: bws_menu.php:426
689
  msgid "Not Installed"
690
  msgstr "Не встановлені"
691
 
692
+ #: bws_menu.php:433
693
  msgid "Filter results"
694
  msgstr "Фільтр результатів"
695
 
696
+ #: bws_menu.php:436 bws_menu.php:565
697
  msgid "Category"
698
  msgstr "Категорія"
699
 
700
+ #: bws_menu.php:500
701
  msgid "Not installed"
702
  msgstr "Не встановлен"
703
 
704
+ #: bws_menu.php:504
705
  msgid "Renew to get updates"
706
  msgstr "Продовжити для поновлення"
707
 
708
+ #: bws_menu.php:507
709
  #, php-format
710
  msgid "Update to v %s"
711
  msgstr "Оновити до версії %s"
712
 
713
+ #: bws_menu.php:519 bws_menu.php:542
714
  msgid "Get Pro"
715
  msgstr "Отримати Pro"
716
 
717
+ #: bws_menu.php:525 class-bws-settings.php:192 class-bws-settings.php:1091
718
  msgid "Upgrade to Pro"
719
  msgstr "Оновити до Pro"
720
 
721
+ #: bws_menu.php:539 bws_menu.php:548
722
  msgid "Activate this plugin"
723
  msgstr "Активувати плагін"
724
 
725
+ #: bws_menu.php:551
726
  msgid "Install this plugin"
727
  msgstr "Встановити плагін"
728
 
729
+ #: bws_menu.php:551
730
  msgid "Install Now"
731
  msgstr "Встановити"
732
 
733
+ #: bws_menu.php:560
734
  msgid "Nothing found. Try another criteria."
735
  msgstr "Нічого не знайдено. Спробуйте інші критерії."
736
 
737
+ #: bws_menu.php:597
738
  #, php-format
739
  msgid "By %s"
740
  msgstr "За %s"
741
 
742
+ #: bws_menu.php:604
743
  msgid "Already Installed"
744
  msgstr "Уже встановлено %s"
745
 
746
+ #: bws_menu.php:614
747
  msgid "Browse More WordPress Themes"
748
  msgstr "Огляд WordPress тем"
749
 
750
+ #: bws_menu.php:623
751
  msgid "Send to support"
752
  msgstr "Відправити службі тех. підтримки"
753
 
754
+ #: bws_menu.php:630
755
  msgid "Send to custom email &#187;"
756
  msgstr "Відправити на електронну адресу &#187;"
757
 
758
+ #: class-bws-settings.php:167
759
  msgid "Information"
760
  msgstr "Інформація"
761
 
762
+ #: class-bws-settings.php:179
763
  msgid "Inactive"
764
  msgstr "Неактивна"
765
 
766
+ #: class-bws-settings.php:187
767
  msgid "Expired"
768
  msgstr "Закінчилась"
769
 
770
+ #: class-bws-settings.php:190
771
  #, php-format
772
  msgid "%s day(-s) left"
773
  msgstr "%s днів залишилося"
774
 
775
+ #: class-bws-settings.php:196
776
  #, php-format
777
  msgid "Expired on %s"
778
  msgstr "Витікає %s"
779
 
780
+ #: class-bws-settings.php:196
781
  msgid "Renew Now"
782
  msgstr "Відновити зараз"
783
 
784
+ #: class-bws-settings.php:198
785
  msgid "Active"
786
  msgstr "Активна"
787
 
788
+ #: class-bws-settings.php:203
789
  msgid "License"
790
  msgstr "Ліцензія"
791
 
792
+ #: class-bws-settings.php:206
793
  msgid "Status"
794
  msgstr "Статус"
795
 
796
+ #: class-bws-settings.php:210
797
  msgid "Version"
798
  msgstr "Версія"
799
 
800
+ #: class-bws-settings.php:323
801
  msgid "All plugin settings were restored."
802
  msgstr "Усі налаштування плагіну відновлені."
803
 
804
+ #: class-bws-settings.php:463
805
  msgid "Custom Code"
806
  msgstr "Користувацький код"
807
 
808
+ #: class-bws-settings.php:467
809
  msgid "You do not have sufficient permissions to edit plugins for this site."
810
  msgstr "У вас недостатньо повноважень для редагування плагінів цього сайту."
811
 
812
+ #: class-bws-settings.php:472
813
  msgid "These styles will be added to the header on all pages of your site."
814
  msgstr "Ці стилі будуть додані в заголовок на всіх сторінках вашого сайту."
815
 
816
+ #: class-bws-settings.php:475
817
  #, php-format
818
  msgid ""
819
  "This PHP code will be hooked to the %s action and will be printed on front "
821
  msgstr ""
822
  "Цей PHP код буде прикріплений до %s action і буде додано лише у фронтенді."
823
 
824
+ #: class-bws-settings.php:478
825
  msgid "These code will be added to the header on all pages of your site."
826
  msgstr "Цей код буде додано в заголовок на всіх сторінках вашого сайту."
827
 
828
+ #: class-bws-settings.php:486
829
  #, php-format
830
  msgid ""
831
  "You need to make this files writable before you can save your changes. See "
834
  "Вам потрібно зробити цей файл доступним для запису, перед тим як ви зможете "
835
  "зберегти свої зміни. Перегляньте %sКодекс%s для додаткової інформації."
836
 
837
+ #: class-bws-settings.php:496
838
  msgid "Browsing"
839
  msgstr "Огляд"
840
 
841
+ #: class-bws-settings.php:501
842
  #, php-format
843
  msgid "Activate custom %s code."
844
  msgstr "Активувати користувацький %s код."
845
 
846
+ #: class-bws-settings.php:509
847
  #, php-format
848
  msgid "Learn more about %s"
849
  msgstr "Дізнатись більше про %s"
850
 
851
+ #: class-bws-settings.php:571
852
  msgid "Miscellaneous Settings"
853
  msgstr "Інші налаштування"
854
 
855
+ #: class-bws-settings.php:580 class-bws-settings.php:635
856
  #, php-format
857
  msgid ""
858
  "It is prohibited to change %s settings on this site in the %s network "
861
  "Мережевими налаштуваннями %s забороняється змінювати налаштування %s на "
862
  "цьому сайті."
863
 
864
+ #: class-bws-settings.php:583 class-bws-settings.php:638
865
  #, php-format
866
  msgid ""
867
  "It is prohibited to view %s settings on this site in the %s network settings."
869
  "Мережевими налаштуваннями %s забороняється дивитися налаштування %s на цьому "
870
  "сайті."
871
 
872
+ #: class-bws-settings.php:592
873
  msgid "Pro Options"
874
  msgstr "Pro опції"
875
 
876
+ #: class-bws-settings.php:596
877
  msgid "Enable to display plugin Pro options."
878
  msgstr "Увімкніть для відображення Pro опцій плагіна."
879
 
880
+ #: class-bws-settings.php:602
881
  msgid "Track Usage"
882
  msgstr "Збирати статистику"
883
 
884
+ #: class-bws-settings.php:606
885
  msgid ""
886
  "Enable to allow tracking plugin usage anonymously in order to make it better."
887
  msgstr ""
888
  "Включити, щоб дозволити анонімно відстежувати використання і зробити плагін "
889
  "краще."
890
 
891
+ #: class-bws-settings.php:611
892
  msgid "Default Settings"
893
  msgstr "Налаштування за замовчуванням"
894
 
895
+ #: class-bws-settings.php:613
896
  msgid "Restore Settings"
897
  msgstr "Відновлення налаштувань"
898
 
899
+ #: class-bws-settings.php:614
900
  msgid "This will restore plugin settings to defaults."
901
  msgstr "Відновити всі налаштування плагіна до налаштувань за замовчуванням."
902
 
903
+ #: class-bws-settings.php:626
904
  msgid "Import / Export"
905
  msgstr "Імпорт / Експорт"
906
 
907
+ #: class-bws-settings.php:744
908
  msgid "License Key"
909
  msgstr "Ключ ліцензії"
910
 
911
+ #: class-bws-settings.php:803
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:806 class-bws-settings.php:1014 deprecated.php:243
919
  msgid ""
920
  "Unfortunately, you have exceeded the number of available tries per day. "
921
  "Please, upload the plugin manually."
923
  "На жаль, ви перевищили кількість доступних спроб на день. Будь ласка, "
924
  "завантажте плагін вручну"
925
 
926
+ #: class-bws-settings.php:809 deprecated.php:234
927
  #, php-format
928
  msgid "Start Your Free %s-Day Trial Now"
929
  msgstr "Спробуйте %s-денну Trial версію безкоштовно"
930
 
931
+ #: class-bws-settings.php:824
932
  msgid ""
933
  "If necessary, you can check if the license key is correct or reenter it in "
934
  "the field below."
936
  "При необхідності ви можете перевірити правильність вашого ліцензійного ключа "
937
  "або знову ввести його у полі, що знаходиться вище."
938
 
939
+ #: class-bws-settings.php:833
940
  msgid "Manage License Settings"
941
  msgstr "Управління налаштуваннями ліцензій"
942
 
943
+ #: class-bws-settings.php:835
944
  msgid "Login to Client Area"
945
  msgstr "Зайти в Client Area"
946
 
947
+ #: class-bws-settings.php:837
948
  msgid ""
949
  "Manage active licenses, download BWS products, and view your payment history "
950
  "using BestWebSoft Client Area."
952
  "Керуй активними ліцензіями, завантажуй BWS продукти, а також переглядай "
953
  "історію платежів за допомогою BestWebSoft Client Area."
954
 
955
+ #: class-bws-settings.php:895 class-bws-settings.php:1012
956
  msgid "This license key is bound to another site."
957
  msgstr "Цей ліцензійний ключ прив'язано до іншого сайту."
958
 
959
+ #: class-bws-settings.php:897
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
  "Даний ліцензійний ключ дійсний, але строк вашої ліцензії витік. Якщо ви "
965
  "хочете оновлювати наш плагін у майбутньому, вам слід подовжити ліцензію."
966
 
967
+ #: class-bws-settings.php:899
968
  msgid "Unfortunately, you have exceeded the number of available tries."
969
  msgstr "На жаль, ви перевищили кількість допустимих спроб."
970
 
971
+ #: class-bws-settings.php:901
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
  "На жаль, Trial Pro версія плагіну уже встановлювалась на цей домен. Trial "
977
  "Pro версію можна встановлювати лише один раз."
978
 
979
+ #: class-bws-settings.php:906
980
  msgid "The Pro Trial license key is valid."
981
  msgstr "Ключ тріал Pro версії вірний."
982
 
983
+ #: class-bws-settings.php:919 deprecated.php:142
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:1016
990
  #, php-format
991
  msgid ""
992
  "Unfortunately, Your license has expired. To continue getting top-priority "
995
  "На жаль, ваша ліцензія скінчилась. Для того, щоб і надалі отримувати "
996
  "першочергову тех.підтримку і оновлення, будь ласка, продовжте ліцензію у %s."
997
 
998
+ #: class-bws-settings.php:1065
999
  msgid "Please, enter Your license key"
1000
  msgstr "Будь ласка, впишіть ваш ліцензійний ключ"
1001
 
1002
+ #: class-bws-settings.php:1078
1003
  msgid "Need Help?"
1004
  msgstr "Потрібна допомога?"
1005
 
1006
+ #: class-bws-settings.php:1080
1007
  msgid "Read the Instruction"
1008
  msgstr "Читати інструкцію"
1009
 
1010
+ #: class-bws-settings.php:1084
1011
  msgid "Watch the Video"
1012
  msgstr "Дивитися відео"
1013
 
1014
+ #: class-bws-settings.php:1095
1015
  msgid "Start Your Free Trial"
1016
  msgstr "Використовувати безкоштовну Trial версію"
1017
 
1018
+ #: class-bws-settings.php:1130
1019
+ msgid "Request a Feature"
1020
+ msgstr "Запропонувати функціонал"
1021
+
1022
+ #: class-bws-settings.php:1135
1023
+ #, php-format
1024
+ msgid "How can we improve %s?"
1025
+ msgstr "Як ми можемо покращити %s?"
1026
+
1027
+ #: class-bws-settings.php:1137
1028
+ msgid "We look forward to hear your ideas."
1029
+ msgstr "Ми будемо раді почути ваші ідеї."
1030
+
1031
+ #: class-bws-settings.php:1139
1032
+ msgid "Describe your idea"
1033
+ msgstr "Опишіть свою ідею"
1034
+
1035
+ #: class-bws-settings.php:1142 deactivation-form.php:120
1036
+ msgid "Send website data and allow to contact me back"
1037
+ msgstr "Надіслати дані сайту і дозволити зв'язатися зі мною"
1038
+
1039
+ #: class-bws-settings.php:1147
1040
+ msgid "Submit"
1041
+ msgstr "Відправити"
1042
+
1043
+ #: class-bws-settings.php:1148 deactivation-form.php:127
1044
+ msgid "Processing"
1045
+ msgstr "Обробка"
1046
+
1047
+ #: class-bws-settings.php:1149
1048
+ msgid "Thank you!"
1049
+ msgstr "Дякую!"
1050
+
1051
  #: deactivation-form.php:22
1052
  msgid "Need help? We are ready to answer your questions."
1053
  msgstr "Потрібна допомога? Ми готові відповісти на ваші питання."
1105
  msgstr ""
1106
  "Якщо у вас є час, будь ласка, повідомте нам, чому ви деактивуете плагін"
1107
 
1108
+ #: deactivation-form.php:125
 
 
 
 
 
 
 
 
1109
  msgid "Submit and Deactivate"
1110
  msgstr "Надіслати і деактивувати"
1111
 
1112
+ #: deactivation-form.php:126
 
 
 
 
1113
  msgid "Skip and Deactivate"
1114
  msgstr "Пропустити і деактивувати"
1115
 
1116
+ #: deactivation-form.php:272
1117
+ msgid "Please tell us the reason so we can improve it."
1118
+ msgstr "Будь ласка, повідомте нам причину, щоб ми могли покращити плагін."
1119
+
1120
  #: deprecated.php:28
1121
  msgid "System Status"
1122
  msgstr "Системна інформація"
1191
  msgid "version of the plugin."
1192
  msgstr "версія плагіна."
1193
 
1194
+ #: product_list.php:8
1195
  msgid "Admin Tools"
1196
  msgstr "Інструменти"
1197
 
1198
+ #: product_list.php:9
1199
  msgid "Content"
1200
  msgstr "Контент"
1201
 
1202
+ #: product_list.php:10
1203
  msgid "eCommerce"
1204
  msgstr "Комерція"
1205
 
1206
+ #: product_list.php:11
1207
  msgid "Marketing"
1208
  msgstr "Маркетинг"
1209
 
1210
+ #: product_list.php:12
1211
  msgid "Navigation"
1212
  msgstr "Навігація"
1213
 
1214
+ #: product_list.php:13
1215
  msgid "Recommended"
1216
  msgstr "Рекомендовані "
1217
 
1218
+ #: product_list.php:14
1219
  msgid "Security"
1220
  msgstr "Безпека"
1221
 
1222
+ #: product_list.php:15
1223
  msgid "SEO"
1224
  msgstr "Пошукова оптимізація"
1225
 
1226
+ #: product_list.php:16
1227
  msgid "SMM"
1228
  msgstr "СММ"
1229
 
1230
+ #: product_list.php:23
1231
+ msgid "Give a birth for your bike rental and booking WordPress website."
1232
+ msgstr "Створіть прокат та бронювання велосипедів для веб-сайту WordPress."
1233
+
1234
+ #: product_list.php:35
1235
  msgid "Best secure captcha plugin to protect your WordPress forms."
1236
  msgstr "Кращий плагін капчі, який захистить форми вашого сайту WordPress."
1237
 
1238
+ #: product_list.php:45
1239
  msgid "Create your own rental website for car renting and booking."
1240
  msgstr "Створіть свій власний сайт прокату і резервування автомобілів."
1241
 
1242
+ #: product_list.php:57
1243
  msgid ""
1244
  "Add columns with custom content to WordPress website pages, posts, widgets, "
1245
  "etc."
1247
  "Додайте стовпці з користувачим вмістом на сторінки веб-сайту WordPress, "
1248
  "повідомлення, віджети тощо."
1249
 
1250
+ #: product_list.php:64
1251
  msgid ""
1252
  "Allow customers to reach you using secure contact form plugin any website "
1253
  "must have."
1255
  "Надайте можливість клієнтам здійснювати зв'язок з вами через безпечний "
1256
  "плагін контактної форми, який повинен мати будь-який сайт."
1257
 
1258
+ #: product_list.php:74
1259
  msgid "Add unlimited number of contact forms to WordPress website."
1260
  msgstr "Додавайте необмежену кількість контактних форм на ваш сайт WordPress."
1261
 
1262
+ #: product_list.php:84
1263
  msgid "Save and manage Contact Form messages. Never lose important data."
1264
  msgstr ""
1265
  "Зберігайте і керуйте повідомленнями плагіну Contact Form. Ніколи не "
1266
  "втрачайте важливі дані."
1267
 
1268
+ #: product_list.php:94
1269
  msgid "Add unlimited custom pages to WordPress admin dashboard."
1270
  msgstr ""
1271
  "Додавайте необмежену кількість користувацьких сторінок у панелі "
1272
  "адміністратора WordPress."
1273
 
1274
+ #: product_list.php:104
1275
  msgid ""
1276
  "Add custom post types and taxonomies to WordPress website search results."
1277
  msgstr ""
1278
  "Додавайте користувацькі типи постів і таксономії у результати пошуку на "
1279
  "вашому сайті WordPress."
1280
 
1281
+ #: product_list.php:114
1282
  msgid "Add PayPal and 2CO donate buttons to receive charity payments."
1283
  msgstr ""
1284
  "Додавайте кнопки PayPal і 2CO, щоб отримувати пожертви та благодійні внески."
1285
 
1286
+ #: product_list.php:121
1287
  msgid ""
1288
  "Get latest error log messages to diagnose website problems. Define and fix "
1289
  "issues faster."
1291
  "Отримуйте останні повідомлення з журналу помилок для діагностики проблем "
1292
  "сайту. Швидше виявляйте і усувайте проблеми."
1293
 
1294
+ #: product_list.php:128
1295
  msgid ""
1296
  "Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and "
1297
  "widgets."
1299
  "Додавайте кнопки Facebook \"Підписатися\", \"Подобається\" та \"Поділитися\" "
1300
  "у пости, сторінки і віджети сайту WordPress."
1301
 
1302
+ #: product_list.php:138
1303
  msgid ""
1304
  "Add beautiful galleries, albums & images to your WordPress website in a few "
1305
  "clicks."
1307
  "Додавайте мальовничі галереї, альбоми, зображення та категорії галереї на "
1308
  "ваш сайт WordPress всього в декілька кліків."
1309
 
1310
+ #: product_list.php:148
1311
  msgid ""
1312
  "Stronger security solution which protects your WordPress website from hacks "
1313
  "and unauthorized login attempts."
1315
  "Найпотужніше рішення безпеки, яке захищає ваш сайт WordPress від зломів та "
1316
  "неавторизованих спроб входу в систему."
1317
 
1318
+ #: product_list.php:158
1319
  msgid ""
1320
  "Add Adsense ads to WordPress website pages, posts, custom posts, search "
1321
  "results, categories, tags, and widgets."
1323
  "Додавайте рекламу сервісу Adsense на сторінки, пости, користувацькі пости, "
1324
  "результати пошуку, категорії, теги і віджети сайту WordPress."
1325
 
1326
+ #: product_list.php:168
1327
  msgid "Add Google Analytics code to WordPress website and track basic stats."
1328
  msgstr ""
1329
  "Додавайте код Google Analytics на ваш сайт WordPress та відстежуйте базову "
1330
  "статистику сайту."
1331
 
1332
+ #: product_list.php:178
1333
  msgid "Protect WordPress website forms from spam entries with reCaptcha."
1334
  msgstr ""
1335
  "Захищайте форми вашого сайту WordPress від спаму за допомогою reCaptcha."
1336
 
1337
+ #: product_list.php:188
1338
  msgid "Add customized Google maps to WordPress posts, pages and widgets."
1339
  msgstr ""
1340
  "Додавайте користувацькі карти Google у пости, сторінки та віджети WordPress."
1341
 
1342
+ #: product_list.php:198
1343
  msgid ""
1344
  "Generate and add XML sitemap to WordPress website. Help search engines index "
1345
  "your blog."
1347
  "Створюйте та додавайте файли XML sitemap на ваш сайт WordPress. Допоможіть "
1348
  "пошуковим системам проіндексувати ваш блог."
1349
 
1350
+ #: product_list.php:208
1351
  msgid ""
1352
  "Replace external WordPress website links with Google shortlinks and track "
1353
  "click stats."
1355
  "Замініть зовнішні посилання сайту WordPress на короткі посилання Google і "
1356
  "відстежуйте статистику кліків."
1357
 
1358
+ #: product_list.php:215
1359
  msgid ""
1360
  "Protect WordPress website – allow and deny access for certain IP addresses, "
1361
  "hostnames, etc."
1363
  "Захистіть свій сайт WordPress - надавайте та забороняйте доступ з певних IP-"
1364
  "адрес, імен хостів і т.д."
1365
 
1366
+ #: product_list.php:225
1367
  msgid ""
1368
  "Create your personal job board and listing WordPress website. Search jobs, "
1369
  "submit CV/resumes, choose candidates."
1372
  "WordPress. Здійснюйте пошук вакансій, подачу резюме/CV кандидата, вибір "
1373
  "кандидатів."
1374
 
1375
+ #: product_list.php:232
1376
  msgid ""
1377
  "Protect WordPress website against brute force attacks. Limit rate of login "
1378
  "attempts."
1380
  "Захищайте свій сайт WordPress від брутфорс-атак. Обмежуйте кількість спроб "
1381
  "введення логіна."
1382
 
1383
+ #: product_list.php:242
1384
  msgid ""
1385
  "Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. "
1386
  "5 plugins included – profile, insider, etc."
1388
  "Додавайте кнопки LinkedIn \"Поділитися\" та \"Відстежувати\" до постів, "
1389
  "сторінок і віджетів WordPress. 5 плагінів включено - Профіль, Інсайдер і т.д."
1390
 
1391
+ #: product_list.php:252
1392
  msgid ""
1393
  "Translate WordPress website content to other languages manually. Create "
1394
  "multilingual pages, posts, widgets, menus, etc."
1396
  "Перекладайте вміст сайту WordPress іншими мовами вручну. Створюйте "
1397
  "багатомовні сторінки, пости, віджети, меню і т.д."
1398
 
1399
+ #: product_list.php:262
1400
  msgid ""
1401
  "Add customizable pagination to WordPress website. Split long content to "
1402
  "multiple pages for better navigation."
1404
  "Додавайте пагінацію з можливістю налаштування на ваш сайт WordPress. "
1405
  "Розбивайте об'ємний контент на декілька сторінок для кращої навігації."
1406
 
1407
+ #: product_list.php:272
1408
  msgid ""
1409
  "Generate PDF files and print WordPress posts/pages. Customize document "
1410
  "header/footer styles and appearance."
1412
  "Створюйте PDF-файли і друкуйте пости/сторінки сайту WordPress. Налаштовуйте "
1413
  "стилі хедера/футера документа і його зовнішній вигляд."
1414
 
1415
+ #: product_list.php:282
1416
  msgid ""
1417
  "Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, "
1418
  "Profile) to WordPress posts, pages and widgets."
1420
  "Додавайте кнопки Pinterest \"Підписатися\", \"Зберегти\" і віджети профілю "
1421
  "(Пін, Дошка, Профіль) до постів, сторінок і віджетів WordPress."
1422
 
1423
+ #: product_list.php:292
1424
  msgid ""
1425
  "Create your personal portfolio WordPress website. Manage and showcase past "
1426
  "projects to get more clients."
1428
  "Створюйте і додавайте портфоліо на свій сайт WordPress. Керуйте і "
1429
  "демонструйте минулі проекти, щоб залучити більше клієнтів."
1430
 
1431
+ #: product_list.php:302
1432
  msgid "Export WordPress posts to CSV file format easily. Configure data order."
1433
  msgstr ""
1434
  "З легкістю експортуйте пости WordPress в файли формату CSV. Налаштуйте "
1435
  "порядок відображення даних."
1436
 
1437
+ #: product_list.php:312
1438
  msgid ""
1439
  "Add extra fields to default WordPress user profile. The easiest way to "
1440
  "create and manage additional custom values."
1442
  "Додавайте користувацькі поля у стандартний профіль WordPress. Найпростіший "
1443
  "спосіб створення і управління додатковими полями."
1444
 
1445
+ #: product_list.php:322
1446
  msgid ""
1447
  "Add and display HTML advertisement banner on WordPress website. Customize "
1448
  "bar styles and appearance."
1450
  "Додавайте відображення банерної HTML реклами на сайті WordPress. Налаштуйте "
1451
  "стилі і зовнішній вигляд банеру."
1452
 
1453
+ #: product_list.php:332
1454
  msgid ""
1455
  "Add customizable quotes and tips blocks to WordPress posts, pages and "
1456
  "widgets."
1458
  "Додавайте редаговані цитати та підказки до постів, сторінок і віджетів "
1459
  "WordPress."
1460
 
1461
+ #: product_list.php:339
1462
  msgid ""
1463
  "Add rating plugin to your WordPress website to receive feedback from your "
1464
  "customers."
1466
  "Додавайте систему оцінювання і рейтингу на ваш сайт WordPress і отримуйте "
1467
  "відгуки від ваших клієнтів."
1468
 
1469
+ #: product_list.php:349
1470
  msgid ""
1471
  "Create your personal real estate WordPress website. Sell, rent and buy "
1472
  "properties. Add, search and browse listings easily."
1475
  "Продавайте, орендуйте і купуйте нерухомість. Легко додавайте, знаходьте і "
1476
  "переглядайте лістинги."
1477
 
1478
+ #: product_list.php:359
1479
  msgid ""
1480
  "Add related, featured, latest, and popular posts to your WordPress website. "
1481
  "Connect your blog readers with a relevant content."
1483
  "Додавайте схожі, обрані, останні та популярні пости на ваш сайт WordPress. "
1484
  "Надавайте своїм читачам контент схожої тематики."
1485
 
1486
+ #: product_list.php:366
1487
  msgid ""
1488
  "Send bulk email messages to WordPress users. Custom templates, advanced "
1489
  "settings and detailed reports."
1491
  "Здійснюйте масову розсилку листів користувачам WordPress. Користувацькі "
1492
  "шаблони, додаткові налаштування і детальні звіти."
1493
 
1494
+ #: product_list.php:376
1495
  msgid ""
1496
  "The best responsive slider plugin for your WordPress website. Create "
1497
  "beautifully animated slides just in a few clicks."
1499
  "Найкращий адаптивний слайдер для вашого сайту WordPress. Створюйте красиво "
1500
  "анімовані слайди всього в декілька кліків."
1501
 
1502
+ #: product_list.php:383
1503
  msgid ""
1504
  "Configure SMTP server to receive email messages from WordPress to Gmail, "
1505
  "Yahoo, Hotmail and other services."
1507
  "Налаштовуйте SMTP-сервер, щоб отримувати електронні повідомлення з сайту "
1508
  "WordPress на такі поштові служби, як Gmail, Yahoo, Hotmail і багато інших."
1509
 
1510
+ #: product_list.php:390
1511
  msgid ""
1512
  "Add social media buttons and widgets to WordPress posts, pages and widgets. "
1513
  "FB, Twitter, Pinterest, LinkedIn."
1515
  "Додавайте кнопки і віджети соціальних мереж до постів, сторінок і віджетів "
1516
  "WordPress. FB, Twitter, Pinterest, LinkedIn."
1517
 
1518
+ #: product_list.php:400
1519
  msgid ""
1520
  "Add social media login, registration, and commenting to your WordPress "
1521
  "website."
1523
  "Додавайте на свій сайт WordPress можливість входу, реєстрації та "
1524
  "коментування з використанням існуючих акаунтів соціальних мереж."
1525
 
1526
+ #: product_list.php:407
1527
  msgid ""
1528
  "Add email newsletter sign up form to WordPress posts, pages and widgets. "
1529
  "Collect data and subscribe your users."
1531
  "Додавайте форму підписки на розсилку новин у пости, сторінки і віджети "
1532
  "WordPress. Збирайте дані і здійснюйте підписку користувачів."
1533
 
1534
+ #: product_list.php:417
1535
  msgid ""
1536
  "Add testimonials and feedbacks from your customers to WordPress website "
1537
  "posts, pages, and widgets."
1539
  "Додавайте рекомендації та відгуки ваших клієнтів в пости, сторінки і віджети "
1540
  "сайту WordPress."
1541
 
1542
+ #: product_list.php:424
1543
  msgid ""
1544
  "Best timesheet plugin for WordPress. Track employee time, streamline "
1545
  "attendance and generate reports."
1547
  "Кращий плагін обліку робочого часу на сайті WordPress. Відстежуйте час "
1548
  "роботи співробітників, оптимізуйте графік роботи в офісі і створюйте звіти."
1549
 
1550
+ #: product_list.php:434
1551
  msgid ""
1552
  "Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts "
1553
  "and pages."
1555
  "Додавайте кнопки Твіттера \"Читати\", \"Твітнути\", \"Хештеґ\" і \"Згадати\" "
1556
  "до постів і сторінок WordPress."
1557
 
1558
+ #: product_list.php:444
1559
  msgid ""
1560
  "Automatically check and update WordPress website core with all installed "
1561
  "plugins and themes to the latest versions."
1563
  "Виконуйте автоматичну перевірку і оновлення ядра WordPress до останніх "
1564
  "версій з усіма встановленими плагінами та темами."
1565
 
1566
+ #: product_list.php:454
1567
  msgid ""
1568
  "Powerful user role management plugin for WordPress website. Create, edit, "
1569
  "copy, and delete user roles."
1571
  "Ефективний плагін управління ролями користувачів для сайту WordPress. "
1572
  "Створюйте, редагуйте, копіюйте і видаляйте ролі користувачів."
1573
 
1574
+ #: product_list.php:464
1575
  msgid ""
1576
  "Display live count of online visitors who are currently browsing your "
1577
  "WordPress website."
1579
  "Ведіть підрахунок кількості відвідувачів, які в даний час переглядають ваш "
1580
  "сайт WordPress."
1581
 
1582
+ #: product_list.php:474
1583
  msgid ""
1584
  "Backup and export Zendesk Help Center content automatically to your "
1585
  "WordPress website database."
bws_menu/product_list.php CHANGED
@@ -22,7 +22,7 @@ $bws_plugins = array(
22
  'name' => 'Bike Rental',
23
  'description' => __( 'Give a birth for your bike rental and booking WordPress website.', 'bestwebsoft' ),
24
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/bike-rental/?k=04387cfc31fc8b9553e4741392762231&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
25
- 'settings' => 'edit.php?post_type=bws_bike&page=bike-rental-settings',
26
  'pro_version' => 'bike-rental-pro/bike-rental-pro.php',
27
  'purchase' => 'https://bestwebsoft.com/products/wordpress/plugins/bike-rental/buy/?k=9b3222b005340035eaead38a7a495a0d&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
28
  'pro_settings' => 'edit.php?post_type=bws_bike&page=bkrntl_bws_bike_settings',
22
  'name' => 'Bike Rental',
23
  'description' => __( 'Give a birth for your bike rental and booking WordPress website.', 'bestwebsoft' ),
24
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/bike-rental/?k=04387cfc31fc8b9553e4741392762231&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
25
+ 'settings' => 'edit.php?post_type=bws_bike&page=bkng_general_settings',
26
  'pro_version' => 'bike-rental-pro/bike-rental-pro.php',
27
  'purchase' => 'https://bestwebsoft.com/products/wordpress/plugins/bike-rental/buy/?k=9b3222b005340035eaead38a7a495a0d&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
28
  'pro_settings' => 'edit.php?post_type=bws_bike&page=bkrntl_bws_bike_settings',
gallery-plugin.php CHANGED
@@ -6,7 +6,7 @@ Description: Add beautiful galleries, albums & images to your Wordpress website
6
  Author: BestWebSoft
7
  Text Domain: gallery-plugin
8
  Domain Path: /languages
9
- Version: 4.6.7
10
  Author URI: https://bestwebsoft.com/
11
  License: GPLv2 or later
12
  */
@@ -1816,7 +1816,9 @@ if ( ! function_exists( 'gllr_settings_page' ) ) {
1816
  if ( ! class_exists( 'Bws_Settings_Tabs' ) )
1817
  require_once( dirname( __FILE__ ) . '/bws_menu/class-bws-settings.php' );
1818
  require_once( dirname( __FILE__ ) . '/includes/class-gllr-settings.php' );
1819
- $page = new Gllr_Settings_Tabs( plugin_basename( __FILE__ ) ); ?>
 
 
1820
  <div class="wrap">
1821
  <h1><?php printf( __( '%s Settings', 'gallery-plugin' ), 'Gallery' ); ?></h1>
1822
  <?php $page->display_content(); ?>
6
  Author: BestWebSoft
7
  Text Domain: gallery-plugin
8
  Domain Path: /languages
9
+ Version: 4.6.8
10
  Author URI: https://bestwebsoft.com/
11
  License: GPLv2 or later
12
  */
1816
  if ( ! class_exists( 'Bws_Settings_Tabs' ) )
1817
  require_once( dirname( __FILE__ ) . '/bws_menu/class-bws-settings.php' );
1818
  require_once( dirname( __FILE__ ) . '/includes/class-gllr-settings.php' );
1819
+ $page = new Gllr_Settings_Tabs( plugin_basename( __FILE__ ) );
1820
+ if ( method_exists( $page, 'add_request_feature' ) )
1821
+ $page->add_request_feature(); ?>
1822
  <div class="wrap">
1823
  <h1><?php printf( __( '%s Settings', 'gallery-plugin' ), 'Gallery' ); ?></h1>
1824
  <?php $page->display_content(); ?>
includes/class-gllr-settings.php CHANGED
@@ -52,7 +52,7 @@ if ( ! class_exists( 'Gllr_Settings_Tabs' ) ) {
52
  'options' => $gllr_options,
53
  'is_network_options' => is_network_admin(),
54
  'tabs' => $tabs,
55
- 'doc_link' => 'https://docs.google.com/document/d/1l4zMhovBgO7rsPIzJk_15v0sdhiCpnjuacoDEfmzGEw/',
56
  'demo_data' => $gllr_BWS_demo_data,
57
  /*pls */
58
  'wp_slug' => 'gallery-plugin',
@@ -1006,6 +1006,23 @@ if ( ! class_exists( 'Gllr_Settings_Tabs' ) ) {
1006
  <span class="bws_info"><?php _e( 'Enter the unique gallery slug.', 'gallery-plugin' ); ?></span>
1007
  </td>
1008
  </tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1009
  </table>
1010
  </div>
1011
  <?php $this->bws_pro_block_links(); ?>
52
  'options' => $gllr_options,
53
  'is_network_options' => is_network_admin(),
54
  'tabs' => $tabs,
55
+ 'doc_link' => 'https://bestwebsoft.com/documentation/gallery/gallery-user-guide/',
56
  'demo_data' => $gllr_BWS_demo_data,
57
  /*pls */
58
  'wp_slug' => 'gallery-plugin',
1006
  <span class="bws_info"><?php _e( 'Enter the unique gallery slug.', 'gallery-plugin' ); ?></span>
1007
  </td>
1008
  </tr>
1009
+ <tr valign="top">
1010
+ <th scope="row"><?php _e( 'ShortPixel Image Optimizer', 'gallery-plugin' ); ?></th>
1011
+ <td>
1012
+ <label>
1013
+ <input<?php echo $this->change_permission_attr; ?> type="checkbox" name="gllr_short_pixel" value="1" disabled /> <span class="bws_info"><?php _e( 'Enable to apply ShortPixel optimizer to gallery images.', 'gallery-plugin' ); ?></span>
1014
+ </label>
1015
+ </td>
1016
+ </tr>
1017
+ <tr id="gllr_for_short_pixel">
1018
+ <th scope="row"><?php _e( 'API Key', 'gallery-plugin' ); ?></th>
1019
+ <td>
1020
+ <input type="text" name="gllr_short_pixel_api_key" value="<?php echo $this->options["api_key"]; ?>" disabled />
1021
+ <div class="bws_info">
1022
+ <?php printf( __( 'Input API Key. If you don\'t have an API Key, please %s ', 'gallery-plugin' ), '<a href="https://shortpixel.com/wp-apikey" target="_blank">' . __( ' sign up to get your API key', 'gallery-plugin' ) . '</a>' ); ?>&nbsp;
1023
+ </div>
1024
+ </td>
1025
+ </tr>
1026
  </table>
1027
  </div>
1028
  <?php $this->bws_pro_block_links(); ?>
languages/gallery-plugin-ru_RU.mo CHANGED
Binary file
languages/gallery-plugin-ru_RU.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2020-03-24 13:30+0200\n"
6
- "PO-Revision-Date: 2020-03-24 13:31+0200\n"
7
  "Last-Translator: bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: BestWebSoft <plugin@bestwebsoft.com>\n"
9
  "Language: ru_RU\n"
@@ -17,117 +17,117 @@ msgstr ""
17
  "X-Poedit-SearchPath-0: .\n"
18
  "X-Poedit-SearchPathExcluded-0: bws_menu\n"
19
 
20
- #: gallery-plugin.php:39 includes/class-gllr-settings.php:295
21
  msgid "Gallery Settings"
22
  msgstr "Настройки Галерей"
23
 
24
- #: gallery-plugin.php:39 includes/class-gllr-settings.php:333
25
  msgid "Global Settings"
26
  msgstr "Общие настройки"
27
 
28
- #: gallery-plugin.php:45 gallery-plugin.php:2994
29
  msgid "Upgrade to Pro"
30
  msgstr "Обновить до Pro"
31
 
32
- #: gallery-plugin.php:349
33
  msgid "Return to all albums"
34
  msgstr "Вернуться ко всем альбомам"
35
 
36
- #: gallery-plugin.php:363
37
  msgid "See images &raquo;"
38
  msgstr "Смотреть фотографии &raquo;"
39
 
40
- #: gallery-plugin.php:453 gallery-plugin.php:462
41
  msgid "Galleries"
42
  msgstr "Галереи"
43
 
44
- #: gallery-plugin.php:454 gallery-plugin.php:3296
45
  msgid "Gallery"
46
  msgstr "Галерея"
47
 
48
- #: gallery-plugin.php:455
49
  msgid "Add New Gallery"
50
  msgstr "Добавить новую галерею"
51
 
52
- #: gallery-plugin.php:456
53
  msgid "Edit Gallery"
54
  msgstr "Редактировать галерею"
55
 
56
- #: gallery-plugin.php:457
57
  msgid "New Gallery"
58
  msgstr "Новая галерея"
59
 
60
- #: gallery-plugin.php:458
61
  msgid "View Gallery"
62
  msgstr "Просмотреть галерею"
63
 
64
- #: gallery-plugin.php:459 includes/class-gllr-settings.php:998
65
  msgid "Search Galleries"
66
  msgstr "Искать галереи"
67
 
68
- #: gallery-plugin.php:460
69
  msgid "No Gallery found"
70
  msgstr "Ни одной галереи не найдено"
71
 
72
- #: gallery-plugin.php:482 gallery-plugin.php:1733 gallery-plugin.php:3268
73
  #: includes/class-gllr-widgets.php:25 includes/class-gllr-widgets.php:33
74
  #: includes/class-gllr-widgets.php:71 includes/class-gllr-widgets.php:95
75
  msgid "Gallery Categories"
76
  msgstr "Категории галерей"
77
 
78
- #: gallery-plugin.php:483 gallery-plugin.php:932
79
  msgid "Gallery Category"
80
  msgstr "Категория галерей"
81
 
82
- #: gallery-plugin.php:484
83
  msgid "Add Gallery Category"
84
  msgstr "Добавить категорию галерей"
85
 
86
- #: gallery-plugin.php:485
87
  msgid "Add New Gallery Category"
88
  msgstr "Добавить новую категорию галерей"
89
 
90
- #: gallery-plugin.php:486 gallery-plugin.php:487
91
  msgid "Edit Gallery Category"
92
  msgstr "Редактировать категорию галерей"
93
 
94
- #: gallery-plugin.php:488
95
  msgid "New Gallery Category"
96
  msgstr "Новая категория галерей"
97
 
98
- #: gallery-plugin.php:489 gallery-plugin.php:490
99
  msgid "View Gallery Category"
100
  msgstr "Просмотреть категорию галерей"
101
 
102
- #: gallery-plugin.php:491
103
  msgid "Find Gallery Category"
104
  msgstr "Найти категорию галерей"
105
 
106
- #: gallery-plugin.php:492
107
  msgid "No Gallery Categories found"
108
  msgstr "Ни одной категории галерей не найдено"
109
 
110
- #: gallery-plugin.php:493
111
  msgid "No Gallery Categories found in Trash"
112
  msgstr "Ни одной категории галерей в корзине не найдено"
113
 
114
- #: gallery-plugin.php:494
115
  msgid "Parent Gallery Category"
116
  msgstr "Родительская категория галереи"
117
 
118
- #: gallery-plugin.php:495
119
  msgid "Gallery Categories list navigation"
120
  msgstr "Навигация списка категории галерей"
121
 
122
- #: gallery-plugin.php:496
123
  msgid "Gallery Categories list"
124
  msgstr "Список категорий галерей"
125
 
126
- #: gallery-plugin.php:546
127
  msgid "Gallery Shortcode"
128
  msgstr "Шорткод галереи"
129
 
130
- #: gallery-plugin.php:555
131
  msgid ""
132
  "Add a single gallery with images to your posts, pages, custom post types or "
133
  "widgets by using the following shortcode:"
@@ -135,7 +135,7 @@ msgstr ""
135
  "Добавляйте одну галерею с изображениями в ваши записи, страницы, "
136
  "пользовательские типы записей или виджеты с помощью следующего шорткода:"
137
 
138
- #: gallery-plugin.php:559
139
  msgid ""
140
  "Add a gallery cover including featured image, description, and a link to "
141
  "your single gallery using the following shortcode:"
@@ -143,11 +143,11 @@ msgstr ""
143
  "Добавляйте альбом галереи, включая изображение альбома, описание и ссылку на "
144
  "полную галерею с помощью следующего шорткода:"
145
 
146
- #: gallery-plugin.php:671
147
  msgid "Note"
148
  msgstr "Примечание"
149
 
150
- #: gallery-plugin.php:671
151
  #, php-format
152
  msgid ""
153
  "When deleting a category, the galleries that belong to this category will "
@@ -156,118 +156,120 @@ msgstr ""
156
  "Удаление категории не приводит к удалению галерей из этой категории. Вместо "
157
  "этого галереи из удалённой категории будут перемещены в категорию %s."
158
 
159
- #: gallery-plugin.php:682
160
  msgid "Sort Galleries in Category by"
161
  msgstr "Сортировать галереи в категории по"
162
 
163
- #: gallery-plugin.php:685 gallery-plugin.php:3282
164
- #: includes/class-gllr-settings.php:697
165
  msgid "Gallery ID"
166
  msgstr "ID галереи"
167
 
168
- #: gallery-plugin.php:686 gallery-plugin.php:1730 gallery-plugin.php:2848
169
- #: gallery-plugin.php:2955 gallery-plugin.php:3068 gallery-plugin.php:3283
170
- #: includes/class-gllr-settings.php:698 includes/class-gllr-widgets.php:282
 
 
171
  msgid "Title"
172
  msgstr "Название"
173
 
174
- #: gallery-plugin.php:687 gallery-plugin.php:1735 gallery-plugin.php:3284
175
- #: includes/class-gllr-settings.php:526 includes/class-gllr-settings.php:699
176
  msgid "Date"
177
  msgstr "Дата"
178
 
179
- #: gallery-plugin.php:688 gallery-plugin.php:3285
180
- #: includes/class-gllr-settings.php:700
181
  msgid "Last modified date"
182
  msgstr "Дата последнего изменения"
183
 
184
- #: gallery-plugin.php:689 gallery-plugin.php:3286
185
- #: includes/class-gllr-settings.php:701
186
  msgid "Comment count"
187
  msgstr "Количество комментариев"
188
 
189
- #: gallery-plugin.php:690 gallery-plugin.php:3287
190
- #: includes/class-gllr-settings.php:702
191
  msgid "\"Order\" field on the gallery edit page"
192
  msgstr "Поле \"Порядок\" в редакторе галереи"
193
 
194
- #: gallery-plugin.php:691 gallery-plugin.php:1734 gallery-plugin.php:3288
195
- #: includes/class-gllr-settings.php:703
196
  msgid "Author"
197
  msgstr "Автор"
198
 
199
- #: gallery-plugin.php:692 gallery-plugin.php:3289
200
- #: includes/class-gllr-settings.php:527 includes/class-gllr-settings.php:704
201
  msgid "Random"
202
  msgstr "Произвольно"
203
 
204
- #: gallery-plugin.php:693 gallery-plugin.php:3290
205
  msgid "Plugin Settings"
206
  msgstr "Настройки плагина"
207
 
208
- #: gallery-plugin.php:695 gallery-plugin.php:3292
209
  msgid "Select galleries sorting order in your category."
210
  msgstr "Выберите порядок сортировки галерей в вашей категории."
211
 
212
- #: gallery-plugin.php:717 gallery-plugin.php:1732
213
  msgid "Shortcode"
214
  msgstr "Шорткод"
215
 
216
- #: gallery-plugin.php:763
217
  msgid "All Gallery Categories"
218
  msgstr "Все категории галерей"
219
 
220
- #: gallery-plugin.php:841
221
  msgid "You can't delete default gallery category."
222
  msgstr "Вы не можете удалить стандартную категорию галереи."
223
 
224
- #: gallery-plugin.php:1221 gallery-plugin.php:1329 gallery-plugin.php:2283
225
  msgid "Sorry, nothing found."
226
  msgstr "Извините, ничего не найдено."
227
 
228
- #: gallery-plugin.php:1729
229
  msgid "Featured Image"
230
  msgstr "Изображение альбома"
231
 
232
- #: gallery-plugin.php:1731 includes/class-gllr-settings.php:40
233
  msgid "Images"
234
  msgstr "Изображения"
235
 
236
- #: gallery-plugin.php:1814
237
  #, php-format
238
  msgid "%s Settings"
239
  msgstr "Настройки %s"
240
 
241
- #: gallery-plugin.php:1841 gallery-plugin.php:1859
242
- #: includes/class-gllr-settings.php:29 includes/class-gllr-settings.php:41
243
  msgid "Settings"
244
  msgstr "Настройки"
245
 
246
- #: gallery-plugin.php:1842
247
  msgid "FAQ"
248
  msgstr "FAQ"
249
 
250
- #: gallery-plugin.php:1843
251
  msgid "Support"
252
  msgstr "Поддержка"
253
 
254
- #: gallery-plugin.php:1882
255
  msgid "Updating images..."
256
  msgstr "Обновление изображений..."
257
 
258
- #: gallery-plugin.php:1883
259
  msgid "No images found."
260
  msgstr "Изображения не найдены."
261
 
262
- #: gallery-plugin.php:1884
263
  msgid "All images were updated."
264
  msgstr "Все изображения обновлены."
265
 
266
- #: gallery-plugin.php:1885
267
  msgid "Error."
268
  msgstr "Ошибка."
269
 
270
- #: gallery-plugin.php:1897
271
  msgid ""
272
  "You are about to remove these items from this gallery.\n"
273
  " 'Cancel' to stop, 'OK' to delete."
@@ -275,7 +277,7 @@ msgstr ""
275
  "Вы собираетесь удалить эти элементы из этой галереи.\n"
276
  " «Отмена» — оставить, «ОК» — удалить."
277
 
278
- #: gallery-plugin.php:1898
279
  msgid ""
280
  "You are about to remove this image from the gallery.\n"
281
  " 'Cancel' to stop, 'OK' to delete."
@@ -283,7 +285,7 @@ msgstr ""
283
  "Вы собираетесь удалить это изображение из этой галереи.\n"
284
  " «Отмена» — оставить, «ОК» — удалить."
285
 
286
- #: gallery-plugin.php:1899
287
  msgid ""
288
  "Switching to another mode, all unsaved data will be lost. Save data before "
289
  "switching?"
@@ -291,27 +293,27 @@ msgstr ""
291
  "При переключении на другой режим все несохраненные данные будут потеряны. "
292
  "Сохранить данные перед переключением?"
293
 
294
- #: gallery-plugin.php:1900
295
  msgid "Insert Media"
296
  msgstr "Вставить медиафайл"
297
 
298
- #: gallery-plugin.php:1901
299
  msgid "Insert"
300
  msgstr "Вставить"
301
 
302
- #: gallery-plugin.php:1902
303
  msgid "A new slider is added."
304
  msgstr "Добавлен новый слайдер."
305
 
306
- #: gallery-plugin.php:1902
307
  msgid "Edit slider"
308
  msgstr "Редактировать слайдер"
309
 
310
- #: gallery-plugin.php:2494 gallery-plugin.php:2527
311
  msgid "Image size not defined"
312
  msgstr "Невозможно определить размер изображения"
313
 
314
- #: gallery-plugin.php:2514
315
  msgid ""
316
  "Plugin updates only PNG, JPEG, GIF, WPMP or XBM filetype. For other, please "
317
  "reload images manually."
@@ -319,75 +321,115 @@ msgstr ""
319
  "Плагин может обновить только следующие типы файлов: PNG, JPEG, GIF, XBM или "
320
  "WPMP. Для других, пожалуйста, вручную перезагрузите изображения."
321
 
322
- #: gallery-plugin.php:2560 gallery-plugin.php:2564 gallery-plugin.php:2570
323
  msgid "Invalid path"
324
  msgstr "Путь к изображению некорректный"
325
 
326
- #: gallery-plugin.php:2668
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
327
  msgid "List View"
328
  msgstr "В виде списка"
329
 
330
- #: gallery-plugin.php:2669
331
  msgid "Grid View"
332
  msgstr "В виде сетки"
333
 
334
- #: gallery-plugin.php:2725
335
  msgid "Filter"
336
  msgstr "Фильтр"
337
 
338
- #: gallery-plugin.php:2729
339
  msgid "Empty Trash"
340
  msgstr "Очистить корзину"
341
 
342
- #: gallery-plugin.php:2752
343
  msgid "No images found"
344
  msgstr "Ни одного изображения не найдено"
345
 
346
- #: gallery-plugin.php:2805
347
  msgid "Select bulk action"
348
  msgstr "Выберите массовое действие"
349
 
350
- #: gallery-plugin.php:2807
351
  msgid "Bulk Actions"
352
  msgstr "Действия"
353
 
354
- #: gallery-plugin.php:2817
355
  msgid "Apply"
356
  msgstr "Применить"
357
 
358
- #: gallery-plugin.php:2824
359
  msgid "Delete from Gallery"
360
  msgstr "Удалить из галереи"
361
 
362
- #: gallery-plugin.php:2833
363
  msgid "Bulk Select"
364
  msgstr "Выбор"
365
 
366
- #: gallery-plugin.php:2834
367
  msgid "Cancel Selection"
368
  msgstr "Отменить выбор"
369
 
370
- #: gallery-plugin.php:2835
371
  msgid "Delete Selected"
372
  msgstr "Удалить выбранное"
373
 
374
- #: gallery-plugin.php:2846
375
  msgid "File"
376
  msgstr "Файл"
377
 
378
- #: gallery-plugin.php:2847 gallery-plugin.php:2950 gallery-plugin.php:3063
 
 
379
  msgid "Dimensions"
380
  msgstr "Размеры"
381
 
382
- #: gallery-plugin.php:2849 gallery-plugin.php:2961 gallery-plugin.php:3073
 
 
383
  msgid "Alt Text"
384
  msgstr "Альтернативный текст"
385
 
386
- #: gallery-plugin.php:2850 gallery-plugin.php:2965 gallery-plugin.php:3078
 
 
387
  msgid "URL"
388
  msgstr "Ссылка"
389
 
390
- #: gallery-plugin.php:2850 gallery-plugin.php:2967
 
391
  msgid ""
392
  "Enter your custom URL to link this image to other page or file. Leave blank "
393
  "to open a full size image."
@@ -396,136 +438,107 @@ msgstr ""
396
  "страницей или файлом. Оставьте пустым, чтобы открыть полноразмерное "
397
  "изображение."
398
 
399
- #: gallery-plugin.php:2932
400
  msgid "Remove Image from Gallery"
401
  msgstr "Удалить изображение из галереи"
402
 
403
- #: gallery-plugin.php:2935
404
  msgid "Edit Image Info"
405
  msgstr "Изменить информацию изображения"
406
 
407
- #: gallery-plugin.php:2936
408
  msgid "Deselect"
409
  msgstr "Отменить выбор"
410
 
411
- #: gallery-plugin.php:2948
412
  msgid "File name"
413
  msgstr "Название файла"
414
 
415
- #: gallery-plugin.php:2949
416
  msgid "File type"
417
  msgstr "Тип файла"
418
 
419
- #: gallery-plugin.php:2974
420
  msgid "Description"
421
  msgstr "Описание"
422
 
423
- #: gallery-plugin.php:2980
424
  msgid "Lightbox Button URL"
425
  msgstr "Ссылка для кнопки в лайтбоксе"
426
 
427
- #: gallery-plugin.php:2987
428
  msgid "New Tab"
429
  msgstr "Новая вкладка"
430
 
431
- #: gallery-plugin.php:2989
432
  msgid "Enable to open URLs above in a new tab."
433
  msgstr "Включите, чтобы открыть ссылку в новой вкладке."
434
 
435
- #: gallery-plugin.php:2994
436
  msgid "Go Pro"
437
  msgstr "Обновить до Pro"
438
 
439
- #: gallery-plugin.php:3000
440
  msgid "Edit more details"
441
  msgstr "Изменить детали"
442
 
443
- #: gallery-plugin.php:3002
444
  msgid "Remove from Gallery"
445
  msgstr "Удалить из галереи"
446
 
447
- #: gallery-plugin.php:3038
448
  #, php-format
449
  msgid "Select %s"
450
  msgstr "Выбрать %s"
451
 
452
- #: gallery-plugin.php:3051
453
  #, php-format
454
  msgid "Edit &#8220;%s&#8221;"
455
  msgstr "Изменить &#8220;%s&#8221;"
456
 
457
- #: gallery-plugin.php:3059
458
  msgid "Edit Attachment Info"
459
  msgstr "Изменить информацию изображения"
460
 
461
- #: gallery-plugin.php:3096 gallery-plugin.php:3112
 
462
  msgid "Edit"
463
  msgstr "Изменить"
464
 
465
- #: gallery-plugin.php:3100 gallery-plugin.php:3118
 
466
  msgid "Trash"
467
  msgstr "Удалить"
468
 
469
- #: gallery-plugin.php:3103 gallery-plugin.php:3122
 
470
  msgid "Delete Permanently"
471
  msgstr "Удалить навсегда"
472
 
473
- #: gallery-plugin.php:3106 gallery-plugin.php:3128
 
474
  #, php-format
475
  msgid "View &#8220;%s&#8221;"
476
  msgstr "Просмотр &#8220;%s&#8221;"
477
 
478
- #: gallery-plugin.php:3106 gallery-plugin.php:3128
479
- #: includes/class-gllr-widgets.php:90
480
  msgid "View"
481
  msgstr "Просмотр"
482
 
483
- #: gallery-plugin.php:3108
484
  msgid "Attach"
485
  msgstr "Прикрепить"
486
 
487
- #: gallery-plugin.php:3116
488
  msgid "Restore"
489
  msgstr "Восстановить"
490
 
491
- #: gallery-plugin.php:3248 gallery-plugin.php:3409
492
- msgid "Warning"
493
- msgstr "Внимание"
494
-
495
- #: gallery-plugin.php:3248
496
- msgid "You can add only images to the gallery"
497
- msgstr "Вы можете добавить только изображения в галерею"
498
-
499
- #: gallery-plugin.php:3303
500
- msgid "no title"
501
- msgstr "без названия"
502
-
503
- #: gallery-plugin.php:3313
504
- msgid ""
505
- "Display an album image with the description and the link to a single gallery "
506
- "page"
507
- msgstr ""
508
- "Отобразить изображение альбома с описанием и ссылкой на отдельную страницу "
509
- "галереи"
510
-
511
- #: gallery-plugin.php:3317
512
- msgid "Sorry, no gallery found."
513
- msgstr "Извините, галерей не найдено."
514
-
515
- #: gallery-plugin.php:3409
516
- #, php-format
517
- msgid ""
518
- "Maximum upload file size %s. Contact your administrator or hosting provider "
519
- "if you need to upload a large file size."
520
- msgstr ""
521
- "Максимальный размер файла %s. Свяжитесь с вашим администратором или "
522
- "провайдером хостинга, если вам нужно загрузить файл большего размера."
523
-
524
  #: includes/class-gllr-settings.php:30
525
  msgid "Cover"
526
  msgstr "Альбом"
527
 
528
- #: includes/class-gllr-settings.php:31 includes/class-gllr-settings.php:770
529
  msgid "Lightbox"
530
  msgstr "Лайтбокс"
531
 
@@ -545,134 +558,134 @@ msgstr "Пользовательский код"
545
  msgid "Import / Export"
546
  msgstr "Импорт / Экспорт"
547
 
548
- #: includes/class-gllr-settings.php:36
549
  msgid "License Key"
550
  msgstr "Лицензионный ключ"
551
 
552
- #: includes/class-gllr-settings.php:225
553
  msgid "Settings saved"
554
  msgstr "Настройки сохранены"
555
 
556
- #: includes/class-gllr-settings.php:237 includes/class-gllr-widgets.php:358
557
  msgid "Please, enable JavaScript in Your browser."
558
  msgstr "Пожалуйста, включите JavaScript в вашем браузере."
559
 
560
- #: includes/class-gllr-settings.php:241
561
  msgid "Custom image size was changed. You need to update gallery images."
562
  msgstr ""
563
  "Пользовательский размер изображения был изменен. Вам необходимо обновить "
564
  "изображения галерей."
565
 
566
- #: includes/class-gllr-settings.php:242
567
  msgid "Update Images"
568
  msgstr "Обновить изображения"
569
 
570
- #: includes/class-gllr-settings.php:257
571
  msgid "Gallery Images"
572
  msgstr "Изображения галереи"
573
 
574
- #: includes/class-gllr-settings.php:262
575
  msgid "Images adding requires JavaScript."
576
  msgstr "Добавление изображений требует наличия JavaScript."
577
 
578
- #: includes/class-gllr-settings.php:265
579
  msgid "Add Media"
580
  msgstr "Добавить медиафайл"
581
 
582
- #: includes/class-gllr-settings.php:274
583
  msgid "The grid view for the Gallery images requires JavaScript."
584
  msgstr "Просмотр галереи в виде сетки требует наличия JavaScript."
585
 
586
- #: includes/class-gllr-settings.php:274
587
  msgid "Switch to the list view"
588
  msgstr "Переключиться на список"
589
 
590
- #: includes/class-gllr-settings.php:301
591
  msgid "Create Slider"
592
  msgstr "Создание слайдера"
593
 
594
- #: includes/class-gllr-settings.php:313
595
  msgid "Activate"
596
  msgstr "Активировать"
597
 
598
- #: includes/class-gllr-settings.php:316 includes/class-gllr-settings.php:1019
599
  msgid "Install Now"
600
  msgstr "Установить сейчас"
601
 
602
- #: includes/class-gllr-settings.php:318
603
  msgid "Create New Slider"
604
  msgstr "Создать новый слайдер"
605
 
606
- #: includes/class-gllr-settings.php:321
607
  msgid ""
608
  "Click to create a new slider using gallery images. Slider plugin is required."
609
  msgstr ""
610
  "Нажмите, чтобы создать новый слайдер, используя галерею изображений. Плагин "
611
  "слайдера обязателен."
612
 
613
- #: includes/class-gllr-settings.php:331
614
  msgid "Single Gallery Settings"
615
  msgstr "Настройки галереи"
616
 
617
- #: includes/class-gllr-settings.php:333
618
  #, php-format
619
  msgid "Enable to configure single gallery settings and disable %s."
620
  msgstr "Включите, чтобы настроить параметры этой галереи и отключить %s."
621
 
622
- #: includes/class-gllr-settings.php:345 includes/class-gllr-settings.php:402
623
- #: includes/class-gllr-settings.php:446 includes/class-gllr-settings.php:496
624
- #: includes/class-gllr-settings.php:640 includes/class-gllr-settings.php:722
625
- #: includes/class-gllr-settings.php:783 includes/class-gllr-settings.php:833
626
- #: includes/class-gllr-settings.php:892 includes/class-gllr-settings.php:980
627
  msgid "Close"
628
  msgstr "Закрыть"
629
 
630
- #: includes/class-gllr-settings.php:349
631
  msgid "Gallery Layout"
632
  msgstr "Макет галереи"
633
 
634
- #: includes/class-gllr-settings.php:354
635
  msgid "Grid"
636
  msgstr "Сетка"
637
 
638
- #: includes/class-gllr-settings.php:360
639
  msgid "Masonry"
640
  msgstr "Masonry"
641
 
642
- #: includes/class-gllr-settings.php:373
643
  msgid "Number of Columns"
644
  msgstr "Количество колонок"
645
 
646
- #: includes/class-gllr-settings.php:376
647
  #, php-format
648
  msgid "Number of gallery columns (default is %s)."
649
  msgstr "Количество колонок галерей (по умолчанию - %s)."
650
 
651
- #: includes/class-gllr-settings.php:380 includes/class-gllr-settings.php:787
652
  msgid "Image Size"
653
  msgstr "Размер изображения"
654
 
655
- #: includes/class-gllr-settings.php:386 includes/class-gllr-settings.php:625
656
  msgid "Custom"
657
  msgstr "Пользовательский"
658
 
659
- #: includes/class-gllr-settings.php:388
660
  msgid ""
661
  "Maximum gallery image size. \"Custom\" uses the Image Dimensions values."
662
  msgstr ""
663
  "Максимальный размер изображений галереи. \"Пользовательский\" использует "
664
  "значения, указанные в поле Размеры изображения."
665
 
666
- #: includes/class-gllr-settings.php:392
667
  msgid "Custom Image Size"
668
  msgstr "Пользовательский размер изображения"
669
 
670
- #: includes/class-gllr-settings.php:394 includes/class-gllr-settings.php:482
671
- #: includes/class-gllr-settings.php:633 includes/class-gllr-settings.php:683
672
  msgid "px"
673
  msgstr "пикс"
674
 
675
- #: includes/class-gllr-settings.php:395
676
  msgid ""
677
  "Adjust these values based on the number of columns in your gallery. This "
678
  "won't effect the full size of your images in the lightbox."
@@ -680,11 +693,11 @@ msgstr ""
680
  "Отрегулируйте эти значения на основе числа колонок в вашей галерее. Это не "
681
  "влияет на размеры полного изображения в лайтбоксе."
682
 
683
- #: includes/class-gllr-settings.php:406
684
  msgid "Crop Images"
685
  msgstr "Обрезка изображений"
686
 
687
- #: includes/class-gllr-settings.php:408
688
  msgid ""
689
  "Enable to crop images using the sizes defined for Custom Image Size. Disable "
690
  "to resize images automatically using their aspect ratio."
@@ -693,41 +706,41 @@ msgstr ""
693
  "пользовательского размера изображения. Отключите, чтобы изменить размер "
694
  "изображения автоматически, используя их пропорции."
695
 
696
- #: includes/class-gllr-settings.php:412 includes/class-gllr-settings.php:650
697
  msgid "Crop Position"
698
  msgstr "Позиция обрезки"
699
 
700
- #: includes/class-gllr-settings.php:427 includes/class-gllr-settings.php:665
701
  msgid "Select crop position base (by default: center)."
702
  msgstr "Выберите позицию обрезки (по умолчанию: центр)."
703
 
704
- #: includes/class-gllr-settings.php:437
705
  msgid "Image Title"
706
  msgstr "Название изображения"
707
 
708
- #: includes/class-gllr-settings.php:439
709
  msgid "Enable to display image title along with the gallery image."
710
  msgstr ""
711
  "Включите, чтобы отобразить название изображения вместе с изображением "
712
  "галереи."
713
 
714
- #: includes/class-gllr-settings.php:450
715
  msgid "Image Title Position"
716
  msgstr "Расположение названия изображения"
717
 
718
- #: includes/class-gllr-settings.php:455
719
  msgid "Below images"
720
  msgstr "Ниже изображения"
721
 
722
- #: includes/class-gllr-settings.php:461
723
  msgid "On mouse hover"
724
  msgstr "По наведению мыши"
725
 
726
- #: includes/class-gllr-settings.php:474
727
  msgid "Image Border"
728
  msgstr "Рамка изображения"
729
 
730
- #: includes/class-gllr-settings.php:476
731
  msgid ""
732
  "Enable images border using the styles defined for Image Border Size and "
733
  "Color options."
@@ -735,24 +748,36 @@ msgstr ""
735
  "Включить рамку изображения с использованием стилей, указанных для Цвета и "
736
  "Размера рамки."
737
 
738
- #: includes/class-gllr-settings.php:480
739
  msgid "Image Border Size"
740
  msgstr "Размер рамки изображения"
741
 
742
- #: includes/class-gllr-settings.php:483
743
  #, php-format
744
  msgid "Gallery image border width (default is %s)."
745
  msgstr "Ширина рамки для изображений галереи (по умолчанию %s)."
746
 
747
- #: includes/class-gllr-settings.php:487
748
  msgid "Image Border Color"
749
  msgstr "Цвет рамки изображений"
750
 
751
- #: includes/class-gllr-settings.php:500
 
 
 
 
 
 
 
 
 
 
 
 
752
  msgid "Pagination"
753
  msgstr "Постраничная навигация"
754
 
755
- #: includes/class-gllr-settings.php:503
756
  msgid ""
757
  "Enable pagination for images to limit number of images displayed on a single "
758
  "gallery page."
@@ -760,33 +785,33 @@ msgstr ""
760
  "Включить постраничную навигацию для изображений, чтобы ограничить количество "
761
  "изображений, отображаемых на одной странице галереи."
762
 
763
- #: includes/class-gllr-settings.php:507
764
  msgid "Number of Images"
765
  msgstr "Количество изображений"
766
 
767
- #: includes/class-gllr-settings.php:510
768
  #, php-format
769
  msgid "Number of images displayed per page (default is %d)."
770
  msgstr ""
771
  "Количество изображений, отображаемых на одной странице (по умолчанию %d)."
772
 
773
- #: includes/class-gllr-settings.php:520
774
  msgid "Sort Images by"
775
  msgstr "Cортировка изображений по"
776
 
777
- #: includes/class-gllr-settings.php:523
778
  msgid "Manually (default)"
779
  msgstr "Вручную (по умолчанию)"
780
 
781
- #: includes/class-gllr-settings.php:524
782
  msgid "Image ID"
783
  msgstr "ID изображения"
784
 
785
- #: includes/class-gllr-settings.php:525
786
  msgid "Name"
787
  msgstr "Название"
788
 
789
- #: includes/class-gllr-settings.php:529
790
  msgid ""
791
  "Select images sorting order in your gallery. By default, you can sort images "
792
  "manually in the images tab."
@@ -794,23 +819,23 @@ msgstr ""
794
  "Выберите порядок сортировки изображений в вашей галерее. По умолчанию, это "
795
  "ручная сортировка изображения на вкладке изображений."
796
 
797
- #: includes/class-gllr-settings.php:533
798
  msgid "Arrange Images by"
799
  msgstr "Сортировка изображений"
800
 
801
- #: includes/class-gllr-settings.php:536 includes/class-gllr-settings.php:713
802
  msgid "Ascending (e.g. 1, 2, 3; a, b, c)"
803
  msgstr "По возрастанию (например, 1, 2, 3; а, б, в)"
804
 
805
- #: includes/class-gllr-settings.php:537 includes/class-gllr-settings.php:714
806
  msgid "Descending (e.g. 3, 2, 1; c, b, a)"
807
  msgstr "По убыванию (например, 3, 2, 1; в, б, а)"
808
 
809
- #: includes/class-gllr-settings.php:542
810
  msgid "Back Link"
811
  msgstr "Обратная ссылка"
812
 
813
- #: includes/class-gllr-settings.php:544
814
  msgid ""
815
  "Enable to show a back link in a single gallery page which navigate to a "
816
  "previous page."
@@ -818,107 +843,107 @@ msgstr ""
818
  "Включите, чтобы показать обратную ссылку на странице галереи, которая "
819
  "перейдет к предыдущей странице."
820
 
821
- #: includes/class-gllr-settings.php:548
822
  msgid "Back Link URL"
823
  msgstr "URL обратной ссылки"
824
 
825
- #: includes/class-gllr-settings.php:551
826
  msgid ""
827
  "Leave blank to use the Gallery page template or enter a custom page URL."
828
  msgstr ""
829
  "Оставьте пустым, чтобы использовать шаблон страницы галереи или введите "
830
  "пользовательский URL страницы."
831
 
832
- #: includes/class-gllr-settings.php:555
833
  msgid "Back Link Label"
834
  msgstr "Текст обратной ссылки"
835
 
836
- #: includes/class-gllr-settings.php:561
837
  msgid "Back Link with Shortcode"
838
  msgstr "Обратная ссылка шорткода"
839
 
840
- #: includes/class-gllr-settings.php:564
841
  msgid "Enable to display a back link on a page where shortcode is used."
842
  msgstr ""
843
  "Включите, чтобы отображать обратную ссылку на страницу при использовании "
844
  "шорткода."
845
 
846
- #: includes/class-gllr-settings.php:568
847
  msgid "Disable Fancybox"
848
  msgstr "Отключить Fancybox"
849
 
850
- #: includes/class-gllr-settings.php:570
851
  msgid "Enable to avoid possible conflicts with a 3rd party Fancybox."
852
  msgstr "Включите, чтобы избежать возможных конфликтов со сторонними fancybox."
853
 
854
- #: includes/class-gllr-settings.php:581
855
  msgid "Cover Settings"
856
  msgstr "Настройки альбома"
857
 
858
- #: includes/class-gllr-settings.php:586
859
  msgid "Galleries Page"
860
  msgstr "Страница галерей"
861
 
862
- #: includes/class-gllr-settings.php:594
863
  msgid "Base page where all existing galleries will be displayed."
864
  msgstr ""
865
  "Базовая страница, на которой будут отображаться все существующие галереи."
866
 
867
- #: includes/class-gllr-settings.php:598
868
  msgid "Albums Displaying"
869
  msgstr "Отображение альбомов"
870
 
871
- #: includes/class-gllr-settings.php:601
872
  msgid "Column"
873
  msgstr "В колонку"
874
 
875
- #: includes/class-gllr-settings.php:602
876
  msgid "Rows"
877
  msgstr "В строку"
878
 
879
- #: includes/class-gllr-settings.php:604
880
  msgid "Select the way galleries will be displayed on the Galleries Page."
881
  msgstr "Выберите способ отображения галерей на Странице галерей."
882
 
883
- #: includes/class-gllr-settings.php:608
884
  msgid "Column Alignment"
885
  msgstr "Ориентация колонки"
886
 
887
- #: includes/class-gllr-settings.php:611
888
  msgid "Left"
889
  msgstr "Лево"
890
 
891
- #: includes/class-gllr-settings.php:612
892
  msgid "Right"
893
  msgstr "Право"
894
 
895
- #: includes/class-gllr-settings.php:613
896
  msgid "Center"
897
  msgstr "Центр"
898
 
899
- #: includes/class-gllr-settings.php:615
900
  msgid "Select the column alignment."
901
  msgstr "Выберите ориентацию колонки."
902
 
903
- #: includes/class-gllr-settings.php:619
904
  msgid "Cover Image Size"
905
  msgstr "Размер изображения альбома"
906
 
907
- #: includes/class-gllr-settings.php:627
908
  msgid "Maximum cover image size. Custom uses the Image Dimensions values."
909
  msgstr ""
910
  "Максимальный размер изображения альбома. Пользовательский использует "
911
  "значения Размеров изображения."
912
 
913
- #: includes/class-gllr-settings.php:631
914
  msgid "Custom Cover Image Size"
915
  msgstr "Пользовательский размер изображения альбома"
916
 
917
- #: includes/class-gllr-settings.php:644
918
  msgid "Crop Cover Images"
919
  msgstr "Обрезка изображения альбома"
920
 
921
- #: includes/class-gllr-settings.php:646
922
  msgid ""
923
  "Enable to crop images using the sizes defined for Custom Cover Image Size. "
924
  "Disable to resize images automatically using their aspect ratio."
@@ -927,11 +952,11 @@ msgstr ""
927
  "пользовательского размера изображения альбома. Отключите, чтобы изменить "
928
  "размер изображения автоматически, используя их пропорции."
929
 
930
- #: includes/class-gllr-settings.php:675
931
  msgid "Cover Image Border"
932
  msgstr "Рамка для изображения альбома"
933
 
934
- #: includes/class-gllr-settings.php:677
935
  msgid ""
936
  "Enable cover images border using the styles defined for Image Border Size "
937
  "and Color."
@@ -939,36 +964,36 @@ msgstr ""
939
  "Включить рамку изображения альбома с использованием стилей, указанных для "
940
  "Цвета и Размера рамки."
941
 
942
- #: includes/class-gllr-settings.php:681
943
  msgid "Cover Image Border Size"
944
  msgstr "Размер рамки изображения альбома"
945
 
946
- #: includes/class-gllr-settings.php:684
947
  #, php-format
948
  msgid "Cover image border width (default is %s)."
949
  msgstr "Ширина рамки для изображения альбома (по умолчанию %s)."
950
 
951
- #: includes/class-gllr-settings.php:688
952
  msgid "Cover Image Border Color"
953
  msgstr "Цвет рамки для изображения альбома"
954
 
955
- #: includes/class-gllr-settings.php:694
956
  msgid "Sort Albums by"
957
  msgstr "Cортировка альбомов по"
958
 
959
- #: includes/class-gllr-settings.php:706
960
  msgid "Select galleries sorting order in your galleries page."
961
  msgstr "Выберите порядок сортировки галерей на странице галерей."
962
 
963
- #: includes/class-gllr-settings.php:710
964
  msgid "Arrange Albums by"
965
  msgstr "Сортировка альбомов по"
966
 
967
- #: includes/class-gllr-settings.php:726
968
  msgid "Instant Lightbox"
969
  msgstr "Мгновенный лайтбокс"
970
 
971
- #: includes/class-gllr-settings.php:729
972
  msgid ""
973
  "Enable to display all images in the lightbox after clicking cover image or "
974
  "URL instead of going to a single gallery page."
@@ -976,35 +1001,23 @@ msgstr ""
976
  "Включите, чтобы отображать все изображения в лайтбоксе после клика на "
977
  "изображение альбома или URL вместо перехода на отдельную страницу галереи."
978
 
979
- #: includes/class-gllr-settings.php:739
980
  msgid "Read More Link Label"
981
  msgstr "Текст ссылки Узнать больше"
982
 
983
- #: includes/class-gllr-settings.php:751
984
  msgid "Lightbox Settings"
985
  msgstr "Настройки лайтбокса"
986
 
987
- #: includes/class-gllr-settings.php:756
988
- msgid "Unclickable Thumbnail Images"
989
- msgstr "Некликабельные изображения"
990
-
991
- #: includes/class-gllr-settings.php:759
992
- msgid ""
993
- "Enable to make the images in a single gallery unclickable and hide their "
994
- "URLs. This option also disables Lightbox."
995
- msgstr ""
996
- "Включите, чтобы сделать миниатюры изображений в галерее некликабельными, а "
997
- "так же не отображать их ссылки. Эта опция так же отключает лайтбокс."
998
-
999
- #: includes/class-gllr-settings.php:763
1000
  msgid "Enable Lightbox"
1001
  msgstr "Включить лайтбокс"
1002
 
1003
- #: includes/class-gllr-settings.php:766
1004
  msgid "Enable to show the lightbox when clicking on gallery images."
1005
  msgstr "Включите, чтобы показать лайтбокс при нажатии на изображения галереи."
1006
 
1007
- #: includes/class-gllr-settings.php:794
1008
  msgid ""
1009
  "Select the maximum gallery image size for the lightbox view. \"Default\" "
1010
  "will display the original, full size image."
@@ -1012,15 +1025,15 @@ msgstr ""
1012
  "Выберите максимальный размер изображений галереи для просмотра в лайтбоксе. "
1013
  "По умолчанию будет отображаться оригинал, полный размер."
1014
 
1015
- #: includes/class-gllr-settings.php:798
1016
  msgid "Overlay Color"
1017
  msgstr "Цвет подложки"
1018
 
1019
- #: includes/class-gllr-settings.php:804
1020
  msgid "Overlay Opacity"
1021
  msgstr "Прозрачность подложки"
1022
 
1023
- #: includes/class-gllr-settings.php:807
1024
  #, php-format
1025
  msgid ""
1026
  "Lightbox overlay opacity. Leave blank to disable opacity (default is %s, max "
@@ -1029,75 +1042,75 @@ msgstr ""
1029
  "Прозрачность подложки лайтбокса. Оставьте пустым, чтобы отключить "
1030
  "прозрачность (по умолчанию %s, максимум %s)."
1031
 
1032
- #: includes/class-gllr-settings.php:817
1033
  msgid "Slideshow"
1034
  msgstr "Слайд-шоу"
1035
 
1036
- #: includes/class-gllr-settings.php:819
1037
  msgid "Enable to start the slideshow automatically when the lightbox is used."
1038
  msgstr ""
1039
  "Включение автоматического запуска слайд-шоу при использовании лайтбокса."
1040
 
1041
- #: includes/class-gllr-settings.php:823
1042
  msgid "Slideshow Duration"
1043
  msgstr "Интервал времени"
1044
 
1045
- #: includes/class-gllr-settings.php:825
1046
  msgid "ms"
1047
  msgstr "мс"
1048
 
1049
- #: includes/class-gllr-settings.php:826
1050
  msgid "Slideshow interval duration between two images."
1051
  msgstr "Интервал переключения между двумя изображениями."
1052
 
1053
- #: includes/class-gllr-settings.php:837
1054
  msgid "Lightbox Helpers"
1055
  msgstr "Вспомогательные элементы в лайтбоксе"
1056
 
1057
- #: includes/class-gllr-settings.php:839
1058
  msgid "Enable to display the lightbox toolbar and arrows."
1059
  msgstr ""
1060
  "Включите, чтобы показать панель инструментов и кнопки навигации лайтбокса."
1061
 
1062
- #: includes/class-gllr-settings.php:843
1063
  msgid "Lightbox Thumbnails"
1064
  msgstr "Миниатюры в лайтбоксе"
1065
 
1066
- #: includes/class-gllr-settings.php:845
1067
  msgid "Enable to use a lightbox helper navigation between images."
1068
  msgstr ""
1069
  "Разрешить использовать вспомогательные элементы лайтбокса для навигации "
1070
  "между изображениями."
1071
 
1072
- #: includes/class-gllr-settings.php:849
1073
  msgid "Lightbox Thumbnails Position"
1074
  msgstr "Расположение миниатюр в лайтбоксе"
1075
 
1076
- #: includes/class-gllr-settings.php:852
1077
  msgid "Top"
1078
  msgstr "Верх"
1079
 
1080
- #: includes/class-gllr-settings.php:857
1081
  msgid "Lightbox Button Label"
1082
  msgstr "Текст кнопки в лайтбоксе"
1083
 
1084
- #: includes/class-gllr-settings.php:859
1085
  msgid "Read More"
1086
  msgstr "Подробнее"
1087
 
1088
- #: includes/class-gllr-settings.php:869
1089
  msgid "Download Button"
1090
  msgstr "Кнопка \"Скачать\""
1091
 
1092
- #: includes/class-gllr-settings.php:871
1093
  msgid "Enable to display download button."
1094
  msgstr "Включите, чтобы показать ссылку для скачивания исходного изображения."
1095
 
1096
- #: includes/class-gllr-settings.php:875
1097
  msgid "Single Lightbox"
1098
  msgstr "Один лайтбокс"
1099
 
1100
- #: includes/class-gllr-settings.php:877
1101
  msgid ""
1102
  "Enable to use a single lightbox for multiple galleries located on a single "
1103
  "page."
@@ -1105,35 +1118,35 @@ msgstr ""
1105
  "Включите, чтобы использовать один лайтбокс для нескольких галерей, "
1106
  "расположенных на одной странице."
1107
 
1108
- #: includes/class-gllr-settings.php:887
1109
  msgid "Social Sharing Buttons Settings"
1110
  msgstr "Настройки социальных кнопок"
1111
 
1112
- #: includes/class-gllr-settings.php:896
1113
  msgid "Social Buttons"
1114
  msgstr "Социальные кнопки"
1115
 
1116
- #: includes/class-gllr-settings.php:898
1117
  msgid "Enable social sharing buttons in the lightbox."
1118
  msgstr "Включите социальные кнопки в лайтбоксе."
1119
 
1120
- #: includes/class-gllr-settings.php:902
1121
  msgid "Social Networks"
1122
  msgstr "Социальные сети"
1123
 
1124
- #: includes/class-gllr-settings.php:912
1125
  msgid "Counter"
1126
  msgstr "Счетчик"
1127
 
1128
- #: includes/class-gllr-settings.php:915
1129
  msgid "Enable to show likes counter for each social button."
1130
  msgstr "Включите, чтобы показать счетчик для каждой социальной кнопки."
1131
 
1132
- #: includes/class-gllr-settings.php:930
1133
  msgid "Demo Data"
1134
  msgstr "Демо-данные"
1135
 
1136
- #: includes/class-gllr-settings.php:932
1137
  msgid ""
1138
  "Install demo data to create galleries with images, post with shortcodes and "
1139
  "page with a list of all galleries."
@@ -1141,11 +1154,11 @@ msgstr ""
1141
  "Установите демо-данные, чтобы создать галереи с изображениями, запись с "
1142
  "шорткодами и страницу со списком всех галерей."
1143
 
1144
- #: includes/class-gllr-settings.php:970
1145
  msgid "Gallery Post Type"
1146
  msgstr "Тип записи галереи"
1147
 
1148
- #: includes/class-gllr-settings.php:972
1149
  msgid ""
1150
  "Enable to avoid conflicts with other gallery plugins installed. All "
1151
  "galleries created earlier will stay unchanged. However, after enabling we "
@@ -1157,23 +1170,45 @@ msgstr ""
1157
  "переименования проверьте, пожалуйста, настройки других плагинов, где "
1158
  "используется тип записи \"gallery\"."
1159
 
1160
- #: includes/class-gllr-settings.php:984
1161
  msgid "Gallery Slug"
1162
  msgstr "Слаг галереи"
1163
 
1164
- #: includes/class-gllr-settings.php:988
1165
  msgid "Enter the unique gallery slug."
1166
  msgstr "Введите уникальный слаг галереи."
1167
 
1168
- #: includes/class-gllr-settings.php:1004
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1169
  msgid "Activate Now"
1170
  msgstr "Активировать сейчас"
1171
 
1172
- #: includes/class-gllr-settings.php:1022
1173
  msgid "Enable to include galleries to your website search."
1174
  msgstr "Включить галерею в поиск на вашем сайте."
1175
 
1176
- #: includes/class-gllr-settings.php:1022
1177
  #, php-format
1178
  msgid "%s is required."
1179
  msgstr "Требуется %s."
@@ -1336,7 +1371,6 @@ msgstr "Хотите установить демо-контент и настр
1336
  #~ msgid "Try to disable 3rd-party fancybox"
1337
  #~ msgstr "Попробуйте отключить сторонний fancybox"
1338
 
1339
- #, php-format
1340
  #~ msgid ""
1341
  #~ "Do you want to install demo content and settings for %s? (You can do this "
1342
  #~ "later using Import / Export settings)"
2
  msgstr ""
3
  "Project-Id-Version: Gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2021-08-20 14:44+0300\n"
6
+ "PO-Revision-Date: 2021-08-20 14:44+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: BestWebSoft <plugin@bestwebsoft.com>\n"
9
  "Language: ru_RU\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
  "X-Poedit-SearchPathExcluded-0: bws_menu\n"
19
 
20
+ #: gallery-plugin.php:41 includes/class-gllr-settings.php:299
21
  msgid "Gallery Settings"
22
  msgstr "Настройки Галерей"
23
 
24
+ #: gallery-plugin.php:41 includes/class-gllr-settings.php:338
25
  msgid "Global Settings"
26
  msgstr "Общие настройки"
27
 
28
+ #: gallery-plugin.php:48 includes/class-gllr-media-table.php:346
29
  msgid "Upgrade to Pro"
30
  msgstr "Обновить до Pro"
31
 
32
+ #: gallery-plugin.php:354
33
  msgid "Return to all albums"
34
  msgstr "Вернуться ко всем альбомам"
35
 
36
+ #: gallery-plugin.php:368
37
  msgid "See images &raquo;"
38
  msgstr "Смотреть фотографии &raquo;"
39
 
40
+ #: gallery-plugin.php:461 gallery-plugin.php:470
41
  msgid "Galleries"
42
  msgstr "Галереи"
43
 
44
+ #: gallery-plugin.php:462 gallery-plugin.php:2829
45
  msgid "Gallery"
46
  msgstr "Галерея"
47
 
48
+ #: gallery-plugin.php:463
49
  msgid "Add New Gallery"
50
  msgstr "Добавить новую галерею"
51
 
52
+ #: gallery-plugin.php:464
53
  msgid "Edit Gallery"
54
  msgstr "Редактировать галерею"
55
 
56
+ #: gallery-plugin.php:465
57
  msgid "New Gallery"
58
  msgstr "Новая галерея"
59
 
60
+ #: gallery-plugin.php:466
61
  msgid "View Gallery"
62
  msgstr "Просмотреть галерею"
63
 
64
+ #: gallery-plugin.php:467 includes/class-gllr-settings.php:1034
65
  msgid "Search Galleries"
66
  msgstr "Искать галереи"
67
 
68
+ #: gallery-plugin.php:468
69
  msgid "No Gallery found"
70
  msgstr "Ни одной галереи не найдено"
71
 
72
+ #: gallery-plugin.php:490 gallery-plugin.php:1740 gallery-plugin.php:2801
73
  #: includes/class-gllr-widgets.php:25 includes/class-gllr-widgets.php:33
74
  #: includes/class-gllr-widgets.php:71 includes/class-gllr-widgets.php:95
75
  msgid "Gallery Categories"
76
  msgstr "Категории галерей"
77
 
78
+ #: gallery-plugin.php:491 gallery-plugin.php:940
79
  msgid "Gallery Category"
80
  msgstr "Категория галерей"
81
 
82
+ #: gallery-plugin.php:492
83
  msgid "Add Gallery Category"
84
  msgstr "Добавить категорию галерей"
85
 
86
+ #: gallery-plugin.php:493
87
  msgid "Add New Gallery Category"
88
  msgstr "Добавить новую категорию галерей"
89
 
90
+ #: gallery-plugin.php:494 gallery-plugin.php:495
91
  msgid "Edit Gallery Category"
92
  msgstr "Редактировать категорию галерей"
93
 
94
+ #: gallery-plugin.php:496
95
  msgid "New Gallery Category"
96
  msgstr "Новая категория галерей"
97
 
98
+ #: gallery-plugin.php:497 gallery-plugin.php:498
99
  msgid "View Gallery Category"
100
  msgstr "Просмотреть категорию галерей"
101
 
102
+ #: gallery-plugin.php:499
103
  msgid "Find Gallery Category"
104
  msgstr "Найти категорию галерей"
105
 
106
+ #: gallery-plugin.php:500
107
  msgid "No Gallery Categories found"
108
  msgstr "Ни одной категории галерей не найдено"
109
 
110
+ #: gallery-plugin.php:501
111
  msgid "No Gallery Categories found in Trash"
112
  msgstr "Ни одной категории галерей в корзине не найдено"
113
 
114
+ #: gallery-plugin.php:502
115
  msgid "Parent Gallery Category"
116
  msgstr "Родительская категория галереи"
117
 
118
+ #: gallery-plugin.php:503
119
  msgid "Gallery Categories list navigation"
120
  msgstr "Навигация списка категории галерей"
121
 
122
+ #: gallery-plugin.php:504
123
  msgid "Gallery Categories list"
124
  msgstr "Список категорий галерей"
125
 
126
+ #: gallery-plugin.php:554
127
  msgid "Gallery Shortcode"
128
  msgstr "Шорткод галереи"
129
 
130
+ #: gallery-plugin.php:563
131
  msgid ""
132
  "Add a single gallery with images to your posts, pages, custom post types or "
133
  "widgets by using the following shortcode:"
135
  "Добавляйте одну галерею с изображениями в ваши записи, страницы, "
136
  "пользовательские типы записей или виджеты с помощью следующего шорткода:"
137
 
138
+ #: gallery-plugin.php:567
139
  msgid ""
140
  "Add a gallery cover including featured image, description, and a link to "
141
  "your single gallery using the following shortcode:"
143
  "Добавляйте альбом галереи, включая изображение альбома, описание и ссылку на "
144
  "полную галерею с помощью следующего шорткода:"
145
 
146
+ #: gallery-plugin.php:679
147
  msgid "Note"
148
  msgstr "Примечание"
149
 
150
+ #: gallery-plugin.php:679
151
  #, php-format
152
  msgid ""
153
  "When deleting a category, the galleries that belong to this category will "
156
  "Удаление категории не приводит к удалению галерей из этой категории. Вместо "
157
  "этого галереи из удалённой категории будут перемещены в категорию %s."
158
 
159
+ #: gallery-plugin.php:690
160
  msgid "Sort Galleries in Category by"
161
  msgstr "Сортировать галереи в категории по"
162
 
163
+ #: gallery-plugin.php:693 gallery-plugin.php:2815
164
+ #: includes/class-gllr-settings.php:720
165
  msgid "Gallery ID"
166
  msgstr "ID галереи"
167
 
168
+ #: gallery-plugin.php:694 gallery-plugin.php:1737 gallery-plugin.php:2816
169
+ #: includes/class-gllr-media-table.php:199
170
+ #: includes/class-gllr-media-table.php:306
171
+ #: includes/class-gllr-media-table.php:421 includes/class-gllr-settings.php:721
172
+ #: includes/class-gllr-widgets.php:282
173
  msgid "Title"
174
  msgstr "Название"
175
 
176
+ #: gallery-plugin.php:695 gallery-plugin.php:1742 gallery-plugin.php:2817
177
+ #: includes/class-gllr-settings.php:547 includes/class-gllr-settings.php:722
178
  msgid "Date"
179
  msgstr "Дата"
180
 
181
+ #: gallery-plugin.php:696 gallery-plugin.php:2818
182
+ #: includes/class-gllr-settings.php:723
183
  msgid "Last modified date"
184
  msgstr "Дата последнего изменения"
185
 
186
+ #: gallery-plugin.php:697 gallery-plugin.php:2819
187
+ #: includes/class-gllr-settings.php:724
188
  msgid "Comment count"
189
  msgstr "Количество комментариев"
190
 
191
+ #: gallery-plugin.php:698 gallery-plugin.php:2820
192
+ #: includes/class-gllr-settings.php:725
193
  msgid "\"Order\" field on the gallery edit page"
194
  msgstr "Поле \"Порядок\" в редакторе галереи"
195
 
196
+ #: gallery-plugin.php:699 gallery-plugin.php:1741 gallery-plugin.php:2821
197
+ #: includes/class-gllr-settings.php:726
198
  msgid "Author"
199
  msgstr "Автор"
200
 
201
+ #: gallery-plugin.php:700 gallery-plugin.php:2822
202
+ #: includes/class-gllr-settings.php:548 includes/class-gllr-settings.php:727
203
  msgid "Random"
204
  msgstr "Произвольно"
205
 
206
+ #: gallery-plugin.php:701 gallery-plugin.php:2823
207
  msgid "Plugin Settings"
208
  msgstr "Настройки плагина"
209
 
210
+ #: gallery-plugin.php:703 gallery-plugin.php:2825
211
  msgid "Select galleries sorting order in your category."
212
  msgstr "Выберите порядок сортировки галерей в вашей категории."
213
 
214
+ #: gallery-plugin.php:725 gallery-plugin.php:1739
215
  msgid "Shortcode"
216
  msgstr "Шорткод"
217
 
218
+ #: gallery-plugin.php:771
219
  msgid "All Gallery Categories"
220
  msgstr "Все категории галерей"
221
 
222
+ #: gallery-plugin.php:849
223
  msgid "You can't delete default gallery category."
224
  msgstr "Вы не можете удалить стандартную категорию галереи."
225
 
226
+ #: gallery-plugin.php:1228 gallery-plugin.php:1336 gallery-plugin.php:2293
227
  msgid "Sorry, nothing found."
228
  msgstr "Извините, ничего не найдено."
229
 
230
+ #: gallery-plugin.php:1736
231
  msgid "Featured Image"
232
  msgstr "Изображение альбома"
233
 
234
+ #: gallery-plugin.php:1738 includes/class-gllr-settings.php:42
235
  msgid "Images"
236
  msgstr "Изображения"
237
 
238
+ #: gallery-plugin.php:1823
239
  #, php-format
240
  msgid "%s Settings"
241
  msgstr "Настройки %s"
242
 
243
+ #: gallery-plugin.php:1850 gallery-plugin.php:1868
244
+ #: includes/class-gllr-settings.php:29 includes/class-gllr-settings.php:43
245
  msgid "Settings"
246
  msgstr "Настройки"
247
 
248
+ #: gallery-plugin.php:1851
249
  msgid "FAQ"
250
  msgstr "FAQ"
251
 
252
+ #: gallery-plugin.php:1852
253
  msgid "Support"
254
  msgstr "Поддержка"
255
 
256
+ #: gallery-plugin.php:1891
257
  msgid "Updating images..."
258
  msgstr "Обновление изображений..."
259
 
260
+ #: gallery-plugin.php:1892
261
  msgid "No images found."
262
  msgstr "Изображения не найдены."
263
 
264
+ #: gallery-plugin.php:1893
265
  msgid "All images were updated."
266
  msgstr "Все изображения обновлены."
267
 
268
+ #: gallery-plugin.php:1894
269
  msgid "Error."
270
  msgstr "Ошибка."
271
 
272
+ #: gallery-plugin.php:1906
273
  msgid ""
274
  "You are about to remove these items from this gallery.\n"
275
  " 'Cancel' to stop, 'OK' to delete."
277
  "Вы собираетесь удалить эти элементы из этой галереи.\n"
278
  " «Отмена» — оставить, «ОК» — удалить."
279
 
280
+ #: gallery-plugin.php:1907
281
  msgid ""
282
  "You are about to remove this image from the gallery.\n"
283
  " 'Cancel' to stop, 'OK' to delete."
285
  "Вы собираетесь удалить это изображение из этой галереи.\n"
286
  " «Отмена» — оставить, «ОК» — удалить."
287
 
288
+ #: gallery-plugin.php:1908
289
  msgid ""
290
  "Switching to another mode, all unsaved data will be lost. Save data before "
291
  "switching?"
293
  "При переключении на другой режим все несохраненные данные будут потеряны. "
294
  "Сохранить данные перед переключением?"
295
 
296
+ #: gallery-plugin.php:1909
297
  msgid "Insert Media"
298
  msgstr "Вставить медиафайл"
299
 
300
+ #: gallery-plugin.php:1910
301
  msgid "Insert"
302
  msgstr "Вставить"
303
 
304
+ #: gallery-plugin.php:1911
305
  msgid "A new slider is added."
306
  msgstr "Добавлен новый слайдер."
307
 
308
+ #: gallery-plugin.php:1911
309
  msgid "Edit slider"
310
  msgstr "Редактировать слайдер"
311
 
312
+ #: gallery-plugin.php:2507 gallery-plugin.php:2540
313
  msgid "Image size not defined"
314
  msgstr "Невозможно определить размер изображения"
315
 
316
+ #: gallery-plugin.php:2527
317
  msgid ""
318
  "Plugin updates only PNG, JPEG, GIF, WPMP or XBM filetype. For other, please "
319
  "reload images manually."
321
  "Плагин может обновить только следующие типы файлов: PNG, JPEG, GIF, XBM или "
322
  "WPMP. Для других, пожалуйста, вручную перезагрузите изображения."
323
 
324
+ #: gallery-plugin.php:2573 gallery-plugin.php:2577 gallery-plugin.php:2583
325
  msgid "Invalid path"
326
  msgstr "Путь к изображению некорректный"
327
 
328
+ #: gallery-plugin.php:2781 gallery-plugin.php:2942
329
+ msgid "Warning"
330
+ msgstr "Внимание"
331
+
332
+ #: gallery-plugin.php:2781
333
+ msgid "You can add only images to the gallery"
334
+ msgstr "Вы можете добавить только изображения в галерею"
335
+
336
+ #: gallery-plugin.php:2836
337
+ msgid "no title"
338
+ msgstr "без названия"
339
+
340
+ #: gallery-plugin.php:2846
341
+ msgid ""
342
+ "Display an album image with the description and the link to a single gallery "
343
+ "page"
344
+ msgstr ""
345
+ "Отобразить изображение альбома с описанием и ссылкой на отдельную страницу "
346
+ "галереи"
347
+
348
+ #: gallery-plugin.php:2850
349
+ msgid "Sorry, no gallery found."
350
+ msgstr "Извините, галерей не найдено."
351
+
352
+ #: gallery-plugin.php:2942
353
+ #, php-format
354
+ msgid ""
355
+ "Maximum upload file size %s. Contact your administrator or hosting provider "
356
+ "if you need to upload a large file size."
357
+ msgstr ""
358
+ "Максимальный размер файла %s. Свяжитесь с вашим администратором или "
359
+ "провайдером хостинга, если вам нужно загрузить файл большего размера."
360
+
361
+ #: includes/class-gllr-media-table.php:19
362
  msgid "List View"
363
  msgstr "В виде списка"
364
 
365
+ #: includes/class-gllr-media-table.php:20
366
  msgid "Grid View"
367
  msgstr "В виде сетки"
368
 
369
+ #: includes/class-gllr-media-table.php:76
370
  msgid "Filter"
371
  msgstr "Фильтр"
372
 
373
+ #: includes/class-gllr-media-table.php:80
374
  msgid "Empty Trash"
375
  msgstr "Очистить корзину"
376
 
377
+ #: includes/class-gllr-media-table.php:103
378
  msgid "No images found"
379
  msgstr "Ни одного изображения не найдено"
380
 
381
+ #: includes/class-gllr-media-table.php:156
382
  msgid "Select bulk action"
383
  msgstr "Выберите массовое действие"
384
 
385
+ #: includes/class-gllr-media-table.php:158
386
  msgid "Bulk Actions"
387
  msgstr "Действия"
388
 
389
+ #: includes/class-gllr-media-table.php:168
390
  msgid "Apply"
391
  msgstr "Применить"
392
 
393
+ #: includes/class-gllr-media-table.php:175
394
  msgid "Delete from Gallery"
395
  msgstr "Удалить из галереи"
396
 
397
+ #: includes/class-gllr-media-table.php:184
398
  msgid "Bulk Select"
399
  msgstr "Выбор"
400
 
401
+ #: includes/class-gllr-media-table.php:185
402
  msgid "Cancel Selection"
403
  msgstr "Отменить выбор"
404
 
405
+ #: includes/class-gllr-media-table.php:186
406
  msgid "Delete Selected"
407
  msgstr "Удалить выбранное"
408
 
409
+ #: includes/class-gllr-media-table.php:197
410
  msgid "File"
411
  msgstr "Файл"
412
 
413
+ #: includes/class-gllr-media-table.php:198
414
+ #: includes/class-gllr-media-table.php:301
415
+ #: includes/class-gllr-media-table.php:416
416
  msgid "Dimensions"
417
  msgstr "Размеры"
418
 
419
+ #: includes/class-gllr-media-table.php:200
420
+ #: includes/class-gllr-media-table.php:312
421
+ #: includes/class-gllr-media-table.php:426
422
  msgid "Alt Text"
423
  msgstr "Альтернативный текст"
424
 
425
+ #: includes/class-gllr-media-table.php:201
426
+ #: includes/class-gllr-media-table.php:316
427
+ #: includes/class-gllr-media-table.php:431
428
  msgid "URL"
429
  msgstr "Ссылка"
430
 
431
+ #: includes/class-gllr-media-table.php:201
432
+ #: includes/class-gllr-media-table.php:318
433
  msgid ""
434
  "Enter your custom URL to link this image to other page or file. Leave blank "
435
  "to open a full size image."
438
  "страницей или файлом. Оставьте пустым, чтобы открыть полноразмерное "
439
  "изображение."
440
 
441
+ #: includes/class-gllr-media-table.php:283
442
  msgid "Remove Image from Gallery"
443
  msgstr "Удалить изображение из галереи"
444
 
445
+ #: includes/class-gllr-media-table.php:286
446
  msgid "Edit Image Info"
447
  msgstr "Изменить информацию изображения"
448
 
449
+ #: includes/class-gllr-media-table.php:287
450
  msgid "Deselect"
451
  msgstr "Отменить выбор"
452
 
453
+ #: includes/class-gllr-media-table.php:299
454
  msgid "File name"
455
  msgstr "Название файла"
456
 
457
+ #: includes/class-gllr-media-table.php:300
458
  msgid "File type"
459
  msgstr "Тип файла"
460
 
461
+ #: includes/class-gllr-media-table.php:326
462
  msgid "Description"
463
  msgstr "Описание"
464
 
465
+ #: includes/class-gllr-media-table.php:332
466
  msgid "Lightbox Button URL"
467
  msgstr "Ссылка для кнопки в лайтбоксе"
468
 
469
+ #: includes/class-gllr-media-table.php:339
470
  msgid "New Tab"
471
  msgstr "Новая вкладка"
472
 
473
+ #: includes/class-gllr-media-table.php:341
474
  msgid "Enable to open URLs above in a new tab."
475
  msgstr "Включите, чтобы открыть ссылку в новой вкладке."
476
 
477
+ #: includes/class-gllr-media-table.php:346
478
  msgid "Go Pro"
479
  msgstr "Обновить до Pro"
480
 
481
+ #: includes/class-gllr-media-table.php:353
482
  msgid "Edit more details"
483
  msgstr "Изменить детали"
484
 
485
+ #: includes/class-gllr-media-table.php:355
486
  msgid "Remove from Gallery"
487
  msgstr "Удалить из галереи"
488
 
489
+ #: includes/class-gllr-media-table.php:391
490
  #, php-format
491
  msgid "Select %s"
492
  msgstr "Выбрать %s"
493
 
494
+ #: includes/class-gllr-media-table.php:404
495
  #, php-format
496
  msgid "Edit &#8220;%s&#8221;"
497
  msgstr "Изменить &#8220;%s&#8221;"
498
 
499
+ #: includes/class-gllr-media-table.php:412
500
  msgid "Edit Attachment Info"
501
  msgstr "Изменить информацию изображения"
502
 
503
+ #: includes/class-gllr-media-table.php:449
504
+ #: includes/class-gllr-media-table.php:465
505
  msgid "Edit"
506
  msgstr "Изменить"
507
 
508
+ #: includes/class-gllr-media-table.php:453
509
+ #: includes/class-gllr-media-table.php:471
510
  msgid "Trash"
511
  msgstr "Удалить"
512
 
513
+ #: includes/class-gllr-media-table.php:456
514
+ #: includes/class-gllr-media-table.php:475
515
  msgid "Delete Permanently"
516
  msgstr "Удалить навсегда"
517
 
518
+ #: includes/class-gllr-media-table.php:459
519
+ #: includes/class-gllr-media-table.php:481
520
  #, php-format
521
  msgid "View &#8220;%s&#8221;"
522
  msgstr "Просмотр &#8220;%s&#8221;"
523
 
524
+ #: includes/class-gllr-media-table.php:459
525
+ #: includes/class-gllr-media-table.php:481 includes/class-gllr-widgets.php:90
526
  msgid "View"
527
  msgstr "Просмотр"
528
 
529
+ #: includes/class-gllr-media-table.php:461
530
  msgid "Attach"
531
  msgstr "Прикрепить"
532
 
533
+ #: includes/class-gllr-media-table.php:469
534
  msgid "Restore"
535
  msgstr "Восстановить"
536
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
537
  #: includes/class-gllr-settings.php:30
538
  msgid "Cover"
539
  msgstr "Альбом"
540
 
541
+ #: includes/class-gllr-settings.php:31
542
  msgid "Lightbox"
543
  msgstr "Лайтбокс"
544
 
558
  msgid "Import / Export"
559
  msgstr "Импорт / Экспорт"
560
 
561
+ #: includes/class-gllr-settings.php:37
562
  msgid "License Key"
563
  msgstr "Лицензионный ключ"
564
 
565
+ #: includes/class-gllr-settings.php:229
566
  msgid "Settings saved"
567
  msgstr "Настройки сохранены"
568
 
569
+ #: includes/class-gllr-settings.php:241 includes/class-gllr-widgets.php:358
570
  msgid "Please, enable JavaScript in Your browser."
571
  msgstr "Пожалуйста, включите JavaScript в вашем браузере."
572
 
573
+ #: includes/class-gllr-settings.php:245
574
  msgid "Custom image size was changed. You need to update gallery images."
575
  msgstr ""
576
  "Пользовательский размер изображения был изменен. Вам необходимо обновить "
577
  "изображения галерей."
578
 
579
+ #: includes/class-gllr-settings.php:246
580
  msgid "Update Images"
581
  msgstr "Обновить изображения"
582
 
583
+ #: includes/class-gllr-settings.php:261
584
  msgid "Gallery Images"
585
  msgstr "Изображения галереи"
586
 
587
+ #: includes/class-gllr-settings.php:266
588
  msgid "Images adding requires JavaScript."
589
  msgstr "Добавление изображений требует наличия JavaScript."
590
 
591
+ #: includes/class-gllr-settings.php:269
592
  msgid "Add Media"
593
  msgstr "Добавить медиафайл"
594
 
595
+ #: includes/class-gllr-settings.php:278
596
  msgid "The grid view for the Gallery images requires JavaScript."
597
  msgstr "Просмотр галереи в виде сетки требует наличия JavaScript."
598
 
599
+ #: includes/class-gllr-settings.php:278
600
  msgid "Switch to the list view"
601
  msgstr "Переключиться на список"
602
 
603
+ #: includes/class-gllr-settings.php:305
604
  msgid "Create Slider"
605
  msgstr "Создание слайдера"
606
 
607
+ #: includes/class-gllr-settings.php:317
608
  msgid "Activate"
609
  msgstr "Активировать"
610
 
611
+ #: includes/class-gllr-settings.php:320 includes/class-gllr-settings.php:1055
612
  msgid "Install Now"
613
  msgstr "Установить сейчас"
614
 
615
+ #: includes/class-gllr-settings.php:322
616
  msgid "Create New Slider"
617
  msgstr "Создать новый слайдер"
618
 
619
+ #: includes/class-gllr-settings.php:325
620
  msgid ""
621
  "Click to create a new slider using gallery images. Slider plugin is required."
622
  msgstr ""
623
  "Нажмите, чтобы создать новый слайдер, используя галерею изображений. Плагин "
624
  "слайдера обязателен."
625
 
626
+ #: includes/class-gllr-settings.php:336
627
  msgid "Single Gallery Settings"
628
  msgstr "Настройки галереи"
629
 
630
+ #: includes/class-gllr-settings.php:338
631
  #, php-format
632
  msgid "Enable to configure single gallery settings and disable %s."
633
  msgstr "Включите, чтобы настроить параметры этой галереи и отключить %s."
634
 
635
+ #: includes/class-gllr-settings.php:352 includes/class-gllr-settings.php:411
636
+ #: includes/class-gllr-settings.php:457 includes/class-gllr-settings.php:516
637
+ #: includes/class-gllr-settings.php:662 includes/class-gllr-settings.php:746
638
+ #: includes/class-gllr-settings.php:792 includes/class-gllr-settings.php:845
639
+ #: includes/class-gllr-settings.php:907 includes/class-gllr-settings.php:998
640
  msgid "Close"
641
  msgstr "Закрыть"
642
 
643
+ #: includes/class-gllr-settings.php:356
644
  msgid "Gallery Layout"
645
  msgstr "Макет галереи"
646
 
647
+ #: includes/class-gllr-settings.php:361
648
  msgid "Grid"
649
  msgstr "Сетка"
650
 
651
+ #: includes/class-gllr-settings.php:367
652
  msgid "Masonry"
653
  msgstr "Masonry"
654
 
655
+ #: includes/class-gllr-settings.php:381
656
  msgid "Number of Columns"
657
  msgstr "Количество колонок"
658
 
659
+ #: includes/class-gllr-settings.php:384
660
  #, php-format
661
  msgid "Number of gallery columns (default is %s)."
662
  msgstr "Количество колонок галерей (по умолчанию - %s)."
663
 
664
+ #: includes/class-gllr-settings.php:388 includes/class-gllr-settings.php:796
665
  msgid "Image Size"
666
  msgstr "Размер изображения"
667
 
668
+ #: includes/class-gllr-settings.php:394 includes/class-gllr-settings.php:646
669
  msgid "Custom"
670
  msgstr "Пользовательский"
671
 
672
+ #: includes/class-gllr-settings.php:396
673
  msgid ""
674
  "Maximum gallery image size. \"Custom\" uses the Image Dimensions values."
675
  msgstr ""
676
  "Максимальный размер изображений галереи. \"Пользовательский\" использует "
677
  "значения, указанные в поле Размеры изображения."
678
 
679
+ #: includes/class-gllr-settings.php:400
680
  msgid "Custom Image Size"
681
  msgstr "Пользовательский размер изображения"
682
 
683
+ #: includes/class-gllr-settings.php:402 includes/class-gllr-settings.php:494
684
+ #: includes/class-gllr-settings.php:654 includes/class-gllr-settings.php:706
685
  msgid "px"
686
  msgstr "пикс"
687
 
688
+ #: includes/class-gllr-settings.php:403
689
  msgid ""
690
  "Adjust these values based on the number of columns in your gallery. This "
691
  "won't effect the full size of your images in the lightbox."
693
  "Отрегулируйте эти значения на основе числа колонок в вашей галерее. Это не "
694
  "влияет на размеры полного изображения в лайтбоксе."
695
 
696
+ #: includes/class-gllr-settings.php:415
697
  msgid "Crop Images"
698
  msgstr "Обрезка изображений"
699
 
700
+ #: includes/class-gllr-settings.php:417
701
  msgid ""
702
  "Enable to crop images using the sizes defined for Custom Image Size. Disable "
703
  "to resize images automatically using their aspect ratio."
706
  "пользовательского размера изображения. Отключите, чтобы изменить размер "
707
  "изображения автоматически, используя их пропорции."
708
 
709
+ #: includes/class-gllr-settings.php:421 includes/class-gllr-settings.php:672
710
  msgid "Crop Position"
711
  msgstr "Позиция обрезки"
712
 
713
+ #: includes/class-gllr-settings.php:436 includes/class-gllr-settings.php:687
714
  msgid "Select crop position base (by default: center)."
715
  msgstr "Выберите позицию обрезки (по умолчанию: центр)."
716
 
717
+ #: includes/class-gllr-settings.php:447
718
  msgid "Image Title"
719
  msgstr "Название изображения"
720
 
721
+ #: includes/class-gllr-settings.php:449
722
  msgid "Enable to display image title along with the gallery image."
723
  msgstr ""
724
  "Включите, чтобы отобразить название изображения вместе с изображением "
725
  "галереи."
726
 
727
+ #: includes/class-gllr-settings.php:461
728
  msgid "Image Title Position"
729
  msgstr "Расположение названия изображения"
730
 
731
+ #: includes/class-gllr-settings.php:466
732
  msgid "Below images"
733
  msgstr "Ниже изображения"
734
 
735
+ #: includes/class-gllr-settings.php:472
736
  msgid "On mouse hover"
737
  msgstr "По наведению мыши"
738
 
739
+ #: includes/class-gllr-settings.php:486
740
  msgid "Image Border"
741
  msgstr "Рамка изображения"
742
 
743
+ #: includes/class-gllr-settings.php:488
744
  msgid ""
745
  "Enable images border using the styles defined for Image Border Size and "
746
  "Color options."
748
  "Включить рамку изображения с использованием стилей, указанных для Цвета и "
749
  "Размера рамки."
750
 
751
+ #: includes/class-gllr-settings.php:492
752
  msgid "Image Border Size"
753
  msgstr "Размер рамки изображения"
754
 
755
+ #: includes/class-gllr-settings.php:495
756
  #, php-format
757
  msgid "Gallery image border width (default is %s)."
758
  msgstr "Ширина рамки для изображений галереи (по умолчанию %s)."
759
 
760
+ #: includes/class-gllr-settings.php:499
761
  msgid "Image Border Color"
762
  msgstr "Цвет рамки изображений"
763
 
764
+ #: includes/class-gllr-settings.php:505
765
+ msgid "Unclickable Thumbnail Images"
766
+ msgstr "Некликабельные изображения"
767
+
768
+ #: includes/class-gllr-settings.php:508
769
+ msgid ""
770
+ "Enable to make the images in a single gallery unclickable and hide their "
771
+ "URLs. This option also disables Lightbox."
772
+ msgstr ""
773
+ "Включите, чтобы сделать миниатюры изображений в галерее некликабельными, а "
774
+ "так же не отображать их ссылки. Эта опция так же отключает лайтбокс."
775
+
776
+ #: includes/class-gllr-settings.php:520
777
  msgid "Pagination"
778
  msgstr "Постраничная навигация"
779
 
780
+ #: includes/class-gllr-settings.php:523
781
  msgid ""
782
  "Enable pagination for images to limit number of images displayed on a single "
783
  "gallery page."
785
  "Включить постраничную навигацию для изображений, чтобы ограничить количество "
786
  "изображений, отображаемых на одной странице галереи."
787
 
788
+ #: includes/class-gllr-settings.php:527
789
  msgid "Number of Images"
790
  msgstr "Количество изображений"
791
 
792
+ #: includes/class-gllr-settings.php:530
793
  #, php-format
794
  msgid "Number of images displayed per page (default is %d)."
795
  msgstr ""
796
  "Количество изображений, отображаемых на одной странице (по умолчанию %d)."
797
 
798
+ #: includes/class-gllr-settings.php:541
799
  msgid "Sort Images by"
800
  msgstr "Cортировка изображений по"
801
 
802
+ #: includes/class-gllr-settings.php:544
803
  msgid "Manually (default)"
804
  msgstr "Вручную (по умолчанию)"
805
 
806
+ #: includes/class-gllr-settings.php:545
807
  msgid "Image ID"
808
  msgstr "ID изображения"
809
 
810
+ #: includes/class-gllr-settings.php:546
811
  msgid "Name"
812
  msgstr "Название"
813
 
814
+ #: includes/class-gllr-settings.php:550
815
  msgid ""
816
  "Select images sorting order in your gallery. By default, you can sort images "
817
  "manually in the images tab."
819
  "Выберите порядок сортировки изображений в вашей галерее. По умолчанию, это "
820
  "ручная сортировка изображения на вкладке изображений."
821
 
822
+ #: includes/class-gllr-settings.php:554
823
  msgid "Arrange Images by"
824
  msgstr "Сортировка изображений"
825
 
826
+ #: includes/class-gllr-settings.php:557 includes/class-gllr-settings.php:736
827
  msgid "Ascending (e.g. 1, 2, 3; a, b, c)"
828
  msgstr "По возрастанию (например, 1, 2, 3; а, б, в)"
829
 
830
+ #: includes/class-gllr-settings.php:558 includes/class-gllr-settings.php:737
831
  msgid "Descending (e.g. 3, 2, 1; c, b, a)"
832
  msgstr "По убыванию (например, 3, 2, 1; в, б, а)"
833
 
834
+ #: includes/class-gllr-settings.php:563
835
  msgid "Back Link"
836
  msgstr "Обратная ссылка"
837
 
838
+ #: includes/class-gllr-settings.php:565
839
  msgid ""
840
  "Enable to show a back link in a single gallery page which navigate to a "
841
  "previous page."
843
  "Включите, чтобы показать обратную ссылку на странице галереи, которая "
844
  "перейдет к предыдущей странице."
845
 
846
+ #: includes/class-gllr-settings.php:569
847
  msgid "Back Link URL"
848
  msgstr "URL обратной ссылки"
849
 
850
+ #: includes/class-gllr-settings.php:572
851
  msgid ""
852
  "Leave blank to use the Gallery page template or enter a custom page URL."
853
  msgstr ""
854
  "Оставьте пустым, чтобы использовать шаблон страницы галереи или введите "
855
  "пользовательский URL страницы."
856
 
857
+ #: includes/class-gllr-settings.php:576
858
  msgid "Back Link Label"
859
  msgstr "Текст обратной ссылки"
860
 
861
+ #: includes/class-gllr-settings.php:582
862
  msgid "Back Link with Shortcode"
863
  msgstr "Обратная ссылка шорткода"
864
 
865
+ #: includes/class-gllr-settings.php:585
866
  msgid "Enable to display a back link on a page where shortcode is used."
867
  msgstr ""
868
  "Включите, чтобы отображать обратную ссылку на страницу при использовании "
869
  "шорткода."
870
 
871
+ #: includes/class-gllr-settings.php:589
872
  msgid "Disable Fancybox"
873
  msgstr "Отключить Fancybox"
874
 
875
+ #: includes/class-gllr-settings.php:591
876
  msgid "Enable to avoid possible conflicts with a 3rd party Fancybox."
877
  msgstr "Включите, чтобы избежать возможных конфликтов со сторонними fancybox."
878
 
879
+ #: includes/class-gllr-settings.php:602
880
  msgid "Cover Settings"
881
  msgstr "Настройки альбома"
882
 
883
+ #: includes/class-gllr-settings.php:607
884
  msgid "Galleries Page"
885
  msgstr "Страница галерей"
886
 
887
+ #: includes/class-gllr-settings.php:615
888
  msgid "Base page where all existing galleries will be displayed."
889
  msgstr ""
890
  "Базовая страница, на которой будут отображаться все существующие галереи."
891
 
892
+ #: includes/class-gllr-settings.php:619
893
  msgid "Albums Displaying"
894
  msgstr "Отображение альбомов"
895
 
896
+ #: includes/class-gllr-settings.php:622
897
  msgid "Column"
898
  msgstr "В колонку"
899
 
900
+ #: includes/class-gllr-settings.php:623
901
  msgid "Rows"
902
  msgstr "В строку"
903
 
904
+ #: includes/class-gllr-settings.php:625
905
  msgid "Select the way galleries will be displayed on the Galleries Page."
906
  msgstr "Выберите способ отображения галерей на Странице галерей."
907
 
908
+ #: includes/class-gllr-settings.php:629
909
  msgid "Column Alignment"
910
  msgstr "Ориентация колонки"
911
 
912
+ #: includes/class-gllr-settings.php:632
913
  msgid "Left"
914
  msgstr "Лево"
915
 
916
+ #: includes/class-gllr-settings.php:633
917
  msgid "Right"
918
  msgstr "Право"
919
 
920
+ #: includes/class-gllr-settings.php:634
921
  msgid "Center"
922
  msgstr "Центр"
923
 
924
+ #: includes/class-gllr-settings.php:636
925
  msgid "Select the column alignment."
926
  msgstr "Выберите ориентацию колонки."
927
 
928
+ #: includes/class-gllr-settings.php:640
929
  msgid "Cover Image Size"
930
  msgstr "Размер изображения альбома"
931
 
932
+ #: includes/class-gllr-settings.php:648
933
  msgid "Maximum cover image size. Custom uses the Image Dimensions values."
934
  msgstr ""
935
  "Максимальный размер изображения альбома. Пользовательский использует "
936
  "значения Размеров изображения."
937
 
938
+ #: includes/class-gllr-settings.php:652
939
  msgid "Custom Cover Image Size"
940
  msgstr "Пользовательский размер изображения альбома"
941
 
942
+ #: includes/class-gllr-settings.php:666
943
  msgid "Crop Cover Images"
944
  msgstr "Обрезка изображения альбома"
945
 
946
+ #: includes/class-gllr-settings.php:668
947
  msgid ""
948
  "Enable to crop images using the sizes defined for Custom Cover Image Size. "
949
  "Disable to resize images automatically using their aspect ratio."
952
  "пользовательского размера изображения альбома. Отключите, чтобы изменить "
953
  "размер изображения автоматически, используя их пропорции."
954
 
955
+ #: includes/class-gllr-settings.php:698
956
  msgid "Cover Image Border"
957
  msgstr "Рамка для изображения альбома"
958
 
959
+ #: includes/class-gllr-settings.php:700
960
  msgid ""
961
  "Enable cover images border using the styles defined for Image Border Size "
962
  "and Color."
964
  "Включить рамку изображения альбома с использованием стилей, указанных для "
965
  "Цвета и Размера рамки."
966
 
967
+ #: includes/class-gllr-settings.php:704
968
  msgid "Cover Image Border Size"
969
  msgstr "Размер рамки изображения альбома"
970
 
971
+ #: includes/class-gllr-settings.php:707
972
  #, php-format
973
  msgid "Cover image border width (default is %s)."
974
  msgstr "Ширина рамки для изображения альбома (по умолчанию %s)."
975
 
976
+ #: includes/class-gllr-settings.php:711
977
  msgid "Cover Image Border Color"
978
  msgstr "Цвет рамки для изображения альбома"
979
 
980
+ #: includes/class-gllr-settings.php:717
981
  msgid "Sort Albums by"
982
  msgstr "Cортировка альбомов по"
983
 
984
+ #: includes/class-gllr-settings.php:729
985
  msgid "Select galleries sorting order in your galleries page."
986
  msgstr "Выберите порядок сортировки галерей на странице галерей."
987
 
988
+ #: includes/class-gllr-settings.php:733
989
  msgid "Arrange Albums by"
990
  msgstr "Сортировка альбомов по"
991
 
992
+ #: includes/class-gllr-settings.php:750
993
  msgid "Instant Lightbox"
994
  msgstr "Мгновенный лайтбокс"
995
 
996
+ #: includes/class-gllr-settings.php:753
997
  msgid ""
998
  "Enable to display all images in the lightbox after clicking cover image or "
999
  "URL instead of going to a single gallery page."
1001
  "Включите, чтобы отображать все изображения в лайтбоксе после клика на "
1002
  "изображение альбома или URL вместо перехода на отдельную страницу галереи."
1003
 
1004
+ #: includes/class-gllr-settings.php:764
1005
  msgid "Read More Link Label"
1006
  msgstr "Текст ссылки Узнать больше"
1007
 
1008
+ #: includes/class-gllr-settings.php:776
1009
  msgid "Lightbox Settings"
1010
  msgstr "Настройки лайтбокса"
1011
 
1012
+ #: includes/class-gllr-settings.php:781
 
 
 
 
 
 
 
 
 
 
 
 
1013
  msgid "Enable Lightbox"
1014
  msgstr "Включить лайтбокс"
1015
 
1016
+ #: includes/class-gllr-settings.php:784
1017
  msgid "Enable to show the lightbox when clicking on gallery images."
1018
  msgstr "Включите, чтобы показать лайтбокс при нажатии на изображения галереи."
1019
 
1020
+ #: includes/class-gllr-settings.php:803
1021
  msgid ""
1022
  "Select the maximum gallery image size for the lightbox view. \"Default\" "
1023
  "will display the original, full size image."
1025
  "Выберите максимальный размер изображений галереи для просмотра в лайтбоксе. "
1026
  "По умолчанию будет отображаться оригинал, полный размер."
1027
 
1028
+ #: includes/class-gllr-settings.php:807
1029
  msgid "Overlay Color"
1030
  msgstr "Цвет подложки"
1031
 
1032
+ #: includes/class-gllr-settings.php:813
1033
  msgid "Overlay Opacity"
1034
  msgstr "Прозрачность подложки"
1035
 
1036
+ #: includes/class-gllr-settings.php:816
1037
  #, php-format
1038
  msgid ""
1039
  "Lightbox overlay opacity. Leave blank to disable opacity (default is %s, max "
1042
  "Прозрачность подложки лайтбокса. Оставьте пустым, чтобы отключить "
1043
  "прозрачность (по умолчанию %s, максимум %s)."
1044
 
1045
+ #: includes/class-gllr-settings.php:828
1046
  msgid "Slideshow"
1047
  msgstr "Слайд-шоу"
1048
 
1049
+ #: includes/class-gllr-settings.php:830
1050
  msgid "Enable to start the slideshow automatically when the lightbox is used."
1051
  msgstr ""
1052
  "Включение автоматического запуска слайд-шоу при использовании лайтбокса."
1053
 
1054
+ #: includes/class-gllr-settings.php:834
1055
  msgid "Slideshow Duration"
1056
  msgstr "Интервал времени"
1057
 
1058
+ #: includes/class-gllr-settings.php:836
1059
  msgid "ms"
1060
  msgstr "мс"
1061
 
1062
+ #: includes/class-gllr-settings.php:837
1063
  msgid "Slideshow interval duration between two images."
1064
  msgstr "Интервал переключения между двумя изображениями."
1065
 
1066
+ #: includes/class-gllr-settings.php:849
1067
  msgid "Lightbox Helpers"
1068
  msgstr "Вспомогательные элементы в лайтбоксе"
1069
 
1070
+ #: includes/class-gllr-settings.php:851
1071
  msgid "Enable to display the lightbox toolbar and arrows."
1072
  msgstr ""
1073
  "Включите, чтобы показать панель инструментов и кнопки навигации лайтбокса."
1074
 
1075
+ #: includes/class-gllr-settings.php:855
1076
  msgid "Lightbox Thumbnails"
1077
  msgstr "Миниатюры в лайтбоксе"
1078
 
1079
+ #: includes/class-gllr-settings.php:857
1080
  msgid "Enable to use a lightbox helper navigation between images."
1081
  msgstr ""
1082
  "Разрешить использовать вспомогательные элементы лайтбокса для навигации "
1083
  "между изображениями."
1084
 
1085
+ #: includes/class-gllr-settings.php:861
1086
  msgid "Lightbox Thumbnails Position"
1087
  msgstr "Расположение миниатюр в лайтбоксе"
1088
 
1089
+ #: includes/class-gllr-settings.php:864
1090
  msgid "Top"
1091
  msgstr "Верх"
1092
 
1093
+ #: includes/class-gllr-settings.php:869
1094
  msgid "Lightbox Button Label"
1095
  msgstr "Текст кнопки в лайтбоксе"
1096
 
1097
+ #: includes/class-gllr-settings.php:871
1098
  msgid "Read More"
1099
  msgstr "Подробнее"
1100
 
1101
+ #: includes/class-gllr-settings.php:883
1102
  msgid "Download Button"
1103
  msgstr "Кнопка \"Скачать\""
1104
 
1105
+ #: includes/class-gllr-settings.php:885
1106
  msgid "Enable to display download button."
1107
  msgstr "Включите, чтобы показать ссылку для скачивания исходного изображения."
1108
 
1109
+ #: includes/class-gllr-settings.php:889
1110
  msgid "Single Lightbox"
1111
  msgstr "Один лайтбокс"
1112
 
1113
+ #: includes/class-gllr-settings.php:891
1114
  msgid ""
1115
  "Enable to use a single lightbox for multiple galleries located on a single "
1116
  "page."
1118
  "Включите, чтобы использовать один лайтбокс для нескольких галерей, "
1119
  "расположенных на одной странице."
1120
 
1121
+ #: includes/class-gllr-settings.php:901
1122
  msgid "Social Sharing Buttons Settings"
1123
  msgstr "Настройки социальных кнопок"
1124
 
1125
+ #: includes/class-gllr-settings.php:911
1126
  msgid "Social Buttons"
1127
  msgstr "Социальные кнопки"
1128
 
1129
+ #: includes/class-gllr-settings.php:913
1130
  msgid "Enable social sharing buttons in the lightbox."
1131
  msgstr "Включите социальные кнопки в лайтбоксе."
1132
 
1133
+ #: includes/class-gllr-settings.php:917
1134
  msgid "Social Networks"
1135
  msgstr "Социальные сети"
1136
 
1137
+ #: includes/class-gllr-settings.php:927
1138
  msgid "Counter"
1139
  msgstr "Счетчик"
1140
 
1141
+ #: includes/class-gllr-settings.php:930
1142
  msgid "Enable to show likes counter for each social button."
1143
  msgstr "Включите, чтобы показать счетчик для каждой социальной кнопки."
1144
 
1145
+ #: includes/class-gllr-settings.php:947
1146
  msgid "Demo Data"
1147
  msgstr "Демо-данные"
1148
 
1149
+ #: includes/class-gllr-settings.php:949
1150
  msgid ""
1151
  "Install demo data to create galleries with images, post with shortcodes and "
1152
  "page with a list of all galleries."
1154
  "Установите демо-данные, чтобы создать галереи с изображениями, запись с "
1155
  "шорткодами и страницу со списком всех галерей."
1156
 
1157
+ #: includes/class-gllr-settings.php:987
1158
  msgid "Gallery Post Type"
1159
  msgstr "Тип записи галереи"
1160
 
1161
+ #: includes/class-gllr-settings.php:989
1162
  msgid ""
1163
  "Enable to avoid conflicts with other gallery plugins installed. All "
1164
  "galleries created earlier will stay unchanged. However, after enabling we "
1170
  "переименования проверьте, пожалуйста, настройки других плагинов, где "
1171
  "используется тип записи \"gallery\"."
1172
 
1173
+ #: includes/class-gllr-settings.php:1002
1174
  msgid "Gallery Slug"
1175
  msgstr "Слаг галереи"
1176
 
1177
+ #: includes/class-gllr-settings.php:1006
1178
  msgid "Enter the unique gallery slug."
1179
  msgstr "Введите уникальный слаг галереи."
1180
 
1181
+ #: includes/class-gllr-settings.php:1010
1182
+ msgid "ShortPixel Image Optimizer"
1183
+ msgstr "Оптимизатор изображения ShortPixel"
1184
+
1185
+ #: includes/class-gllr-settings.php:1013
1186
+ msgid "Enable to apply ShortPixel optimizer to gallery images."
1187
+ msgstr ""
1188
+ "Включите, чтобы применить оптимизатор ShortPixel к изображениям галереи"
1189
+
1190
+ #: includes/class-gllr-settings.php:1018
1191
+ msgid "API Key"
1192
+ msgstr "Ключ API"
1193
+
1194
+ #: includes/class-gllr-settings.php:1022
1195
+ #, php-format
1196
+ msgid "Input API Key. If you don't have an API Key, please %s "
1197
+ msgstr "Введите ключ API. Если у вас нет ключа API, пожалуйста %s"
1198
+
1199
+ #: includes/class-gllr-settings.php:1022
1200
+ msgid " sign up to get your API key"
1201
+ msgstr "зарегистрируйтесь, чтобы получить свой ключ API"
1202
+
1203
+ #: includes/class-gllr-settings.php:1040
1204
  msgid "Activate Now"
1205
  msgstr "Активировать сейчас"
1206
 
1207
+ #: includes/class-gllr-settings.php:1058
1208
  msgid "Enable to include galleries to your website search."
1209
  msgstr "Включить галерею в поиск на вашем сайте."
1210
 
1211
+ #: includes/class-gllr-settings.php:1058
1212
  #, php-format
1213
  msgid "%s is required."
1214
  msgstr "Требуется %s."
1371
  #~ msgid "Try to disable 3rd-party fancybox"
1372
  #~ msgstr "Попробуйте отключить сторонний fancybox"
1373
 
 
1374
  #~ msgid ""
1375
  #~ "Do you want to install demo content and settings for %s? (You can do this "
1376
  #~ "later using Import / Export settings)"
languages/gallery-plugin-uk.mo CHANGED
Binary file
languages/gallery-plugin-uk.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2020-03-24 13:31+0200\n"
6
- "PO-Revision-Date: 2020-03-24 13:31+0200\n"
7
  "Last-Translator: bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft <https://support.bestwebsoft.com>\n"
9
  "Language: uk_UA\n"
@@ -17,117 +17,117 @@ msgstr ""
17
  "X-Poedit-SearchPath-0: .\n"
18
  "X-Poedit-SearchPathExcluded-0: bws_menu\n"
19
 
20
- #: gallery-plugin.php:39 includes/class-gllr-settings.php:295
21
  msgid "Gallery Settings"
22
  msgstr "Налаштування Галерей"
23
 
24
- #: gallery-plugin.php:39 includes/class-gllr-settings.php:333
25
  msgid "Global Settings"
26
  msgstr "Загальні налаштування"
27
 
28
- #: gallery-plugin.php:45 gallery-plugin.php:2994
29
  msgid "Upgrade to Pro"
30
  msgstr "Оновитися до Pro"
31
 
32
- #: gallery-plugin.php:349
33
  msgid "Return to all albums"
34
  msgstr "Повернутись до всіх альбомів"
35
 
36
- #: gallery-plugin.php:363
37
  msgid "See images &raquo;"
38
  msgstr "Переглянути фото &raquo;"
39
 
40
- #: gallery-plugin.php:453 gallery-plugin.php:462
41
  msgid "Galleries"
42
  msgstr "Галереї"
43
 
44
- #: gallery-plugin.php:454 gallery-plugin.php:3296
45
  msgid "Gallery"
46
  msgstr "Галерея"
47
 
48
- #: gallery-plugin.php:455
49
  msgid "Add New Gallery"
50
  msgstr "Додати нову галерею"
51
 
52
- #: gallery-plugin.php:456
53
  msgid "Edit Gallery"
54
  msgstr "Редагувати галерею"
55
 
56
- #: gallery-plugin.php:457
57
  msgid "New Gallery"
58
  msgstr "Нова галерея"
59
 
60
- #: gallery-plugin.php:458
61
  msgid "View Gallery"
62
  msgstr "Переглянути галерею"
63
 
64
- #: gallery-plugin.php:459 includes/class-gllr-settings.php:998
65
  msgid "Search Galleries"
66
  msgstr "Шукати галереї"
67
 
68
- #: gallery-plugin.php:460
69
  msgid "No Gallery found"
70
  msgstr "Жодної галереї не знайдено"
71
 
72
- #: gallery-plugin.php:482 gallery-plugin.php:1733 gallery-plugin.php:3268
73
  #: includes/class-gllr-widgets.php:25 includes/class-gllr-widgets.php:33
74
  #: includes/class-gllr-widgets.php:71 includes/class-gllr-widgets.php:95
75
  msgid "Gallery Categories"
76
  msgstr "Категорії галерей"
77
 
78
- #: gallery-plugin.php:483 gallery-plugin.php:932
79
  msgid "Gallery Category"
80
  msgstr "Категорія галерей"
81
 
82
- #: gallery-plugin.php:484
83
  msgid "Add Gallery Category"
84
  msgstr "Додати категорію галерей"
85
 
86
- #: gallery-plugin.php:485
87
  msgid "Add New Gallery Category"
88
  msgstr "Додати нову категорію галерей"
89
 
90
- #: gallery-plugin.php:486 gallery-plugin.php:487
91
  msgid "Edit Gallery Category"
92
  msgstr "Редагувати категорію галерей"
93
 
94
- #: gallery-plugin.php:488
95
  msgid "New Gallery Category"
96
  msgstr "Нова категорія галерей"
97
 
98
- #: gallery-plugin.php:489 gallery-plugin.php:490
99
  msgid "View Gallery Category"
100
  msgstr "Переглянути категорію галерей"
101
 
102
- #: gallery-plugin.php:491
103
  msgid "Find Gallery Category"
104
  msgstr "Знайти категорію галерей"
105
 
106
- #: gallery-plugin.php:492
107
  msgid "No Gallery Categories found"
108
  msgstr "Не знайдено жодної категорії галерей"
109
 
110
- #: gallery-plugin.php:493
111
  msgid "No Gallery Categories found in Trash"
112
  msgstr "В кошику не знайдено жодної категорії галерей"
113
 
114
- #: gallery-plugin.php:494
115
  msgid "Parent Gallery Category"
116
  msgstr "Батьківська категорія галерей"
117
 
118
- #: gallery-plugin.php:495
119
  msgid "Gallery Categories list navigation"
120
  msgstr "Навігація списку категорій галерей"
121
 
122
- #: gallery-plugin.php:496
123
  msgid "Gallery Categories list"
124
  msgstr "Список категорій галерей"
125
 
126
- #: gallery-plugin.php:546
127
  msgid "Gallery Shortcode"
128
  msgstr "Шорткод галереї"
129
 
130
- #: gallery-plugin.php:555
131
  msgid ""
132
  "Add a single gallery with images to your posts, pages, custom post types or "
133
  "widgets by using the following shortcode:"
@@ -135,7 +135,7 @@ msgstr ""
135
  "Додайте одну галерею із зображеннями в ваші записи, сторінки, користувацьки "
136
  "типи записів або віджети за допомогою наступного шорткода:"
137
 
138
- #: gallery-plugin.php:559
139
  msgid ""
140
  "Add a gallery cover including featured image, description, and a link to "
141
  "your single gallery using the following shortcode:"
@@ -143,11 +143,11 @@ msgstr ""
143
  "Додайте альбом галереї, включаючи головне зображення, опис і посилання на "
144
  "повну галерею за допомогою наступного шорткода:"
145
 
146
- #: gallery-plugin.php:671
147
  msgid "Note"
148
  msgstr "Примітка"
149
 
150
- #: gallery-plugin.php:671
151
  #, php-format
152
  msgid ""
153
  "When deleting a category, the galleries that belong to this category will "
@@ -156,118 +156,120 @@ msgstr ""
156
  "Видалення категорії не призведе до видалення галерей з цієї категорії. "
157
  "Замість цього галереї з видаленої категорії будуть переміщені в категорію %s."
158
 
159
- #: gallery-plugin.php:682
160
  msgid "Sort Galleries in Category by"
161
  msgstr "Сортувати галереї в категорії по"
162
 
163
- #: gallery-plugin.php:685 gallery-plugin.php:3282
164
- #: includes/class-gllr-settings.php:697
165
  msgid "Gallery ID"
166
  msgstr "ID галереї"
167
 
168
- #: gallery-plugin.php:686 gallery-plugin.php:1730 gallery-plugin.php:2848
169
- #: gallery-plugin.php:2955 gallery-plugin.php:3068 gallery-plugin.php:3283
170
- #: includes/class-gllr-settings.php:698 includes/class-gllr-widgets.php:282
 
 
171
  msgid "Title"
172
  msgstr "Назва"
173
 
174
- #: gallery-plugin.php:687 gallery-plugin.php:1735 gallery-plugin.php:3284
175
- #: includes/class-gllr-settings.php:526 includes/class-gllr-settings.php:699
176
  msgid "Date"
177
  msgstr "Дата"
178
 
179
- #: gallery-plugin.php:688 gallery-plugin.php:3285
180
- #: includes/class-gllr-settings.php:700
181
  msgid "Last modified date"
182
  msgstr "Дата останньої зміни"
183
 
184
- #: gallery-plugin.php:689 gallery-plugin.php:3286
185
- #: includes/class-gllr-settings.php:701
186
  msgid "Comment count"
187
  msgstr "Кількість коментарів"
188
 
189
- #: gallery-plugin.php:690 gallery-plugin.php:3287
190
- #: includes/class-gllr-settings.php:702
191
  msgid "\"Order\" field on the gallery edit page"
192
  msgstr "Поле \"Порядок розміщення\" на сторінці редагування"
193
 
194
- #: gallery-plugin.php:691 gallery-plugin.php:1734 gallery-plugin.php:3288
195
- #: includes/class-gllr-settings.php:703
196
  msgid "Author"
197
  msgstr "Автор"
198
 
199
- #: gallery-plugin.php:692 gallery-plugin.php:3289
200
- #: includes/class-gllr-settings.php:527 includes/class-gllr-settings.php:704
201
  msgid "Random"
202
  msgstr "Довільно"
203
 
204
- #: gallery-plugin.php:693 gallery-plugin.php:3290
205
  msgid "Plugin Settings"
206
  msgstr "Налаштування плагіна"
207
 
208
- #: gallery-plugin.php:695 gallery-plugin.php:3292
209
  msgid "Select galleries sorting order in your category."
210
  msgstr "Виберіть порядок сортування галерей у вашій категорії."
211
 
212
- #: gallery-plugin.php:717 gallery-plugin.php:1732
213
  msgid "Shortcode"
214
  msgstr "Шорткод"
215
 
216
- #: gallery-plugin.php:763
217
  msgid "All Gallery Categories"
218
  msgstr "Усі категорії галерей"
219
 
220
- #: gallery-plugin.php:841
221
  msgid "You can't delete default gallery category."
222
  msgstr "Ви не можете видалити стандартну категорію галереї."
223
 
224
- #: gallery-plugin.php:1221 gallery-plugin.php:1329 gallery-plugin.php:2283
225
  msgid "Sorry, nothing found."
226
  msgstr "Вибачте, нічого не знайдено."
227
 
228
- #: gallery-plugin.php:1729
229
  msgid "Featured Image"
230
  msgstr "Зображення альбому"
231
 
232
- #: gallery-plugin.php:1731 includes/class-gllr-settings.php:40
233
  msgid "Images"
234
  msgstr "Зображення"
235
 
236
- #: gallery-plugin.php:1814
237
  #, php-format
238
  msgid "%s Settings"
239
  msgstr "Налаштування %s"
240
 
241
- #: gallery-plugin.php:1841 gallery-plugin.php:1859
242
- #: includes/class-gllr-settings.php:29 includes/class-gllr-settings.php:41
243
  msgid "Settings"
244
  msgstr "Налаштування"
245
 
246
- #: gallery-plugin.php:1842
247
  msgid "FAQ"
248
  msgstr "FAQ"
249
 
250
- #: gallery-plugin.php:1843
251
  msgid "Support"
252
  msgstr "Техпідтримка"
253
 
254
- #: gallery-plugin.php:1882
255
  msgid "Updating images..."
256
  msgstr "Оновлення зображень..."
257
 
258
- #: gallery-plugin.php:1883
259
  msgid "No images found."
260
  msgstr "Зображення не знайдені."
261
 
262
- #: gallery-plugin.php:1884
263
  msgid "All images were updated."
264
  msgstr "Усі зображення оновлено."
265
 
266
- #: gallery-plugin.php:1885
267
  msgid "Error."
268
  msgstr "Помилка."
269
 
270
- #: gallery-plugin.php:1897
271
  msgid ""
272
  "You are about to remove these items from this gallery.\n"
273
  " 'Cancel' to stop, 'OK' to delete."
@@ -275,7 +277,7 @@ msgstr ""
275
  "Ви збираєтесь видалити вибрані елементи з цієї галереї.\n"
276
  " 'Відміна' - скасувати, 'OK' - видалити."
277
 
278
- #: gallery-plugin.php:1898
279
  msgid ""
280
  "You are about to remove this image from the gallery.\n"
281
  " 'Cancel' to stop, 'OK' to delete."
@@ -283,7 +285,7 @@ msgstr ""
283
  "Ви збираєтеся видалити це зображення з галереї.\n"
284
  " 'Відміна' - скасувати, 'OK' - видалити."
285
 
286
- #: gallery-plugin.php:1899
287
  msgid ""
288
  "Switching to another mode, all unsaved data will be lost. Save data before "
289
  "switching?"
@@ -291,27 +293,27 @@ msgstr ""
291
  "При переході на інший режим, усі незбережені дані будуть втрачені. Зберегти "
292
  "їх перед переходом?"
293
 
294
- #: gallery-plugin.php:1900
295
  msgid "Insert Media"
296
  msgstr "Додати медіафайл"
297
 
298
- #: gallery-plugin.php:1901
299
  msgid "Insert"
300
  msgstr "Додати"
301
 
302
- #: gallery-plugin.php:1902
303
  msgid "A new slider is added."
304
  msgstr "Додано новий слайдер."
305
 
306
- #: gallery-plugin.php:1902
307
  msgid "Edit slider"
308
  msgstr "Редагування слайдера"
309
 
310
- #: gallery-plugin.php:2494 gallery-plugin.php:2527
311
  msgid "Image size not defined"
312
  msgstr "Неможливо визначити розмір зображення"
313
 
314
- #: gallery-plugin.php:2514
315
  msgid ""
316
  "Plugin updates only PNG, JPEG, GIF, WPMP or XBM filetype. For other, please "
317
  "reload images manually."
@@ -319,75 +321,115 @@ msgstr ""
319
  "Плагін може оновити тільки такі типи файлів: PNG, JPEG, GIF, XBM або WPMP. "
320
  "Для інших типів, будь ласка, перезавантажте зображення вручну."
321
 
322
- #: gallery-plugin.php:2560 gallery-plugin.php:2564 gallery-plugin.php:2570
323
  msgid "Invalid path"
324
  msgstr "Невірний шлях до зображення"
325
 
326
- #: gallery-plugin.php:2668
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
327
  msgid "List View"
328
  msgstr "У вигляді списку"
329
 
330
- #: gallery-plugin.php:2669
331
  msgid "Grid View"
332
  msgstr "У вигляді сітки"
333
 
334
- #: gallery-plugin.php:2725
335
  msgid "Filter"
336
  msgstr "Фільтр"
337
 
338
- #: gallery-plugin.php:2729
339
  msgid "Empty Trash"
340
  msgstr "Очистити кошик"
341
 
342
- #: gallery-plugin.php:2752
343
  msgid "No images found"
344
  msgstr "Жодного зображення не знайдено"
345
 
346
- #: gallery-plugin.php:2805
347
  msgid "Select bulk action"
348
  msgstr "Вибрати групову дію"
349
 
350
- #: gallery-plugin.php:2807
351
  msgid "Bulk Actions"
352
  msgstr "Групові дії"
353
 
354
- #: gallery-plugin.php:2817
355
  msgid "Apply"
356
  msgstr "Застосувати"
357
 
358
- #: gallery-plugin.php:2824
359
  msgid "Delete from Gallery"
360
  msgstr "Видалити з галереї"
361
 
362
- #: gallery-plugin.php:2833
363
  msgid "Bulk Select"
364
  msgstr "Вибір"
365
 
366
- #: gallery-plugin.php:2834
367
  msgid "Cancel Selection"
368
  msgstr "Скасувати вибір"
369
 
370
- #: gallery-plugin.php:2835
371
  msgid "Delete Selected"
372
  msgstr "Видалити вибране"
373
 
374
- #: gallery-plugin.php:2846
375
  msgid "File"
376
  msgstr "Файл"
377
 
378
- #: gallery-plugin.php:2847 gallery-plugin.php:2950 gallery-plugin.php:3063
 
 
379
  msgid "Dimensions"
380
  msgstr "Розміри"
381
 
382
- #: gallery-plugin.php:2849 gallery-plugin.php:2961 gallery-plugin.php:3073
 
 
383
  msgid "Alt Text"
384
  msgstr "Альтернативний текст"
385
 
386
- #: gallery-plugin.php:2850 gallery-plugin.php:2965 gallery-plugin.php:3078
 
 
387
  msgid "URL"
388
  msgstr "Посилання"
389
 
390
- #: gallery-plugin.php:2850 gallery-plugin.php:2967
 
391
  msgid ""
392
  "Enter your custom URL to link this image to other page or file. Leave blank "
393
  "to open a full size image."
@@ -395,136 +437,107 @@ msgstr ""
395
  "Введіть свій власний URL, щоб зв'язати це зображення з іншою сторінкою або "
396
  "файлом. Залиште порожнім, щоб відкрити повнорозмірне зображення."
397
 
398
- #: gallery-plugin.php:2932
399
  msgid "Remove Image from Gallery"
400
  msgstr "Видалити зображення з галереї"
401
 
402
- #: gallery-plugin.php:2935
403
  msgid "Edit Image Info"
404
  msgstr "Редагувати інформацію зображення"
405
 
406
- #: gallery-plugin.php:2936
407
  msgid "Deselect"
408
  msgstr "Скасувати вибір"
409
 
410
- #: gallery-plugin.php:2948
411
  msgid "File name"
412
  msgstr "Назва файлу"
413
 
414
- #: gallery-plugin.php:2949
415
  msgid "File type"
416
  msgstr "Тип файлу"
417
 
418
- #: gallery-plugin.php:2974
419
  msgid "Description"
420
  msgstr "Опис"
421
 
422
- #: gallery-plugin.php:2980
423
  msgid "Lightbox Button URL"
424
  msgstr "Посилання для кнопки в лайтбоксі"
425
 
426
- #: gallery-plugin.php:2987
427
  msgid "New Tab"
428
  msgstr "Нова вкладка"
429
 
430
- #: gallery-plugin.php:2989
431
  msgid "Enable to open URLs above in a new tab."
432
  msgstr "Увімкніть, щоб відкрити посилання в новій вкладці."
433
 
434
- #: gallery-plugin.php:2994
435
  msgid "Go Pro"
436
  msgstr "Оновитися до Pro"
437
 
438
- #: gallery-plugin.php:3000
439
  msgid "Edit more details"
440
  msgstr "Змінити деталі"
441
 
442
- #: gallery-plugin.php:3002
443
  msgid "Remove from Gallery"
444
  msgstr "Видалити з галереї"
445
 
446
- #: gallery-plugin.php:3038
447
  #, php-format
448
  msgid "Select %s"
449
  msgstr "Вибрати %s"
450
 
451
- #: gallery-plugin.php:3051
452
  #, php-format
453
  msgid "Edit &#8220;%s&#8221;"
454
  msgstr "Редагувати &#8220;%s&#8221;"
455
 
456
- #: gallery-plugin.php:3059
457
  msgid "Edit Attachment Info"
458
  msgstr "Змінити інформацію зображення"
459
 
460
- #: gallery-plugin.php:3096 gallery-plugin.php:3112
 
461
  msgid "Edit"
462
  msgstr "Змінити"
463
 
464
- #: gallery-plugin.php:3100 gallery-plugin.php:3118
 
465
  msgid "Trash"
466
  msgstr "Кошик"
467
 
468
- #: gallery-plugin.php:3103 gallery-plugin.php:3122
 
469
  msgid "Delete Permanently"
470
  msgstr "Видалити назавжди"
471
 
472
- #: gallery-plugin.php:3106 gallery-plugin.php:3128
 
473
  #, php-format
474
  msgid "View &#8220;%s&#8221;"
475
  msgstr "Перегляд &#8220;%s&#8221;"
476
 
477
- #: gallery-plugin.php:3106 gallery-plugin.php:3128
478
- #: includes/class-gllr-widgets.php:90
479
  msgid "View"
480
  msgstr "Перегляд"
481
 
482
- #: gallery-plugin.php:3108
483
  msgid "Attach"
484
  msgstr "Прикріпити"
485
 
486
- #: gallery-plugin.php:3116
487
  msgid "Restore"
488
  msgstr "Відновити"
489
 
490
- #: gallery-plugin.php:3248 gallery-plugin.php:3409
491
- msgid "Warning"
492
- msgstr "Увага"
493
-
494
- #: gallery-plugin.php:3248
495
- msgid "You can add only images to the gallery"
496
- msgstr "В галерею можна додати лише зображення"
497
-
498
- #: gallery-plugin.php:3303
499
- msgid "no title"
500
- msgstr "без назви"
501
-
502
- #: gallery-plugin.php:3313
503
- msgid ""
504
- "Display an album image with the description and the link to a single gallery "
505
- "page"
506
- msgstr ""
507
- "Відобразити зображення альбому з описом і посиланням на окрему сторінку "
508
- "галереї"
509
-
510
- #: gallery-plugin.php:3317
511
- msgid "Sorry, no gallery found."
512
- msgstr "Вибачте, жодної галереї не знайдено."
513
-
514
- #: gallery-plugin.php:3409
515
- #, php-format
516
- msgid ""
517
- "Maximum upload file size %s. Contact your administrator or hosting provider "
518
- "if you need to upload a large file size."
519
- msgstr ""
520
- "Максимальний розмір файлу %s. Зв'яжіться з вашим адміністратором або "
521
- "провайдером хостингу, якщо вам потрібно завантажити файл більшого розміру."
522
-
523
  #: includes/class-gllr-settings.php:30
524
  msgid "Cover"
525
  msgstr "Альбом"
526
 
527
- #: includes/class-gllr-settings.php:31 includes/class-gllr-settings.php:770
528
  msgid "Lightbox"
529
  msgstr "Лайтбокс"
530
 
@@ -544,134 +557,134 @@ msgstr "Користувацький код"
544
  msgid "Import / Export"
545
  msgstr "Імпорт / Експорт"
546
 
547
- #: includes/class-gllr-settings.php:36
548
  msgid "License Key"
549
  msgstr "Ліцензійний ключ"
550
 
551
- #: includes/class-gllr-settings.php:225
552
  msgid "Settings saved"
553
  msgstr "Налаштування збережено"
554
 
555
- #: includes/class-gllr-settings.php:237 includes/class-gllr-widgets.php:358
556
  msgid "Please, enable JavaScript in Your browser."
557
  msgstr "Будь ласка, увімкніть JavaScript у вашому браузері."
558
 
559
- #: includes/class-gllr-settings.php:241
560
  msgid "Custom image size was changed. You need to update gallery images."
561
  msgstr ""
562
  "Користувацький розмір зображення був змінений. Вам необхідно оновити "
563
  "зображення галерей."
564
 
565
- #: includes/class-gllr-settings.php:242
566
  msgid "Update Images"
567
  msgstr "Оновити зображення"
568
 
569
- #: includes/class-gllr-settings.php:257
570
  msgid "Gallery Images"
571
  msgstr "Зображення галереї"
572
 
573
- #: includes/class-gllr-settings.php:262
574
  msgid "Images adding requires JavaScript."
575
  msgstr "Додавання зображень вимагає використання JavaScript."
576
 
577
- #: includes/class-gllr-settings.php:265
578
  msgid "Add Media"
579
  msgstr "Додати медіафайл"
580
 
581
- #: includes/class-gllr-settings.php:274
582
  msgid "The grid view for the Gallery images requires JavaScript."
583
  msgstr "Перегляд зображень у вигляді сітки вимагає використання JavaScript."
584
 
585
- #: includes/class-gllr-settings.php:274
586
  msgid "Switch to the list view"
587
  msgstr "Переключитися на список"
588
 
589
- #: includes/class-gllr-settings.php:301
590
  msgid "Create Slider"
591
  msgstr "Додати слайдер"
592
 
593
- #: includes/class-gllr-settings.php:313
594
  msgid "Activate"
595
  msgstr "Активувати"
596
 
597
- #: includes/class-gllr-settings.php:316 includes/class-gllr-settings.php:1019
598
  msgid "Install Now"
599
  msgstr "Встановити зараз"
600
 
601
- #: includes/class-gllr-settings.php:318
602
  msgid "Create New Slider"
603
  msgstr "Створити новий слайдер"
604
 
605
- #: includes/class-gllr-settings.php:321
606
  msgid ""
607
  "Click to create a new slider using gallery images. Slider plugin is required."
608
  msgstr ""
609
  "Натисніть, щоб створити новий слайдер за допомогою зображень галереї. Для "
610
  "цієї опції необхідно використання плагіна Slider."
611
 
612
- #: includes/class-gllr-settings.php:331
613
  msgid "Single Gallery Settings"
614
  msgstr "Налаштування галереї"
615
 
616
- #: includes/class-gllr-settings.php:333
617
  #, php-format
618
  msgid "Enable to configure single gallery settings and disable %s."
619
  msgstr "Увімкніть щоб налаштувати цю галерею і відключити %s."
620
 
621
- #: includes/class-gllr-settings.php:345 includes/class-gllr-settings.php:402
622
- #: includes/class-gllr-settings.php:446 includes/class-gllr-settings.php:496
623
- #: includes/class-gllr-settings.php:640 includes/class-gllr-settings.php:722
624
- #: includes/class-gllr-settings.php:783 includes/class-gllr-settings.php:833
625
- #: includes/class-gllr-settings.php:892 includes/class-gllr-settings.php:980
626
  msgid "Close"
627
  msgstr "Закрити"
628
 
629
- #: includes/class-gllr-settings.php:349
630
  msgid "Gallery Layout"
631
  msgstr "Макет галереї"
632
 
633
- #: includes/class-gllr-settings.php:354
634
  msgid "Grid"
635
  msgstr "Сітка"
636
 
637
- #: includes/class-gllr-settings.php:360
638
  msgid "Masonry"
639
  msgstr "Masonry"
640
 
641
- #: includes/class-gllr-settings.php:373
642
  msgid "Number of Columns"
643
  msgstr "Кількість колонок"
644
 
645
- #: includes/class-gllr-settings.php:376
646
  #, php-format
647
  msgid "Number of gallery columns (default is %s)."
648
  msgstr "Кількість колонок галерей (за замовчуванням - %s)."
649
 
650
- #: includes/class-gllr-settings.php:380 includes/class-gllr-settings.php:787
651
  msgid "Image Size"
652
  msgstr "Розмір зображення"
653
 
654
- #: includes/class-gllr-settings.php:386 includes/class-gllr-settings.php:625
655
  msgid "Custom"
656
  msgstr "Користувацький"
657
 
658
- #: includes/class-gllr-settings.php:388
659
  msgid ""
660
  "Maximum gallery image size. \"Custom\" uses the Image Dimensions values."
661
  msgstr ""
662
  "Максимальний розмір зображень галереї. Користувацький використовує значення, "
663
  "зазначені в полі Розміри зображення."
664
 
665
- #: includes/class-gllr-settings.php:392
666
  msgid "Custom Image Size"
667
  msgstr "Користувацький розмір зображення"
668
 
669
- #: includes/class-gllr-settings.php:394 includes/class-gllr-settings.php:482
670
- #: includes/class-gllr-settings.php:633 includes/class-gllr-settings.php:683
671
  msgid "px"
672
  msgstr "пікс"
673
 
674
- #: includes/class-gllr-settings.php:395
675
  msgid ""
676
  "Adjust these values based on the number of columns in your gallery. This "
677
  "won't effect the full size of your images in the lightbox."
@@ -679,11 +692,11 @@ msgstr ""
679
  "Відрегулюйте ці значення з урахуванням числа колонок у вашій галереї. Це не "
680
  "впливає на розміри повного зображення в лайтбоксі."
681
 
682
- #: includes/class-gllr-settings.php:406
683
  msgid "Crop Images"
684
  msgstr "Обрізка зображень"
685
 
686
- #: includes/class-gllr-settings.php:408
687
  msgid ""
688
  "Enable to crop images using the sizes defined for Custom Image Size. Disable "
689
  "to resize images automatically using their aspect ratio."
@@ -692,40 +705,40 @@ msgstr ""
692
  "користувацького розміру зображення. Вимкніть, щоб змінити розмір зображення "
693
  "автоматично, використовуючи їх пропорції."
694
 
695
- #: includes/class-gllr-settings.php:412 includes/class-gllr-settings.php:650
696
  msgid "Crop Position"
697
  msgstr "Позиція обрізки"
698
 
699
- #: includes/class-gllr-settings.php:427 includes/class-gllr-settings.php:665
700
  msgid "Select crop position base (by default: center)."
701
  msgstr "Оберіть позицію обрізки (за замовчуванням: центр)."
702
 
703
- #: includes/class-gllr-settings.php:437
704
  msgid "Image Title"
705
  msgstr "Назва зображення"
706
 
707
- #: includes/class-gllr-settings.php:439
708
  msgid "Enable to display image title along with the gallery image."
709
  msgstr ""
710
  "Увімкніть, щоб відобразити назву зображення разом із зображенням галереї."
711
 
712
- #: includes/class-gllr-settings.php:450
713
  msgid "Image Title Position"
714
  msgstr "Розташування назви зображення"
715
 
716
- #: includes/class-gllr-settings.php:455
717
  msgid "Below images"
718
  msgstr "Нижче зображення"
719
 
720
- #: includes/class-gllr-settings.php:461
721
  msgid "On mouse hover"
722
  msgstr "По наведенню миші"
723
 
724
- #: includes/class-gllr-settings.php:474
725
  msgid "Image Border"
726
  msgstr "Рамка зображення"
727
 
728
- #: includes/class-gllr-settings.php:476
729
  msgid ""
730
  "Enable images border using the styles defined for Image Border Size and "
731
  "Color options."
@@ -733,24 +746,36 @@ msgstr ""
733
  "Увімкнути рамку зображення з використанням стилів, зазначених для Кольору і "
734
  "Розміру рамки."
735
 
736
- #: includes/class-gllr-settings.php:480
737
  msgid "Image Border Size"
738
  msgstr "Розмір рамки зображення"
739
 
740
- #: includes/class-gllr-settings.php:483
741
  #, php-format
742
  msgid "Gallery image border width (default is %s)."
743
  msgstr "Ширина рамки для зображень галереї (за замовчуванням %s)."
744
 
745
- #: includes/class-gllr-settings.php:487
746
  msgid "Image Border Color"
747
  msgstr "Колір рамки зображень"
748
 
749
- #: includes/class-gllr-settings.php:500
 
 
 
 
 
 
 
 
 
 
 
 
750
  msgid "Pagination"
751
  msgstr "Посторінкова навігація"
752
 
753
- #: includes/class-gllr-settings.php:503
754
  msgid ""
755
  "Enable pagination for images to limit number of images displayed on a single "
756
  "gallery page."
@@ -758,34 +783,34 @@ msgstr ""
758
  "Включити посторінкову навігацію для зображень, щоб обмежити кількість "
759
  "зображень, що відображаються на одній сторінці галереї."
760
 
761
- #: includes/class-gllr-settings.php:507
762
  msgid "Number of Images"
763
  msgstr "Кількість зображень"
764
 
765
- #: includes/class-gllr-settings.php:510
766
  #, php-format
767
  msgid "Number of images displayed per page (default is %d)."
768
  msgstr ""
769
  "Кількість зображень, що відображаються на одній сторінці (за замовчуванням "
770
  "%d)."
771
 
772
- #: includes/class-gllr-settings.php:520
773
  msgid "Sort Images by"
774
  msgstr "Сортувати зображення за"
775
 
776
- #: includes/class-gllr-settings.php:523
777
  msgid "Manually (default)"
778
  msgstr "Вручну (за замовчуванням)"
779
 
780
- #: includes/class-gllr-settings.php:524
781
  msgid "Image ID"
782
  msgstr "ID зображення"
783
 
784
- #: includes/class-gllr-settings.php:525
785
  msgid "Name"
786
  msgstr "Назва"
787
 
788
- #: includes/class-gllr-settings.php:529
789
  msgid ""
790
  "Select images sorting order in your gallery. By default, you can sort images "
791
  "manually in the images tab."
@@ -793,23 +818,23 @@ msgstr ""
793
  "Оберіть порядок сортування зображень у вашій галереї. За замовчуванням, це "
794
  "ручне сортування зображення на вкладці зображень."
795
 
796
- #: includes/class-gllr-settings.php:533
797
  msgid "Arrange Images by"
798
  msgstr "Сортувати зображення"
799
 
800
- #: includes/class-gllr-settings.php:536 includes/class-gllr-settings.php:713
801
  msgid "Ascending (e.g. 1, 2, 3; a, b, c)"
802
  msgstr "За зростанням (наприклад, 1, 2, 3; а, б, в)"
803
 
804
- #: includes/class-gllr-settings.php:537 includes/class-gllr-settings.php:714
805
  msgid "Descending (e.g. 3, 2, 1; c, b, a)"
806
  msgstr "За зменшенням (наприклад, 3, 2, 1; в, б, а)"
807
 
808
- #: includes/class-gllr-settings.php:542
809
  msgid "Back Link"
810
  msgstr "Зворотнє посилання"
811
 
812
- #: includes/class-gllr-settings.php:544
813
  msgid ""
814
  "Enable to show a back link in a single gallery page which navigate to a "
815
  "previous page."
@@ -817,106 +842,106 @@ msgstr ""
817
  "Включити, щоб показати зворотнє посилання на сторінці галереї, яке перейде "
818
  "до попередньої сторінки."
819
 
820
- #: includes/class-gllr-settings.php:548
821
  msgid "Back Link URL"
822
  msgstr "URL зворотнього посилання"
823
 
824
- #: includes/class-gllr-settings.php:551
825
  msgid ""
826
  "Leave blank to use the Gallery page template or enter a custom page URL."
827
  msgstr ""
828
  "Залиште порожнє, щоб використовувати шаблон сторінки галереї або введіть URL-"
829
  "адресу користувача."
830
 
831
- #: includes/class-gllr-settings.php:555
832
  msgid "Back Link Label"
833
  msgstr "Текст зворотнього посилання"
834
 
835
- #: includes/class-gllr-settings.php:561
836
  msgid "Back Link with Shortcode"
837
  msgstr "Зворотнє посилання у шорткоді"
838
 
839
- #: includes/class-gllr-settings.php:564
840
  msgid "Enable to display a back link on a page where shortcode is used."
841
  msgstr ""
842
  "Увімкніть, щоб відображати зворотнє посилання на сторінку при використанні "
843
  "шорткода."
844
 
845
- #: includes/class-gllr-settings.php:568
846
  msgid "Disable Fancybox"
847
  msgstr "Вимкнути Fancybox"
848
 
849
- #: includes/class-gllr-settings.php:570
850
  msgid "Enable to avoid possible conflicts with a 3rd party Fancybox."
851
  msgstr "Увімкніть, щоб уникнути можливих конфліктів із сторонніми fancybox."
852
 
853
- #: includes/class-gllr-settings.php:581
854
  msgid "Cover Settings"
855
  msgstr "Налаштування альбому"
856
 
857
- #: includes/class-gllr-settings.php:586
858
  msgid "Galleries Page"
859
  msgstr "Сторінка галерей"
860
 
861
- #: includes/class-gllr-settings.php:594
862
  msgid "Base page where all existing galleries will be displayed."
863
  msgstr "Базова сторінка, на якій будуть відображатися всі існуючі галереї."
864
 
865
- #: includes/class-gllr-settings.php:598
866
  msgid "Albums Displaying"
867
  msgstr "Відображення альбомів"
868
 
869
- #: includes/class-gllr-settings.php:601
870
  msgid "Column"
871
  msgstr "У колонку"
872
 
873
- #: includes/class-gllr-settings.php:602
874
  msgid "Rows"
875
  msgstr "У ряд"
876
 
877
- #: includes/class-gllr-settings.php:604
878
  msgid "Select the way galleries will be displayed on the Galleries Page."
879
  msgstr "Оберіть, як галереї відображатимуться на сторінці Галерей."
880
 
881
- #: includes/class-gllr-settings.php:608
882
  msgid "Column Alignment"
883
  msgstr "Вирівнювання колонки"
884
 
885
- #: includes/class-gllr-settings.php:611
886
  msgid "Left"
887
  msgstr "Ліво"
888
 
889
- #: includes/class-gllr-settings.php:612
890
  msgid "Right"
891
  msgstr "Право"
892
 
893
- #: includes/class-gllr-settings.php:613
894
  msgid "Center"
895
  msgstr "Центр"
896
 
897
- #: includes/class-gllr-settings.php:615
898
  msgid "Select the column alignment."
899
  msgstr "Оберіть вирівнювання колонки."
900
 
901
- #: includes/class-gllr-settings.php:619
902
  msgid "Cover Image Size"
903
  msgstr "Розмір зображення альбому"
904
 
905
- #: includes/class-gllr-settings.php:627
906
  msgid "Maximum cover image size. Custom uses the Image Dimensions values."
907
  msgstr ""
908
  "Максимальний розмір зображення альбому. Користувацький використовує значення "
909
  "Розмірів зображення."
910
 
911
- #: includes/class-gllr-settings.php:631
912
  msgid "Custom Cover Image Size"
913
  msgstr "Користувацький розмір зображення альбому"
914
 
915
- #: includes/class-gllr-settings.php:644
916
  msgid "Crop Cover Images"
917
  msgstr "Обрізка зображення альбому"
918
 
919
- #: includes/class-gllr-settings.php:646
920
  msgid ""
921
  "Enable to crop images using the sizes defined for Custom Cover Image Size. "
922
  "Disable to resize images automatically using their aspect ratio."
@@ -925,11 +950,11 @@ msgstr ""
925
  "користувацького розміру зображення альбому. Вимкніть, щоб змінити розмір "
926
  "зображення автоматично, використовуючи їх пропорції."
927
 
928
- #: includes/class-gllr-settings.php:675
929
  msgid "Cover Image Border"
930
  msgstr "Рамка для зображення альбому"
931
 
932
- #: includes/class-gllr-settings.php:677
933
  msgid ""
934
  "Enable cover images border using the styles defined for Image Border Size "
935
  "and Color."
@@ -937,36 +962,36 @@ msgstr ""
937
  "Увімкнути рамку зображення альбому з використанням стилів, зазначених для "
938
  "Кольору і Розміру рамки."
939
 
940
- #: includes/class-gllr-settings.php:681
941
  msgid "Cover Image Border Size"
942
  msgstr "Розмір рамки зображення альбому"
943
 
944
- #: includes/class-gllr-settings.php:684
945
  #, php-format
946
  msgid "Cover image border width (default is %s)."
947
  msgstr "Ширина рамки для зображення альбому (за замовчуванням %s)."
948
 
949
- #: includes/class-gllr-settings.php:688
950
  msgid "Cover Image Border Color"
951
  msgstr "Колір рамки зображення альбому"
952
 
953
- #: includes/class-gllr-settings.php:694
954
  msgid "Sort Albums by"
955
  msgstr "Сортувати альбоми за"
956
 
957
- #: includes/class-gllr-settings.php:706
958
  msgid "Select galleries sorting order in your galleries page."
959
  msgstr "Оберіть порядок сортування галерей на сторінці галерей."
960
 
961
- #: includes/class-gllr-settings.php:710
962
  msgid "Arrange Albums by"
963
  msgstr "Сортування альбомів за"
964
 
965
- #: includes/class-gllr-settings.php:726
966
  msgid "Instant Lightbox"
967
  msgstr "Миттєвий лайтбокс"
968
 
969
- #: includes/class-gllr-settings.php:729
970
  msgid ""
971
  "Enable to display all images in the lightbox after clicking cover image or "
972
  "URL instead of going to a single gallery page."
@@ -974,35 +999,23 @@ msgstr ""
974
  "Увімкніть, щоб відображати всі зображення в лайтбоксі після натискання на "
975
  "зображення альбому або URL замість переходу на окрему сторінку галереї."
976
 
977
- #: includes/class-gllr-settings.php:739
978
  msgid "Read More Link Label"
979
  msgstr "Текст посилання Дізнатися більше"
980
 
981
- #: includes/class-gllr-settings.php:751
982
  msgid "Lightbox Settings"
983
  msgstr "Налаштування лайтбоксу"
984
 
985
- #: includes/class-gllr-settings.php:756
986
- msgid "Unclickable Thumbnail Images"
987
- msgstr "Некликабельна картинка"
988
-
989
- #: includes/class-gllr-settings.php:759
990
- msgid ""
991
- "Enable to make the images in a single gallery unclickable and hide their "
992
- "URLs. This option also disables Lightbox."
993
- msgstr ""
994
- "Увімкніть, щоб зробити мініатюри зображень в галереї неклікабельнимі, а "
995
- "також не відображати їх посилання. Ця опція також відключає лайтбокс."
996
-
997
- #: includes/class-gllr-settings.php:763
998
  msgid "Enable Lightbox"
999
  msgstr "Увімкнути лайтбокс"
1000
 
1001
- #: includes/class-gllr-settings.php:766
1002
  msgid "Enable to show the lightbox when clicking on gallery images."
1003
  msgstr "Увімкніть, щоб показати лайтбокс при натисканні на зображення галереї."
1004
 
1005
- #: includes/class-gllr-settings.php:794
1006
  msgid ""
1007
  "Select the maximum gallery image size for the lightbox view. \"Default\" "
1008
  "will display the original, full size image."
@@ -1010,15 +1023,15 @@ msgstr ""
1010
  "Оберіть максимальний розмір зображень галереї для перегляду в лайтбоксі. За "
1011
  "замовчуванням буде відображатися оригінал, повний розмір."
1012
 
1013
- #: includes/class-gllr-settings.php:798
1014
  msgid "Overlay Color"
1015
  msgstr "Колір підкладки"
1016
 
1017
- #: includes/class-gllr-settings.php:804
1018
  msgid "Overlay Opacity"
1019
  msgstr "Прозорість підкладки"
1020
 
1021
- #: includes/class-gllr-settings.php:807
1022
  #, php-format
1023
  msgid ""
1024
  "Lightbox overlay opacity. Leave blank to disable opacity (default is %s, max "
@@ -1027,76 +1040,76 @@ msgstr ""
1027
  "Прозорість підкладки лайтбоксу. Залиште порожнім, щоб відключити прозорість "
1028
  "(за замовчуванням %s, максимум %s)."
1029
 
1030
- #: includes/class-gllr-settings.php:817
1031
  msgid "Slideshow"
1032
  msgstr "Слайд-шоу"
1033
 
1034
- #: includes/class-gllr-settings.php:819
1035
  msgid "Enable to start the slideshow automatically when the lightbox is used."
1036
  msgstr ""
1037
  "Увімкніть для автоматичного запуску слайд-шоу при використанні лайтбоксу."
1038
 
1039
- #: includes/class-gllr-settings.php:823
1040
  msgid "Slideshow Duration"
1041
  msgstr "Інтервал часу"
1042
 
1043
- #: includes/class-gllr-settings.php:825
1044
  msgid "ms"
1045
  msgstr "мс"
1046
 
1047
- #: includes/class-gllr-settings.php:826
1048
  msgid "Slideshow interval duration between two images."
1049
  msgstr "Інтервал перемикання між двома зображеннями."
1050
 
1051
- #: includes/class-gllr-settings.php:837
1052
  msgid "Lightbox Helpers"
1053
  msgstr "Допоміжні елементи лайтбоксу"
1054
 
1055
- #: includes/class-gllr-settings.php:839
1056
  msgid "Enable to display the lightbox toolbar and arrows."
1057
  msgstr ""
1058
  "Увімкніть для того, щоб показати панель інструментів та кнопки навігації."
1059
 
1060
- #: includes/class-gllr-settings.php:843
1061
  msgid "Lightbox Thumbnails"
1062
  msgstr "Мініатюри в лайтбоксі"
1063
 
1064
- #: includes/class-gllr-settings.php:845
1065
  msgid "Enable to use a lightbox helper navigation between images."
1066
  msgstr ""
1067
  "Дозволити використовувати допоміжні елементи лайтбоксу для навігації між "
1068
  "зображеннями."
1069
 
1070
- #: includes/class-gllr-settings.php:849
1071
  msgid "Lightbox Thumbnails Position"
1072
  msgstr "Розташування мініатюр в лайтбоксі"
1073
 
1074
- #: includes/class-gllr-settings.php:852
1075
  msgid "Top"
1076
  msgstr "Верх"
1077
 
1078
- #: includes/class-gllr-settings.php:857
1079
  msgid "Lightbox Button Label"
1080
  msgstr "Текст кнопки в лайтбоксі"
1081
 
1082
- #: includes/class-gllr-settings.php:859
1083
  msgid "Read More"
1084
  msgstr "Дізнатися більше"
1085
 
1086
- #: includes/class-gllr-settings.php:869
1087
  msgid "Download Button"
1088
  msgstr "Кнопка \"Завантажити\""
1089
 
1090
- #: includes/class-gllr-settings.php:871
1091
  msgid "Enable to display download button."
1092
  msgstr ""
1093
  "Увімкніть, щоб показати посилання на завантаження оригінального зображення."
1094
 
1095
- #: includes/class-gllr-settings.php:875
1096
  msgid "Single Lightbox"
1097
  msgstr "Один лайтбокс"
1098
 
1099
- #: includes/class-gllr-settings.php:877
1100
  msgid ""
1101
  "Enable to use a single lightbox for multiple galleries located on a single "
1102
  "page."
@@ -1104,35 +1117,35 @@ msgstr ""
1104
  "Увімкніть, щоб використовувати один лайтбокс для декількох галерей, "
1105
  "розташованих на одній сторінці."
1106
 
1107
- #: includes/class-gllr-settings.php:887
1108
  msgid "Social Sharing Buttons Settings"
1109
  msgstr "Налаштування соціальних кнопок"
1110
 
1111
- #: includes/class-gllr-settings.php:896
1112
  msgid "Social Buttons"
1113
  msgstr "Соціальні кнопки"
1114
 
1115
- #: includes/class-gllr-settings.php:898
1116
  msgid "Enable social sharing buttons in the lightbox."
1117
  msgstr "Увімкніть соціальні кнопки в лайтбоксі."
1118
 
1119
- #: includes/class-gllr-settings.php:902
1120
  msgid "Social Networks"
1121
  msgstr "Соціальні мережі"
1122
 
1123
- #: includes/class-gllr-settings.php:912
1124
  msgid "Counter"
1125
  msgstr "Лічильник"
1126
 
1127
- #: includes/class-gllr-settings.php:915
1128
  msgid "Enable to show likes counter for each social button."
1129
  msgstr "Увімкніть, щоб показати лічильник для кожної соціальної кнопки."
1130
 
1131
- #: includes/class-gllr-settings.php:930
1132
  msgid "Demo Data"
1133
  msgstr "Демо-дані"
1134
 
1135
- #: includes/class-gllr-settings.php:932
1136
  msgid ""
1137
  "Install demo data to create galleries with images, post with shortcodes and "
1138
  "page with a list of all galleries."
@@ -1140,11 +1153,11 @@ msgstr ""
1140
  "Встановіть демо-дані, щоб створити галереї з зображеннями, запис з "
1141
  "шорткодами і сторінку зі списком усіх галерей."
1142
 
1143
- #: includes/class-gllr-settings.php:970
1144
  msgid "Gallery Post Type"
1145
  msgstr "Тип запису галереї"
1146
 
1147
- #: includes/class-gllr-settings.php:972
1148
  msgid ""
1149
  "Enable to avoid conflicts with other gallery plugins installed. All "
1150
  "galleries created earlier will stay unchanged. However, after enabling we "
@@ -1156,23 +1169,44 @@ msgstr ""
1156
  "перевірте, будь ласка, налаштування інших плагінів, де використовується тип "
1157
  "запису \"gallery\"."
1158
 
1159
- #: includes/class-gllr-settings.php:984
1160
  msgid "Gallery Slug"
1161
  msgstr "Слаґ галереї"
1162
 
1163
- #: includes/class-gllr-settings.php:988
1164
  msgid "Enter the unique gallery slug."
1165
  msgstr "Введіть унікальний слаґ галереї."
1166
 
1167
- #: includes/class-gllr-settings.php:1004
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1168
  msgid "Activate Now"
1169
  msgstr "Активувати зараз"
1170
 
1171
- #: includes/class-gllr-settings.php:1022
1172
  msgid "Enable to include galleries to your website search."
1173
  msgstr "Включити галерею в пошук на вашому сайті."
1174
 
1175
- #: includes/class-gllr-settings.php:1022
1176
  #, php-format
1177
  msgid "%s is required."
1178
  msgstr "Потребується %s."
@@ -1335,7 +1369,6 @@ msgstr "Ви хочете встановити демо-контент та на
1335
  #~ msgid "Try to disable 3rd-party fancybox"
1336
  #~ msgstr "Спробуйте відключити сторонній fancybox"
1337
 
1338
- #, php-format
1339
  #~ msgid ""
1340
  #~ "Do you want to install demo content and settings for %s? (You can do this "
1341
  #~ "later using Import / Export settings)"
2
  msgstr ""
3
  "Project-Id-Version: Gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2021-08-20 14:45+0300\n"
6
+ "PO-Revision-Date: 2021-08-20 14:45+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft <https://support.bestwebsoft.com>\n"
9
  "Language: uk_UA\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
  "X-Poedit-SearchPathExcluded-0: bws_menu\n"
19
 
20
+ #: gallery-plugin.php:41 includes/class-gllr-settings.php:299
21
  msgid "Gallery Settings"
22
  msgstr "Налаштування Галерей"
23
 
24
+ #: gallery-plugin.php:41 includes/class-gllr-settings.php:338
25
  msgid "Global Settings"
26
  msgstr "Загальні налаштування"
27
 
28
+ #: gallery-plugin.php:48 includes/class-gllr-media-table.php:346
29
  msgid "Upgrade to Pro"
30
  msgstr "Оновитися до Pro"
31
 
32
+ #: gallery-plugin.php:354
33
  msgid "Return to all albums"
34
  msgstr "Повернутись до всіх альбомів"
35
 
36
+ #: gallery-plugin.php:368
37
  msgid "See images &raquo;"
38
  msgstr "Переглянути фото &raquo;"
39
 
40
+ #: gallery-plugin.php:461 gallery-plugin.php:470
41
  msgid "Galleries"
42
  msgstr "Галереї"
43
 
44
+ #: gallery-plugin.php:462 gallery-plugin.php:2829
45
  msgid "Gallery"
46
  msgstr "Галерея"
47
 
48
+ #: gallery-plugin.php:463
49
  msgid "Add New Gallery"
50
  msgstr "Додати нову галерею"
51
 
52
+ #: gallery-plugin.php:464
53
  msgid "Edit Gallery"
54
  msgstr "Редагувати галерею"
55
 
56
+ #: gallery-plugin.php:465
57
  msgid "New Gallery"
58
  msgstr "Нова галерея"
59
 
60
+ #: gallery-plugin.php:466
61
  msgid "View Gallery"
62
  msgstr "Переглянути галерею"
63
 
64
+ #: gallery-plugin.php:467 includes/class-gllr-settings.php:1034
65
  msgid "Search Galleries"
66
  msgstr "Шукати галереї"
67
 
68
+ #: gallery-plugin.php:468
69
  msgid "No Gallery found"
70
  msgstr "Жодної галереї не знайдено"
71
 
72
+ #: gallery-plugin.php:490 gallery-plugin.php:1740 gallery-plugin.php:2801
73
  #: includes/class-gllr-widgets.php:25 includes/class-gllr-widgets.php:33
74
  #: includes/class-gllr-widgets.php:71 includes/class-gllr-widgets.php:95
75
  msgid "Gallery Categories"
76
  msgstr "Категорії галерей"
77
 
78
+ #: gallery-plugin.php:491 gallery-plugin.php:940
79
  msgid "Gallery Category"
80
  msgstr "Категорія галерей"
81
 
82
+ #: gallery-plugin.php:492
83
  msgid "Add Gallery Category"
84
  msgstr "Додати категорію галерей"
85
 
86
+ #: gallery-plugin.php:493
87
  msgid "Add New Gallery Category"
88
  msgstr "Додати нову категорію галерей"
89
 
90
+ #: gallery-plugin.php:494 gallery-plugin.php:495
91
  msgid "Edit Gallery Category"
92
  msgstr "Редагувати категорію галерей"
93
 
94
+ #: gallery-plugin.php:496
95
  msgid "New Gallery Category"
96
  msgstr "Нова категорія галерей"
97
 
98
+ #: gallery-plugin.php:497 gallery-plugin.php:498
99
  msgid "View Gallery Category"
100
  msgstr "Переглянути категорію галерей"
101
 
102
+ #: gallery-plugin.php:499
103
  msgid "Find Gallery Category"
104
  msgstr "Знайти категорію галерей"
105
 
106
+ #: gallery-plugin.php:500
107
  msgid "No Gallery Categories found"
108
  msgstr "Не знайдено жодної категорії галерей"
109
 
110
+ #: gallery-plugin.php:501
111
  msgid "No Gallery Categories found in Trash"
112
  msgstr "В кошику не знайдено жодної категорії галерей"
113
 
114
+ #: gallery-plugin.php:502
115
  msgid "Parent Gallery Category"
116
  msgstr "Батьківська категорія галерей"
117
 
118
+ #: gallery-plugin.php:503
119
  msgid "Gallery Categories list navigation"
120
  msgstr "Навігація списку категорій галерей"
121
 
122
+ #: gallery-plugin.php:504
123
  msgid "Gallery Categories list"
124
  msgstr "Список категорій галерей"
125
 
126
+ #: gallery-plugin.php:554
127
  msgid "Gallery Shortcode"
128
  msgstr "Шорткод галереї"
129
 
130
+ #: gallery-plugin.php:563
131
  msgid ""
132
  "Add a single gallery with images to your posts, pages, custom post types or "
133
  "widgets by using the following shortcode:"
135
  "Додайте одну галерею із зображеннями в ваші записи, сторінки, користувацьки "
136
  "типи записів або віджети за допомогою наступного шорткода:"
137
 
138
+ #: gallery-plugin.php:567
139
  msgid ""
140
  "Add a gallery cover including featured image, description, and a link to "
141
  "your single gallery using the following shortcode:"
143
  "Додайте альбом галереї, включаючи головне зображення, опис і посилання на "
144
  "повну галерею за допомогою наступного шорткода:"
145
 
146
+ #: gallery-plugin.php:679
147
  msgid "Note"
148
  msgstr "Примітка"
149
 
150
+ #: gallery-plugin.php:679
151
  #, php-format
152
  msgid ""
153
  "When deleting a category, the galleries that belong to this category will "
156
  "Видалення категорії не призведе до видалення галерей з цієї категорії. "
157
  "Замість цього галереї з видаленої категорії будуть переміщені в категорію %s."
158
 
159
+ #: gallery-plugin.php:690
160
  msgid "Sort Galleries in Category by"
161
  msgstr "Сортувати галереї в категорії по"
162
 
163
+ #: gallery-plugin.php:693 gallery-plugin.php:2815
164
+ #: includes/class-gllr-settings.php:720
165
  msgid "Gallery ID"
166
  msgstr "ID галереї"
167
 
168
+ #: gallery-plugin.php:694 gallery-plugin.php:1737 gallery-plugin.php:2816
169
+ #: includes/class-gllr-media-table.php:199
170
+ #: includes/class-gllr-media-table.php:306
171
+ #: includes/class-gllr-media-table.php:421 includes/class-gllr-settings.php:721
172
+ #: includes/class-gllr-widgets.php:282
173
  msgid "Title"
174
  msgstr "Назва"
175
 
176
+ #: gallery-plugin.php:695 gallery-plugin.php:1742 gallery-plugin.php:2817
177
+ #: includes/class-gllr-settings.php:547 includes/class-gllr-settings.php:722
178
  msgid "Date"
179
  msgstr "Дата"
180
 
181
+ #: gallery-plugin.php:696 gallery-plugin.php:2818
182
+ #: includes/class-gllr-settings.php:723
183
  msgid "Last modified date"
184
  msgstr "Дата останньої зміни"
185
 
186
+ #: gallery-plugin.php:697 gallery-plugin.php:2819
187
+ #: includes/class-gllr-settings.php:724
188
  msgid "Comment count"
189
  msgstr "Кількість коментарів"
190
 
191
+ #: gallery-plugin.php:698 gallery-plugin.php:2820
192
+ #: includes/class-gllr-settings.php:725
193
  msgid "\"Order\" field on the gallery edit page"
194
  msgstr "Поле \"Порядок розміщення\" на сторінці редагування"
195
 
196
+ #: gallery-plugin.php:699 gallery-plugin.php:1741 gallery-plugin.php:2821
197
+ #: includes/class-gllr-settings.php:726
198
  msgid "Author"
199
  msgstr "Автор"
200
 
201
+ #: gallery-plugin.php:700 gallery-plugin.php:2822
202
+ #: includes/class-gllr-settings.php:548 includes/class-gllr-settings.php:727
203
  msgid "Random"
204
  msgstr "Довільно"
205
 
206
+ #: gallery-plugin.php:701 gallery-plugin.php:2823
207
  msgid "Plugin Settings"
208
  msgstr "Налаштування плагіна"
209
 
210
+ #: gallery-plugin.php:703 gallery-plugin.php:2825
211
  msgid "Select galleries sorting order in your category."
212
  msgstr "Виберіть порядок сортування галерей у вашій категорії."
213
 
214
+ #: gallery-plugin.php:725 gallery-plugin.php:1739
215
  msgid "Shortcode"
216
  msgstr "Шорткод"
217
 
218
+ #: gallery-plugin.php:771
219
  msgid "All Gallery Categories"
220
  msgstr "Усі категорії галерей"
221
 
222
+ #: gallery-plugin.php:849
223
  msgid "You can't delete default gallery category."
224
  msgstr "Ви не можете видалити стандартну категорію галереї."
225
 
226
+ #: gallery-plugin.php:1228 gallery-plugin.php:1336 gallery-plugin.php:2293
227
  msgid "Sorry, nothing found."
228
  msgstr "Вибачте, нічого не знайдено."
229
 
230
+ #: gallery-plugin.php:1736
231
  msgid "Featured Image"
232
  msgstr "Зображення альбому"
233
 
234
+ #: gallery-plugin.php:1738 includes/class-gllr-settings.php:42
235
  msgid "Images"
236
  msgstr "Зображення"
237
 
238
+ #: gallery-plugin.php:1823
239
  #, php-format
240
  msgid "%s Settings"
241
  msgstr "Налаштування %s"
242
 
243
+ #: gallery-plugin.php:1850 gallery-plugin.php:1868
244
+ #: includes/class-gllr-settings.php:29 includes/class-gllr-settings.php:43
245
  msgid "Settings"
246
  msgstr "Налаштування"
247
 
248
+ #: gallery-plugin.php:1851
249
  msgid "FAQ"
250
  msgstr "FAQ"
251
 
252
+ #: gallery-plugin.php:1852
253
  msgid "Support"
254
  msgstr "Техпідтримка"
255
 
256
+ #: gallery-plugin.php:1891
257
  msgid "Updating images..."
258
  msgstr "Оновлення зображень..."
259
 
260
+ #: gallery-plugin.php:1892
261
  msgid "No images found."
262
  msgstr "Зображення не знайдені."
263
 
264
+ #: gallery-plugin.php:1893
265
  msgid "All images were updated."
266
  msgstr "Усі зображення оновлено."
267
 
268
+ #: gallery-plugin.php:1894
269
  msgid "Error."
270
  msgstr "Помилка."
271
 
272
+ #: gallery-plugin.php:1906
273
  msgid ""
274
  "You are about to remove these items from this gallery.\n"
275
  " 'Cancel' to stop, 'OK' to delete."
277
  "Ви збираєтесь видалити вибрані елементи з цієї галереї.\n"
278
  " 'Відміна' - скасувати, 'OK' - видалити."
279
 
280
+ #: gallery-plugin.php:1907
281
  msgid ""
282
  "You are about to remove this image from the gallery.\n"
283
  " 'Cancel' to stop, 'OK' to delete."
285
  "Ви збираєтеся видалити це зображення з галереї.\n"
286
  " 'Відміна' - скасувати, 'OK' - видалити."
287
 
288
+ #: gallery-plugin.php:1908
289
  msgid ""
290
  "Switching to another mode, all unsaved data will be lost. Save data before "
291
  "switching?"
293
  "При переході на інший режим, усі незбережені дані будуть втрачені. Зберегти "
294
  "їх перед переходом?"
295
 
296
+ #: gallery-plugin.php:1909
297
  msgid "Insert Media"
298
  msgstr "Додати медіафайл"
299
 
300
+ #: gallery-plugin.php:1910
301
  msgid "Insert"
302
  msgstr "Додати"
303
 
304
+ #: gallery-plugin.php:1911
305
  msgid "A new slider is added."
306
  msgstr "Додано новий слайдер."
307
 
308
+ #: gallery-plugin.php:1911
309
  msgid "Edit slider"
310
  msgstr "Редагування слайдера"
311
 
312
+ #: gallery-plugin.php:2507 gallery-plugin.php:2540
313
  msgid "Image size not defined"
314
  msgstr "Неможливо визначити розмір зображення"
315
 
316
+ #: gallery-plugin.php:2527
317
  msgid ""
318
  "Plugin updates only PNG, JPEG, GIF, WPMP or XBM filetype. For other, please "
319
  "reload images manually."
321
  "Плагін може оновити тільки такі типи файлів: PNG, JPEG, GIF, XBM або WPMP. "
322
  "Для інших типів, будь ласка, перезавантажте зображення вручну."
323
 
324
+ #: gallery-plugin.php:2573 gallery-plugin.php:2577 gallery-plugin.php:2583
325
  msgid "Invalid path"
326
  msgstr "Невірний шлях до зображення"
327
 
328
+ #: gallery-plugin.php:2781 gallery-plugin.php:2942
329
+ msgid "Warning"
330
+ msgstr "Увага"
331
+
332
+ #: gallery-plugin.php:2781
333
+ msgid "You can add only images to the gallery"
334
+ msgstr "В галерею можна додати лише зображення"
335
+
336
+ #: gallery-plugin.php:2836
337
+ msgid "no title"
338
+ msgstr "без назви"
339
+
340
+ #: gallery-plugin.php:2846
341
+ msgid ""
342
+ "Display an album image with the description and the link to a single gallery "
343
+ "page"
344
+ msgstr ""
345
+ "Відобразити зображення альбому з описом і посиланням на окрему сторінку "
346
+ "галереї"
347
+
348
+ #: gallery-plugin.php:2850
349
+ msgid "Sorry, no gallery found."
350
+ msgstr "Вибачте, жодної галереї не знайдено."
351
+
352
+ #: gallery-plugin.php:2942
353
+ #, php-format
354
+ msgid ""
355
+ "Maximum upload file size %s. Contact your administrator or hosting provider "
356
+ "if you need to upload a large file size."
357
+ msgstr ""
358
+ "Максимальний розмір файлу %s. Зв'яжіться з вашим адміністратором або "
359
+ "провайдером хостингу, якщо вам потрібно завантажити файл більшого розміру."
360
+
361
+ #: includes/class-gllr-media-table.php:19
362
  msgid "List View"
363
  msgstr "У вигляді списку"
364
 
365
+ #: includes/class-gllr-media-table.php:20
366
  msgid "Grid View"
367
  msgstr "У вигляді сітки"
368
 
369
+ #: includes/class-gllr-media-table.php:76
370
  msgid "Filter"
371
  msgstr "Фільтр"
372
 
373
+ #: includes/class-gllr-media-table.php:80
374
  msgid "Empty Trash"
375
  msgstr "Очистити кошик"
376
 
377
+ #: includes/class-gllr-media-table.php:103
378
  msgid "No images found"
379
  msgstr "Жодного зображення не знайдено"
380
 
381
+ #: includes/class-gllr-media-table.php:156
382
  msgid "Select bulk action"
383
  msgstr "Вибрати групову дію"
384
 
385
+ #: includes/class-gllr-media-table.php:158
386
  msgid "Bulk Actions"
387
  msgstr "Групові дії"
388
 
389
+ #: includes/class-gllr-media-table.php:168
390
  msgid "Apply"
391
  msgstr "Застосувати"
392
 
393
+ #: includes/class-gllr-media-table.php:175
394
  msgid "Delete from Gallery"
395
  msgstr "Видалити з галереї"
396
 
397
+ #: includes/class-gllr-media-table.php:184
398
  msgid "Bulk Select"
399
  msgstr "Вибір"
400
 
401
+ #: includes/class-gllr-media-table.php:185
402
  msgid "Cancel Selection"
403
  msgstr "Скасувати вибір"
404
 
405
+ #: includes/class-gllr-media-table.php:186
406
  msgid "Delete Selected"
407
  msgstr "Видалити вибране"
408
 
409
+ #: includes/class-gllr-media-table.php:197
410
  msgid "File"
411
  msgstr "Файл"
412
 
413
+ #: includes/class-gllr-media-table.php:198
414
+ #: includes/class-gllr-media-table.php:301
415
+ #: includes/class-gllr-media-table.php:416
416
  msgid "Dimensions"
417
  msgstr "Розміри"
418
 
419
+ #: includes/class-gllr-media-table.php:200
420
+ #: includes/class-gllr-media-table.php:312
421
+ #: includes/class-gllr-media-table.php:426
422
  msgid "Alt Text"
423
  msgstr "Альтернативний текст"
424
 
425
+ #: includes/class-gllr-media-table.php:201
426
+ #: includes/class-gllr-media-table.php:316
427
+ #: includes/class-gllr-media-table.php:431
428
  msgid "URL"
429
  msgstr "Посилання"
430
 
431
+ #: includes/class-gllr-media-table.php:201
432
+ #: includes/class-gllr-media-table.php:318
433
  msgid ""
434
  "Enter your custom URL to link this image to other page or file. Leave blank "
435
  "to open a full size image."
437
  "Введіть свій власний URL, щоб зв'язати це зображення з іншою сторінкою або "
438
  "файлом. Залиште порожнім, щоб відкрити повнорозмірне зображення."
439
 
440
+ #: includes/class-gllr-media-table.php:283
441
  msgid "Remove Image from Gallery"
442
  msgstr "Видалити зображення з галереї"
443
 
444
+ #: includes/class-gllr-media-table.php:286
445
  msgid "Edit Image Info"
446
  msgstr "Редагувати інформацію зображення"
447
 
448
+ #: includes/class-gllr-media-table.php:287
449
  msgid "Deselect"
450
  msgstr "Скасувати вибір"
451
 
452
+ #: includes/class-gllr-media-table.php:299
453
  msgid "File name"
454
  msgstr "Назва файлу"
455
 
456
+ #: includes/class-gllr-media-table.php:300
457
  msgid "File type"
458
  msgstr "Тип файлу"
459
 
460
+ #: includes/class-gllr-media-table.php:326
461
  msgid "Description"
462
  msgstr "Опис"
463
 
464
+ #: includes/class-gllr-media-table.php:332
465
  msgid "Lightbox Button URL"
466
  msgstr "Посилання для кнопки в лайтбоксі"
467
 
468
+ #: includes/class-gllr-media-table.php:339
469
  msgid "New Tab"
470
  msgstr "Нова вкладка"
471
 
472
+ #: includes/class-gllr-media-table.php:341
473
  msgid "Enable to open URLs above in a new tab."
474
  msgstr "Увімкніть, щоб відкрити посилання в новій вкладці."
475
 
476
+ #: includes/class-gllr-media-table.php:346
477
  msgid "Go Pro"
478
  msgstr "Оновитися до Pro"
479
 
480
+ #: includes/class-gllr-media-table.php:353
481
  msgid "Edit more details"
482
  msgstr "Змінити деталі"
483
 
484
+ #: includes/class-gllr-media-table.php:355
485
  msgid "Remove from Gallery"
486
  msgstr "Видалити з галереї"
487
 
488
+ #: includes/class-gllr-media-table.php:391
489
  #, php-format
490
  msgid "Select %s"
491
  msgstr "Вибрати %s"
492
 
493
+ #: includes/class-gllr-media-table.php:404
494
  #, php-format
495
  msgid "Edit &#8220;%s&#8221;"
496
  msgstr "Редагувати &#8220;%s&#8221;"
497
 
498
+ #: includes/class-gllr-media-table.php:412
499
  msgid "Edit Attachment Info"
500
  msgstr "Змінити інформацію зображення"
501
 
502
+ #: includes/class-gllr-media-table.php:449
503
+ #: includes/class-gllr-media-table.php:465
504
  msgid "Edit"
505
  msgstr "Змінити"
506
 
507
+ #: includes/class-gllr-media-table.php:453
508
+ #: includes/class-gllr-media-table.php:471
509
  msgid "Trash"
510
  msgstr "Кошик"
511
 
512
+ #: includes/class-gllr-media-table.php:456
513
+ #: includes/class-gllr-media-table.php:475
514
  msgid "Delete Permanently"
515
  msgstr "Видалити назавжди"
516
 
517
+ #: includes/class-gllr-media-table.php:459
518
+ #: includes/class-gllr-media-table.php:481
519
  #, php-format
520
  msgid "View &#8220;%s&#8221;"
521
  msgstr "Перегляд &#8220;%s&#8221;"
522
 
523
+ #: includes/class-gllr-media-table.php:459
524
+ #: includes/class-gllr-media-table.php:481 includes/class-gllr-widgets.php:90
525
  msgid "View"
526
  msgstr "Перегляд"
527
 
528
+ #: includes/class-gllr-media-table.php:461
529
  msgid "Attach"
530
  msgstr "Прикріпити"
531
 
532
+ #: includes/class-gllr-media-table.php:469
533
  msgid "Restore"
534
  msgstr "Відновити"
535
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
536
  #: includes/class-gllr-settings.php:30
537
  msgid "Cover"
538
  msgstr "Альбом"
539
 
540
+ #: includes/class-gllr-settings.php:31
541
  msgid "Lightbox"
542
  msgstr "Лайтбокс"
543
 
557
  msgid "Import / Export"
558
  msgstr "Імпорт / Експорт"
559
 
560
+ #: includes/class-gllr-settings.php:37
561
  msgid "License Key"
562
  msgstr "Ліцензійний ключ"
563
 
564
+ #: includes/class-gllr-settings.php:229
565
  msgid "Settings saved"
566
  msgstr "Налаштування збережено"
567
 
568
+ #: includes/class-gllr-settings.php:241 includes/class-gllr-widgets.php:358
569
  msgid "Please, enable JavaScript in Your browser."
570
  msgstr "Будь ласка, увімкніть JavaScript у вашому браузері."
571
 
572
+ #: includes/class-gllr-settings.php:245
573
  msgid "Custom image size was changed. You need to update gallery images."
574
  msgstr ""
575
  "Користувацький розмір зображення був змінений. Вам необхідно оновити "
576
  "зображення галерей."
577
 
578
+ #: includes/class-gllr-settings.php:246
579
  msgid "Update Images"
580
  msgstr "Оновити зображення"
581
 
582
+ #: includes/class-gllr-settings.php:261
583
  msgid "Gallery Images"
584
  msgstr "Зображення галереї"
585
 
586
+ #: includes/class-gllr-settings.php:266
587
  msgid "Images adding requires JavaScript."
588
  msgstr "Додавання зображень вимагає використання JavaScript."
589
 
590
+ #: includes/class-gllr-settings.php:269
591
  msgid "Add Media"
592
  msgstr "Додати медіафайл"
593
 
594
+ #: includes/class-gllr-settings.php:278
595
  msgid "The grid view for the Gallery images requires JavaScript."
596
  msgstr "Перегляд зображень у вигляді сітки вимагає використання JavaScript."
597
 
598
+ #: includes/class-gllr-settings.php:278
599
  msgid "Switch to the list view"
600
  msgstr "Переключитися на список"
601
 
602
+ #: includes/class-gllr-settings.php:305
603
  msgid "Create Slider"
604
  msgstr "Додати слайдер"
605
 
606
+ #: includes/class-gllr-settings.php:317
607
  msgid "Activate"
608
  msgstr "Активувати"
609
 
610
+ #: includes/class-gllr-settings.php:320 includes/class-gllr-settings.php:1055
611
  msgid "Install Now"
612
  msgstr "Встановити зараз"
613
 
614
+ #: includes/class-gllr-settings.php:322
615
  msgid "Create New Slider"
616
  msgstr "Створити новий слайдер"
617
 
618
+ #: includes/class-gllr-settings.php:325
619
  msgid ""
620
  "Click to create a new slider using gallery images. Slider plugin is required."
621
  msgstr ""
622
  "Натисніть, щоб створити новий слайдер за допомогою зображень галереї. Для "
623
  "цієї опції необхідно використання плагіна Slider."
624
 
625
+ #: includes/class-gllr-settings.php:336
626
  msgid "Single Gallery Settings"
627
  msgstr "Налаштування галереї"
628
 
629
+ #: includes/class-gllr-settings.php:338
630
  #, php-format
631
  msgid "Enable to configure single gallery settings and disable %s."
632
  msgstr "Увімкніть щоб налаштувати цю галерею і відключити %s."
633
 
634
+ #: includes/class-gllr-settings.php:352 includes/class-gllr-settings.php:411
635
+ #: includes/class-gllr-settings.php:457 includes/class-gllr-settings.php:516
636
+ #: includes/class-gllr-settings.php:662 includes/class-gllr-settings.php:746
637
+ #: includes/class-gllr-settings.php:792 includes/class-gllr-settings.php:845
638
+ #: includes/class-gllr-settings.php:907 includes/class-gllr-settings.php:998
639
  msgid "Close"
640
  msgstr "Закрити"
641
 
642
+ #: includes/class-gllr-settings.php:356
643
  msgid "Gallery Layout"
644
  msgstr "Макет галереї"
645
 
646
+ #: includes/class-gllr-settings.php:361
647
  msgid "Grid"
648
  msgstr "Сітка"
649
 
650
+ #: includes/class-gllr-settings.php:367
651
  msgid "Masonry"
652
  msgstr "Masonry"
653
 
654
+ #: includes/class-gllr-settings.php:381
655
  msgid "Number of Columns"
656
  msgstr "Кількість колонок"
657
 
658
+ #: includes/class-gllr-settings.php:384
659
  #, php-format
660
  msgid "Number of gallery columns (default is %s)."
661
  msgstr "Кількість колонок галерей (за замовчуванням - %s)."
662
 
663
+ #: includes/class-gllr-settings.php:388 includes/class-gllr-settings.php:796
664
  msgid "Image Size"
665
  msgstr "Розмір зображення"
666
 
667
+ #: includes/class-gllr-settings.php:394 includes/class-gllr-settings.php:646
668
  msgid "Custom"
669
  msgstr "Користувацький"
670
 
671
+ #: includes/class-gllr-settings.php:396
672
  msgid ""
673
  "Maximum gallery image size. \"Custom\" uses the Image Dimensions values."
674
  msgstr ""
675
  "Максимальний розмір зображень галереї. Користувацький використовує значення, "
676
  "зазначені в полі Розміри зображення."
677
 
678
+ #: includes/class-gllr-settings.php:400
679
  msgid "Custom Image Size"
680
  msgstr "Користувацький розмір зображення"
681
 
682
+ #: includes/class-gllr-settings.php:402 includes/class-gllr-settings.php:494
683
+ #: includes/class-gllr-settings.php:654 includes/class-gllr-settings.php:706
684
  msgid "px"
685
  msgstr "пікс"
686
 
687
+ #: includes/class-gllr-settings.php:403
688
  msgid ""
689
  "Adjust these values based on the number of columns in your gallery. This "
690
  "won't effect the full size of your images in the lightbox."
692
  "Відрегулюйте ці значення з урахуванням числа колонок у вашій галереї. Це не "
693
  "впливає на розміри повного зображення в лайтбоксі."
694
 
695
+ #: includes/class-gllr-settings.php:415
696
  msgid "Crop Images"
697
  msgstr "Обрізка зображень"
698
 
699
+ #: includes/class-gllr-settings.php:417
700
  msgid ""
701
  "Enable to crop images using the sizes defined for Custom Image Size. Disable "
702
  "to resize images automatically using their aspect ratio."
705
  "користувацького розміру зображення. Вимкніть, щоб змінити розмір зображення "
706
  "автоматично, використовуючи їх пропорції."
707
 
708
+ #: includes/class-gllr-settings.php:421 includes/class-gllr-settings.php:672
709
  msgid "Crop Position"
710
  msgstr "Позиція обрізки"
711
 
712
+ #: includes/class-gllr-settings.php:436 includes/class-gllr-settings.php:687
713
  msgid "Select crop position base (by default: center)."
714
  msgstr "Оберіть позицію обрізки (за замовчуванням: центр)."
715
 
716
+ #: includes/class-gllr-settings.php:447
717
  msgid "Image Title"
718
  msgstr "Назва зображення"
719
 
720
+ #: includes/class-gllr-settings.php:449
721
  msgid "Enable to display image title along with the gallery image."
722
  msgstr ""
723
  "Увімкніть, щоб відобразити назву зображення разом із зображенням галереї."
724
 
725
+ #: includes/class-gllr-settings.php:461
726
  msgid "Image Title Position"
727
  msgstr "Розташування назви зображення"
728
 
729
+ #: includes/class-gllr-settings.php:466
730
  msgid "Below images"
731
  msgstr "Нижче зображення"
732
 
733
+ #: includes/class-gllr-settings.php:472
734
  msgid "On mouse hover"
735
  msgstr "По наведенню миші"
736
 
737
+ #: includes/class-gllr-settings.php:486
738
  msgid "Image Border"
739
  msgstr "Рамка зображення"
740
 
741
+ #: includes/class-gllr-settings.php:488
742
  msgid ""
743
  "Enable images border using the styles defined for Image Border Size and "
744
  "Color options."
746
  "Увімкнути рамку зображення з використанням стилів, зазначених для Кольору і "
747
  "Розміру рамки."
748
 
749
+ #: includes/class-gllr-settings.php:492
750
  msgid "Image Border Size"
751
  msgstr "Розмір рамки зображення"
752
 
753
+ #: includes/class-gllr-settings.php:495
754
  #, php-format
755
  msgid "Gallery image border width (default is %s)."
756
  msgstr "Ширина рамки для зображень галереї (за замовчуванням %s)."
757
 
758
+ #: includes/class-gllr-settings.php:499
759
  msgid "Image Border Color"
760
  msgstr "Колір рамки зображень"
761
 
762
+ #: includes/class-gllr-settings.php:505
763
+ msgid "Unclickable Thumbnail Images"
764
+ msgstr "Некликабельна картинка"
765
+
766
+ #: includes/class-gllr-settings.php:508
767
+ msgid ""
768
+ "Enable to make the images in a single gallery unclickable and hide their "
769
+ "URLs. This option also disables Lightbox."
770
+ msgstr ""
771
+ "Увімкніть, щоб зробити мініатюри зображень в галереї неклікабельнимі, а "
772
+ "також не відображати їх посилання. Ця опція також відключає лайтбокс."
773
+
774
+ #: includes/class-gllr-settings.php:520
775
  msgid "Pagination"
776
  msgstr "Посторінкова навігація"
777
 
778
+ #: includes/class-gllr-settings.php:523
779
  msgid ""
780
  "Enable pagination for images to limit number of images displayed on a single "
781
  "gallery page."
783
  "Включити посторінкову навігацію для зображень, щоб обмежити кількість "
784
  "зображень, що відображаються на одній сторінці галереї."
785
 
786
+ #: includes/class-gllr-settings.php:527
787
  msgid "Number of Images"
788
  msgstr "Кількість зображень"
789
 
790
+ #: includes/class-gllr-settings.php:530
791
  #, php-format
792
  msgid "Number of images displayed per page (default is %d)."
793
  msgstr ""
794
  "Кількість зображень, що відображаються на одній сторінці (за замовчуванням "
795
  "%d)."
796
 
797
+ #: includes/class-gllr-settings.php:541
798
  msgid "Sort Images by"
799
  msgstr "Сортувати зображення за"
800
 
801
+ #: includes/class-gllr-settings.php:544
802
  msgid "Manually (default)"
803
  msgstr "Вручну (за замовчуванням)"
804
 
805
+ #: includes/class-gllr-settings.php:545
806
  msgid "Image ID"
807
  msgstr "ID зображення"
808
 
809
+ #: includes/class-gllr-settings.php:546
810
  msgid "Name"
811
  msgstr "Назва"
812
 
813
+ #: includes/class-gllr-settings.php:550
814
  msgid ""
815
  "Select images sorting order in your gallery. By default, you can sort images "
816
  "manually in the images tab."
818
  "Оберіть порядок сортування зображень у вашій галереї. За замовчуванням, це "
819
  "ручне сортування зображення на вкладці зображень."
820
 
821
+ #: includes/class-gllr-settings.php:554
822
  msgid "Arrange Images by"
823
  msgstr "Сортувати зображення"
824
 
825
+ #: includes/class-gllr-settings.php:557 includes/class-gllr-settings.php:736
826
  msgid "Ascending (e.g. 1, 2, 3; a, b, c)"
827
  msgstr "За зростанням (наприклад, 1, 2, 3; а, б, в)"
828
 
829
+ #: includes/class-gllr-settings.php:558 includes/class-gllr-settings.php:737
830
  msgid "Descending (e.g. 3, 2, 1; c, b, a)"
831
  msgstr "За зменшенням (наприклад, 3, 2, 1; в, б, а)"
832
 
833
+ #: includes/class-gllr-settings.php:563
834
  msgid "Back Link"
835
  msgstr "Зворотнє посилання"
836
 
837
+ #: includes/class-gllr-settings.php:565
838
  msgid ""
839
  "Enable to show a back link in a single gallery page which navigate to a "
840
  "previous page."
842
  "Включити, щоб показати зворотнє посилання на сторінці галереї, яке перейде "
843
  "до попередньої сторінки."
844
 
845
+ #: includes/class-gllr-settings.php:569
846
  msgid "Back Link URL"
847
  msgstr "URL зворотнього посилання"
848
 
849
+ #: includes/class-gllr-settings.php:572
850
  msgid ""
851
  "Leave blank to use the Gallery page template or enter a custom page URL."
852
  msgstr ""
853
  "Залиште порожнє, щоб використовувати шаблон сторінки галереї або введіть URL-"
854
  "адресу користувача."
855
 
856
+ #: includes/class-gllr-settings.php:576
857
  msgid "Back Link Label"
858
  msgstr "Текст зворотнього посилання"
859
 
860
+ #: includes/class-gllr-settings.php:582
861
  msgid "Back Link with Shortcode"
862
  msgstr "Зворотнє посилання у шорткоді"
863
 
864
+ #: includes/class-gllr-settings.php:585
865
  msgid "Enable to display a back link on a page where shortcode is used."
866
  msgstr ""
867
  "Увімкніть, щоб відображати зворотнє посилання на сторінку при використанні "
868
  "шорткода."
869
 
870
+ #: includes/class-gllr-settings.php:589
871
  msgid "Disable Fancybox"
872
  msgstr "Вимкнути Fancybox"
873
 
874
+ #: includes/class-gllr-settings.php:591
875
  msgid "Enable to avoid possible conflicts with a 3rd party Fancybox."
876
  msgstr "Увімкніть, щоб уникнути можливих конфліктів із сторонніми fancybox."
877
 
878
+ #: includes/class-gllr-settings.php:602
879
  msgid "Cover Settings"
880
  msgstr "Налаштування альбому"
881
 
882
+ #: includes/class-gllr-settings.php:607
883
  msgid "Galleries Page"
884
  msgstr "Сторінка галерей"
885
 
886
+ #: includes/class-gllr-settings.php:615
887
  msgid "Base page where all existing galleries will be displayed."
888
  msgstr "Базова сторінка, на якій будуть відображатися всі існуючі галереї."
889
 
890
+ #: includes/class-gllr-settings.php:619
891
  msgid "Albums Displaying"
892
  msgstr "Відображення альбомів"
893
 
894
+ #: includes/class-gllr-settings.php:622
895
  msgid "Column"
896
  msgstr "У колонку"
897
 
898
+ #: includes/class-gllr-settings.php:623
899
  msgid "Rows"
900
  msgstr "У ряд"
901
 
902
+ #: includes/class-gllr-settings.php:625
903
  msgid "Select the way galleries will be displayed on the Galleries Page."
904
  msgstr "Оберіть, як галереї відображатимуться на сторінці Галерей."
905
 
906
+ #: includes/class-gllr-settings.php:629
907
  msgid "Column Alignment"
908
  msgstr "Вирівнювання колонки"
909
 
910
+ #: includes/class-gllr-settings.php:632
911
  msgid "Left"
912
  msgstr "Ліво"
913
 
914
+ #: includes/class-gllr-settings.php:633
915
  msgid "Right"
916
  msgstr "Право"
917
 
918
+ #: includes/class-gllr-settings.php:634
919
  msgid "Center"
920
  msgstr "Центр"
921
 
922
+ #: includes/class-gllr-settings.php:636
923
  msgid "Select the column alignment."
924
  msgstr "Оберіть вирівнювання колонки."
925
 
926
+ #: includes/class-gllr-settings.php:640
927
  msgid "Cover Image Size"
928
  msgstr "Розмір зображення альбому"
929
 
930
+ #: includes/class-gllr-settings.php:648
931
  msgid "Maximum cover image size. Custom uses the Image Dimensions values."
932
  msgstr ""
933
  "Максимальний розмір зображення альбому. Користувацький використовує значення "
934
  "Розмірів зображення."
935
 
936
+ #: includes/class-gllr-settings.php:652
937
  msgid "Custom Cover Image Size"
938
  msgstr "Користувацький розмір зображення альбому"
939
 
940
+ #: includes/class-gllr-settings.php:666
941
  msgid "Crop Cover Images"
942
  msgstr "Обрізка зображення альбому"
943
 
944
+ #: includes/class-gllr-settings.php:668
945
  msgid ""
946
  "Enable to crop images using the sizes defined for Custom Cover Image Size. "
947
  "Disable to resize images automatically using their aspect ratio."
950
  "користувацького розміру зображення альбому. Вимкніть, щоб змінити розмір "
951
  "зображення автоматично, використовуючи їх пропорції."
952
 
953
+ #: includes/class-gllr-settings.php:698
954
  msgid "Cover Image Border"
955
  msgstr "Рамка для зображення альбому"
956
 
957
+ #: includes/class-gllr-settings.php:700
958
  msgid ""
959
  "Enable cover images border using the styles defined for Image Border Size "
960
  "and Color."
962
  "Увімкнути рамку зображення альбому з використанням стилів, зазначених для "
963
  "Кольору і Розміру рамки."
964
 
965
+ #: includes/class-gllr-settings.php:704
966
  msgid "Cover Image Border Size"
967
  msgstr "Розмір рамки зображення альбому"
968
 
969
+ #: includes/class-gllr-settings.php:707
970
  #, php-format
971
  msgid "Cover image border width (default is %s)."
972
  msgstr "Ширина рамки для зображення альбому (за замовчуванням %s)."
973
 
974
+ #: includes/class-gllr-settings.php:711
975
  msgid "Cover Image Border Color"
976
  msgstr "Колір рамки зображення альбому"
977
 
978
+ #: includes/class-gllr-settings.php:717
979
  msgid "Sort Albums by"
980
  msgstr "Сортувати альбоми за"
981
 
982
+ #: includes/class-gllr-settings.php:729
983
  msgid "Select galleries sorting order in your galleries page."
984
  msgstr "Оберіть порядок сортування галерей на сторінці галерей."
985
 
986
+ #: includes/class-gllr-settings.php:733
987
  msgid "Arrange Albums by"
988
  msgstr "Сортування альбомів за"
989
 
990
+ #: includes/class-gllr-settings.php:750
991
  msgid "Instant Lightbox"
992
  msgstr "Миттєвий лайтбокс"
993
 
994
+ #: includes/class-gllr-settings.php:753
995
  msgid ""
996
  "Enable to display all images in the lightbox after clicking cover image or "
997
  "URL instead of going to a single gallery page."
999
  "Увімкніть, щоб відображати всі зображення в лайтбоксі після натискання на "
1000
  "зображення альбому або URL замість переходу на окрему сторінку галереї."
1001
 
1002
+ #: includes/class-gllr-settings.php:764
1003
  msgid "Read More Link Label"
1004
  msgstr "Текст посилання Дізнатися більше"
1005
 
1006
+ #: includes/class-gllr-settings.php:776
1007
  msgid "Lightbox Settings"
1008
  msgstr "Налаштування лайтбоксу"
1009
 
1010
+ #: includes/class-gllr-settings.php:781
 
 
 
 
 
 
 
 
 
 
 
 
1011
  msgid "Enable Lightbox"
1012
  msgstr "Увімкнути лайтбокс"
1013
 
1014
+ #: includes/class-gllr-settings.php:784
1015
  msgid "Enable to show the lightbox when clicking on gallery images."
1016
  msgstr "Увімкніть, щоб показати лайтбокс при натисканні на зображення галереї."
1017
 
1018
+ #: includes/class-gllr-settings.php:803
1019
  msgid ""
1020
  "Select the maximum gallery image size for the lightbox view. \"Default\" "
1021
  "will display the original, full size image."
1023
  "Оберіть максимальний розмір зображень галереї для перегляду в лайтбоксі. За "
1024
  "замовчуванням буде відображатися оригінал, повний розмір."
1025
 
1026
+ #: includes/class-gllr-settings.php:807
1027
  msgid "Overlay Color"
1028
  msgstr "Колір підкладки"
1029
 
1030
+ #: includes/class-gllr-settings.php:813
1031
  msgid "Overlay Opacity"
1032
  msgstr "Прозорість підкладки"
1033
 
1034
+ #: includes/class-gllr-settings.php:816
1035
  #, php-format
1036
  msgid ""
1037
  "Lightbox overlay opacity. Leave blank to disable opacity (default is %s, max "
1040
  "Прозорість підкладки лайтбоксу. Залиште порожнім, щоб відключити прозорість "
1041
  "(за замовчуванням %s, максимум %s)."
1042
 
1043
+ #: includes/class-gllr-settings.php:828
1044
  msgid "Slideshow"
1045
  msgstr "Слайд-шоу"
1046
 
1047
+ #: includes/class-gllr-settings.php:830
1048
  msgid "Enable to start the slideshow automatically when the lightbox is used."
1049
  msgstr ""
1050
  "Увімкніть для автоматичного запуску слайд-шоу при використанні лайтбоксу."
1051
 
1052
+ #: includes/class-gllr-settings.php:834
1053
  msgid "Slideshow Duration"
1054
  msgstr "Інтервал часу"
1055
 
1056
+ #: includes/class-gllr-settings.php:836
1057
  msgid "ms"
1058
  msgstr "мс"
1059
 
1060
+ #: includes/class-gllr-settings.php:837
1061
  msgid "Slideshow interval duration between two images."
1062
  msgstr "Інтервал перемикання між двома зображеннями."
1063
 
1064
+ #: includes/class-gllr-settings.php:849
1065
  msgid "Lightbox Helpers"
1066
  msgstr "Допоміжні елементи лайтбоксу"
1067
 
1068
+ #: includes/class-gllr-settings.php:851
1069
  msgid "Enable to display the lightbox toolbar and arrows."
1070
  msgstr ""
1071
  "Увімкніть для того, щоб показати панель інструментів та кнопки навігації."
1072
 
1073
+ #: includes/class-gllr-settings.php:855
1074
  msgid "Lightbox Thumbnails"
1075
  msgstr "Мініатюри в лайтбоксі"
1076
 
1077
+ #: includes/class-gllr-settings.php:857
1078
  msgid "Enable to use a lightbox helper navigation between images."
1079
  msgstr ""
1080
  "Дозволити використовувати допоміжні елементи лайтбоксу для навігації між "
1081
  "зображеннями."
1082
 
1083
+ #: includes/class-gllr-settings.php:861
1084
  msgid "Lightbox Thumbnails Position"
1085
  msgstr "Розташування мініатюр в лайтбоксі"
1086
 
1087
+ #: includes/class-gllr-settings.php:864
1088
  msgid "Top"
1089
  msgstr "Верх"
1090
 
1091
+ #: includes/class-gllr-settings.php:869
1092
  msgid "Lightbox Button Label"
1093
  msgstr "Текст кнопки в лайтбоксі"
1094
 
1095
+ #: includes/class-gllr-settings.php:871
1096
  msgid "Read More"
1097
  msgstr "Дізнатися більше"
1098
 
1099
+ #: includes/class-gllr-settings.php:883
1100
  msgid "Download Button"
1101
  msgstr "Кнопка \"Завантажити\""
1102
 
1103
+ #: includes/class-gllr-settings.php:885
1104
  msgid "Enable to display download button."
1105
  msgstr ""
1106
  "Увімкніть, щоб показати посилання на завантаження оригінального зображення."
1107
 
1108
+ #: includes/class-gllr-settings.php:889
1109
  msgid "Single Lightbox"
1110
  msgstr "Один лайтбокс"
1111
 
1112
+ #: includes/class-gllr-settings.php:891
1113
  msgid ""
1114
  "Enable to use a single lightbox for multiple galleries located on a single "
1115
  "page."
1117
  "Увімкніть, щоб використовувати один лайтбокс для декількох галерей, "
1118
  "розташованих на одній сторінці."
1119
 
1120
+ #: includes/class-gllr-settings.php:901
1121
  msgid "Social Sharing Buttons Settings"
1122
  msgstr "Налаштування соціальних кнопок"
1123
 
1124
+ #: includes/class-gllr-settings.php:911
1125
  msgid "Social Buttons"
1126
  msgstr "Соціальні кнопки"
1127
 
1128
+ #: includes/class-gllr-settings.php:913
1129
  msgid "Enable social sharing buttons in the lightbox."
1130
  msgstr "Увімкніть соціальні кнопки в лайтбоксі."
1131
 
1132
+ #: includes/class-gllr-settings.php:917
1133
  msgid "Social Networks"
1134
  msgstr "Соціальні мережі"
1135
 
1136
+ #: includes/class-gllr-settings.php:927
1137
  msgid "Counter"
1138
  msgstr "Лічильник"
1139
 
1140
+ #: includes/class-gllr-settings.php:930
1141
  msgid "Enable to show likes counter for each social button."
1142
  msgstr "Увімкніть, щоб показати лічильник для кожної соціальної кнопки."
1143
 
1144
+ #: includes/class-gllr-settings.php:947
1145
  msgid "Demo Data"
1146
  msgstr "Демо-дані"
1147
 
1148
+ #: includes/class-gllr-settings.php:949
1149
  msgid ""
1150
  "Install demo data to create galleries with images, post with shortcodes and "
1151
  "page with a list of all galleries."
1153
  "Встановіть демо-дані, щоб створити галереї з зображеннями, запис з "
1154
  "шорткодами і сторінку зі списком усіх галерей."
1155
 
1156
+ #: includes/class-gllr-settings.php:987
1157
  msgid "Gallery Post Type"
1158
  msgstr "Тип запису галереї"
1159
 
1160
+ #: includes/class-gllr-settings.php:989
1161
  msgid ""
1162
  "Enable to avoid conflicts with other gallery plugins installed. All "
1163
  "galleries created earlier will stay unchanged. However, after enabling we "
1169
  "перевірте, будь ласка, налаштування інших плагінів, де використовується тип "
1170
  "запису \"gallery\"."
1171
 
1172
+ #: includes/class-gllr-settings.php:1002
1173
  msgid "Gallery Slug"
1174
  msgstr "Слаґ галереї"
1175
 
1176
+ #: includes/class-gllr-settings.php:1006
1177
  msgid "Enter the unique gallery slug."
1178
  msgstr "Введіть унікальний слаґ галереї."
1179
 
1180
+ #: includes/class-gllr-settings.php:1010
1181
+ msgid "ShortPixel Image Optimizer"
1182
+ msgstr "Оптимізатор зображень ShortPixel"
1183
+
1184
+ #: includes/class-gllr-settings.php:1013
1185
+ msgid "Enable to apply ShortPixel optimizer to gallery images."
1186
+ msgstr "Увімкніть застосування оптимізатора ShortPixel до зображень галереї."
1187
+
1188
+ #: includes/class-gllr-settings.php:1018
1189
+ msgid "API Key"
1190
+ msgstr "Ключ API"
1191
+
1192
+ #: includes/class-gllr-settings.php:1022
1193
+ #, php-format
1194
+ msgid "Input API Key. If you don't have an API Key, please %s "
1195
+ msgstr "Ключ API введення. Якщо у вас немає ключа API, будь ласка, %s "
1196
+
1197
+ #: includes/class-gllr-settings.php:1022
1198
+ msgid " sign up to get your API key"
1199
+ msgstr "зареєструйтесь, щоб отримати ключ API"
1200
+
1201
+ #: includes/class-gllr-settings.php:1040
1202
  msgid "Activate Now"
1203
  msgstr "Активувати зараз"
1204
 
1205
+ #: includes/class-gllr-settings.php:1058
1206
  msgid "Enable to include galleries to your website search."
1207
  msgstr "Включити галерею в пошук на вашому сайті."
1208
 
1209
+ #: includes/class-gllr-settings.php:1058
1210
  #, php-format
1211
  msgid "%s is required."
1212
  msgstr "Потребується %s."
1369
  #~ msgid "Try to disable 3rd-party fancybox"
1370
  #~ msgstr "Спробуйте відключити сторонній fancybox"
1371
 
 
1372
  #~ msgid ""
1373
  #~ "Do you want to install demo content and settings for %s? (You can do this "
1374
  #~ "later using Import / Export settings)"
readme.txt CHANGED
@@ -1,10 +1,10 @@
1
- === Gallery by BestWebSoft ===
2
  Contributors: bestwebsoft
3
  Donate link: https://bestwebsoft.com/donate/
4
  Tags: add album, add galleries, add images, add pictures, add albums, gallery, gallery plugin, gallery slider, fancy gallery, slideshow, lightbox, fullscreen gallery
5
- Requires at least: 4.5
6
- Tested up to: 5.7
7
- Stable tag: 4.6.7
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -101,6 +101,7 @@ https://www.youtube.com/watch?v=aydaTdOpaRM
101
  > * Enable lightbox helper:
102
  > * Button
103
  > * Thumbnail
 
104
  > * Select 'self'/'blank' for external URLs
105
  > * Add lightbox image description
106
  > * Add a button with URL to the lightbox
@@ -115,18 +116,22 @@ If you have a feature suggestion or idea you'd like to see in the plugin, we'd l
115
 
116
  = Documentation & Videos =
117
 
118
- * [[Doc] User Guide](https://docs.google.com/document/d/1l4zMhovBgO7rsPIzJk_15v0sdhiCpnjuacoDEfmzGEw/)
119
- * [[Doc] How to Receive Trial License](https://docs.google.com/document/d/1koBRu7k9OnOw2Ic3YqmBWjL_KtC3tI8WU1agMa3AYGo/)
120
- * [[Doc] Installation](https://docs.google.com/document/d/1-hvn6WRvWnOqj5v5pLUk7Awyu87lq5B_dO-Tv-MC9JQ/)
121
- * [[Doc] Purchase](https://docs.google.com/document/d/1EUdBVvnm7IHZ6y0DNyldZypUQKpB8UVPToSc_LdOYQI/)
122
- * [[Video] How to Add](https://www.youtube.com/watch?v=-P9o6-APlv0)
123
- * [[Video] Installation Instruction](https://www.youtube.com/watch?v=3u-Ov-HxZ7U)
124
- * [[Video] Purchase, Installation, Configuration Tutorial](https://www.youtube.com/watch?v=KAbiac-iORw)
125
 
126
  = Help & Support =
127
 
128
  Visit our Help Center if you have any questions, our friendly Support Team is happy to help - <https://support.bestwebsoft.com/>
129
 
 
 
 
 
130
  = Translation =
131
 
132
  * Brazilian Portuguese (pt_BR) (thanks to DJIO, www.djio.com.br)
@@ -167,7 +172,7 @@ Some of these translations are not complete. We are constantly adding new featur
167
  2. Add or Upload pictures via 'Add Media' button.
168
  3. Save the page.
169
 
170
- [View a Step-by-step Instruction "How to Use"](https://docs.google.com/document/d/1l4zMhovBgO7rsPIzJk_15v0sdhiCpnjuacoDEfmzGEw/)
171
 
172
  = How to change or override plugin templates? =
173
 
@@ -216,7 +221,7 @@ Please make sure that the problem hasn't been discussed yet on our forum (<https
216
  1. the link to the page where the problem occurs
217
  2. the name of the plugin and its version. If you are using a pro version - your order number.
218
  3. the version of your WordPress installation
219
- 4. copy and paste into the message your system status report. Please read more here: [Instruction on System Status](https://docs.google.com/document/d/1Wi2X8RdRGXk9kMszQy1xItJrpN0ncXgioH935MaBKtc/)
220
 
221
  == Screenshots ==
222
 
@@ -234,6 +239,12 @@ Please make sure that the problem hasn't been discussed yet on our forum (<https
234
 
235
  == Changelog ==
236
 
 
 
 
 
 
 
237
  = V4.6.7 - 28.01.2021 =
238
  * Update : All functionality was updated for WordPress 5.6
239
  * Update : BWS Panel section was updated.
@@ -702,6 +713,11 @@ Please make sure that the problem hasn't been discussed yet on our forum (<https
702
 
703
  == Upgrade Notice ==
704
 
 
 
 
 
 
705
  = V4.6.7 =
706
  * The compatibility with new WordPress version updated.
707
  * Bugs fixed.
1
+ === Gallery by BestWebSoft - Customizable Image and Photo Galleries for WordPress ===
2
  Contributors: bestwebsoft
3
  Donate link: https://bestwebsoft.com/donate/
4
  Tags: add album, add galleries, add images, add pictures, add albums, gallery, gallery plugin, gallery slider, fancy gallery, slideshow, lightbox, fullscreen gallery
5
+ Requires at least: 5.6
6
+ Tested up to: 6.0
7
+ Stable tag: 4.6.8
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
101
  > * Enable lightbox helper:
102
  > * Button
103
  > * Thumbnail
104
+ > * Optimize images [NEW]
105
  > * Select 'self'/'blank' for external URLs
106
  > * Add lightbox image description
107
  > * Add a button with URL to the lightbox
116
 
117
  = Documentation & Videos =
118
 
119
+ * [[Doc] User Guide](https://bestwebsoft.com/documentation/gallery/gallery-user-guide/)
120
+ * [[Doc] How to Receive Trial License](https://bestwebsoft.com/documentation/gallery/how-to-receive-and-activate-gallery-pro-trial-license/)
121
+ * [[Doc] Installation](https://bestwebsoft.com/documentation/how-to-install-a-wordpress-product/how-to-install-a-wordpress-plugin/)
122
+ * [[Doc] Purchase](https://bestwebsoft.com/documentation/how-to-purchase-a-wordpress-plugin/how-to-purchase-wordpress-plugin-from-bestwebsoft/)
123
+ * [[Video] How to Add](https://www.youtube.com/watch?v=-P9o6-APlv0)
124
+ * [[Video] Installation Instruction](https://www.youtube.com/watch?v=3u-Ov-HxZ7U)
125
+ * [[Video] Purchase, Installation, Configuration Tutorial](https://www.youtube.com/watch?v=KAbiac-iORw)
126
 
127
  = Help & Support =
128
 
129
  Visit our Help Center if you have any questions, our friendly Support Team is happy to help - <https://support.bestwebsoft.com/>
130
 
131
+ = Affiliate Program =
132
+
133
+ Earn 20% commission by selling the premium WordPress plugins and themes by BestWebSoft — [https://bestwebsoft.com/affiliate/](https://bestwebsoft.com/affiliate/?utm_source=plugin&utm_medium=readme&utm_campaign=affiliate_program)
134
+
135
  = Translation =
136
 
137
  * Brazilian Portuguese (pt_BR) (thanks to DJIO, www.djio.com.br)
172
  2. Add or Upload pictures via 'Add Media' button.
173
  3. Save the page.
174
 
175
+ [View a Step-by-step Instruction "How to Use"](https://bestwebsoft.com/documentation/how-to-install-a-wordpress-product/how-to-install-a-wordpress-plugin/)
176
 
177
  = How to change or override plugin templates? =
178
 
221
  1. the link to the page where the problem occurs
222
  2. the name of the plugin and its version. If you are using a pro version - your order number.
223
  3. the version of your WordPress installation
224
+ 4. copy and paste into the message your system status report. Please read more here: [Instruction on System Status](https://bestwebsoft.com/documentation/admin-panel-issues/system-status/)
225
 
226
  == Screenshots ==
227
 
239
 
240
  == Changelog ==
241
 
242
+ = V4.6.8 - 10.09.2021 =
243
+ * Update : All functionality was updated for WordPress 5.8.1
244
+ * Update : BWS Panel section was updated.
245
+ * Pro : The ability to optimize images has been added.
246
+ * Bugfix : The bug with displaying lightbox was fixed.
247
+
248
  = V4.6.7 - 28.01.2021 =
249
  * Update : All functionality was updated for WordPress 5.6
250
  * Update : BWS Panel section was updated.
713
 
714
  == Upgrade Notice ==
715
 
716
+ = V4.6.8 =
717
+ * The compatibility with new WordPress version updated.
718
+ * New features added.
719
+ * Bugs fixed.
720
+
721
  = V4.6.7 =
722
  * The compatibility with new WordPress version updated.
723
  * Bugs fixed.